diff --git a/examples/expressions.fs b/examples/expressions.fs index 2ea5a9f..8f528ea 100644 --- a/examples/expressions.fs +++ b/examples/expressions.fs @@ -1,8 +1,2 @@ do - 1 + 1 -#if true - printfn "blah1" - 2 + 2 - printfn "blah2" -#endif - printfn "bluh" + 1. diff --git a/grammar.js b/grammar.js index 0cbf698..6c06261 100644 --- a/grammar.js +++ b/grammar.js @@ -1661,7 +1661,7 @@ module.exports = grammar({ const: $ => choice( $.sbyte, $.int16, $.int32, $.int64, $.byte, $.uint16, $.uint32, $.int, - $.nativeint, $.unativeint, $.decimal, + $.nativeint, $.unativeint, $.decimal, $.float, $.uint64, $.ieee32, $.ieee64, $.bignum, $.char, $.string, $.verbatim_string, $.triple_quoted_string, $.bytearray, $.verbatim_bytearray, $.bytechar, $.bool, $.unit), @@ -1770,20 +1770,21 @@ module.exports = grammar({ decimal: $ => seq(choice($.float, $.int), token.immediate(/[Mm]/)), float: $ => - alias( - choice( - seq( - $.int, - token.immediate('.'), - optional($.int) - ), - seq( - $.int, - optional(seq(token.immediate('.'), $.int)), - token.immediate(/[eE][+-]?/), - $.int - ), - ), 'float'), + prec.right( + alias( + choice( + seq( + $.int, + token.immediate('.'), + optional($.int) + ), + seq( + $.int, + optional(seq(token.immediate('.'), $.int)), + token.immediate(/[eE][+-]?/), + $.int + ), + ), 'float')), // // Constants (END) diff --git a/src/grammar.json b/src/grammar.json index eabe9f4..9ed1963 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6507,6 +6507,10 @@ "type": "SYMBOL", "name": "decimal" }, + { + "type": "SYMBOL", + "name": "float" + }, { "type": "SYMBOL", "name": "uint64" @@ -7299,86 +7303,90 @@ ] }, "float": { - "type": "ALIAS", + "type": "PREC_RIGHT", + "value": 0, "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "int" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "int" - }, - { - "type": "BLANK" + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "int" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "int" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "int" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "int" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "." + } + }, + { + "type": "SYMBOL", + "name": "int" } - }, - { - "type": "SYMBOL", - "name": "int" - } - ] - }, - { - "type": "BLANK" + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[eE][+-]?" } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[eE][+-]?" + }, + { + "type": "SYMBOL", + "name": "int" } - }, - { - "type": "SYMBOL", - "name": "int" - } - ] - } - ] - }, - "named": false, - "value": "float" + ] + } + ] + }, + "named": false, + "value": "float" + } }, "xml_doc": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 38c182b..04584fc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -878,6 +878,10 @@ "type": "decimal", "named": true }, + { + "type": "float", + "named": true + }, { "type": "ieee32", "named": true @@ -985,6 +989,10 @@ "type": "decimal", "named": true }, + { + "type": "float", + "named": true + }, { "type": "ieee32", "named": true diff --git a/src/parser.c b/src/parser.c index 123b455..6cc397e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,8 +13,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5384 -#define LARGE_STATE_COUNT 2534 +#define STATE_COUNT 5490 +#define LARGE_STATE_COUNT 2592 #define SYMBOL_COUNT 430 #define ALIAS_COUNT 3 #define TOKEN_COUNT 197 @@ -3407,40 +3407,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 7, + [7] = 3, [8] = 8, [9] = 9, - [10] = 8, - [11] = 9, - [12] = 12, - [13] = 7, - [14] = 14, - [15] = 6, + [10] = 10, + [11] = 10, + [12] = 8, + [13] = 13, + [14] = 6, + [15] = 2, [16] = 4, - [17] = 12, - [18] = 5, - [19] = 3, - [20] = 2, - [21] = 4, - [22] = 6, - [23] = 4, - [24] = 7, - [25] = 12, - [26] = 5, - [27] = 2, - [28] = 8, - [29] = 9, - [30] = 2, - [31] = 7, - [32] = 9, - [33] = 5, - [34] = 6, - [35] = 12, - [36] = 14, - [37] = 14, - [38] = 8, - [39] = 3, - [40] = 3, + [17] = 5, + [18] = 9, + [19] = 19, + [20] = 19, + [21] = 2, + [22] = 8, + [23] = 13, + [24] = 5, + [25] = 9, + [26] = 4, + [27] = 8, + [28] = 3, + [29] = 5, + [30] = 3, + [31] = 13, + [32] = 19, + [33] = 6, + [34] = 19, + [35] = 4, + [36] = 9, + [37] = 10, + [38] = 6, + [39] = 2, + [40] = 10, [41] = 41, [42] = 41, [43] = 41, @@ -3451,278 +3451,278 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [48] = 41, [49] = 41, [50] = 41, - [51] = 5, - [52] = 52, + [51] = 51, + [52] = 5, [53] = 3, - [54] = 4, - [55] = 5, - [56] = 8, - [57] = 12, - [58] = 2, - [59] = 7, - [60] = 9, - [61] = 2, - [62] = 12, - [63] = 8, - [64] = 3, - [65] = 6, - [66] = 4, - [67] = 7, - [68] = 68, - [69] = 9, - [70] = 6, - [71] = 4, - [72] = 9, - [73] = 2, - [74] = 9, - [75] = 12, - [76] = 7, - [77] = 77, - [78] = 8, - [79] = 79, - [80] = 3, + [54] = 2, + [55] = 10, + [56] = 2, + [57] = 10, + [58] = 8, + [59] = 8, + [60] = 3, + [61] = 9, + [62] = 5, + [63] = 19, + [64] = 4, + [65] = 65, + [66] = 6, + [67] = 9, + [68] = 4, + [69] = 6, + [70] = 19, + [71] = 71, + [72] = 71, + [73] = 5, + [74] = 19, + [75] = 4, + [76] = 3, + [77] = 10, + [78] = 2, + [79] = 2, + [80] = 6, [81] = 3, - [82] = 8, - [83] = 83, - [84] = 12, - [85] = 7, - [86] = 2, - [87] = 83, - [88] = 5, - [89] = 89, - [90] = 4, - [91] = 9, - [92] = 92, - [93] = 83, - [94] = 83, - [95] = 6, - [96] = 6, - [97] = 92, - [98] = 83, - [99] = 3, - [100] = 9, - [101] = 7, - [102] = 5, - [103] = 4, - [104] = 104, - [105] = 5, - [106] = 8, - [107] = 107, - [108] = 12, - [109] = 2, - [110] = 110, - [111] = 111, - [112] = 7, - [113] = 6, - [114] = 114, - [115] = 9, - [116] = 83, - [117] = 83, - [118] = 6, - [119] = 6, - [120] = 3, - [121] = 8, - [122] = 12, - [123] = 123, + [82] = 6, + [83] = 71, + [84] = 8, + [85] = 85, + [86] = 6, + [87] = 71, + [88] = 3, + [89] = 71, + [90] = 90, + [91] = 71, + [92] = 65, + [93] = 5, + [94] = 10, + [95] = 5, + [96] = 10, + [97] = 9, + [98] = 8, + [99] = 71, + [100] = 8, + [101] = 71, + [102] = 90, + [103] = 2, + [104] = 9, + [105] = 6, + [106] = 3, + [107] = 8, + [108] = 108, + [109] = 109, + [110] = 10, + [111] = 71, + [112] = 2, + [113] = 8, + [114] = 9, + [115] = 2, + [116] = 10, + [117] = 10, + [118] = 5, + [119] = 19, + [120] = 109, + [121] = 9, + [122] = 4, + [123] = 4, [124] = 2, - [125] = 7, - [126] = 89, - [127] = 3, - [128] = 2, - [129] = 8, - [130] = 77, - [131] = 77, - [132] = 12, - [133] = 12, - [134] = 52, - [135] = 77, - [136] = 4, - [137] = 2, - [138] = 9, - [139] = 5, - [140] = 6, - [141] = 8, - [142] = 7, - [143] = 4, - [144] = 77, - [145] = 77, - [146] = 83, - [147] = 3, - [148] = 77, - [149] = 4, - [150] = 83, - [151] = 5, - [152] = 77, - [153] = 77, - [154] = 83, - [155] = 5, - [156] = 77, - [157] = 157, - [158] = 157, + [125] = 109, + [126] = 3, + [127] = 109, + [128] = 128, + [129] = 129, + [130] = 4, + [131] = 128, + [132] = 6, + [133] = 133, + [134] = 109, + [135] = 109, + [136] = 136, + [137] = 3, + [138] = 19, + [139] = 109, + [140] = 4, + [141] = 19, + [142] = 19, + [143] = 143, + [144] = 6, + [145] = 109, + [146] = 4, + [147] = 71, + [148] = 148, + [149] = 5, + [150] = 5, + [151] = 9, + [152] = 9, + [153] = 19, + [154] = 109, + [155] = 8, + [156] = 109, + [157] = 2, + [158] = 158, [159] = 159, [160] = 160, - [161] = 159, + [161] = 161, [162] = 162, - [163] = 2, - [164] = 2, - [165] = 165, - [166] = 9, - [167] = 162, - [168] = 168, + [163] = 159, + [164] = 164, + [165] = 10, + [166] = 166, + [167] = 5, + [168] = 19, [169] = 160, - [170] = 12, - [171] = 171, - [172] = 159, - [173] = 157, - [174] = 165, - [175] = 159, - [176] = 160, - [177] = 3, - [178] = 165, - [179] = 179, - [180] = 165, - [181] = 181, - [182] = 7, - [183] = 8, - [184] = 165, - [185] = 8, - [186] = 157, - [187] = 160, - [188] = 160, - [189] = 157, - [190] = 162, - [191] = 165, - [192] = 12, - [193] = 168, - [194] = 8, - [195] = 12, - [196] = 157, - [197] = 160, - [198] = 162, - [199] = 157, - [200] = 157, - [201] = 168, - [202] = 157, - [203] = 168, - [204] = 157, - [205] = 168, - [206] = 157, - [207] = 160, - [208] = 157, - [209] = 168, - [210] = 165, - [211] = 157, - [212] = 3, - [213] = 157, - [214] = 2, - [215] = 159, - [216] = 168, - [217] = 157, - [218] = 157, - [219] = 159, - [220] = 168, - [221] = 157, - [222] = 168, - [223] = 3, - [224] = 162, - [225] = 160, - [226] = 5, - [227] = 6, - [228] = 162, - [229] = 157, - [230] = 168, - [231] = 157, - [232] = 4, - [233] = 104, - [234] = 4, - [235] = 5, - [236] = 159, - [237] = 165, - [238] = 157, - [239] = 157, - [240] = 240, - [241] = 157, - [242] = 157, - [243] = 243, - [244] = 9, - [245] = 157, - [246] = 160, - [247] = 157, - [248] = 7, - [249] = 249, - [250] = 157, - [251] = 251, - [252] = 157, + [170] = 162, + [171] = 19, + [172] = 166, + [173] = 5, + [174] = 160, + [175] = 4, + [176] = 176, + [177] = 159, + [178] = 164, + [179] = 2, + [180] = 162, + [181] = 160, + [182] = 166, + [183] = 160, + [184] = 3, + [185] = 158, + [186] = 162, + [187] = 6, + [188] = 4, + [189] = 159, + [190] = 164, + [191] = 8, + [192] = 9, + [193] = 3, + [194] = 4, + [195] = 8, + [196] = 166, + [197] = 2, + [198] = 166, + [199] = 162, + [200] = 160, + [201] = 10, + [202] = 202, + [203] = 10, + [204] = 159, + [205] = 164, + [206] = 206, + [207] = 166, + [208] = 162, + [209] = 133, + [210] = 160, + [211] = 160, + [212] = 162, + [213] = 166, + [214] = 9, + [215] = 215, + [216] = 159, + [217] = 19, + [218] = 162, + [219] = 166, + [220] = 158, + [221] = 164, + [222] = 222, + [223] = 223, + [224] = 85, + [225] = 159, + [226] = 160, + [227] = 164, + [228] = 5, + [229] = 229, + [230] = 6, + [231] = 202, + [232] = 9, + [233] = 3, + [234] = 162, + [235] = 166, + [236] = 166, + [237] = 158, + [238] = 162, + [239] = 162, + [240] = 162, + [241] = 164, + [242] = 162, + [243] = 160, + [244] = 6, + [245] = 159, + [246] = 164, + [247] = 8, + [248] = 164, + [249] = 159, + [250] = 164, + [251] = 164, + [252] = 164, [253] = 253, - [254] = 160, - [255] = 165, - [256] = 162, + [254] = 164, + [255] = 164, + [256] = 164, [257] = 159, - [258] = 162, - [259] = 259, - [260] = 123, - [261] = 240, - [262] = 5, - [263] = 159, - [264] = 157, - [265] = 6, - [266] = 157, - [267] = 267, - [268] = 7, - [269] = 267, - [270] = 4, - [271] = 160, - [272] = 162, - [273] = 162, - [274] = 160, - [275] = 159, - [276] = 157, - [277] = 9, - [278] = 165, - [279] = 160, - [280] = 6, + [258] = 164, + [259] = 164, + [260] = 164, + [261] = 164, + [262] = 164, + [263] = 164, + [264] = 158, + [265] = 164, + [266] = 164, + [267] = 158, + [268] = 158, + [269] = 164, + [270] = 158, + [271] = 158, + [272] = 229, + [273] = 164, + [274] = 274, + [275] = 164, + [276] = 164, + [277] = 164, + [278] = 164, + [279] = 164, + [280] = 158, [281] = 281, - [282] = 281, - [283] = 283, + [282] = 282, + [283] = 282, [284] = 284, - [285] = 281, - [286] = 283, - [287] = 283, - [288] = 283, - [289] = 284, + [285] = 285, + [286] = 284, + [287] = 282, + [288] = 282, + [289] = 281, [290] = 284, - [291] = 281, - [292] = 292, - [293] = 292, - [294] = 294, - [295] = 283, - [296] = 283, - [297] = 283, + [291] = 285, + [292] = 282, + [293] = 282, + [294] = 281, + [295] = 281, + [296] = 284, + [297] = 281, [298] = 284, - [299] = 284, - [300] = 292, - [301] = 292, - [302] = 281, - [303] = 281, - [304] = 283, + [299] = 285, + [300] = 281, + [301] = 284, + [302] = 285, + [303] = 285, + [304] = 282, [305] = 284, - [306] = 283, - [307] = 292, + [306] = 285, + [307] = 282, [308] = 281, - [309] = 292, - [310] = 284, - [311] = 292, - [312] = 292, - [313] = 251, + [309] = 282, + [310] = 281, + [311] = 282, + [312] = 284, + [313] = 281, [314] = 284, [315] = 281, - [316] = 281, - [317] = 283, - [318] = 292, - [319] = 284, - [320] = 292, - [321] = 281, - [322] = 284, + [316] = 285, + [317] = 285, + [318] = 285, + [319] = 222, + [320] = 284, + [321] = 285, + [322] = 322, [323] = 323, [324] = 324, [325] = 325, @@ -3731,99 +3731,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [328] = 328, [329] = 329, [330] = 330, - [331] = 324, + [331] = 331, [332] = 332, [333] = 333, - [334] = 334, - [335] = 334, + [334] = 330, + [335] = 335, [336] = 336, - [337] = 336, - [338] = 338, - [339] = 332, - [340] = 324, - [341] = 341, - [342] = 342, + [337] = 337, + [338] = 324, + [339] = 331, + [340] = 340, + [341] = 340, + [342] = 324, [343] = 343, [344] = 344, [345] = 345, - [346] = 344, + [346] = 345, [347] = 347, - [348] = 345, - [349] = 347, + [348] = 347, + [349] = 344, [350] = 350, [351] = 351, [352] = 352, - [353] = 353, + [353] = 350, [354] = 352, [355] = 350, - [356] = 350, + [356] = 356, [357] = 357, [358] = 357, [359] = 359, [360] = 359, [361] = 359, [362] = 359, - [363] = 357, - [364] = 359, + [363] = 359, + [364] = 357, [365] = 359, - [366] = 359, - [367] = 359, + [366] = 357, + [367] = 357, [368] = 359, [369] = 359, - [370] = 357, + [370] = 359, [371] = 357, [372] = 359, - [373] = 357, + [373] = 359, [374] = 359, - [375] = 357, - [376] = 359, - [377] = 359, + [375] = 359, + [376] = 357, + [377] = 357, [378] = 359, [379] = 357, [380] = 357, - [381] = 357, + [381] = 359, [382] = 382, [383] = 383, [384] = 383, [385] = 385, - [386] = 385, + [386] = 382, [387] = 383, [388] = 383, - [389] = 383, - [390] = 382, - [391] = 382, + [389] = 382, + [390] = 385, + [391] = 385, [392] = 383, - [393] = 385, + [393] = 383, [394] = 385, - [395] = 382, - [396] = 385, - [397] = 385, - [398] = 383, - [399] = 382, + [395] = 385, + [396] = 382, + [397] = 382, + [398] = 385, + [399] = 385, [400] = 383, - [401] = 382, - [402] = 385, + [401] = 385, + [402] = 382, [403] = 382, - [404] = 385, - [405] = 385, - [406] = 382, + [404] = 382, + [405] = 383, + [406] = 383, [407] = 385, [408] = 382, - [409] = 383, + [409] = 385, [410] = 382, [411] = 383, [412] = 412, - [413] = 412, + [413] = 413, [414] = 412, [415] = 412, [416] = 412, - [417] = 417, + [417] = 412, [418] = 418, [419] = 412, [420] = 412, [421] = 412, - [422] = 412, - [423] = 418, + [422] = 418, + [423] = 412, [424] = 412, [425] = 425, [426] = 426, @@ -3831,300 +3831,300 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [428] = 427, [429] = 429, [430] = 430, - [431] = 430, - [432] = 430, - [433] = 430, - [434] = 434, - [435] = 430, - [436] = 430, - [437] = 430, - [438] = 430, - [439] = 430, - [440] = 434, - [441] = 430, - [442] = 434, - [443] = 434, - [444] = 430, - [445] = 434, + [431] = 429, + [432] = 429, + [433] = 429, + [434] = 429, + [435] = 429, + [436] = 429, + [437] = 429, + [438] = 429, + [439] = 429, + [440] = 429, + [441] = 441, + [442] = 429, + [443] = 441, + [444] = 429, + [445] = 430, [446] = 430, - [447] = 434, - [448] = 434, - [449] = 429, + [447] = 430, + [448] = 430, + [449] = 430, [450] = 430, - [451] = 434, - [452] = 434, - [453] = 434, + [451] = 430, + [452] = 430, + [453] = 430, [454] = 454, [455] = 455, [456] = 456, - [457] = 456, + [457] = 457, [458] = 458, - [459] = 454, + [459] = 457, [460] = 460, - [461] = 461, + [461] = 455, [462] = 462, [463] = 463, - [464] = 460, - [465] = 460, + [464] = 464, + [465] = 454, [466] = 460, - [467] = 460, - [468] = 468, + [467] = 455, + [468] = 457, [469] = 469, - [470] = 470, + [470] = 469, [471] = 471, - [472] = 460, - [473] = 460, - [474] = 474, - [475] = 460, - [476] = 462, - [477] = 477, + [472] = 472, + [473] = 456, + [474] = 462, + [475] = 475, + [476] = 476, + [477] = 454, [478] = 478, [479] = 479, [480] = 480, - [481] = 461, + [481] = 481, [482] = 463, - [483] = 478, - [484] = 484, + [483] = 471, + [484] = 480, [485] = 485, - [486] = 479, - [487] = 480, - [488] = 454, - [489] = 489, + [486] = 463, + [487] = 462, + [488] = 488, + [489] = 481, [490] = 460, - [491] = 468, + [491] = 481, [492] = 492, - [493] = 469, - [494] = 470, - [495] = 458, - [496] = 462, - [497] = 474, - [498] = 462, - [499] = 485, - [500] = 460, - [501] = 478, - [502] = 477, - [503] = 503, - [504] = 454, - [505] = 460, - [506] = 468, - [507] = 469, - [508] = 470, - [509] = 479, - [510] = 510, - [511] = 461, - [512] = 512, - [513] = 480, - [514] = 471, - [515] = 474, - [516] = 516, - [517] = 461, - [518] = 518, - [519] = 503, - [520] = 479, - [521] = 478, - [522] = 522, - [523] = 460, - [524] = 462, - [525] = 518, - [526] = 468, + [493] = 454, + [494] = 457, + [495] = 455, + [496] = 463, + [497] = 454, + [498] = 498, + [499] = 464, + [500] = 469, + [501] = 472, + [502] = 456, + [503] = 462, + [504] = 463, + [505] = 472, + [506] = 480, + [507] = 462, + [508] = 478, + [509] = 456, + [510] = 481, + [511] = 464, + [512] = 480, + [513] = 498, + [514] = 456, + [515] = 481, + [516] = 460, + [517] = 517, + [518] = 480, + [519] = 519, + [520] = 471, + [521] = 472, + [522] = 492, + [523] = 464, + [524] = 481, + [525] = 476, + [526] = 458, [527] = 480, - [528] = 474, - [529] = 477, - [530] = 477, - [531] = 456, - [532] = 469, - [533] = 518, - [534] = 518, - [535] = 461, - [536] = 510, - [537] = 512, - [538] = 478, - [539] = 479, - [540] = 540, - [541] = 540, - [542] = 518, - [543] = 470, + [528] = 481, + [529] = 457, + [530] = 460, + [531] = 472, + [532] = 458, + [533] = 455, + [534] = 456, + [535] = 460, + [536] = 480, + [537] = 464, + [538] = 481, + [539] = 478, + [540] = 479, + [541] = 478, + [542] = 479, + [543] = 458, [544] = 462, - [545] = 545, - [546] = 454, - [547] = 547, - [548] = 462, - [549] = 462, - [550] = 462, - [551] = 474, - [552] = 471, - [553] = 480, - [554] = 510, - [555] = 456, - [556] = 540, - [557] = 540, - [558] = 456, - [559] = 471, - [560] = 456, - [561] = 518, - [562] = 454, - [563] = 477, - [564] = 460, - [565] = 462, - [566] = 478, - [567] = 471, - [568] = 460, - [569] = 468, - [570] = 477, - [571] = 469, - [572] = 460, - [573] = 470, - [574] = 454, - [575] = 454, - [576] = 540, - [577] = 474, - [578] = 460, - [579] = 480, - [580] = 460, - [581] = 471, - [582] = 461, - [583] = 463, - [584] = 456, - [585] = 460, - [586] = 468, - [587] = 469, - [588] = 470, - [589] = 458, - [590] = 540, - [591] = 479, - [592] = 454, - [593] = 471, - [594] = 540, - [595] = 474, - [596] = 510, - [597] = 471, - [598] = 484, - [599] = 460, - [600] = 456, - [601] = 460, - [602] = 480, - [603] = 503, - [604] = 460, - [605] = 468, - [606] = 469, - [607] = 470, - [608] = 540, - [609] = 518, - [610] = 540, - [611] = 462, - [612] = 477, - [613] = 518, - [614] = 463, - [615] = 518, - [616] = 540, - [617] = 479, - [618] = 478, - [619] = 474, - [620] = 456, - [621] = 456, - [622] = 471, - [623] = 454, - [624] = 462, - [625] = 458, - [626] = 454, - [627] = 540, - [628] = 477, - [629] = 460, - [630] = 460, - [631] = 510, - [632] = 461, - [633] = 503, - [634] = 477, - [635] = 460, - [636] = 468, - [637] = 469, - [638] = 470, - [639] = 463, - [640] = 462, - [641] = 479, - [642] = 478, - [643] = 454, - [644] = 518, - [645] = 458, - [646] = 518, - [647] = 510, - [648] = 518, - [649] = 458, + [545] = 463, + [546] = 546, + [547] = 458, + [548] = 460, + [549] = 480, + [550] = 480, + [551] = 471, + [552] = 481, + [553] = 463, + [554] = 455, + [555] = 480, + [556] = 488, + [557] = 458, + [558] = 462, + [559] = 481, + [560] = 457, + [561] = 455, + [562] = 456, + [563] = 472, + [564] = 454, + [565] = 464, + [566] = 479, + [567] = 463, + [568] = 488, + [569] = 458, + [570] = 478, + [571] = 485, + [572] = 471, + [573] = 475, + [574] = 475, + [575] = 575, + [576] = 457, + [577] = 464, + [578] = 455, + [579] = 454, + [580] = 469, + [581] = 455, + [582] = 457, + [583] = 454, + [584] = 464, + [585] = 458, + [586] = 471, + [587] = 471, + [588] = 457, + [589] = 455, + [590] = 458, + [591] = 454, + [592] = 464, + [593] = 472, + [594] = 458, + [595] = 469, + [596] = 460, + [597] = 455, + [598] = 471, + [599] = 471, + [600] = 476, + [601] = 456, + [602] = 476, + [603] = 478, + [604] = 479, + [605] = 460, + [606] = 472, + [607] = 607, + [608] = 492, + [609] = 457, + [610] = 472, + [611] = 464, + [612] = 454, + [613] = 464, + [614] = 472, + [615] = 472, + [616] = 456, + [617] = 472, + [618] = 472, + [619] = 472, + [620] = 472, + [621] = 475, + [622] = 472, + [623] = 469, + [624] = 456, + [625] = 464, + [626] = 462, + [627] = 479, + [628] = 462, + [629] = 492, + [630] = 463, + [631] = 471, + [632] = 472, + [633] = 472, + [634] = 472, + [635] = 472, + [636] = 472, + [637] = 472, + [638] = 472, + [639] = 472, + [640] = 472, + [641] = 488, + [642] = 475, + [643] = 472, + [644] = 472, + [645] = 476, + [646] = 646, + [647] = 463, + [648] = 457, + [649] = 455, [650] = 650, - [651] = 477, - [652] = 477, - [653] = 540, - [654] = 456, - [655] = 471, - [656] = 454, - [657] = 477, - [658] = 471, - [659] = 659, - [660] = 474, - [661] = 477, - [662] = 510, - [663] = 460, - [664] = 503, - [665] = 477, - [666] = 489, - [667] = 503, - [668] = 460, - [669] = 503, - [670] = 463, - [671] = 463, - [672] = 471, - [673] = 458, + [651] = 472, + [652] = 652, + [653] = 469, + [654] = 458, + [655] = 469, + [656] = 472, + [657] = 488, + [658] = 469, + [659] = 471, + [660] = 492, + [661] = 469, + [662] = 492, + [663] = 457, + [664] = 475, + [665] = 455, + [666] = 517, + [667] = 469, + [668] = 454, + [669] = 462, + [670] = 464, + [671] = 458, + [672] = 476, + [673] = 469, [674] = 454, - [675] = 510, - [676] = 471, + [675] = 458, + [676] = 469, [677] = 460, - [678] = 480, - [679] = 456, - [680] = 480, - [681] = 510, - [682] = 477, - [683] = 456, - [684] = 454, - [685] = 471, - [686] = 456, - [687] = 540, - [688] = 461, - [689] = 518, - [690] = 468, - [691] = 458, - [692] = 540, - [693] = 462, - [694] = 462, - [695] = 503, - [696] = 518, - [697] = 463, - [698] = 503, - [699] = 540, - [700] = 456, - [701] = 478, - [702] = 463, - [703] = 470, - [704] = 460, - [705] = 469, - [706] = 480, - [707] = 461, - [708] = 479, - [709] = 478, - [710] = 458, - [711] = 518, - [712] = 474, - [713] = 468, - [714] = 461, - [715] = 503, - [716] = 463, - [717] = 460, - [718] = 458, - [719] = 479, - [720] = 471, - [721] = 469, - [722] = 460, - [723] = 470, - [724] = 510, + [678] = 488, + [679] = 475, + [680] = 475, + [681] = 681, + [682] = 478, + [683] = 454, + [684] = 479, + [685] = 476, + [686] = 464, + [687] = 492, + [688] = 488, + [689] = 458, + [690] = 454, + [691] = 455, + [692] = 457, + [693] = 492, + [694] = 471, + [695] = 479, + [696] = 478, + [697] = 471, + [698] = 472, + [699] = 476, + [700] = 476, + [701] = 492, + [702] = 469, + [703] = 471, + [704] = 457, + [705] = 455, + [706] = 454, + [707] = 471, + [708] = 464, + [709] = 488, + [710] = 475, + [711] = 458, + [712] = 469, + [713] = 488, + [714] = 475, + [715] = 476, + [716] = 519, + [717] = 478, + [718] = 479, + [719] = 488, + [720] = 720, + [721] = 479, + [722] = 478, + [723] = 492, + [724] = 457, [725] = 725, [726] = 725, [727] = 725, @@ -4133,150 +4133,150 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [730] = 725, [731] = 731, [732] = 732, - [733] = 733, - [734] = 733, - [735] = 732, - [736] = 731, - [737] = 737, - [738] = 725, - [739] = 725, - [740] = 737, - [741] = 729, - [742] = 733, - [743] = 725, + [733] = 725, + [734] = 734, + [735] = 735, + [736] = 729, + [737] = 734, + [738] = 735, + [739] = 732, + [740] = 731, + [741] = 731, + [742] = 725, + [743] = 729, [744] = 725, - [745] = 737, - [746] = 732, - [747] = 731, - [748] = 729, + [745] = 725, + [746] = 734, + [747] = 732, + [748] = 725, [749] = 725, - [750] = 750, - [751] = 751, + [750] = 725, + [751] = 735, [752] = 752, - [753] = 750, - [754] = 754, + [753] = 753, + [754] = 725, [755] = 725, - [756] = 756, + [756] = 752, [757] = 757, - [758] = 754, - [759] = 751, - [760] = 756, - [761] = 725, - [762] = 752, - [763] = 757, + [758] = 758, + [759] = 757, + [760] = 760, + [761] = 753, + [762] = 725, + [763] = 758, [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, + [765] = 760, + [766] = 764, + [767] = 753, [768] = 768, - [769] = 769, - [770] = 769, - [771] = 766, + [769] = 764, + [770] = 770, + [771] = 771, [772] = 772, - [773] = 772, - [774] = 754, + [773] = 773, + [774] = 774, [775] = 775, - [776] = 768, + [776] = 757, [777] = 777, - [778] = 767, + [778] = 778, [779] = 779, - [780] = 751, + [780] = 774, [781] = 781, - [782] = 765, + [782] = 782, [783] = 783, - [784] = 783, - [785] = 779, - [786] = 756, - [787] = 781, - [788] = 788, + [784] = 758, + [785] = 783, + [786] = 760, + [787] = 779, + [788] = 752, [789] = 777, - [790] = 788, - [791] = 752, + [790] = 790, + [791] = 770, [792] = 792, - [793] = 793, - [794] = 793, - [795] = 750, - [796] = 792, + [793] = 792, + [794] = 768, + [795] = 775, + [796] = 778, [797] = 797, - [798] = 797, - [799] = 775, - [800] = 757, - [801] = 764, - [802] = 793, - [803] = 781, - [804] = 797, - [805] = 764, - [806] = 772, - [807] = 792, - [808] = 767, - [809] = 769, - [810] = 777, - [811] = 766, - [812] = 788, - [813] = 775, - [814] = 768, - [815] = 779, - [816] = 783, - [817] = 765, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 818, + [798] = 773, + [799] = 797, + [800] = 782, + [801] = 790, + [802] = 772, + [803] = 771, + [804] = 781, + [805] = 792, + [806] = 774, + [807] = 775, + [808] = 777, + [809] = 779, + [810] = 772, + [811] = 783, + [812] = 790, + [813] = 782, + [814] = 778, + [815] = 768, + [816] = 773, + [817] = 817, + [818] = 771, + [819] = 797, + [820] = 770, + [821] = 781, + [822] = 822, [823] = 823, - [824] = 819, + [824] = 824, [825] = 825, - [826] = 825, - [827] = 821, - [828] = 823, - [829] = 820, - [830] = 818, - [831] = 831, - [832] = 823, - [833] = 833, + [826] = 822, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 823, + [831] = 829, + [832] = 832, + [833] = 824, [834] = 834, - [835] = 835, - [836] = 836, - [837] = 752, - [838] = 838, - [839] = 839, - [840] = 821, - [841] = 833, - [842] = 836, - [843] = 838, - [844] = 818, - [845] = 754, - [846] = 819, - [847] = 818, - [848] = 756, - [849] = 754, + [835] = 825, + [836] = 817, + [837] = 837, + [838] = 832, + [839] = 825, + [840] = 827, + [841] = 829, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 760, + [846] = 760, + [847] = 828, + [848] = 829, + [849] = 764, [850] = 850, - [851] = 752, - [852] = 820, - [853] = 825, - [854] = 756, - [855] = 850, - [856] = 835, - [857] = 818, - [858] = 831, - [859] = 839, - [860] = 831, - [861] = 834, - [862] = 818, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 731, - [867] = 729, - [868] = 868, + [851] = 842, + [852] = 852, + [853] = 842, + [854] = 850, + [855] = 855, + [856] = 856, + [857] = 855, + [858] = 822, + [859] = 829, + [860] = 829, + [861] = 817, + [862] = 829, + [863] = 823, + [864] = 844, + [865] = 824, + [866] = 752, + [867] = 832, + [868] = 834, [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 876, + [870] = 837, + [871] = 869, + [872] = 764, + [873] = 852, + [874] = 856, + [875] = 752, + [876] = 843, [877] = 877, [878] = 878, [879] = 879, @@ -4289,9261 +4289,5115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [886] = 886, [887] = 887, [888] = 888, - [889] = 889, + [889] = 881, [890] = 890, [891] = 891, - [892] = 833, - [893] = 836, + [892] = 892, + [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 838, - [898] = 898, - [899] = 834, + [897] = 897, + [898] = 752, + [899] = 856, [900] = 900, - [901] = 733, + [901] = 901, [902] = 902, - [903] = 850, + [903] = 855, [904] = 904, - [905] = 818, - [906] = 906, + [905] = 905, + [906] = 735, [907] = 907, - [908] = 908, + [908] = 729, [909] = 909, - [910] = 737, - [911] = 731, - [912] = 729, - [913] = 913, - [914] = 732, - [915] = 915, + [910] = 732, + [911] = 911, + [912] = 834, + [913] = 888, + [914] = 869, + [915] = 734, [916] = 916, [917] = 917, - [918] = 918, - [919] = 873, - [920] = 920, + [918] = 893, + [919] = 919, + [920] = 852, [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 905, [925] = 925, [926] = 926, - [927] = 737, - [928] = 928, - [929] = 929, - [930] = 754, - [931] = 733, - [932] = 932, - [933] = 933, - [934] = 864, + [927] = 887, + [928] = 731, + [929] = 886, + [930] = 828, + [931] = 931, + [932] = 894, + [933] = 885, + [934] = 732, [935] = 935, [936] = 936, - [937] = 896, - [938] = 839, - [939] = 939, + [937] = 937, + [938] = 938, + [939] = 850, [940] = 940, [941] = 941, - [942] = 942, + [942] = 922, [943] = 943, - [944] = 944, - [945] = 945, + [944] = 884, + [945] = 883, [946] = 946, - [947] = 947, - [948] = 894, - [949] = 932, - [950] = 891, - [951] = 951, - [952] = 952, + [947] = 921, + [948] = 919, + [949] = 917, + [950] = 950, + [951] = 916, + [952] = 880, [953] = 953, [954] = 954, - [955] = 732, - [956] = 889, - [957] = 888, - [958] = 887, - [959] = 872, + [955] = 955, + [956] = 764, + [957] = 729, + [958] = 958, + [959] = 909, [960] = 960, - [961] = 961, - [962] = 961, - [963] = 915, - [964] = 890, + [961] = 935, + [962] = 731, + [963] = 735, + [964] = 879, [965] = 965, [966] = 966, - [967] = 967, + [967] = 734, [968] = 968, - [969] = 969, - [970] = 969, - [971] = 968, - [972] = 916, - [973] = 967, - [974] = 777, - [975] = 886, - [976] = 885, - [977] = 884, - [978] = 756, - [979] = 883, - [980] = 882, - [981] = 881, + [969] = 837, + [970] = 970, + [971] = 895, + [972] = 897, + [973] = 973, + [974] = 827, + [975] = 975, + [976] = 976, + [977] = 900, + [978] = 907, + [979] = 892, + [980] = 890, + [981] = 981, [982] = 925, [983] = 926, - [984] = 944, - [985] = 880, - [986] = 928, - [987] = 929, - [988] = 879, - [989] = 878, - [990] = 877, - [991] = 876, - [992] = 875, - [993] = 966, - [994] = 965, - [995] = 960, - [996] = 895, - [997] = 863, - [998] = 752, - [999] = 835, - [1000] = 868, - [1001] = 865, - [1002] = 898, - [1003] = 954, - [1004] = 874, - [1005] = 871, - [1006] = 870, - [1007] = 869, - [1008] = 777, - [1009] = 947, - [1010] = 953, - [1011] = 952, - [1012] = 939, - [1013] = 941, - [1014] = 946, - [1015] = 945, - [1016] = 942, - [1017] = 943, - [1018] = 900, - [1019] = 902, - [1020] = 951, - [1021] = 904, - [1022] = 940, - [1023] = 936, - [1024] = 907, - [1025] = 921, - [1026] = 935, - [1027] = 933, - [1028] = 920, - [1029] = 908, - [1030] = 918, - [1031] = 909, - [1032] = 922, - [1033] = 923, - [1034] = 917, - [1035] = 913, - [1036] = 906, - [1037] = 924, - [1038] = 969, - [1039] = 947, - [1040] = 904, - [1041] = 902, - [1042] = 878, - [1043] = 877, - [1044] = 900, - [1045] = 737, - [1046] = 941, - [1047] = 732, - [1048] = 731, - [1049] = 733, - [1050] = 729, - [1051] = 731, - [1052] = 729, - [1053] = 737, - [1054] = 953, - [1055] = 876, - [1056] = 875, - [1057] = 954, - [1058] = 960, - [1059] = 898, - [1060] = 868, - [1061] = 865, - [1062] = 913, - [1063] = 952, - [1064] = 880, - [1065] = 881, - [1066] = 939, - [1067] = 966, - [1068] = 883, - [1069] = 884, - [1070] = 885, - [1071] = 961, - [1072] = 886, - [1073] = 887, - [1074] = 933, - [1075] = 864, - [1076] = 888, - [1077] = 935, - [1078] = 936, - [1079] = 917, - [1080] = 940, - [1081] = 882, - [1082] = 733, - [1083] = 918, - [1084] = 873, - [1085] = 915, - [1086] = 874, - [1087] = 889, - [1088] = 916, - [1089] = 890, - [1090] = 913, - [1091] = 872, - [1092] = 871, - [1093] = 891, - [1094] = 870, - [1095] = 869, - [1096] = 942, - [1097] = 909, - [1098] = 908, - [1099] = 951, - [1100] = 924, - [1101] = 777, - [1102] = 732, - [1103] = 929, - [1104] = 943, - [1105] = 923, - [1106] = 945, - [1107] = 932, - [1108] = 968, - [1109] = 967, - [1110] = 966, - [1111] = 965, - [1112] = 907, - [1113] = 928, - [1114] = 906, - [1115] = 894, - [1116] = 946, - [1117] = 896, - [1118] = 895, - [1119] = 879, - [1120] = 863, - [1121] = 944, - [1122] = 920, - [1123] = 926, - [1124] = 925, - [1125] = 1125, - [1126] = 922, - [1127] = 921, - [1128] = 750, - [1129] = 731, - [1130] = 729, - [1131] = 733, - [1132] = 756, - [1133] = 732, - [1134] = 751, - [1135] = 757, - [1136] = 751, - [1137] = 752, - [1138] = 1125, - [1139] = 1139, - [1140] = 754, - [1141] = 737, - [1142] = 756, - [1143] = 731, - [1144] = 757, - [1145] = 732, - [1146] = 729, - [1147] = 732, - [1148] = 1139, - [1149] = 750, - [1150] = 754, - [1151] = 733, - [1152] = 752, - [1153] = 737, - [1154] = 757, - [1155] = 792, - [1156] = 797, - [1157] = 752, - [1158] = 732, - [1159] = 754, - [1160] = 751, - [1161] = 750, - [1162] = 777, - [1163] = 797, - [1164] = 752, - [1165] = 764, - [1166] = 768, - [1167] = 769, - [1168] = 757, - [1169] = 769, - [1170] = 767, - [1171] = 766, - [1172] = 775, - [1173] = 781, + [984] = 843, + [985] = 985, + [986] = 937, + [987] = 938, + [988] = 901, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 904, + [994] = 994, + [995] = 995, + [996] = 941, + [997] = 997, + [998] = 955, + [999] = 997, + [1000] = 943, + [1001] = 1001, + [1002] = 953, + [1003] = 829, + [1004] = 1004, + [1005] = 902, + [1006] = 891, + [1007] = 976, + [1008] = 844, + [1009] = 931, + [1010] = 1010, + [1011] = 946, + [1012] = 896, + [1013] = 968, + [1014] = 973, + [1015] = 954, + [1016] = 970, + [1017] = 981, + [1018] = 985, + [1019] = 958, + [1020] = 960, + [1021] = 966, + [1022] = 991, + [1023] = 992, + [1024] = 975, + [1025] = 990, + [1026] = 878, + [1027] = 1001, + [1028] = 1004, + [1029] = 994, + [1030] = 936, + [1031] = 882, + [1032] = 965, + [1033] = 1010, + [1034] = 940, + [1035] = 911, + [1036] = 1036, + [1037] = 781, + [1038] = 989, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 995, + [1044] = 923, + [1045] = 1045, + [1046] = 760, + [1047] = 1039, + [1048] = 781, + [1049] = 1036, + [1050] = 1045, + [1051] = 1040, + [1052] = 1041, + [1053] = 950, + [1054] = 1042, + [1055] = 877, + [1056] = 887, + [1057] = 937, + [1058] = 734, + [1059] = 941, + [1060] = 905, + [1061] = 731, + [1062] = 907, + [1063] = 909, + [1064] = 953, + [1065] = 896, + [1066] = 989, + [1067] = 731, + [1068] = 922, + [1069] = 881, + [1070] = 732, + [1071] = 921, + [1072] = 902, + [1073] = 1004, + [1074] = 1001, + [1075] = 882, + [1076] = 734, + [1077] = 1010, + [1078] = 894, + [1079] = 904, + [1080] = 931, + [1081] = 729, + [1082] = 735, + [1083] = 878, + [1084] = 1084, + [1085] = 997, + [1086] = 732, + [1087] = 950, + [1088] = 991, + [1089] = 888, + [1090] = 965, + [1091] = 879, + [1092] = 880, + [1093] = 893, + [1094] = 990, + [1095] = 729, + [1096] = 992, + [1097] = 940, + [1098] = 911, + [1099] = 975, + [1100] = 1036, + [1101] = 883, + [1102] = 1039, + [1103] = 970, + [1104] = 884, + [1105] = 985, + [1106] = 994, + [1107] = 885, + [1108] = 735, + [1109] = 886, + [1110] = 995, + [1111] = 895, + [1112] = 892, + [1113] = 900, + [1114] = 943, + [1115] = 935, + [1116] = 917, + [1117] = 901, + [1118] = 966, + [1119] = 955, + [1120] = 890, + [1121] = 960, + [1122] = 781, + [1123] = 916, + [1124] = 950, + [1125] = 958, + [1126] = 954, + [1127] = 1045, + [1128] = 938, + [1129] = 968, + [1130] = 877, + [1131] = 923, + [1132] = 1042, + [1133] = 973, + [1134] = 1041, + [1135] = 891, + [1136] = 897, + [1137] = 925, + [1138] = 926, + [1139] = 919, + [1140] = 946, + [1141] = 976, + [1142] = 921, + [1143] = 1040, + [1144] = 981, + [1145] = 936, + [1146] = 735, + [1147] = 1147, + [1148] = 757, + [1149] = 760, + [1150] = 731, + [1151] = 757, + [1152] = 729, + [1153] = 753, + [1154] = 734, + [1155] = 760, + [1156] = 731, + [1157] = 729, + [1158] = 735, + [1159] = 732, + [1160] = 752, + [1161] = 734, + [1162] = 1084, + [1163] = 758, + [1164] = 764, + [1165] = 753, + [1166] = 752, + [1167] = 1147, + [1168] = 758, + [1169] = 732, + [1170] = 764, + [1171] = 734, + [1172] = 777, + [1173] = 790, [1174] = 781, - [1175] = 788, - [1176] = 779, - [1177] = 750, - [1178] = 783, - [1179] = 756, - [1180] = 766, - [1181] = 775, - [1182] = 788, - [1183] = 777, - [1184] = 772, + [1175] = 768, + [1176] = 758, + [1177] = 792, + [1178] = 753, + [1179] = 764, + [1180] = 760, + [1181] = 781, + [1182] = 753, + [1183] = 760, + [1184] = 758, [1185] = 764, - [1186] = 793, + [1186] = 773, [1187] = 797, - [1188] = 756, - [1189] = 765, - [1190] = 754, - [1191] = 772, + [1188] = 774, + [1189] = 775, + [1190] = 768, + [1191] = 770, [1192] = 783, [1193] = 779, - [1194] = 792, - [1195] = 751, - [1196] = 765, - [1197] = 768, - [1198] = 767, - [1199] = 793, - [1200] = 750, - [1201] = 766, - [1202] = 768, - [1203] = 768, - [1204] = 751, - [1205] = 772, - [1206] = 765, - [1207] = 752, - [1208] = 767, - [1209] = 777, - [1210] = 765, - [1211] = 756, - [1212] = 793, - [1213] = 764, - [1214] = 772, - [1215] = 797, - [1216] = 757, - [1217] = 754, - [1218] = 792, - [1219] = 788, - [1220] = 781, - [1221] = 797, - [1222] = 756, - [1223] = 783, - [1224] = 779, - [1225] = 754, - [1226] = 751, - [1227] = 777, - [1228] = 797, - [1229] = 757, - [1230] = 750, - [1231] = 756, + [1194] = 757, + [1195] = 752, + [1196] = 771, + [1197] = 778, + [1198] = 734, + [1199] = 777, + [1200] = 775, + [1201] = 752, + [1202] = 774, + [1203] = 770, + [1204] = 797, + [1205] = 782, + [1206] = 792, + [1207] = 771, + [1208] = 782, + [1209] = 768, + [1210] = 778, + [1211] = 773, + [1212] = 757, + [1213] = 779, + [1214] = 790, + [1215] = 772, + [1216] = 772, + [1217] = 783, + [1218] = 771, + [1219] = 778, + [1220] = 790, + [1221] = 772, + [1222] = 817, + [1223] = 770, + [1224] = 753, + [1225] = 753, + [1226] = 792, + [1227] = 797, + [1228] = 779, + [1229] = 760, + [1230] = 783, + [1231] = 778, [1232] = 752, - [1233] = 769, - [1234] = 775, - [1235] = 766, - [1236] = 793, - [1237] = 767, - [1238] = 764, - [1239] = 775, - [1240] = 783, - [1241] = 792, - [1242] = 788, - [1243] = 781, - [1244] = 769, - [1245] = 779, - [1246] = 767, - [1247] = 767, - [1248] = 797, - [1249] = 823, - [1250] = 781, - [1251] = 818, - [1252] = 818, - [1253] = 788, - [1254] = 823, - [1255] = 792, - [1256] = 792, - [1257] = 821, - [1258] = 831, - [1259] = 825, - [1260] = 819, - [1261] = 777, - [1262] = 783, - [1263] = 764, - [1264] = 793, - [1265] = 797, - [1266] = 820, - [1267] = 777, - [1268] = 765, - [1269] = 818, - [1270] = 775, - [1271] = 797, - [1272] = 831, - [1273] = 766, - [1274] = 788, - [1275] = 772, - [1276] = 819, - [1277] = 825, - [1278] = 769, - [1279] = 768, - [1280] = 772, - [1281] = 820, - [1282] = 779, - [1283] = 769, - [1284] = 766, - [1285] = 781, - [1286] = 775, - [1287] = 768, - [1288] = 756, - [1289] = 831, - [1290] = 764, - [1291] = 793, - [1292] = 765, - [1293] = 783, - [1294] = 797, - [1295] = 779, - [1296] = 818, - [1297] = 831, - [1298] = 821, - [1299] = 850, + [1233] = 773, + [1234] = 781, + [1235] = 757, + [1236] = 777, + [1237] = 781, + [1238] = 774, + [1239] = 817, + [1240] = 758, + [1241] = 775, + [1242] = 797, + [1243] = 770, + [1244] = 768, + [1245] = 792, + [1246] = 817, + [1247] = 760, + [1248] = 764, + [1249] = 752, + [1250] = 775, + [1251] = 773, + [1252] = 777, + [1253] = 752, + [1254] = 779, + [1255] = 783, + [1256] = 764, + [1257] = 758, + [1258] = 782, + [1259] = 772, + [1260] = 757, + [1261] = 774, + [1262] = 782, + [1263] = 771, + [1264] = 790, + [1265] = 768, + [1266] = 768, + [1267] = 832, + [1268] = 790, + [1269] = 768, + [1270] = 783, + [1271] = 778, + [1272] = 834, + [1273] = 779, + [1274] = 817, + [1275] = 828, + [1276] = 777, + [1277] = 777, + [1278] = 824, + [1279] = 774, + [1280] = 827, + [1281] = 779, + [1282] = 817, + [1283] = 829, + [1284] = 822, + [1285] = 842, + [1286] = 825, + [1287] = 752, + [1288] = 797, + [1289] = 829, + [1290] = 775, + [1291] = 781, + [1292] = 772, + [1293] = 842, + [1294] = 770, + [1295] = 772, + [1296] = 790, + [1297] = 783, + [1298] = 773, + [1299] = 825, [1300] = 823, - [1301] = 818, - [1302] = 831, - [1303] = 820, - [1304] = 752, - [1305] = 966, - [1306] = 823, - [1307] = 833, - [1308] = 831, - [1309] = 818, - [1310] = 752, - [1311] = 819, - [1312] = 819, - [1313] = 825, - [1314] = 754, - [1315] = 834, + [1301] = 834, + [1302] = 837, + [1303] = 827, + [1304] = 827, + [1305] = 771, + [1306] = 792, + [1307] = 782, + [1308] = 792, + [1309] = 782, + [1310] = 817, + [1311] = 842, + [1312] = 829, + [1313] = 774, + [1314] = 832, + [1315] = 771, [1316] = 797, - [1317] = 836, - [1318] = 825, - [1319] = 819, - [1320] = 818, - [1321] = 820, - [1322] = 825, - [1323] = 821, - [1324] = 754, - [1325] = 835, - [1326] = 756, - [1327] = 818, - [1328] = 835, - [1329] = 850, - [1330] = 839, - [1331] = 820, - [1332] = 821, - [1333] = 823, - [1334] = 831, - [1335] = 839, - [1336] = 913, - [1337] = 752, - [1338] = 821, - [1339] = 754, - [1340] = 756, - [1341] = 831, - [1342] = 834, - [1343] = 756, - [1344] = 913, - [1345] = 833, - [1346] = 966, - [1347] = 836, - [1348] = 838, - [1349] = 838, - [1350] = 887, - [1351] = 965, - [1352] = 756, - [1353] = 850, - [1354] = 835, - [1355] = 839, - [1356] = 850, - [1357] = 835, - [1358] = 839, - [1359] = 834, - [1360] = 833, - [1361] = 836, - [1362] = 838, - [1363] = 756, - [1364] = 818, - [1365] = 737, - [1366] = 731, - [1367] = 729, - [1368] = 966, - [1369] = 913, - [1370] = 818, - [1371] = 733, - [1372] = 913, - [1373] = 928, - [1374] = 915, - [1375] = 932, - [1376] = 961, - [1377] = 913, - [1378] = 913, - [1379] = 831, - [1380] = 944, - [1381] = 838, - [1382] = 834, - [1383] = 752, - [1384] = 836, - [1385] = 833, - [1386] = 872, - [1387] = 818, - [1388] = 754, - [1389] = 754, - [1390] = 863, - [1391] = 752, - [1392] = 777, - [1393] = 833, - [1394] = 836, - [1395] = 819, - [1396] = 825, - [1397] = 890, - [1398] = 756, - [1399] = 818, - [1400] = 838, - [1401] = 869, - [1402] = 870, - [1403] = 871, - [1404] = 874, - [1405] = 823, - [1406] = 834, - [1407] = 915, - [1408] = 839, - [1409] = 865, - [1410] = 868, - [1411] = 835, - [1412] = 777, - [1413] = 875, - [1414] = 820, - [1415] = 876, - [1416] = 877, - [1417] = 819, - [1418] = 825, - [1419] = 878, - [1420] = 879, - [1421] = 880, - [1422] = 881, - [1423] = 882, - [1424] = 873, - [1425] = 883, - [1426] = 1426, - [1427] = 913, - [1428] = 884, - [1429] = 885, - [1430] = 886, - [1431] = 850, - [1432] = 916, - [1433] = 756, - [1434] = 966, - [1435] = 925, - [1436] = 926, - [1437] = 929, - [1438] = 939, - [1439] = 941, - [1440] = 888, - [1441] = 821, - [1442] = 895, - [1443] = 889, - [1444] = 823, - [1445] = 891, - [1446] = 942, - [1447] = 821, - [1448] = 932, - [1449] = 898, - [1450] = 943, - [1451] = 900, - [1452] = 902, - [1453] = 904, - [1454] = 906, - [1455] = 881, - [1456] = 966, - [1457] = 907, - [1458] = 894, - [1459] = 896, - [1460] = 908, - [1461] = 909, - [1462] = 831, - [1463] = 872, - [1464] = 961, - [1465] = 917, - [1466] = 918, - [1467] = 890, - [1468] = 920, - [1469] = 921, - [1470] = 922, - [1471] = 923, - [1472] = 924, - [1473] = 944, - [1474] = 966, - [1475] = 951, - [1476] = 933, - [1477] = 864, - [1478] = 935, - [1479] = 936, - [1480] = 940, - [1481] = 952, - [1482] = 953, - [1483] = 954, - [1484] = 754, - [1485] = 945, - [1486] = 946, - [1487] = 947, - [1488] = 831, - [1489] = 863, - [1490] = 818, - [1491] = 960, - [1492] = 752, - [1493] = 870, - [1494] = 871, - [1495] = 874, - [1496] = 969, - [1497] = 865, - [1498] = 968, - [1499] = 965, - [1500] = 967, - [1501] = 966, - [1502] = 820, - [1503] = 967, - [1504] = 968, - [1505] = 969, - [1506] = 868, - [1507] = 947, - [1508] = 946, - [1509] = 945, - [1510] = 875, - [1511] = 960, - [1512] = 876, - [1513] = 877, - [1514] = 878, - [1515] = 954, - [1516] = 879, - [1517] = 953, - [1518] = 952, - [1519] = 873, - [1520] = 951, - [1521] = 940, - [1522] = 936, - [1523] = 935, - [1524] = 864, - [1525] = 933, - [1526] = 924, - [1527] = 913, - [1528] = 923, - [1529] = 966, - [1530] = 752, - [1531] = 922, - [1532] = 754, - [1533] = 921, - [1534] = 777, - [1535] = 896, - [1536] = 920, + [1317] = 770, + [1318] = 829, + [1319] = 781, + [1320] = 778, + [1321] = 775, + [1322] = 768, + [1323] = 834, + [1324] = 773, + [1325] = 828, + [1326] = 768, + [1327] = 837, + [1328] = 837, + [1329] = 828, + [1330] = 768, + [1331] = 823, + [1332] = 822, + [1333] = 842, + [1334] = 824, + [1335] = 842, + [1336] = 869, + [1337] = 825, + [1338] = 822, + [1339] = 852, + [1340] = 844, + [1341] = 850, + [1342] = 825, + [1343] = 843, + [1344] = 842, + [1345] = 824, + [1346] = 760, + [1347] = 855, + [1348] = 752, + [1349] = 764, + [1350] = 829, + [1351] = 823, + [1352] = 768, + [1353] = 837, + [1354] = 834, + [1355] = 752, + [1356] = 842, + [1357] = 869, + [1358] = 828, + [1359] = 832, + [1360] = 829, + [1361] = 823, + [1362] = 843, + [1363] = 764, + [1364] = 834, + [1365] = 834, + [1366] = 828, + [1367] = 760, + [1368] = 827, + [1369] = 856, + [1370] = 829, + [1371] = 837, + [1372] = 844, + [1373] = 832, + [1374] = 827, + [1375] = 855, + [1376] = 760, + [1377] = 764, + [1378] = 832, + [1379] = 842, + [1380] = 825, + [1381] = 822, + [1382] = 950, + [1383] = 817, + [1384] = 752, + [1385] = 817, + [1386] = 823, + [1387] = 921, + [1388] = 828, + [1389] = 824, + [1390] = 856, + [1391] = 824, + [1392] = 921, + [1393] = 829, + [1394] = 950, + [1395] = 852, + [1396] = 837, + [1397] = 827, + [1398] = 850, + [1399] = 822, + [1400] = 925, + [1401] = 886, + [1402] = 890, + [1403] = 892, + [1404] = 895, + [1405] = 825, + [1406] = 822, + [1407] = 1001, + [1408] = 937, + [1409] = 955, + [1410] = 904, + [1411] = 855, + [1412] = 844, + [1413] = 843, + [1414] = 869, + [1415] = 902, + [1416] = 922, + [1417] = 850, + [1418] = 852, + [1419] = 823, + [1420] = 856, + [1421] = 882, + [1422] = 764, + [1423] = 1004, + [1424] = 760, + [1425] = 935, + [1426] = 829, + [1427] = 764, + [1428] = 919, + [1429] = 732, + [1430] = 917, + [1431] = 997, + [1432] = 923, + [1433] = 729, + [1434] = 916, + [1435] = 781, + [1436] = 735, + [1437] = 1010, + [1438] = 921, + [1439] = 752, + [1440] = 965, + [1441] = 940, + [1442] = 829, + [1443] = 911, + [1444] = 936, + [1445] = 916, + [1446] = 752, + [1447] = 760, + [1448] = 917, + [1449] = 919, + [1450] = 824, + [1451] = 921, + [1452] = 922, + [1453] = 824, + [1454] = 985, + [1455] = 981, + [1456] = 823, + [1457] = 904, + [1458] = 973, + [1459] = 950, + [1460] = 955, + [1461] = 1001, + [1462] = 1004, + [1463] = 895, + [1464] = 781, + [1465] = 731, + [1466] = 1010, + [1467] = 892, + [1468] = 890, + [1469] = 950, + [1470] = 954, + [1471] = 760, + [1472] = 970, + [1473] = 975, + [1474] = 990, + [1475] = 878, + [1476] = 1040, + [1477] = 829, + [1478] = 989, + [1479] = 1041, + [1480] = 953, + [1481] = 1042, + [1482] = 936, + [1483] = 877, + [1484] = 764, + [1485] = 970, + [1486] = 921, + [1487] = 943, + [1488] = 901, + [1489] = 905, + [1490] = 781, + [1491] = 837, + [1492] = 1045, + [1493] = 941, + [1494] = 1039, + [1495] = 997, + [1496] = 907, + [1497] = 900, + [1498] = 842, + [1499] = 1036, + [1500] = 975, + [1501] = 990, + [1502] = 901, + [1503] = 954, + [1504] = 878, + [1505] = 827, + [1506] = 832, + [1507] = 764, + [1508] = 995, + [1509] = 968, + [1510] = 760, + [1511] = 909, + [1512] = 1040, + [1513] = 994, + [1514] = 1041, + [1515] = 992, + [1516] = 855, + [1517] = 985, + [1518] = 829, + [1519] = 991, + [1520] = 828, + [1521] = 966, + [1522] = 960, + [1523] = 896, + [1524] = 981, + [1525] = 938, + [1526] = 844, + [1527] = 1042, + [1528] = 958, + [1529] = 877, + [1530] = 937, + [1531] = 973, + [1532] = 843, + [1533] = 968, + [1534] = 1045, + [1535] = 946, + [1536] = 931, [1537] = 894, - [1538] = 880, - [1539] = 918, - [1540] = 943, - [1541] = 942, - [1542] = 917, - [1543] = 941, - [1544] = 939, - [1545] = 891, - [1546] = 869, - [1547] = 889, - [1548] = 929, - [1549] = 888, - [1550] = 887, - [1551] = 886, - [1552] = 885, - [1553] = 928, - [1554] = 926, - [1555] = 925, - [1556] = 895, - [1557] = 916, - [1558] = 898, - [1559] = 884, - [1560] = 900, - [1561] = 902, - [1562] = 904, - [1563] = 906, - [1564] = 907, - [1565] = 883, - [1566] = 908, - [1567] = 909, - [1568] = 882, - [1569] = 890, - [1570] = 932, - [1571] = 944, - [1572] = 754, - [1573] = 863, - [1574] = 818, - [1575] = 777, - [1576] = 869, - [1577] = 870, - [1578] = 756, - [1579] = 871, - [1580] = 872, - [1581] = 874, - [1582] = 961, - [1583] = 865, - [1584] = 868, - [1585] = 754, - [1586] = 850, - [1587] = 752, - [1588] = 875, - [1589] = 752, - [1590] = 876, - [1591] = 877, - [1592] = 878, - [1593] = 879, - [1594] = 966, - [1595] = 880, - [1596] = 881, - [1597] = 882, - [1598] = 883, - [1599] = 961, - [1600] = 915, - [1601] = 884, - [1602] = 872, - [1603] = 885, - [1604] = 886, - [1605] = 1605, - [1606] = 835, - [1607] = 887, + [1538] = 926, + [1539] = 893, + [1540] = 752, + [1541] = 1039, + [1542] = 931, + [1543] = 842, + [1544] = 827, + [1545] = 832, + [1546] = 897, + [1547] = 946, + [1548] = 921, + [1549] = 938, + [1550] = 869, + [1551] = 958, + [1552] = 822, + [1553] = 825, + [1554] = 834, + [1555] = 976, + [1556] = 881, + [1557] = 879, + [1558] = 880, + [1559] = 1036, + [1560] = 905, + [1561] = 883, + [1562] = 923, + [1563] = 884, + [1564] = 926, + [1565] = 925, + [1566] = 752, + [1567] = 885, + [1568] = 886, + [1569] = 960, + [1570] = 897, + [1571] = 887, + [1572] = 855, + [1573] = 950, + [1574] = 856, + [1575] = 966, + [1576] = 935, + [1577] = 1577, + [1578] = 844, + [1579] = 837, + [1580] = 852, + [1581] = 850, + [1582] = 843, + [1583] = 991, + [1584] = 850, + [1585] = 911, + [1586] = 940, + [1587] = 852, + [1588] = 842, + [1589] = 950, + [1590] = 894, + [1591] = 893, + [1592] = 965, + [1593] = 856, + [1594] = 882, + [1595] = 909, + [1596] = 995, + [1597] = 896, + [1598] = 950, + [1599] = 902, + [1600] = 950, + [1601] = 829, + [1602] = 921, + [1603] = 834, + [1604] = 989, + [1605] = 953, + [1606] = 943, + [1607] = 941, [1608] = 888, - [1609] = 777, - [1610] = 839, - [1611] = 889, - [1612] = 890, - [1613] = 891, - [1614] = 944, - [1615] = 873, - [1616] = 750, - [1617] = 894, - [1618] = 834, - [1619] = 932, - [1620] = 863, - [1621] = 818, - [1622] = 896, - [1623] = 915, - [1624] = 831, - [1625] = 850, - [1626] = 835, - [1627] = 839, - [1628] = 834, - [1629] = 833, - [1630] = 836, - [1631] = 833, - [1632] = 836, - [1633] = 916, - [1634] = 838, - [1635] = 925, - [1636] = 926, - [1637] = 928, - [1638] = 928, - [1639] = 898, - [1640] = 929, - [1641] = 838, - [1642] = 939, - [1643] = 895, - [1644] = 869, - [1645] = 898, - [1646] = 941, - [1647] = 900, - [1648] = 870, - [1649] = 902, - [1650] = 942, - [1651] = 943, - [1652] = 871, - [1653] = 951, - [1654] = 904, - [1655] = 952, - [1656] = 874, - [1657] = 865, - [1658] = 953, - [1659] = 868, - [1660] = 954, - [1661] = 873, - [1662] = 913, - [1663] = 875, - [1664] = 906, - [1665] = 907, - [1666] = 876, - [1667] = 908, - [1668] = 909, - [1669] = 877, - [1670] = 960, - [1671] = 878, - [1672] = 879, - [1673] = 917, - [1674] = 918, - [1675] = 966, - [1676] = 969, - [1677] = 968, - [1678] = 967, - [1679] = 965, - [1680] = 947, - [1681] = 920, + [1609] = 907, + [1610] = 994, + [1611] = 900, + [1612] = 828, + [1613] = 976, + [1614] = 879, + [1615] = 887, + [1616] = 880, + [1617] = 883, + [1618] = 992, + [1619] = 869, + [1620] = 884, + [1621] = 885, + [1622] = 888, + [1623] = 891, + [1624] = 881, + [1625] = 891, + [1626] = 921, + [1627] = 855, + [1628] = 829, + [1629] = 922, + [1630] = 1045, + [1631] = 877, + [1632] = 1042, + [1633] = 1041, + [1634] = 1040, + [1635] = 919, + [1636] = 884, + [1637] = 917, + [1638] = 916, + [1639] = 888, + [1640] = 881, + [1641] = 901, + [1642] = 878, + [1643] = 990, + [1644] = 886, + [1645] = 1039, + [1646] = 1036, + [1647] = 885, + [1648] = 975, + [1649] = 884, + [1650] = 883, + [1651] = 880, + [1652] = 879, + [1653] = 976, + [1654] = 970, + [1655] = 900, + [1656] = 907, + [1657] = 895, + [1658] = 954, + [1659] = 941, + [1660] = 943, + [1661] = 892, + [1662] = 904, + [1663] = 890, + [1664] = 955, + [1665] = 886, + [1666] = 954, + [1667] = 953, + [1668] = 1001, + [1669] = 995, + [1670] = 1004, + [1671] = 994, + [1672] = 992, + [1673] = 1010, + [1674] = 991, + [1675] = 989, + [1676] = 890, + [1677] = 892, + [1678] = 895, + [1679] = 966, + [1680] = 960, + [1681] = 958, [1682] = 946, - [1683] = 945, - [1684] = 940, - [1685] = 921, - [1686] = 922, - [1687] = 923, - [1688] = 924, - [1689] = 933, - [1690] = 864, - [1691] = 935, - [1692] = 936, - [1693] = 940, - [1694] = 936, - [1695] = 1695, - [1696] = 777, - [1697] = 935, - [1698] = 864, - [1699] = 933, - [1700] = 924, - [1701] = 923, - [1702] = 922, - [1703] = 921, - [1704] = 777, - [1705] = 945, - [1706] = 946, - [1707] = 947, - [1708] = 920, - [1709] = 896, - [1710] = 737, - [1711] = 918, - [1712] = 965, - [1713] = 966, - [1714] = 967, + [1683] = 950, + [1684] = 901, + [1685] = 931, + [1686] = 935, + [1687] = 885, + [1688] = 970, + [1689] = 975, + [1690] = 909, + [1691] = 990, + [1692] = 878, + [1693] = 1040, + [1694] = 1041, + [1695] = 922, + [1696] = 921, + [1697] = 1042, + [1698] = 752, + [1699] = 937, + [1700] = 877, + [1701] = 902, + [1702] = 896, + [1703] = 882, + [1704] = 965, + [1705] = 919, + [1706] = 985, + [1707] = 917, + [1708] = 1045, + [1709] = 916, + [1710] = 891, + [1711] = 760, + [1712] = 981, + [1713] = 973, + [1714] = 1039, [1715] = 968, - [1716] = 969, - [1717] = 894, - [1718] = 917, - [1719] = 891, - [1720] = 889, - [1721] = 888, - [1722] = 887, - [1723] = 886, - [1724] = 885, - [1725] = 884, - [1726] = 960, - [1727] = 883, - [1728] = 916, - [1729] = 882, - [1730] = 881, - [1731] = 954, - [1732] = 953, - [1733] = 925, - [1734] = 926, - [1735] = 952, - [1736] = 873, - [1737] = 928, - [1738] = 929, - [1739] = 951, - [1740] = 880, - [1741] = 909, - [1742] = 879, - [1743] = 878, - [1744] = 877, - [1745] = 876, - [1746] = 875, - [1747] = 939, - [1748] = 941, - [1749] = 908, - [1750] = 756, - [1751] = 942, - [1752] = 943, - [1753] = 868, - [1754] = 865, - [1755] = 907, - [1756] = 874, - [1757] = 871, - [1758] = 870, - [1759] = 869, - [1760] = 906, - [1761] = 890, - [1762] = 754, - [1763] = 943, - [1764] = 942, - [1765] = 904, - [1766] = 941, - [1767] = 939, - [1768] = 929, - [1769] = 902, - [1770] = 872, - [1771] = 926, - [1772] = 925, - [1773] = 900, - [1774] = 895, - [1775] = 752, - [1776] = 863, - [1777] = 916, - [1778] = 1426, - [1779] = 913, - [1780] = 898, - [1781] = 944, - [1782] = 951, - [1783] = 961, - [1784] = 952, - [1785] = 953, - [1786] = 896, - [1787] = 954, - [1788] = 895, - [1789] = 932, - [1790] = 960, - [1791] = 733, - [1792] = 969, - [1793] = 968, - [1794] = 967, - [1795] = 894, - [1796] = 965, - [1797] = 891, - [1798] = 889, - [1799] = 888, - [1800] = 887, - [1801] = 915, - [1802] = 886, - [1803] = 885, - [1804] = 947, - [1805] = 946, - [1806] = 945, - [1807] = 1807, - [1808] = 913, - [1809] = 884, - [1810] = 729, - [1811] = 940, - [1812] = 936, - [1813] = 935, - [1814] = 864, - [1815] = 933, - [1816] = 924, - [1817] = 923, - [1818] = 922, - [1819] = 921, - [1820] = 920, - [1821] = 883, - [1822] = 918, - [1823] = 917, - [1824] = 731, - [1825] = 882, - [1826] = 909, - [1827] = 908, - [1828] = 881, - [1829] = 907, - [1830] = 906, - [1831] = 904, - [1832] = 902, - [1833] = 900, - [1834] = 880, - [1835] = 922, - [1836] = 969, - [1837] = 879, - [1838] = 878, - [1839] = 777, - [1840] = 902, - [1841] = 904, - [1842] = 751, - [1843] = 877, - [1844] = 876, - [1845] = 875, - [1846] = 942, - [1847] = 943, - [1848] = 943, - [1849] = 906, - [1850] = 942, - [1851] = 941, - [1852] = 939, - [1853] = 951, - [1854] = 952, - [1855] = 1855, - [1856] = 953, - [1857] = 757, + [1716] = 887, + [1717] = 1036, + [1718] = 888, + [1719] = 901, + [1720] = 891, + [1721] = 940, + [1722] = 911, + [1723] = 997, + [1724] = 938, + [1725] = 937, + [1726] = 881, + [1727] = 926, + [1728] = 925, + [1729] = 936, + [1730] = 997, + [1731] = 897, + [1732] = 752, + [1733] = 844, + [1734] = 995, + [1735] = 994, + [1736] = 992, + [1737] = 991, + [1738] = 966, + [1739] = 960, + [1740] = 958, + [1741] = 731, + [1742] = 911, + [1743] = 897, + [1744] = 904, + [1745] = 753, + [1746] = 936, + [1747] = 883, + [1748] = 925, + [1749] = 926, + [1750] = 955, + [1751] = 880, + [1752] = 937, + [1753] = 938, + [1754] = 842, + [1755] = 923, + [1756] = 1756, + [1757] = 1001, + [1758] = 781, + [1759] = 1004, + [1760] = 887, + [1761] = 935, + [1762] = 1010, + [1763] = 968, + [1764] = 973, + [1765] = 879, + [1766] = 891, + [1767] = 981, + [1768] = 985, + [1769] = 843, + [1770] = 940, + [1771] = 997, + [1772] = 965, + [1773] = 882, + [1774] = 950, + [1775] = 764, + [1776] = 760, + [1777] = 781, + [1778] = 732, + [1779] = 869, + [1780] = 729, + [1781] = 735, + [1782] = 911, + [1783] = 940, + [1784] = 965, + [1785] = 923, + [1786] = 764, + [1787] = 882, + [1788] = 896, + [1789] = 902, + [1790] = 989, + [1791] = 953, + [1792] = 943, + [1793] = 941, + [1794] = 946, + [1795] = 907, + [1796] = 950, + [1797] = 905, + [1798] = 935, + [1799] = 900, + [1800] = 896, + [1801] = 902, + [1802] = 850, + [1803] = 856, + [1804] = 893, + [1805] = 936, + [1806] = 1010, + [1807] = 894, + [1808] = 1004, + [1809] = 1001, + [1810] = 855, + [1811] = 955, + [1812] = 852, + [1813] = 905, + [1814] = 904, + [1815] = 989, + [1816] = 953, + [1817] = 844, + [1818] = 843, + [1819] = 856, + [1820] = 1577, + [1821] = 976, + [1822] = 1822, + [1823] = 760, + [1824] = 909, + [1825] = 869, + [1826] = 894, + [1827] = 894, + [1828] = 852, + [1829] = 764, + [1830] = 985, + [1831] = 850, + [1832] = 916, + [1833] = 917, + [1834] = 919, + [1835] = 931, + [1836] = 893, + [1837] = 922, + [1838] = 981, + [1839] = 1839, + [1840] = 883, + [1841] = 880, + [1842] = 973, + [1843] = 893, + [1844] = 968, + [1845] = 781, + [1846] = 921, + [1847] = 923, + [1848] = 829, + [1849] = 781, + [1850] = 881, + [1851] = 895, + [1852] = 892, + [1853] = 890, + [1854] = 879, + [1855] = 888, + [1856] = 887, + [1857] = 886, [1858] = 954, - [1859] = 1695, - [1860] = 960, - [1861] = 969, - [1862] = 968, - [1863] = 961, - [1864] = 915, - [1865] = 967, - [1866] = 965, - [1867] = 907, - [1868] = 1868, - [1869] = 873, - [1870] = 915, - [1871] = 929, - [1872] = 947, - [1873] = 932, - [1874] = 908, - [1875] = 946, - [1876] = 945, - [1877] = 928, - [1878] = 926, - [1879] = 925, - [1880] = 940, - [1881] = 909, - [1882] = 936, - [1883] = 935, - [1884] = 868, - [1885] = 917, - [1886] = 783, - [1887] = 961, - [1888] = 864, - [1889] = 933, - [1890] = 865, - [1891] = 924, - [1892] = 944, - [1893] = 923, - [1894] = 874, - [1895] = 872, - [1896] = 863, - [1897] = 918, - [1898] = 920, - [1899] = 898, - [1900] = 1900, - [1901] = 1901, - [1902] = 921, - [1903] = 872, - [1904] = 922, - [1905] = 871, - [1906] = 870, - [1907] = 890, - [1908] = 923, - [1909] = 924, - [1910] = 932, - [1911] = 944, - [1912] = 896, - [1913] = 941, - [1914] = 895, - [1915] = 933, - [1916] = 869, - [1917] = 921, - [1918] = 864, - [1919] = 894, - [1920] = 920, - [1921] = 916, - [1922] = 777, - [1923] = 869, - [1924] = 788, - [1925] = 870, - [1926] = 779, - [1927] = 871, - [1928] = 874, - [1929] = 918, - [1930] = 917, - [1931] = 865, - [1932] = 868, - [1933] = 875, - [1934] = 876, - [1935] = 863, - [1936] = 877, - [1937] = 878, - [1938] = 879, - [1939] = 880, - [1940] = 935, - [1941] = 909, - [1942] = 936, - [1943] = 881, - [1944] = 882, - [1945] = 940, - [1946] = 883, - [1947] = 908, - [1948] = 907, - [1949] = 906, - [1950] = 884, - [1951] = 885, - [1952] = 945, - [1953] = 904, - [1954] = 902, - [1955] = 1955, - [1956] = 900, - [1957] = 886, - [1958] = 946, - [1959] = 887, - [1960] = 947, - [1961] = 898, - [1962] = 888, - [1963] = 889, - [1964] = 891, - [1965] = 881, - [1966] = 894, - [1967] = 896, - [1968] = 895, - [1969] = 882, - [1970] = 883, - [1971] = 884, - [1972] = 885, - [1973] = 777, - [1974] = 965, - [1975] = 873, - [1976] = 1807, - [1977] = 967, - [1978] = 752, - [1979] = 968, - [1980] = 754, - [1981] = 880, - [1982] = 886, - [1983] = 939, - [1984] = 1605, - [1985] = 887, - [1986] = 1986, - [1987] = 888, - [1988] = 889, - [1989] = 929, - [1990] = 960, - [1991] = 890, - [1992] = 900, - [1993] = 954, - [1994] = 953, - [1995] = 891, - [1996] = 928, - [1997] = 926, - [1998] = 952, - [1999] = 1999, - [2000] = 925, - [2001] = 951, - [2002] = 916, - [2003] = 750, + [1859] = 970, + [1860] = 975, + [1861] = 990, + [1862] = 878, + [1863] = 1040, + [1864] = 1041, + [1865] = 1042, + [1866] = 877, + [1867] = 1045, + [1868] = 921, + [1869] = 1039, + [1870] = 1036, + [1871] = 909, + [1872] = 943, + [1873] = 995, + [1874] = 994, + [1875] = 941, + [1876] = 992, + [1877] = 991, + [1878] = 966, + [1879] = 960, + [1880] = 958, + [1881] = 907, + [1882] = 946, + [1883] = 897, + [1884] = 931, + [1885] = 900, + [1886] = 925, + [1887] = 926, + [1888] = 976, + [1889] = 885, + [1890] = 938, + [1891] = 884, + [1892] = 905, + [1893] = 779, + [1894] = 884, + [1895] = 1041, + [1896] = 975, + [1897] = 1897, + [1898] = 1040, + [1899] = 1001, + [1900] = 955, + [1901] = 904, + [1902] = 985, + [1903] = 990, + [1904] = 1839, + [1905] = 878, + [1906] = 916, + [1907] = 775, + [1908] = 970, + [1909] = 917, + [1910] = 919, + [1911] = 954, + [1912] = 968, + [1913] = 922, + [1914] = 938, + [1915] = 758, + [1916] = 1042, + [1917] = 937, + [1918] = 926, + [1919] = 877, + [1920] = 1045, + [1921] = 781, + [1922] = 925, + [1923] = 1039, + [1924] = 1924, + [1925] = 753, + [1926] = 1036, + [1927] = 895, + [1928] = 1928, + [1929] = 995, + [1930] = 994, + [1931] = 909, + [1932] = 992, + [1933] = 991, + [1934] = 966, + [1935] = 960, + [1936] = 958, + [1937] = 905, + [1938] = 946, + [1939] = 890, + [1940] = 931, + [1941] = 892, + [1942] = 895, + [1943] = 891, + [1944] = 757, + [1945] = 892, + [1946] = 890, + [1947] = 1001, + [1948] = 774, + [1949] = 909, + [1950] = 781, + [1951] = 911, + [1952] = 1010, + [1953] = 891, + [1954] = 997, + [1955] = 922, + [1956] = 940, + [1957] = 923, + [1958] = 897, + [1959] = 965, + [1960] = 936, + [1961] = 882, + [1962] = 896, + [1963] = 902, + [1964] = 935, + [1965] = 905, + [1966] = 954, + [1967] = 919, + [1968] = 970, + [1969] = 975, + [1970] = 917, + [1971] = 916, + [1972] = 990, + [1973] = 1973, + [1974] = 1974, + [1975] = 1756, + [1976] = 997, + [1977] = 878, + [1978] = 760, + [1979] = 764, + [1980] = 989, + [1981] = 953, + [1982] = 1040, + [1983] = 1822, + [1984] = 904, + [1985] = 955, + [1986] = 885, + [1987] = 1004, + [1988] = 943, + [1989] = 941, + [1990] = 907, + [1991] = 900, + [1992] = 1010, + [1993] = 1993, + [1994] = 1041, + [1995] = 1042, + [1996] = 976, + [1997] = 879, + [1998] = 877, + [1999] = 1045, + [2000] = 936, + [2001] = 880, + [2002] = 973, + [2003] = 883, [2004] = 2004, - [2005] = 788, - [2006] = 1986, - [2007] = 2007, - [2008] = 1901, - [2009] = 764, - [2010] = 765, - [2011] = 1955, - [2012] = 772, - [2013] = 793, - [2014] = 768, - [2015] = 1900, - [2016] = 777, - [2017] = 2004, - [2018] = 792, - [2019] = 1999, + [2005] = 1039, + [2006] = 2006, + [2007] = 886, + [2008] = 887, + [2009] = 1036, + [2010] = 888, + [2011] = 881, + [2012] = 911, + [2013] = 940, + [2014] = 965, + [2015] = 923, + [2016] = 882, + [2017] = 896, + [2018] = 902, + [2019] = 935, [2020] = 781, - [2021] = 1868, - [2022] = 775, - [2023] = 767, - [2024] = 757, - [2025] = 769, - [2026] = 779, - [2027] = 766, - [2028] = 751, - [2029] = 783, - [2030] = 1855, - [2031] = 2031, - [2032] = 775, - [2033] = 781, - [2034] = 792, - [2035] = 764, - [2036] = 2036, - [2037] = 793, - [2038] = 772, - [2039] = 768, - [2040] = 769, - [2041] = 767, - [2042] = 766, - [2043] = 765, - [2044] = 2044, - [2045] = 2044, - [2046] = 2044, - [2047] = 2047, - [2048] = 2047, - [2049] = 2049, - [2050] = 2049, - [2051] = 2049, - [2052] = 2047, - [2053] = 2044, - [2054] = 2049, - [2055] = 2047, - [2056] = 2056, - [2057] = 2056, - [2058] = 2056, - [2059] = 2007, - [2060] = 2031, - [2061] = 2056, - [2062] = 2007, - [2063] = 2056, - [2064] = 2064, - [2065] = 2031, - [2066] = 2031, - [2067] = 2031, - [2068] = 2031, - [2069] = 2007, - [2070] = 2036, - [2071] = 2007, - [2072] = 2064, - [2073] = 2007, - [2074] = 2031, - [2075] = 2031, - [2076] = 2036, - [2077] = 2007, - [2078] = 2007, - [2079] = 2079, - [2080] = 2080, - [2081] = 2036, - [2082] = 2082, - [2083] = 2083, - [2084] = 2036, - [2085] = 2007, - [2086] = 2031, - [2087] = 2007, - [2088] = 2088, - [2089] = 2036, - [2090] = 2090, - [2091] = 2036, - [2092] = 2036, - [2093] = 2093, - [2094] = 2094, - [2095] = 2031, - [2096] = 818, - [2097] = 2097, - [2098] = 2098, - [2099] = 2083, - [2100] = 2100, - [2101] = 2101, - [2102] = 818, - [2103] = 2093, - [2104] = 2104, - [2105] = 2090, - [2106] = 2082, + [2021] = 925, + [2022] = 985, + [2023] = 893, + [2024] = 894, + [2025] = 989, + [2026] = 953, + [2027] = 943, + [2028] = 941, + [2029] = 901, + [2030] = 907, + [2031] = 900, + [2032] = 976, + [2033] = 879, + [2034] = 880, + [2035] = 883, + [2036] = 884, + [2037] = 885, + [2038] = 886, + [2039] = 887, + [2040] = 888, + [2041] = 901, + [2042] = 881, + [2043] = 995, + [2044] = 994, + [2045] = 992, + [2046] = 981, + [2047] = 991, + [2048] = 897, + [2049] = 893, + [2050] = 926, + [2051] = 937, + [2052] = 938, + [2053] = 981, + [2054] = 931, + [2055] = 894, + [2056] = 1004, + [2057] = 973, + [2058] = 946, + [2059] = 968, + [2060] = 966, + [2061] = 960, + [2062] = 958, + [2063] = 771, + [2064] = 1974, + [2065] = 758, + [2066] = 772, + [2067] = 2067, + [2068] = 775, + [2069] = 782, + [2070] = 2070, + [2071] = 778, + [2072] = 770, + [2073] = 797, + [2074] = 774, + [2075] = 792, + [2076] = 2004, + [2077] = 2006, + [2078] = 773, + [2079] = 790, + [2080] = 777, + [2081] = 779, + [2082] = 1897, + [2083] = 1973, + [2084] = 783, + [2085] = 781, + [2086] = 1928, + [2087] = 1993, + [2088] = 757, + [2089] = 1924, + [2090] = 777, + [2091] = 782, + [2092] = 778, + [2093] = 773, + [2094] = 772, + [2095] = 2095, + [2096] = 783, + [2097] = 790, + [2098] = 770, + [2099] = 797, + [2100] = 792, + [2101] = 771, + [2102] = 2102, + [2103] = 2102, + [2104] = 2102, + [2105] = 2105, + [2106] = 2102, [2107] = 2107, - [2108] = 2108, - [2109] = 2036, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2080, - [2114] = 2114, - [2115] = 2115, - [2116] = 2036, + [2108] = 2107, + [2109] = 2105, + [2110] = 2107, + [2111] = 2105, + [2112] = 2107, + [2113] = 2105, + [2114] = 2067, + [2115] = 2070, + [2116] = 2116, [2117] = 2117, - [2118] = 2118, - [2119] = 2079, - [2120] = 2120, - [2121] = 2121, - [2122] = 2094, - [2123] = 2097, - [2124] = 2088, - [2125] = 2125, - [2126] = 2115, - [2127] = 2120, - [2128] = 2125, - [2129] = 2098, - [2130] = 2114, - [2131] = 2101, - [2132] = 2107, - [2133] = 2111, - [2134] = 2104, - [2135] = 2117, - [2136] = 2118, - [2137] = 2121, - [2138] = 2110, - [2139] = 2100, - [2140] = 2112, - [2141] = 2108, + [2118] = 2070, + [2119] = 2116, + [2120] = 2116, + [2121] = 2116, + [2122] = 2067, + [2123] = 2116, + [2124] = 2117, + [2125] = 2095, + [2126] = 2067, + [2127] = 2067, + [2128] = 2095, + [2129] = 2070, + [2130] = 2067, + [2131] = 2067, + [2132] = 2067, + [2133] = 2070, + [2134] = 2070, + [2135] = 2070, + [2136] = 2070, + [2137] = 2137, + [2138] = 2095, + [2139] = 2095, + [2140] = 2095, + [2141] = 2095, [2142] = 2142, - [2143] = 2142, - [2144] = 2142, - [2145] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, [2146] = 2146, [2147] = 2147, [2148] = 2148, [2149] = 2149, - [2150] = 2150, - [2151] = 2148, - [2152] = 2152, - [2153] = 2152, - [2154] = 2154, - [2155] = 2152, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2157, - [2160] = 2156, - [2161] = 2158, - [2162] = 2152, - [2163] = 2163, - [2164] = 2163, - [2165] = 2149, - [2166] = 2156, + [2150] = 2067, + [2151] = 829, + [2152] = 2067, + [2153] = 2070, + [2154] = 2095, + [2155] = 2070, + [2156] = 2145, + [2157] = 2137, + [2158] = 2146, + [2159] = 2143, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, + [2163] = 2149, + [2164] = 2164, + [2165] = 2095, + [2166] = 2166, [2167] = 2167, - [2168] = 2152, - [2169] = 2163, - [2170] = 2147, - [2171] = 2152, - [2172] = 2152, - [2173] = 2163, - [2174] = 2156, - [2175] = 2157, - [2176] = 2158, - [2177] = 2158, - [2178] = 2157, - [2179] = 2157, - [2180] = 2146, - [2181] = 2156, - [2182] = 2157, - [2183] = 2158, - [2184] = 2156, - [2185] = 2152, - [2186] = 2150, - [2187] = 2152, - [2188] = 2163, - [2189] = 2163, - [2190] = 2163, - [2191] = 2163, - [2192] = 2192, - [2193] = 2158, - [2194] = 2156, - [2195] = 2158, - [2196] = 2156, - [2197] = 2157, - [2198] = 2158, - [2199] = 2158, - [2200] = 2157, - [2201] = 2156, - [2202] = 2163, - [2203] = 2152, - [2204] = 2163, - [2205] = 2158, - [2206] = 2157, - [2207] = 2156, - [2208] = 2157, + [2168] = 2168, + [2169] = 2148, + [2170] = 2170, + [2171] = 829, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2142, + [2179] = 2095, + [2180] = 2147, + [2181] = 2181, + [2182] = 2182, + [2183] = 2144, + [2184] = 2176, + [2185] = 2166, + [2186] = 2161, + [2187] = 2160, + [2188] = 2174, + [2189] = 2181, + [2190] = 2175, + [2191] = 2164, + [2192] = 2173, + [2193] = 2182, + [2194] = 2177, + [2195] = 2162, + [2196] = 2172, + [2197] = 2167, + [2198] = 2170, + [2199] = 2168, + [2200] = 2200, + [2201] = 2200, + [2202] = 2200, + [2203] = 2200, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, [2209] = 2209, - [2210] = 2210, + [2210] = 2209, [2211] = 2211, - [2212] = 2192, - [2213] = 2213, + [2212] = 2212, + [2213] = 2208, [2214] = 2211, - [2215] = 2209, + [2215] = 2215, [2216] = 2216, - [2217] = 2211, - [2218] = 2167, + [2217] = 2212, + [2218] = 2212, [2219] = 2209, - [2220] = 2209, - [2221] = 2211, - [2222] = 2222, - [2223] = 2222, - [2224] = 2224, - [2225] = 2224, + [2220] = 2220, + [2221] = 2220, + [2222] = 2220, + [2223] = 2220, + [2224] = 2216, + [2225] = 2220, [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, + [2227] = 2212, + [2228] = 2206, + [2229] = 2216, [2230] = 2230, - [2231] = 2231, - [2232] = 2222, - [2233] = 2224, - [2234] = 2234, - [2235] = 2230, - [2236] = 2227, - [2237] = 2222, - [2238] = 2229, - [2239] = 2239, - [2240] = 2240, - [2241] = 2231, - [2242] = 2227, - [2243] = 2243, - [2244] = 2229, - [2245] = 2222, - [2246] = 2229, - [2247] = 2230, - [2248] = 2222, - [2249] = 2249, - [2250] = 2229, - [2251] = 2227, - [2252] = 2230, - [2253] = 2222, - [2254] = 2229, - [2255] = 2255, - [2256] = 750, - [2257] = 2222, - [2258] = 2231, - [2259] = 2229, - [2260] = 2229, - [2261] = 752, - [2262] = 2231, - [2263] = 2224, - [2264] = 2224, - [2265] = 2222, - [2266] = 2229, - [2267] = 2224, - [2268] = 2224, - [2269] = 2229, - [2270] = 2224, - [2271] = 2222, - [2272] = 2272, - [2273] = 2224, - [2274] = 754, - [2275] = 2224, + [2231] = 2216, + [2232] = 2209, + [2233] = 2216, + [2234] = 2216, + [2235] = 2212, + [2236] = 2216, + [2237] = 2212, + [2238] = 2220, + [2239] = 2211, + [2240] = 2209, + [2241] = 2209, + [2242] = 2211, + [2243] = 2209, + [2244] = 2211, + [2245] = 2211, + [2246] = 2212, + [2247] = 2211, + [2248] = 2209, + [2249] = 2220, + [2250] = 2211, + [2251] = 2216, + [2252] = 2211, + [2253] = 2209, + [2254] = 2205, + [2255] = 2220, + [2256] = 2212, + [2257] = 2211, + [2258] = 2216, + [2259] = 2212, + [2260] = 2204, + [2261] = 2220, + [2262] = 2216, + [2263] = 2212, + [2264] = 2207, + [2265] = 2209, + [2266] = 2220, + [2267] = 2226, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2230, + [2272] = 2269, + [2273] = 2269, + [2274] = 2269, + [2275] = 2270, [2276] = 2276, - [2277] = 2276, + [2277] = 2270, [2278] = 2278, - [2279] = 2279, + [2279] = 2270, [2280] = 2280, - [2281] = 2276, + [2281] = 2281, [2282] = 2282, - [2283] = 2280, - [2284] = 2234, + [2283] = 2281, + [2284] = 2284, [2285] = 2285, - [2286] = 2286, - [2287] = 2287, + [2286] = 2280, + [2287] = 2280, [2288] = 2280, - [2289] = 754, + [2289] = 2289, [2290] = 2290, [2291] = 2282, - [2292] = 2292, - [2293] = 752, - [2294] = 2278, - [2295] = 2280, - [2296] = 2282, - [2297] = 2226, - [2298] = 2298, - [2299] = 2287, - [2300] = 2298, - [2301] = 750, - [2302] = 2302, - [2303] = 777, - [2304] = 2287, - [2305] = 2282, - [2306] = 2282, - [2307] = 2292, - [2308] = 2308, - [2309] = 2298, + [2292] = 2282, + [2293] = 2282, + [2294] = 2282, + [2295] = 2289, + [2296] = 2296, + [2297] = 2297, + [2298] = 2289, + [2299] = 2281, + [2300] = 2282, + [2301] = 2281, + [2302] = 2296, + [2303] = 2297, + [2304] = 2296, + [2305] = 2305, + [2306] = 764, + [2307] = 753, + [2308] = 2281, + [2309] = 2296, [2310] = 2310, - [2311] = 2276, - [2312] = 2287, - [2313] = 2298, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 2290, - [2318] = 2318, - [2319] = 2287, - [2320] = 2292, - [2321] = 2321, - [2322] = 2322, - [2323] = 2276, - [2324] = 2292, - [2325] = 2298, + [2311] = 2282, + [2312] = 2282, + [2313] = 2297, + [2314] = 2281, + [2315] = 2282, + [2316] = 2297, + [2317] = 2280, + [2318] = 2280, + [2319] = 2281, + [2320] = 2280, + [2321] = 2281, + [2322] = 2280, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, [2326] = 2326, - [2327] = 2282, - [2328] = 2328, - [2329] = 2329, - [2330] = 2326, - [2331] = 2287, - [2332] = 2276, - [2333] = 2272, - [2334] = 2276, - [2335] = 2286, - [2336] = 2326, - [2337] = 2337, - [2338] = 2287, - [2339] = 2239, - [2340] = 2290, - [2341] = 2326, - [2342] = 2285, - [2343] = 2343, - [2344] = 2292, - [2345] = 2326, - [2346] = 2346, - [2347] = 2326, + [2327] = 2281, + [2328] = 2289, + [2329] = 2280, + [2330] = 2282, + [2331] = 2280, + [2332] = 2281, + [2333] = 760, + [2334] = 2334, + [2335] = 2335, + [2336] = 2336, + [2337] = 2335, + [2338] = 2335, + [2339] = 2336, + [2340] = 2325, + [2341] = 2336, + [2342] = 2342, + [2343] = 2335, + [2344] = 2344, + [2345] = 2345, + [2346] = 2336, + [2347] = 2347, [2348] = 2348, - [2349] = 2286, - [2350] = 2287, - [2351] = 2287, - [2352] = 2287, - [2353] = 2353, - [2354] = 2280, - [2355] = 2276, - [2356] = 2356, - [2357] = 2357, - [2358] = 2298, - [2359] = 2287, - [2360] = 2282, - [2361] = 2326, - [2362] = 2280, - [2363] = 2287, - [2364] = 2278, - [2365] = 2278, - [2366] = 2276, - [2367] = 2280, - [2368] = 2278, - [2369] = 2285, - [2370] = 2278, - [2371] = 2298, - [2372] = 2280, - [2373] = 2276, - [2374] = 2286, - [2375] = 2282, - [2376] = 2298, - [2377] = 2292, - [2378] = 2378, - [2379] = 2278, - [2380] = 2326, - [2381] = 2292, - [2382] = 2326, - [2383] = 2310, - [2384] = 2292, - [2385] = 2290, - [2386] = 2278, - [2387] = 2280, - [2388] = 2326, - [2389] = 2282, - [2390] = 2298, - [2391] = 2298, - [2392] = 2392, - [2393] = 2393, - [2394] = 2278, - [2395] = 2243, - [2396] = 2396, - [2397] = 2282, - [2398] = 2280, - [2399] = 2287, - [2400] = 2278, - [2401] = 2249, - [2402] = 2318, - [2403] = 2403, - [2404] = 733, - [2405] = 944, - [2406] = 932, - [2407] = 2353, - [2408] = 2393, - [2409] = 2356, - [2410] = 2410, - [2411] = 2378, - [2412] = 2329, - [2413] = 2413, + [2349] = 2349, + [2350] = 2335, + [2351] = 2334, + [2352] = 2352, + [2353] = 2347, + [2354] = 2349, + [2355] = 2352, + [2356] = 2347, + [2357] = 2348, + [2358] = 2358, + [2359] = 2305, + [2360] = 2348, + [2361] = 2334, + [2362] = 2334, + [2363] = 753, + [2364] = 2352, + [2365] = 2352, + [2366] = 2366, + [2367] = 2348, + [2368] = 2347, + [2369] = 2335, + [2370] = 2336, + [2371] = 2371, + [2372] = 2347, + [2373] = 2344, + [2374] = 2374, + [2375] = 2375, + [2376] = 781, + [2377] = 2377, + [2378] = 2336, + [2379] = 2379, + [2380] = 2344, + [2381] = 2336, + [2382] = 2382, + [2383] = 2348, + [2384] = 2384, + [2385] = 2334, + [2386] = 2344, + [2387] = 2352, + [2388] = 2388, + [2389] = 2374, + [2390] = 2347, + [2391] = 2388, + [2392] = 2349, + [2393] = 2336, + [2394] = 2335, + [2395] = 2395, + [2396] = 2348, + [2397] = 2344, + [2398] = 2334, + [2399] = 2352, + [2400] = 2347, + [2401] = 2401, + [2402] = 2402, + [2403] = 2374, + [2404] = 2335, + [2405] = 2405, + [2406] = 2310, + [2407] = 2374, + [2408] = 2348, + [2409] = 2334, + [2410] = 2377, + [2411] = 2352, + [2412] = 2344, + [2413] = 2347, [2414] = 2414, - [2415] = 2322, - [2416] = 2416, - [2417] = 2417, - [2418] = 961, - [2419] = 731, + [2415] = 2374, + [2416] = 2374, + [2417] = 2374, + [2418] = 2374, + [2419] = 2419, [2420] = 2420, - [2421] = 2308, - [2422] = 729, - [2423] = 2423, - [2424] = 733, - [2425] = 2337, - [2426] = 2426, - [2427] = 2316, - [2428] = 2348, - [2429] = 2314, - [2430] = 2279, - [2431] = 2431, - [2432] = 2321, - [2433] = 2433, - [2434] = 2434, - [2435] = 2302, + [2421] = 2377, + [2422] = 2422, + [2423] = 2375, + [2424] = 2375, + [2425] = 2347, + [2426] = 2352, + [2427] = 2349, + [2428] = 2334, + [2429] = 2348, + [2430] = 2374, + [2431] = 2374, + [2432] = 2374, + [2433] = 2375, + [2434] = 2374, + [2435] = 2335, [2436] = 2436, - [2437] = 863, - [2438] = 2346, - [2439] = 2439, - [2440] = 731, - [2441] = 2396, - [2442] = 777, - [2443] = 737, - [2444] = 729, - [2445] = 2445, - [2446] = 2315, - [2447] = 2447, - [2448] = 737, - [2449] = 2392, - [2450] = 915, - [2451] = 752, - [2452] = 750, - [2453] = 932, - [2454] = 752, - [2455] = 754, - [2456] = 2423, - [2457] = 863, - [2458] = 754, - [2459] = 2403, - [2460] = 944, - [2461] = 915, - [2462] = 2426, - [2463] = 2439, - [2464] = 2410, - [2465] = 2416, - [2466] = 2431, - [2467] = 2436, - [2468] = 2413, - [2469] = 2420, - [2470] = 2414, - [2471] = 2417, - [2472] = 750, - [2473] = 2445, - [2474] = 2434, - [2475] = 961, - [2476] = 737, - [2477] = 779, - [2478] = 783, - [2479] = 788, - [2480] = 757, - [2481] = 751, - [2482] = 777, - [2483] = 783, - [2484] = 779, - [2485] = 788, - [2486] = 777, - [2487] = 731, - [2488] = 751, - [2489] = 733, - [2490] = 757, - [2491] = 729, - [2492] = 781, - [2493] = 775, - [2494] = 752, - [2495] = 768, - [2496] = 772, - [2497] = 775, - [2498] = 767, - [2499] = 768, - [2500] = 766, - [2501] = 772, - [2502] = 764, - [2503] = 769, - [2504] = 766, - [2505] = 750, - [2506] = 781, - [2507] = 765, - [2508] = 792, - [2509] = 793, - [2510] = 764, - [2511] = 754, - [2512] = 792, - [2513] = 765, - [2514] = 793, - [2515] = 769, - [2516] = 767, - [2517] = 783, - [2518] = 757, - [2519] = 779, - [2520] = 788, - [2521] = 777, - [2522] = 751, - [2523] = 766, - [2524] = 775, - [2525] = 792, - [2526] = 767, - [2527] = 781, - [2528] = 769, - [2529] = 765, - [2530] = 768, - [2531] = 793, - [2532] = 764, - [2533] = 772, - [2534] = 2234, - [2535] = 2272, - [2536] = 2249, - [2537] = 2356, - [2538] = 2538, - [2539] = 2539, - [2540] = 818, - [2541] = 2541, - [2542] = 2315, - [2543] = 2346, - [2544] = 2539, - [2545] = 2545, - [2546] = 2416, - [2547] = 2547, - [2548] = 2548, - [2549] = 2426, - [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 2556, - [2558] = 2556, - [2559] = 2556, - [2560] = 2556, - [2561] = 2556, - [2562] = 2556, - [2563] = 2563, - [2564] = 2556, - [2565] = 2565, - [2566] = 2556, - [2567] = 2554, - [2568] = 2555, - [2569] = 2569, - [2570] = 2556, - [2571] = 725, - [2572] = 725, - [2573] = 725, - [2574] = 725, - [2575] = 2575, - [2576] = 2576, - [2577] = 731, - [2578] = 2576, - [2579] = 2579, - [2580] = 729, - [2581] = 729, - [2582] = 731, - [2583] = 733, - [2584] = 754, - [2585] = 750, - [2586] = 737, - [2587] = 752, - [2588] = 733, - [2589] = 2579, - [2590] = 737, - [2591] = 750, - [2592] = 752, - [2593] = 754, - [2594] = 725, - [2595] = 754, - [2596] = 752, - [2597] = 777, - [2598] = 750, - [2599] = 961, - [2600] = 751, - [2601] = 863, - [2602] = 757, - [2603] = 865, - [2604] = 887, - [2605] = 868, - [2606] = 888, - [2607] = 886, - [2608] = 777, - [2609] = 885, - [2610] = 779, - [2611] = 884, - [2612] = 883, - [2613] = 869, - [2614] = 889, - [2615] = 788, - [2616] = 777, + [2437] = 2437, + [2438] = 2336, + [2439] = 2352, + [2440] = 2336, + [2441] = 2335, + [2442] = 2374, + [2443] = 2334, + [2444] = 2324, + [2445] = 2326, + [2446] = 2348, + [2447] = 2334, + [2448] = 2344, + [2449] = 2352, + [2450] = 2347, + [2451] = 2284, + [2452] = 760, + [2453] = 2453, + [2454] = 2344, + [2455] = 2455, + [2456] = 2456, + [2457] = 2348, + [2458] = 764, + [2459] = 2459, + [2460] = 732, + [2461] = 2461, + [2462] = 2462, + [2463] = 2436, + [2464] = 2464, + [2465] = 2379, + [2466] = 781, + [2467] = 2395, + [2468] = 2455, + [2469] = 2405, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2371, + [2474] = 731, + [2475] = 2475, + [2476] = 2420, + [2477] = 2419, + [2478] = 2414, + [2479] = 2402, + [2480] = 2401, + [2481] = 735, + [2482] = 2382, + [2483] = 729, + [2484] = 891, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, + [2489] = 731, + [2490] = 997, + [2491] = 2491, + [2492] = 2453, + [2493] = 936, + [2494] = 2358, + [2495] = 2495, + [2496] = 2496, + [2497] = 735, + [2498] = 729, + [2499] = 2422, + [2500] = 2342, + [2501] = 732, + [2502] = 2366, + [2503] = 2384, + [2504] = 2504, + [2505] = 2437, + [2506] = 2506, + [2507] = 909, + [2508] = 905, + [2509] = 2491, + [2510] = 997, + [2511] = 936, + [2512] = 891, + [2513] = 2506, + [2514] = 753, + [2515] = 2471, + [2516] = 2495, + [2517] = 2470, + [2518] = 760, + [2519] = 2504, + [2520] = 2485, + [2521] = 909, + [2522] = 2462, + [2523] = 753, + [2524] = 2487, + [2525] = 760, + [2526] = 2472, + [2527] = 2488, + [2528] = 905, + [2529] = 2461, + [2530] = 764, + [2531] = 764, + [2532] = 2464, + [2533] = 2496, + [2534] = 779, + [2535] = 758, + [2536] = 781, + [2537] = 757, + [2538] = 758, + [2539] = 732, + [2540] = 729, + [2541] = 775, + [2542] = 774, + [2543] = 774, + [2544] = 775, + [2545] = 779, + [2546] = 731, + [2547] = 781, + [2548] = 757, + [2549] = 735, + [2550] = 797, + [2551] = 782, + [2552] = 790, + [2553] = 783, + [2554] = 782, + [2555] = 783, + [2556] = 777, + [2557] = 771, + [2558] = 792, + [2559] = 770, + [2560] = 797, + [2561] = 771, + [2562] = 764, + [2563] = 792, + [2564] = 772, + [2565] = 778, + [2566] = 773, + [2567] = 760, + [2568] = 777, + [2569] = 770, + [2570] = 772, + [2571] = 790, + [2572] = 778, + [2573] = 753, + [2574] = 773, + [2575] = 774, + [2576] = 775, + [2577] = 779, + [2578] = 781, + [2579] = 757, + [2580] = 758, + [2581] = 792, + [2582] = 773, + [2583] = 771, + [2584] = 770, + [2585] = 777, + [2586] = 783, + [2587] = 772, + [2588] = 797, + [2589] = 778, + [2590] = 790, + [2591] = 782, + [2592] = 2324, + [2593] = 2326, + [2594] = 2284, + [2595] = 2595, + [2596] = 2596, + [2597] = 2384, + [2598] = 2455, + [2599] = 829, + [2600] = 2600, + [2601] = 2600, + [2602] = 2453, + [2603] = 2603, + [2604] = 2604, + [2605] = 2605, + [2606] = 2491, + [2607] = 2607, + [2608] = 2487, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2614, + [2616] = 2612, [2617] = 2617, - [2618] = 932, - [2619] = 779, - [2620] = 783, - [2621] = 870, - [2622] = 896, - [2623] = 751, - [2624] = 871, - [2625] = 788, - [2626] = 879, - [2627] = 875, - [2628] = 876, - [2629] = 882, - [2630] = 894, - [2631] = 881, - [2632] = 877, - [2633] = 878, - [2634] = 757, - [2635] = 874, - [2636] = 915, - [2637] = 880, - [2638] = 872, - [2639] = 944, - [2640] = 891, + [2618] = 2613, + [2619] = 2614, + [2620] = 2614, + [2621] = 2621, + [2622] = 2614, + [2623] = 2614, + [2624] = 2614, + [2625] = 2614, + [2626] = 2626, + [2627] = 2614, + [2628] = 2614, + [2629] = 725, + [2630] = 725, + [2631] = 725, + [2632] = 725, + [2633] = 817, + [2634] = 2634, + [2635] = 834, + [2636] = 2636, + [2637] = 2636, + [2638] = 837, + [2639] = 729, + [2640] = 731, [2641] = 2641, - [2642] = 890, - [2643] = 783, - [2644] = 793, - [2645] = 775, - [2646] = 793, - [2647] = 775, - [2648] = 764, - [2649] = 772, - [2650] = 765, - [2651] = 766, - [2652] = 781, - [2653] = 792, - [2654] = 769, - [2655] = 769, - [2656] = 767, - [2657] = 764, - [2658] = 792, - [2659] = 768, - [2660] = 772, - [2661] = 766, - [2662] = 781, - [2663] = 765, - [2664] = 767, - [2665] = 768, - [2666] = 750, - [2667] = 2667, - [2668] = 752, - [2669] = 2576, - [2670] = 752, - [2671] = 2667, - [2672] = 2667, - [2673] = 2667, - [2674] = 754, - [2675] = 754, - [2676] = 2676, - [2677] = 2677, - [2678] = 2677, - [2679] = 756, - [2680] = 2677, - [2681] = 2677, - [2682] = 777, - [2683] = 2677, - [2684] = 2677, - [2685] = 2677, - [2686] = 2677, - [2687] = 2677, - [2688] = 777, - [2689] = 2677, - [2690] = 750, - [2691] = 752, - [2692] = 881, - [2693] = 2693, - [2694] = 882, - [2695] = 2695, - [2696] = 883, - [2697] = 884, - [2698] = 868, - [2699] = 885, - [2700] = 886, - [2701] = 2701, - [2702] = 887, - [2703] = 2703, - [2704] = 875, - [2705] = 888, - [2706] = 889, - [2707] = 891, - [2708] = 876, - [2709] = 750, - [2710] = 869, - [2711] = 877, - [2712] = 870, - [2713] = 878, - [2714] = 871, - [2715] = 874, - [2716] = 2716, - [2717] = 754, - [2718] = 879, - [2719] = 880, - [2720] = 865, - [2721] = 894, - [2722] = 2722, - [2723] = 2723, - [2724] = 2641, - [2725] = 2695, - [2726] = 2617, - [2727] = 896, - [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, + [2642] = 732, + [2643] = 753, + [2644] = 729, + [2645] = 735, + [2646] = 760, + [2647] = 732, + [2648] = 2641, + [2649] = 735, + [2650] = 731, + [2651] = 827, + [2652] = 828, + [2653] = 764, + [2654] = 781, + [2655] = 725, + [2656] = 753, + [2657] = 760, + [2658] = 760, + [2659] = 764, + [2660] = 753, + [2661] = 764, + [2662] = 886, + [2663] = 2663, + [2664] = 907, + [2665] = 900, + [2666] = 976, + [2667] = 879, + [2668] = 880, + [2669] = 883, + [2670] = 884, + [2671] = 885, + [2672] = 887, + [2673] = 775, + [2674] = 881, + [2675] = 941, + [2676] = 781, + [2677] = 893, + [2678] = 894, + [2679] = 923, + [2680] = 779, + [2681] = 901, + [2682] = 758, + [2683] = 905, + [2684] = 757, + [2685] = 774, + [2686] = 757, + [2687] = 997, + [2688] = 781, + [2689] = 2689, + [2690] = 758, + [2691] = 891, + [2692] = 936, + [2693] = 775, + [2694] = 779, + [2695] = 888, + [2696] = 909, + [2697] = 911, + [2698] = 940, + [2699] = 965, + [2700] = 882, + [2701] = 774, + [2702] = 943, + [2703] = 953, + [2704] = 989, + [2705] = 896, + [2706] = 902, + [2707] = 778, + [2708] = 797, + [2709] = 817, + [2710] = 773, + [2711] = 770, + [2712] = 778, + [2713] = 792, + [2714] = 797, + [2715] = 771, + [2716] = 790, + [2717] = 782, + [2718] = 792, + [2719] = 777, + [2720] = 782, + [2721] = 783, + [2722] = 777, + [2723] = 783, + [2724] = 771, + [2725] = 770, + [2726] = 773, + [2727] = 772, + [2728] = 790, + [2729] = 772, + [2730] = 834, + [2731] = 827, + [2732] = 753, + [2733] = 828, [2734] = 2734, - [2735] = 2703, - [2736] = 863, - [2737] = 2703, - [2738] = 2703, - [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 944, - [2743] = 890, - [2744] = 2716, - [2745] = 2739, - [2746] = 915, - [2747] = 961, - [2748] = 725, - [2749] = 872, - [2750] = 2695, - [2751] = 2751, - [2752] = 2695, - [2753] = 2723, - [2754] = 932, - [2755] = 2755, - [2756] = 891, - [2757] = 2722, - [2758] = 2758, - [2759] = 2759, - [2760] = 875, - [2761] = 869, - [2762] = 2728, - [2763] = 2763, - [2764] = 2764, - [2765] = 2693, - [2766] = 2729, - [2767] = 870, - [2768] = 961, - [2769] = 2617, - [2770] = 872, - [2771] = 876, - [2772] = 2641, - [2773] = 878, - [2774] = 879, - [2775] = 880, - [2776] = 881, - [2777] = 882, - [2778] = 883, - [2779] = 871, - [2780] = 874, - [2781] = 884, - [2782] = 865, - [2783] = 885, - [2784] = 886, - [2785] = 877, - [2786] = 888, - [2787] = 2787, - [2788] = 2788, - [2789] = 889, - [2790] = 2732, - [2791] = 779, - [2792] = 890, - [2793] = 944, - [2794] = 2794, - [2795] = 2795, - [2796] = 2796, - [2797] = 894, - [2798] = 783, - [2799] = 896, - [2800] = 932, - [2801] = 2801, - [2802] = 868, - [2803] = 915, - [2804] = 887, - [2805] = 863, - [2806] = 2758, - [2807] = 2807, - [2808] = 2758, - [2809] = 2758, - [2810] = 2810, - [2811] = 2701, - [2812] = 2740, - [2813] = 2741, - [2814] = 2814, - [2815] = 777, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2822, - [2823] = 2730, - [2824] = 2731, - [2825] = 2825, - [2826] = 2751, - [2827] = 881, - [2828] = 2741, - [2829] = 885, - [2830] = 886, - [2831] = 887, - [2832] = 888, - [2833] = 915, - [2834] = 889, - [2835] = 891, - [2836] = 2730, - [2837] = 2755, - [2838] = 894, - [2839] = 2693, - [2840] = 2732, - [2841] = 896, - [2842] = 2722, - [2843] = 2822, - [2844] = 2818, - [2845] = 2701, - [2846] = 2741, - [2847] = 2847, - [2848] = 2723, - [2849] = 880, - [2850] = 2801, - [2851] = 2734, - [2852] = 2733, - [2853] = 2734, - [2854] = 2794, - [2855] = 872, - [2856] = 2820, - [2857] = 2819, - [2858] = 890, - [2859] = 884, - [2860] = 2734, - [2861] = 944, - [2862] = 863, - [2863] = 883, - [2864] = 2728, - [2865] = 2729, - [2866] = 882, - [2867] = 2740, - [2868] = 2723, - [2869] = 2731, - [2870] = 779, - [2871] = 2729, - [2872] = 783, - [2873] = 2740, - [2874] = 2733, - [2875] = 2716, - [2876] = 869, - [2877] = 2701, - [2878] = 870, - [2879] = 2807, - [2880] = 871, - [2881] = 2732, - [2882] = 2731, - [2883] = 2730, - [2884] = 2810, - [2885] = 2816, - [2886] = 2716, - [2887] = 874, - [2888] = 2817, - [2889] = 2814, - [2890] = 932, - [2891] = 2759, - [2892] = 2795, - [2893] = 865, - [2894] = 2821, - [2895] = 2728, - [2896] = 879, - [2897] = 868, - [2898] = 878, - [2899] = 877, - [2900] = 961, - [2901] = 2734, - [2902] = 876, - [2903] = 2693, - [2904] = 2764, - [2905] = 2763, - [2906] = 875, - [2907] = 2787, - [2908] = 2722, - [2909] = 2909, - [2910] = 2910, - [2911] = 2910, - [2912] = 2912, - [2913] = 2913, - [2914] = 769, - [2915] = 2915, - [2916] = 766, - [2917] = 2917, - [2918] = 2918, - [2919] = 775, - [2920] = 2913, - [2921] = 2921, - [2922] = 2915, - [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 2925, - [2927] = 2925, - [2928] = 2925, - [2929] = 2925, - [2930] = 2925, - [2931] = 2925, - [2932] = 2925, - [2933] = 2925, - [2934] = 2925, - [2935] = 2935, - [2936] = 2925, - [2937] = 2925, - [2938] = 2925, - [2939] = 754, - [2940] = 2925, - [2941] = 2941, - [2942] = 750, - [2943] = 2925, - [2944] = 2925, - [2945] = 2925, - [2946] = 752, - [2947] = 2925, - [2948] = 2925, - [2949] = 2925, - [2950] = 2925, - [2951] = 2925, - [2952] = 2952, - [2953] = 2952, - [2954] = 2733, - [2955] = 2955, - [2956] = 2956, - [2957] = 729, - [2958] = 731, - [2959] = 2959, - [2960] = 737, - [2961] = 733, - [2962] = 2952, - [2963] = 2716, - [2964] = 2964, - [2965] = 2965, - [2966] = 2966, - [2967] = 2967, - [2968] = 2935, - [2969] = 777, - [2970] = 2952, - [2971] = 2971, - [2972] = 2952, - [2973] = 737, - [2974] = 731, - [2975] = 729, - [2976] = 2952, - [2977] = 2977, - [2978] = 2952, - [2979] = 2964, - [2980] = 2952, - [2981] = 2909, - [2982] = 733, - [2983] = 2952, - [2984] = 2723, - [2985] = 2801, - [2986] = 2964, - [2987] = 2952, - [2988] = 2988, - [2989] = 882, - [2990] = 881, - [2991] = 880, + [2735] = 2735, + [2736] = 764, + [2737] = 2734, + [2738] = 817, + [2739] = 837, + [2740] = 2636, + [2741] = 760, + [2742] = 2734, + [2743] = 764, + [2744] = 760, + [2745] = 2734, + [2746] = 2746, + [2747] = 2746, + [2748] = 2746, + [2749] = 827, + [2750] = 752, + [2751] = 781, + [2752] = 2746, + [2753] = 828, + [2754] = 2746, + [2755] = 2746, + [2756] = 837, + [2757] = 753, + [2758] = 2746, + [2759] = 2746, + [2760] = 2746, + [2761] = 834, + [2762] = 2746, + [2763] = 781, + [2764] = 884, + [2765] = 953, + [2766] = 2766, + [2767] = 2767, + [2768] = 753, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 894, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, + [2777] = 2663, + [2778] = 2778, + [2779] = 923, + [2780] = 881, + [2781] = 2781, + [2782] = 905, + [2783] = 888, + [2784] = 887, + [2785] = 886, + [2786] = 885, + [2787] = 2689, + [2788] = 883, + [2789] = 880, + [2790] = 879, + [2791] = 976, + [2792] = 900, + [2793] = 907, + [2794] = 941, + [2795] = 943, + [2796] = 936, + [2797] = 2797, + [2798] = 2798, + [2799] = 989, + [2800] = 2800, + [2801] = 891, + [2802] = 2802, + [2803] = 902, + [2804] = 896, + [2805] = 764, + [2806] = 882, + [2807] = 2800, + [2808] = 965, + [2809] = 940, + [2810] = 911, + [2811] = 2811, + [2812] = 817, + [2813] = 2813, + [2814] = 2813, + [2815] = 909, + [2816] = 760, + [2817] = 2797, + [2818] = 725, + [2819] = 2813, + [2820] = 901, + [2821] = 2813, + [2822] = 2800, + [2823] = 997, + [2824] = 2800, + [2825] = 2798, + [2826] = 2781, + [2827] = 2827, + [2828] = 893, + [2829] = 879, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2771, + [2834] = 837, + [2835] = 2835, + [2836] = 2836, + [2837] = 2773, + [2838] = 2774, + [2839] = 834, + [2840] = 2840, + [2841] = 2776, + [2842] = 828, + [2843] = 2775, + [2844] = 2844, + [2845] = 775, + [2846] = 2846, + [2847] = 2770, + [2848] = 2840, + [2849] = 2663, + [2850] = 2769, + [2851] = 2689, + [2852] = 2767, + [2853] = 2827, + [2854] = 2854, + [2855] = 2855, + [2856] = 2811, + [2857] = 774, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2840, + [2862] = 2840, + [2863] = 2863, + [2864] = 891, + [2865] = 894, + [2866] = 827, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 893, + [2871] = 881, + [2872] = 888, + [2873] = 887, + [2874] = 2874, + [2875] = 886, + [2876] = 885, + [2877] = 2877, + [2878] = 884, + [2879] = 923, + [2880] = 883, + [2881] = 880, + [2882] = 976, + [2883] = 2883, + [2884] = 900, + [2885] = 2885, + [2886] = 907, + [2887] = 941, + [2888] = 943, + [2889] = 953, + [2890] = 989, + [2891] = 902, + [2892] = 896, + [2893] = 882, + [2894] = 965, + [2895] = 940, + [2896] = 781, + [2897] = 911, + [2898] = 2898, + [2899] = 936, + [2900] = 997, + [2901] = 909, + [2902] = 901, + [2903] = 905, + [2904] = 2766, + [2905] = 953, + [2906] = 941, + [2907] = 2846, + [2908] = 2883, + [2909] = 2874, + [2910] = 774, + [2911] = 775, + [2912] = 2877, + [2913] = 2781, + [2914] = 909, + [2915] = 2802, + [2916] = 2885, + [2917] = 2778, + [2918] = 2860, + [2919] = 2774, + [2920] = 2859, + [2921] = 2767, + [2922] = 2858, + [2923] = 2868, + [2924] = 2867, + [2925] = 894, + [2926] = 893, + [2927] = 2778, + [2928] = 2776, + [2929] = 2773, + [2930] = 905, + [2931] = 2830, + [2932] = 2798, + [2933] = 2771, + [2934] = 2802, + [2935] = 881, + [2936] = 2770, + [2937] = 888, + [2938] = 2775, + [2939] = 2781, + [2940] = 2769, + [2941] = 2827, + [2942] = 887, + [2943] = 2811, + [2944] = 2778, + [2945] = 886, + [2946] = 885, + [2947] = 884, + [2948] = 891, + [2949] = 883, + [2950] = 2844, + [2951] = 2836, + [2952] = 2835, + [2953] = 880, + [2954] = 2798, + [2955] = 879, + [2956] = 976, + [2957] = 2776, + [2958] = 2774, + [2959] = 900, + [2960] = 2773, + [2961] = 907, + [2962] = 2771, + [2963] = 943, + [2964] = 989, + [2965] = 2770, + [2966] = 2775, + [2967] = 902, + [2968] = 2831, + [2969] = 896, + [2970] = 882, + [2971] = 2832, + [2972] = 2972, + [2973] = 2778, + [2974] = 923, + [2975] = 965, + [2976] = 940, + [2977] = 2769, + [2978] = 911, + [2979] = 2811, + [2980] = 2767, + [2981] = 2855, + [2982] = 2854, + [2983] = 901, + [2984] = 997, + [2985] = 2827, + [2986] = 936, + [2987] = 2987, + [2988] = 2987, + [2989] = 2989, + [2990] = 2990, + [2991] = 2991, [2992] = 2992, - [2993] = 879, + [2993] = 797, [2994] = 2994, - [2995] = 2994, - [2996] = 878, - [2997] = 2997, - [2998] = 2941, - [2999] = 1807, - [3000] = 944, - [3001] = 769, - [3002] = 1605, - [3003] = 2733, - [3004] = 932, - [3005] = 2818, - [3006] = 877, - [3007] = 876, - [3008] = 875, - [3009] = 863, - [3010] = 2822, - [3011] = 2723, - [3012] = 883, - [3013] = 3013, - [3014] = 3014, - [3015] = 2716, - [3016] = 2787, - [3017] = 3014, - [3018] = 750, - [3019] = 2759, - [3020] = 766, - [3021] = 915, - [3022] = 884, - [3023] = 885, - [3024] = 890, - [3025] = 961, - [3026] = 1695, - [3027] = 869, - [3028] = 896, - [3029] = 870, - [3030] = 886, - [3031] = 894, - [3032] = 871, - [3033] = 872, - [3034] = 887, - [3035] = 3035, - [3036] = 3036, - [3037] = 874, - [3038] = 3014, - [3039] = 865, - [3040] = 754, - [3041] = 868, - [3042] = 750, - [3043] = 752, - [3044] = 888, - [3045] = 3045, - [3046] = 889, - [3047] = 775, - [3048] = 752, - [3049] = 754, + [2995] = 2995, + [2996] = 2996, + [2997] = 817, + [2998] = 2998, + [2999] = 2999, + [3000] = 770, + [3001] = 2992, + [3002] = 2991, + [3003] = 771, + [3004] = 3004, + [3005] = 837, + [3006] = 760, + [3007] = 3004, + [3008] = 834, + [3009] = 764, + [3010] = 3004, + [3011] = 3004, + [3012] = 3004, + [3013] = 3004, + [3014] = 828, + [3015] = 3004, + [3016] = 3004, + [3017] = 3004, + [3018] = 3004, + [3019] = 3004, + [3020] = 3004, + [3021] = 3004, + [3022] = 753, + [3023] = 3004, + [3024] = 3004, + [3025] = 3025, + [3026] = 3004, + [3027] = 3004, + [3028] = 3004, + [3029] = 827, + [3030] = 3004, + [3031] = 3031, + [3032] = 3004, + [3033] = 3004, + [3034] = 3004, + [3035] = 735, + [3036] = 735, + [3037] = 3037, + [3038] = 3038, + [3039] = 2830, + [3040] = 3040, + [3041] = 3038, + [3042] = 3038, + [3043] = 3031, + [3044] = 3044, + [3045] = 731, + [3046] = 3046, + [3047] = 3038, + [3048] = 3038, + [3049] = 3044, [3050] = 3050, - [3051] = 3051, - [3052] = 2988, - [3053] = 891, - [3054] = 2997, - [3055] = 3050, - [3056] = 3056, - [3057] = 3035, - [3058] = 2795, - [3059] = 2794, - [3060] = 3060, - [3061] = 3061, - [3062] = 3060, - [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, + [3051] = 3038, + [3052] = 2989, + [3053] = 3053, + [3054] = 729, + [3055] = 3038, + [3056] = 729, + [3057] = 732, + [3058] = 3038, + [3059] = 781, + [3060] = 3044, + [3061] = 732, + [3062] = 3038, + [3063] = 2798, + [3064] = 731, + [3065] = 2781, + [3066] = 2802, [3067] = 3067, - [3068] = 3068, + [3068] = 3038, [3069] = 3069, - [3070] = 3061, - [3071] = 3071, - [3072] = 3060, + [3070] = 3070, + [3071] = 909, + [3072] = 753, [3073] = 3073, [3074] = 3074, - [3075] = 3069, - [3076] = 3065, - [3077] = 3061, - [3078] = 3078, - [3079] = 3063, - [3080] = 3060, - [3081] = 3081, - [3082] = 3082, - [3083] = 3078, - [3084] = 3066, - [3085] = 3061, - [3086] = 1900, - [3087] = 3081, - [3088] = 3060, - [3089] = 3063, - [3090] = 3065, - [3091] = 779, - [3092] = 3092, - [3093] = 1999, - [3094] = 3064, - [3095] = 3061, + [3075] = 3075, + [3076] = 3076, + [3077] = 1822, + [3078] = 3076, + [3079] = 764, + [3080] = 760, + [3081] = 2802, + [3082] = 2867, + [3083] = 2868, + [3084] = 771, + [3085] = 2781, + [3086] = 764, + [3087] = 3087, + [3088] = 760, + [3089] = 797, + [3090] = 905, + [3091] = 891, + [3092] = 997, + [3093] = 1839, + [3094] = 936, + [3095] = 2883, [3096] = 3096, - [3097] = 3097, - [3098] = 3065, - [3099] = 3063, - [3100] = 3060, - [3101] = 779, - [3102] = 3102, - [3103] = 3078, - [3104] = 3078, - [3105] = 1855, - [3106] = 3106, - [3107] = 3069, - [3108] = 3108, - [3109] = 3061, - [3110] = 3066, - [3111] = 3111, - [3112] = 3064, - [3113] = 3113, - [3114] = 2917, - [3115] = 3064, - [3116] = 3102, - [3117] = 3078, - [3118] = 3118, - [3119] = 3064, - [3120] = 2921, - [3121] = 777, - [3122] = 3122, - [3123] = 783, - [3124] = 3065, - [3125] = 3081, - [3126] = 3063, - [3127] = 3071, - [3128] = 3065, - [3129] = 3065, - [3130] = 3060, - [3131] = 3065, - [3132] = 757, - [3133] = 3063, - [3134] = 3064, - [3135] = 3060, - [3136] = 3069, - [3137] = 751, - [3138] = 3081, - [3139] = 3074, - [3140] = 3092, - [3141] = 3081, - [3142] = 788, - [3143] = 3064, - [3144] = 3074, + [3097] = 770, + [3098] = 2885, + [3099] = 1756, + [3100] = 3100, + [3101] = 3025, + [3102] = 3075, + [3103] = 3087, + [3104] = 911, + [3105] = 940, + [3106] = 3074, + [3107] = 965, + [3108] = 923, + [3109] = 882, + [3110] = 896, + [3111] = 902, + [3112] = 3112, + [3113] = 3075, + [3114] = 3114, + [3115] = 989, + [3116] = 953, + [3117] = 3117, + [3118] = 943, + [3119] = 2798, + [3120] = 2877, + [3121] = 941, + [3122] = 907, + [3123] = 900, + [3124] = 976, + [3125] = 879, + [3126] = 880, + [3127] = 883, + [3128] = 2874, + [3129] = 884, + [3130] = 885, + [3131] = 886, + [3132] = 887, + [3133] = 3133, + [3134] = 888, + [3135] = 753, + [3136] = 901, + [3137] = 881, + [3138] = 3112, + [3139] = 893, + [3140] = 894, + [3141] = 3141, + [3142] = 3073, + [3143] = 3143, + [3144] = 3144, [3145] = 3145, - [3146] = 777, - [3147] = 3064, - [3148] = 3081, - [3149] = 3065, - [3150] = 3063, - [3151] = 3060, - [3152] = 3078, - [3153] = 783, - [3154] = 3065, - [3155] = 3078, - [3156] = 757, - [3157] = 3068, - [3158] = 751, - [3159] = 3081, - [3160] = 3060, - [3161] = 3060, - [3162] = 3065, - [3163] = 788, - [3164] = 3063, - [3165] = 3063, - [3166] = 3065, - [3167] = 3063, - [3168] = 3065, - [3169] = 3060, - [3170] = 1901, - [3171] = 3065, - [3172] = 3061, - [3173] = 3081, - [3174] = 3063, - [3175] = 3060, - [3176] = 1986, - [3177] = 3064, - [3178] = 3067, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3149, + [3150] = 3150, + [3151] = 1839, + [3152] = 3145, + [3153] = 3153, + [3154] = 3149, + [3155] = 3145, + [3156] = 3145, + [3157] = 774, + [3158] = 3145, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3145, + [3164] = 3143, + [3165] = 3146, + [3166] = 3150, + [3167] = 3160, + [3168] = 3168, + [3169] = 3147, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 3160, + [3174] = 2994, + [3175] = 3175, + [3176] = 3176, + [3177] = 3149, + [3178] = 3143, [3179] = 3179, - [3180] = 3064, - [3181] = 3122, - [3182] = 3179, - [3183] = 3065, - [3184] = 3063, - [3185] = 3060, - [3186] = 3078, - [3187] = 3179, - [3188] = 3081, - [3189] = 3065, - [3190] = 3122, - [3191] = 3067, - [3192] = 3102, - [3193] = 3081, - [3194] = 3078, - [3195] = 3063, - [3196] = 3064, - [3197] = 3081, - [3198] = 3063, - [3199] = 3067, - [3200] = 3064, - [3201] = 3201, - [3202] = 2923, - [3203] = 3092, - [3204] = 3065, - [3205] = 3078, - [3206] = 3060, - [3207] = 3063, - [3208] = 3208, - [3209] = 3060, - [3210] = 3081, - [3211] = 3061, - [3212] = 3092, - [3213] = 3064, - [3214] = 3063, - [3215] = 3064, - [3216] = 3216, - [3217] = 3064, - [3218] = 3071, - [3219] = 3064, - [3220] = 3065, - [3221] = 3063, - [3222] = 3060, - [3223] = 3064, - [3224] = 3102, - [3225] = 3060, - [3226] = 3061, - [3227] = 3069, - [3228] = 3068, - [3229] = 1605, - [3230] = 1695, - [3231] = 3063, - [3232] = 3063, - [3233] = 3061, - [3234] = 1807, - [3235] = 3235, - [3236] = 3236, - [3237] = 3064, - [3238] = 3238, - [3239] = 3078, - [3240] = 3060, - [3241] = 3060, - [3242] = 3063, - [3243] = 3064, - [3244] = 3065, - [3245] = 3065, - [3246] = 3179, - [3247] = 3060, - [3248] = 3065, - [3249] = 3063, - [3250] = 3078, - [3251] = 3251, - [3252] = 3122, - [3253] = 3061, - [3254] = 3068, - [3255] = 3063, - [3256] = 3060, - [3257] = 3081, - [3258] = 3067, + [3180] = 3160, + [3181] = 3145, + [3182] = 3182, + [3183] = 3143, + [3184] = 3146, + [3185] = 3171, + [3186] = 3148, + [3187] = 3143, + [3188] = 3171, + [3189] = 779, + [3190] = 3148, + [3191] = 3146, + [3192] = 3192, + [3193] = 1756, + [3194] = 3145, + [3195] = 3171, + [3196] = 3146, + [3197] = 3145, + [3198] = 3198, + [3199] = 3148, + [3200] = 1822, + [3201] = 3145, + [3202] = 3149, + [3203] = 3160, + [3204] = 3160, + [3205] = 3145, + [3206] = 3145, + [3207] = 3160, + [3208] = 3143, + [3209] = 781, + [3210] = 3171, + [3211] = 3168, + [3212] = 3149, + [3213] = 3146, + [3214] = 3160, + [3215] = 3146, + [3216] = 3160, + [3217] = 757, + [3218] = 3143, + [3219] = 3171, + [3220] = 3148, + [3221] = 3171, + [3222] = 3143, + [3223] = 3160, + [3224] = 3146, + [3225] = 3145, + [3226] = 3226, + [3227] = 3145, + [3228] = 3179, + [3229] = 1973, + [3230] = 3147, + [3231] = 3149, + [3232] = 3143, + [3233] = 3168, + [3234] = 781, + [3235] = 3171, + [3236] = 3160, + [3237] = 3143, + [3238] = 3148, + [3239] = 3171, + [3240] = 3148, + [3241] = 3146, + [3242] = 3171, + [3243] = 3243, + [3244] = 3143, + [3245] = 3160, + [3246] = 3147, + [3247] = 774, + [3248] = 3153, + [3249] = 3160, + [3250] = 3143, + [3251] = 3171, + [3252] = 3148, + [3253] = 3146, + [3254] = 3176, + [3255] = 3149, + [3256] = 3159, + [3257] = 3145, + [3258] = 3258, [3259] = 3259, - [3260] = 3078, - [3261] = 3064, - [3262] = 3078, - [3263] = 3078, - [3264] = 3074, - [3265] = 3065, - [3266] = 3064, - [3267] = 3064, - [3268] = 3268, - [3269] = 3066, - [3270] = 793, - [3271] = 1986, - [3272] = 1901, - [3273] = 1868, - [3274] = 781, - [3275] = 873, - [3276] = 1855, - [3277] = 1900, - [3278] = 1999, - [3279] = 775, - [3280] = 895, - [3281] = 2004, - [3282] = 766, - [3283] = 767, - [3284] = 781, - [3285] = 768, - [3286] = 769, - [3287] = 772, - [3288] = 765, - [3289] = 792, - [3290] = 767, - [3291] = 772, - [3292] = 764, - [3293] = 1955, - [3294] = 764, - [3295] = 769, - [3296] = 766, - [3297] = 775, - [3298] = 792, - [3299] = 768, - [3300] = 793, - [3301] = 765, - [3302] = 754, - [3303] = 752, - [3304] = 1955, - [3305] = 2004, - [3306] = 1868, - [3307] = 750, - [3308] = 731, - [3309] = 779, - [3310] = 3310, - [3311] = 3311, - [3312] = 737, - [3313] = 731, - [3314] = 777, - [3315] = 729, - [3316] = 733, - [3317] = 783, - [3318] = 3310, - [3319] = 3310, - [3320] = 733, - [3321] = 737, - [3322] = 729, - [3323] = 3310, - [3324] = 2579, - [3325] = 2579, - [3326] = 2576, - [3327] = 2576, - [3328] = 725, - [3329] = 2814, - [3330] = 2816, - [3331] = 752, - [3332] = 2794, - [3333] = 2935, - [3334] = 883, - [3335] = 2819, - [3336] = 750, - [3337] = 874, - [3338] = 3338, - [3339] = 3339, - [3340] = 754, - [3341] = 2820, - [3342] = 865, - [3343] = 752, - [3344] = 2822, - [3345] = 3345, - [3346] = 2795, - [3347] = 754, - [3348] = 2751, - [3349] = 2818, - [3350] = 2801, - [3351] = 2817, - [3352] = 2755, - [3353] = 2763, - [3354] = 896, - [3355] = 3355, - [3356] = 875, - [3357] = 894, - [3358] = 3358, - [3359] = 3359, - [3360] = 2759, - [3361] = 3361, - [3362] = 2764, - [3363] = 750, - [3364] = 882, - [3365] = 891, - [3366] = 876, - [3367] = 884, - [3368] = 877, - [3369] = 868, - [3370] = 886, - [3371] = 961, - [3372] = 2810, - [3373] = 3373, - [3374] = 887, - [3375] = 915, - [3376] = 2787, - [3377] = 878, - [3378] = 879, - [3379] = 3379, - [3380] = 2807, - [3381] = 885, - [3382] = 890, - [3383] = 872, - [3384] = 2909, - [3385] = 880, - [3386] = 881, - [3387] = 863, - [3388] = 888, - [3389] = 869, - [3390] = 932, - [3391] = 2821, - [3392] = 870, - [3393] = 889, - [3394] = 871, - [3395] = 944, + [3260] = 3175, + [3261] = 3145, + [3262] = 3148, + [3263] = 3159, + [3264] = 3148, + [3265] = 3171, + [3266] = 3171, + [3267] = 3143, + [3268] = 2995, + [3269] = 3143, + [3270] = 3270, + [3271] = 3146, + [3272] = 3272, + [3273] = 3143, + [3274] = 3171, + [3275] = 3145, + [3276] = 3160, + [3277] = 3148, + [3278] = 2999, + [3279] = 3279, + [3280] = 3171, + [3281] = 775, + [3282] = 3146, + [3283] = 3171, + [3284] = 3145, + [3285] = 3143, + [3286] = 3179, + [3287] = 3159, + [3288] = 775, + [3289] = 3289, + [3290] = 3290, + [3291] = 1974, + [3292] = 3153, + [3293] = 3293, + [3294] = 3150, + [3295] = 3160, + [3296] = 3149, + [3297] = 758, + [3298] = 3171, + [3299] = 3176, + [3300] = 3160, + [3301] = 3160, + [3302] = 3145, + [3303] = 3303, + [3304] = 3145, + [3305] = 3143, + [3306] = 757, + [3307] = 3171, + [3308] = 3146, + [3309] = 1928, + [3310] = 3148, + [3311] = 3170, + [3312] = 3179, + [3313] = 3149, + [3314] = 3146, + [3315] = 3170, + [3316] = 3176, + [3317] = 3159, + [3318] = 3171, + [3319] = 3143, + [3320] = 3226, + [3321] = 3149, + [3322] = 3143, + [3323] = 3175, + [3324] = 3324, + [3325] = 3160, + [3326] = 3143, + [3327] = 3171, + [3328] = 1924, + [3329] = 3145, + [3330] = 3170, + [3331] = 3145, + [3332] = 3160, + [3333] = 3160, + [3334] = 3153, + [3335] = 3143, + [3336] = 3171, + [3337] = 3146, + [3338] = 3148, + [3339] = 3171, + [3340] = 3150, + [3341] = 3168, + [3342] = 3175, + [3343] = 3343, + [3344] = 3160, + [3345] = 3149, + [3346] = 3147, + [3347] = 758, + [3348] = 2004, + [3349] = 3143, + [3350] = 3160, + [3351] = 779, + [3352] = 3226, + [3353] = 2006, + [3354] = 783, + [3355] = 1928, + [3356] = 777, + [3357] = 797, + [3358] = 777, + [3359] = 770, + [3360] = 771, + [3361] = 931, + [3362] = 778, + [3363] = 2004, + [3364] = 1924, + [3365] = 772, + [3366] = 1974, + [3367] = 790, + [3368] = 778, + [3369] = 783, + [3370] = 782, + [3371] = 1897, + [3372] = 770, + [3373] = 1973, + [3374] = 772, + [3375] = 782, + [3376] = 792, + [3377] = 792, + [3378] = 797, + [3379] = 1993, + [3380] = 790, + [3381] = 817, + [3382] = 837, + [3383] = 773, + [3384] = 773, + [3385] = 935, + [3386] = 771, + [3387] = 828, + [3388] = 834, + [3389] = 1993, + [3390] = 760, + [3391] = 764, + [3392] = 827, + [3393] = 753, + [3394] = 2006, + [3395] = 1897, [3396] = 3396, - [3397] = 788, - [3398] = 777, - [3399] = 788, - [3400] = 737, - [3401] = 733, - [3402] = 731, - [3403] = 729, - [3404] = 779, - [3405] = 751, - [3406] = 757, - [3407] = 3407, - [3408] = 3408, - [3409] = 783, - [3410] = 779, - [3411] = 3411, - [3412] = 757, - [3413] = 3413, - [3414] = 751, - [3415] = 783, - [3416] = 777, + [3397] = 735, + [3398] = 731, + [3399] = 2636, + [3400] = 781, + [3401] = 732, + [3402] = 3396, + [3403] = 731, + [3404] = 3396, + [3405] = 735, + [3406] = 2641, + [3407] = 729, + [3408] = 732, + [3409] = 2636, + [3410] = 3396, + [3411] = 775, + [3412] = 774, + [3413] = 729, + [3414] = 725, + [3415] = 3415, + [3416] = 2641, [3417] = 3417, - [3418] = 3418, - [3419] = 764, - [3420] = 2722, - [3421] = 3421, - [3422] = 2741, - [3423] = 2740, - [3424] = 2701, - [3425] = 2917, - [3426] = 2732, - [3427] = 2731, - [3428] = 769, - [3429] = 766, - [3430] = 2730, - [3431] = 2716, - [3432] = 775, - [3433] = 3433, - [3434] = 765, - [3435] = 2733, - [3436] = 3436, - [3437] = 2734, - [3438] = 3438, - [3439] = 3439, + [3418] = 882, + [3419] = 2858, + [3420] = 764, + [3421] = 923, + [3422] = 936, + [3423] = 3031, + [3424] = 894, + [3425] = 2830, + [3426] = 2867, + [3427] = 2877, + [3428] = 2868, + [3429] = 2844, + [3430] = 2836, + [3431] = 753, + [3432] = 2835, + [3433] = 760, + [3434] = 965, + [3435] = 764, + [3436] = 2989, + [3437] = 3437, + [3438] = 893, + [3439] = 2874, [3440] = 3440, - [3441] = 3441, - [3442] = 2723, + [3441] = 891, + [3442] = 940, [3443] = 3443, - [3444] = 768, - [3445] = 818, - [3446] = 769, - [3447] = 754, - [3448] = 767, - [3449] = 775, - [3450] = 750, - [3451] = 767, - [3452] = 768, - [3453] = 765, - [3454] = 764, - [3455] = 3455, - [3456] = 766, - [3457] = 2923, - [3458] = 2729, - [3459] = 2728, - [3460] = 772, - [3461] = 793, - [3462] = 793, - [3463] = 2064, - [3464] = 772, - [3465] = 781, - [3466] = 781, - [3467] = 752, - [3468] = 2693, - [3469] = 792, - [3470] = 2921, - [3471] = 792, + [3444] = 2766, + [3445] = 911, + [3446] = 2854, + [3447] = 2855, + [3448] = 881, + [3449] = 997, + [3450] = 2859, + [3451] = 3451, + [3452] = 901, + [3453] = 896, + [3454] = 2831, + [3455] = 902, + [3456] = 887, + [3457] = 886, + [3458] = 2883, + [3459] = 885, + [3460] = 2885, + [3461] = 884, + [3462] = 883, + [3463] = 2832, + [3464] = 880, + [3465] = 3465, + [3466] = 879, + [3467] = 976, + [3468] = 900, + [3469] = 907, + [3470] = 941, + [3471] = 943, [3472] = 3472, - [3473] = 3472, - [3474] = 818, - [3475] = 3472, - [3476] = 3472, - [3477] = 3472, - [3478] = 3472, - [3479] = 3472, - [3480] = 2090, - [3481] = 2093, - [3482] = 2088, - [3483] = 3472, - [3484] = 3472, - [3485] = 3472, - [3486] = 788, - [3487] = 2064, - [3488] = 779, - [3489] = 757, - [3490] = 3472, - [3491] = 2080, - [3492] = 2097, - [3493] = 3493, - [3494] = 3472, - [3495] = 777, - [3496] = 751, - [3497] = 2079, - [3498] = 3472, - [3499] = 3472, - [3500] = 3472, - [3501] = 783, - [3502] = 3472, - [3503] = 2094, - [3504] = 2082, - [3505] = 3472, - [3506] = 2083, - [3507] = 2101, - [3508] = 3508, - [3509] = 2125, - [3510] = 2117, - [3511] = 2098, - [3512] = 2100, - [3513] = 2079, - [3514] = 793, - [3515] = 2088, - [3516] = 3516, - [3517] = 3517, - [3518] = 3508, - [3519] = 3516, - [3520] = 3517, - [3521] = 3516, - [3522] = 3508, - [3523] = 3508, - [3524] = 3508, - [3525] = 2083, - [3526] = 2082, - [3527] = 3508, - [3528] = 3516, - [3529] = 3508, - [3530] = 3530, - [3531] = 3508, - [3532] = 764, - [3533] = 2118, - [3534] = 765, - [3535] = 792, - [3536] = 2121, - [3537] = 2107, - [3538] = 3516, - [3539] = 2111, - [3540] = 2716, - [3541] = 3516, - [3542] = 2115, - [3543] = 3543, - [3544] = 3508, - [3545] = 2094, - [3546] = 3516, - [3547] = 3508, - [3548] = 2110, - [3549] = 768, - [3550] = 3516, - [3551] = 3508, - [3552] = 3508, - [3553] = 733, - [3554] = 3508, - [3555] = 2114, - [3556] = 2108, - [3557] = 781, - [3558] = 2112, - [3559] = 2097, - [3560] = 2104, - [3561] = 2080, - [3562] = 3516, - [3563] = 3508, - [3564] = 3516, - [3565] = 3516, - [3566] = 3516, - [3567] = 2120, - [3568] = 3516, - [3569] = 3516, - [3570] = 2090, - [3571] = 3516, - [3572] = 3516, - [3573] = 3508, - [3574] = 729, - [3575] = 731, - [3576] = 737, - [3577] = 3508, - [3578] = 772, - [3579] = 3508, - [3580] = 767, - [3581] = 3516, - [3582] = 3516, - [3583] = 3583, - [3584] = 3508, - [3585] = 2093, - [3586] = 3516, - [3587] = 2723, - [3588] = 3508, - [3589] = 3589, - [3590] = 2740, - [3591] = 3591, - [3592] = 3592, - [3593] = 3593, - [3594] = 750, + [3473] = 953, + [3474] = 989, + [3475] = 753, + [3476] = 2846, + [3477] = 760, + [3478] = 3478, + [3479] = 888, + [3480] = 3480, + [3481] = 2860, + [3482] = 909, + [3483] = 905, + [3484] = 779, + [3485] = 735, + [3486] = 3486, + [3487] = 732, + [3488] = 758, + [3489] = 729, + [3490] = 757, + [3491] = 3491, + [3492] = 3492, + [3493] = 758, + [3494] = 757, + [3495] = 781, + [3496] = 3496, + [3497] = 779, + [3498] = 775, + [3499] = 774, + [3500] = 3500, + [3501] = 774, + [3502] = 731, + [3503] = 3503, + [3504] = 781, + [3505] = 775, + [3506] = 3506, + [3507] = 778, + [3508] = 2827, + [3509] = 2775, + [3510] = 2778, + [3511] = 2798, + [3512] = 2995, + [3513] = 770, + [3514] = 783, + [3515] = 783, + [3516] = 2773, + [3517] = 797, + [3518] = 792, + [3519] = 3519, + [3520] = 2117, + [3521] = 2994, + [3522] = 3522, + [3523] = 2767, + [3524] = 2999, + [3525] = 777, + [3526] = 2802, + [3527] = 2774, + [3528] = 2776, + [3529] = 3529, + [3530] = 771, + [3531] = 782, + [3532] = 753, + [3533] = 829, + [3534] = 3534, + [3535] = 2770, + [3536] = 3536, + [3537] = 760, + [3538] = 2781, + [3539] = 772, + [3540] = 790, + [3541] = 3541, + [3542] = 771, + [3543] = 764, + [3544] = 773, + [3545] = 797, + [3546] = 3546, + [3547] = 770, + [3548] = 2771, + [3549] = 3549, + [3550] = 3550, + [3551] = 773, + [3552] = 2811, + [3553] = 782, + [3554] = 790, + [3555] = 772, + [3556] = 777, + [3557] = 2769, + [3558] = 792, + [3559] = 778, + [3560] = 3560, + [3561] = 2147, + [3562] = 3560, + [3563] = 3560, + [3564] = 2137, + [3565] = 2146, + [3566] = 3560, + [3567] = 775, + [3568] = 2145, + [3569] = 2144, + [3570] = 2148, + [3571] = 3560, + [3572] = 2142, + [3573] = 3560, + [3574] = 3560, + [3575] = 3560, + [3576] = 3560, + [3577] = 3560, + [3578] = 781, + [3579] = 3560, + [3580] = 779, + [3581] = 3560, + [3582] = 3560, + [3583] = 2117, + [3584] = 774, + [3585] = 3560, + [3586] = 3560, + [3587] = 758, + [3588] = 2149, + [3589] = 3560, + [3590] = 3590, + [3591] = 3560, + [3592] = 829, + [3593] = 757, + [3594] = 2143, [3595] = 3595, [3596] = 3596, [3597] = 3597, - [3598] = 3598, - [3599] = 3595, - [3600] = 2729, - [3601] = 2722, - [3602] = 3602, - [3603] = 3603, - [3604] = 2734, - [3605] = 2728, - [3606] = 3597, - [3607] = 3607, - [3608] = 3608, - [3609] = 3609, - [3610] = 3595, - [3611] = 2730, - [3612] = 3595, - [3613] = 3597, - [3614] = 2731, - [3615] = 2716, - [3616] = 2732, - [3617] = 2701, - [3618] = 3597, - [3619] = 2740, - [3620] = 2741, - [3621] = 2729, - [3622] = 2693, - [3623] = 3623, - [3624] = 3595, - [3625] = 2723, - [3626] = 754, - [3627] = 3608, - [3628] = 752, - [3629] = 2733, - [3630] = 3595, - [3631] = 3595, - [3632] = 3597, - [3633] = 3596, - [3634] = 3597, + [3598] = 3595, + [3599] = 735, + [3600] = 3597, + [3601] = 3597, + [3602] = 729, + [3603] = 3595, + [3604] = 3597, + [3605] = 732, + [3606] = 3595, + [3607] = 3595, + [3608] = 3596, + [3609] = 3595, + [3610] = 731, + [3611] = 3597, + [3612] = 3597, + [3613] = 2798, + [3614] = 2148, + [3615] = 2147, + [3616] = 3595, + [3617] = 3595, + [3618] = 2164, + [3619] = 2137, + [3620] = 2146, + [3621] = 3597, + [3622] = 3597, + [3623] = 2167, + [3624] = 2175, + [3625] = 2181, + [3626] = 2162, + [3627] = 773, + [3628] = 3595, + [3629] = 2144, + [3630] = 2168, + [3631] = 3631, + [3632] = 2142, + [3633] = 3597, + [3634] = 3595, [3635] = 3597, - [3636] = 2723, - [3637] = 3595, - [3638] = 3597, - [3639] = 3597, - [3640] = 3597, - [3641] = 3602, - [3642] = 3592, - [3643] = 3643, - [3644] = 3595, - [3645] = 3645, - [3646] = 3596, - [3647] = 2728, - [3648] = 3595, - [3649] = 3592, - [3650] = 3602, - [3651] = 2716, - [3652] = 2722, - [3653] = 3602, - [3654] = 3592, - [3655] = 3595, - [3656] = 2909, - [3657] = 2693, - [3658] = 3595, - [3659] = 3597, - [3660] = 3597, - [3661] = 3597, - [3662] = 2730, - [3663] = 2125, - [3664] = 2731, - [3665] = 3597, - [3666] = 2098, - [3667] = 3595, - [3668] = 2112, - [3669] = 2120, - [3670] = 2110, - [3671] = 3671, - [3672] = 2104, - [3673] = 2111, - [3674] = 2107, + [3636] = 2149, + [3637] = 3597, + [3638] = 2143, + [3639] = 3595, + [3640] = 3595, + [3641] = 792, + [3642] = 782, + [3643] = 3597, + [3644] = 3644, + [3645] = 3595, + [3646] = 790, + [3647] = 3597, + [3648] = 3597, + [3649] = 3595, + [3650] = 772, + [3651] = 3597, + [3652] = 3595, + [3653] = 3653, + [3654] = 3595, + [3655] = 3597, + [3656] = 778, + [3657] = 3597, + [3658] = 3597, + [3659] = 2172, + [3660] = 2166, + [3661] = 2145, + [3662] = 777, + [3663] = 2182, + [3664] = 2160, + [3665] = 2161, + [3666] = 2173, + [3667] = 2174, + [3668] = 3595, + [3669] = 783, + [3670] = 3595, + [3671] = 2170, + [3672] = 3595, + [3673] = 2781, + [3674] = 2176, [3675] = 3597, - [3676] = 2741, - [3677] = 2732, - [3678] = 3595, - [3679] = 3595, - [3680] = 2935, - [3681] = 3597, - [3682] = 2121, - [3683] = 2114, - [3684] = 2115, - [3685] = 3596, - [3686] = 2101, - [3687] = 2117, - [3688] = 3688, - [3689] = 3595, - [3690] = 2100, - [3691] = 3595, - [3692] = 3597, - [3693] = 2118, - [3694] = 2701, - [3695] = 2108, - [3696] = 2723, - [3697] = 2935, + [3676] = 2177, + [3677] = 2769, + [3678] = 3678, + [3679] = 2776, + [3680] = 2774, + [3681] = 2773, + [3682] = 2776, + [3683] = 2774, + [3684] = 2773, + [3685] = 2771, + [3686] = 2771, + [3687] = 2770, + [3688] = 2775, + [3689] = 2770, + [3690] = 3690, + [3691] = 2767, + [3692] = 2775, + [3693] = 3693, + [3694] = 2781, + [3695] = 3693, + [3696] = 3678, + [3697] = 3697, [3698] = 3698, [3699] = 3699, [3700] = 3700, - [3701] = 3701, - [3702] = 3702, - [3703] = 3702, - [3704] = 3704, - [3705] = 3700, - [3706] = 3702, - [3707] = 3702, - [3708] = 3702, + [3701] = 2802, + [3702] = 2811, + [3703] = 3678, + [3704] = 3678, + [3705] = 2781, + [3706] = 3700, + [3707] = 3693, + [3708] = 3708, [3709] = 3709, - [3710] = 3700, - [3711] = 3698, - [3712] = 3702, - [3713] = 3702, - [3714] = 3700, - [3715] = 3715, - [3716] = 3716, - [3717] = 3702, - [3718] = 3701, - [3719] = 3702, - [3720] = 3702, - [3721] = 3700, - [3722] = 3702, - [3723] = 3702, - [3724] = 3709, - [3725] = 2734, - [3726] = 2722, - [3727] = 2741, - [3728] = 3700, - [3729] = 3700, - [3730] = 3700, - [3731] = 2693, - [3732] = 3700, - [3733] = 779, - [3734] = 3702, - [3735] = 3709, - [3736] = 3709, - [3737] = 3704, - [3738] = 783, - [3739] = 757, - [3740] = 3700, - [3741] = 3702, - [3742] = 3702, - [3743] = 3709, - [3744] = 3702, - [3745] = 3700, - [3746] = 3700, - [3747] = 3698, - [3748] = 3700, - [3749] = 3702, - [3750] = 751, - [3751] = 3751, + [3710] = 3693, + [3711] = 3693, + [3712] = 2827, + [3713] = 3713, + [3714] = 3678, + [3715] = 3678, + [3716] = 3693, + [3717] = 3678, + [3718] = 3718, + [3719] = 2164, + [3720] = 3693, + [3721] = 2167, + [3722] = 764, + [3723] = 760, + [3724] = 2175, + [3725] = 2181, + [3726] = 2162, + [3727] = 2769, + [3728] = 3728, + [3729] = 2168, + [3730] = 2778, + [3731] = 2767, + [3732] = 2172, + [3733] = 2166, + [3734] = 3678, + [3735] = 3700, + [3736] = 3693, + [3737] = 3693, + [3738] = 3738, + [3739] = 3693, + [3740] = 2182, + [3741] = 3678, + [3742] = 3742, + [3743] = 2160, + [3744] = 2161, + [3745] = 3031, + [3746] = 3678, + [3747] = 2173, + [3748] = 2174, + [3749] = 3693, + [3750] = 3693, + [3751] = 3678, [3752] = 3752, [3753] = 3753, - [3754] = 3702, - [3755] = 3755, - [3756] = 3709, - [3757] = 3700, - [3758] = 3758, - [3759] = 3700, - [3760] = 3700, - [3761] = 2716, - [3762] = 3753, - [3763] = 3751, - [3764] = 2722, - [3765] = 2723, - [3766] = 2693, - [3767] = 2728, - [3768] = 3702, - [3769] = 3709, - [3770] = 3753, - [3771] = 3700, - [3772] = 3699, - [3773] = 3700, - [3774] = 788, - [3775] = 3709, - [3776] = 3645, - [3777] = 3702, - [3778] = 2729, - [3779] = 2733, - [3780] = 3753, - [3781] = 2741, - [3782] = 3700, - [3783] = 3700, - [3784] = 3704, - [3785] = 2740, - [3786] = 3698, - [3787] = 3709, - [3788] = 2701, - [3789] = 3702, - [3790] = 3702, - [3791] = 2732, - [3792] = 3709, - [3793] = 2731, - [3794] = 2730, - [3795] = 3700, - [3796] = 3698, - [3797] = 3797, - [3798] = 3751, - [3799] = 3701, - [3800] = 2716, - [3801] = 3753, - [3802] = 3700, + [3754] = 3693, + [3755] = 2177, + [3756] = 2176, + [3757] = 2170, + [3758] = 3697, + [3759] = 753, + [3760] = 2989, + [3761] = 2827, + [3762] = 3678, + [3763] = 3698, + [3764] = 3693, + [3765] = 2811, + [3766] = 3700, + [3767] = 3767, + [3768] = 3693, + [3769] = 2798, + [3770] = 3698, + [3771] = 3678, + [3772] = 2798, + [3773] = 3678, + [3774] = 3697, + [3775] = 3775, + [3776] = 3752, + [3777] = 3678, + [3778] = 3693, + [3779] = 3678, + [3780] = 3693, + [3781] = 3697, + [3782] = 3698, + [3783] = 3678, + [3784] = 3784, + [3785] = 3785, + [3786] = 2802, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 2781, + [3791] = 3791, + [3792] = 3784, + [3793] = 3784, + [3794] = 3784, + [3795] = 3795, + [3796] = 774, + [3797] = 2770, + [3798] = 3798, + [3799] = 3795, + [3800] = 779, + [3801] = 3801, + [3802] = 3784, [3803] = 3803, - [3804] = 3702, - [3805] = 2728, - [3806] = 2729, - [3807] = 2730, - [3808] = 2740, - [3809] = 2701, - [3810] = 2731, - [3811] = 777, - [3812] = 3812, - [3813] = 3813, - [3814] = 2732, - [3815] = 3815, - [3816] = 2917, - [3817] = 769, + [3804] = 2798, + [3805] = 3805, + [3806] = 2798, + [3807] = 2776, + [3808] = 3808, + [3809] = 2774, + [3810] = 2773, + [3811] = 2771, + [3812] = 3795, + [3813] = 3795, + [3814] = 3795, + [3815] = 2781, + [3816] = 3816, + [3817] = 3817, [3818] = 3818, - [3819] = 3818, - [3820] = 766, - [3821] = 3821, - [3822] = 3818, - [3823] = 775, - [3824] = 3821, - [3825] = 2722, - [3826] = 2693, - [3827] = 3827, - [3828] = 3828, - [3829] = 3829, - [3830] = 3830, - [3831] = 3830, - [3832] = 781, - [3833] = 3818, - [3834] = 2728, - [3835] = 2729, - [3836] = 792, - [3837] = 3837, - [3838] = 3838, - [3839] = 3815, - [3840] = 3815, - [3841] = 3841, - [3842] = 3842, - [3843] = 3815, - [3844] = 3815, - [3845] = 3845, - [3846] = 3815, - [3847] = 3821, - [3848] = 764, - [3849] = 3845, - [3850] = 793, - [3851] = 3815, - [3852] = 3815, - [3853] = 2730, - [3854] = 3854, - [3855] = 2731, - [3856] = 2732, - [3857] = 765, - [3858] = 2701, - [3859] = 772, - [3860] = 2740, - [3861] = 2741, - [3862] = 3815, - [3863] = 767, - [3864] = 2923, - [3865] = 1695, - [3866] = 2921, - [3867] = 3815, - [3868] = 3815, - [3869] = 3869, - [3870] = 3870, - [3871] = 3871, - [3872] = 768, - [3873] = 3815, - [3874] = 3830, - [3875] = 3821, - [3876] = 3815, - [3877] = 3827, - [3878] = 3878, - [3879] = 3879, - [3880] = 3880, - [3881] = 3878, - [3882] = 3879, - [3883] = 3883, - [3884] = 3884, - [3885] = 3878, - [3886] = 3886, - [3887] = 3878, - [3888] = 2941, - [3889] = 3884, - [3890] = 3884, - [3891] = 3879, - [3892] = 3883, - [3893] = 3879, - [3894] = 3883, - [3895] = 3895, - [3896] = 3883, - [3897] = 3878, - [3898] = 3878, - [3899] = 3883, - [3900] = 3883, - [3901] = 3883, - [3902] = 3883, - [3903] = 3878, - [3904] = 3878, - [3905] = 3883, - [3906] = 3879, - [3907] = 3879, - [3908] = 3878, - [3909] = 3886, - [3910] = 3883, - [3911] = 3878, - [3912] = 3912, - [3913] = 3913, - [3914] = 3914, - [3915] = 3879, - [3916] = 3878, - [3917] = 3886, - [3918] = 3883, - [3919] = 3879, - [3920] = 3886, - [3921] = 3883, - [3922] = 3883, - [3923] = 3879, - [3924] = 3878, - [3925] = 3884, - [3926] = 3883, - [3927] = 3883, - [3928] = 3878, - [3929] = 3878, - [3930] = 3883, - [3931] = 3878, - [3932] = 3878, - [3933] = 3880, - [3934] = 3845, - [3935] = 3879, - [3936] = 3828, - [3937] = 3878, - [3938] = 3883, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, + [3819] = 3795, + [3820] = 2775, + [3821] = 3805, + [3822] = 3795, + [3823] = 3803, + [3824] = 3795, + [3825] = 3784, + [3826] = 2811, + [3827] = 2827, + [3828] = 3784, + [3829] = 3795, + [3830] = 757, + [3831] = 3808, + [3832] = 3798, + [3833] = 3788, + [3834] = 3784, + [3835] = 3795, + [3836] = 3795, + [3837] = 3795, + [3838] = 3784, + [3839] = 3795, + [3840] = 3784, + [3841] = 3795, + [3842] = 3795, + [3843] = 3784, + [3844] = 3784, + [3845] = 2778, + [3846] = 3791, + [3847] = 3788, + [3848] = 3803, + [3849] = 3784, + [3850] = 3795, + [3851] = 2776, + [3852] = 2774, + [3853] = 2773, + [3854] = 3788, + [3855] = 2771, + [3856] = 3784, + [3857] = 2770, + [3858] = 3798, + [3859] = 2775, + [3860] = 3795, + [3861] = 3861, + [3862] = 3803, + [3863] = 3863, + [3864] = 3784, + [3865] = 3803, + [3866] = 3795, + [3867] = 2811, + [3868] = 2769, + [3869] = 2827, + [3870] = 2767, + [3871] = 3788, + [3872] = 3872, + [3873] = 3795, + [3874] = 3803, + [3875] = 3784, + [3876] = 3803, + [3877] = 3795, + [3878] = 2769, + [3879] = 2767, + [3880] = 3784, + [3881] = 3784, + [3882] = 3795, + [3883] = 3803, + [3884] = 3791, + [3885] = 3784, + [3886] = 3795, + [3887] = 3031, + [3888] = 3713, + [3889] = 3805, + [3890] = 775, + [3891] = 781, + [3892] = 3784, + [3893] = 3863, + [3894] = 3803, + [3895] = 3784, + [3896] = 3805, + [3897] = 3863, + [3898] = 3805, + [3899] = 3795, + [3900] = 3803, + [3901] = 3784, + [3902] = 758, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 3903, + [3907] = 2775, + [3908] = 782, + [3909] = 3905, + [3910] = 3910, + [3911] = 2827, + [3912] = 2769, + [3913] = 792, + [3914] = 2811, + [3915] = 3905, + [3916] = 777, + [3917] = 3917, + [3918] = 3905, + [3919] = 783, + [3920] = 3920, + [3921] = 778, + [3922] = 770, + [3923] = 797, + [3924] = 3904, + [3925] = 2771, + [3926] = 3926, + [3927] = 771, + [3928] = 2773, + [3929] = 3903, + [3930] = 2774, + [3931] = 790, + [3932] = 3905, + [3933] = 3933, + [3934] = 3905, + [3935] = 3935, + [3936] = 3905, + [3937] = 2776, + [3938] = 3905, + [3939] = 773, + [3940] = 3905, + [3941] = 3905, [3942] = 3942, - [3943] = 3943, - [3944] = 3944, + [3943] = 1839, + [3944] = 3905, [3945] = 3945, - [3946] = 3913, - [3947] = 3947, - [3948] = 3947, - [3949] = 3947, - [3950] = 3950, - [3951] = 3951, - [3952] = 3950, - [3953] = 3953, - [3954] = 3954, - [3955] = 3955, + [3946] = 3946, + [3947] = 3903, + [3948] = 2767, + [3949] = 3935, + [3950] = 3905, + [3951] = 3904, + [3952] = 2999, + [3953] = 3905, + [3954] = 3926, + [3955] = 3935, [3956] = 3956, - [3957] = 3947, - [3958] = 3958, + [3957] = 772, + [3958] = 2995, [3959] = 3959, - [3960] = 3960, - [3961] = 3947, + [3960] = 2994, + [3961] = 2770, [3962] = 3962, - [3963] = 3954, - [3964] = 3947, - [3965] = 3953, - [3966] = 3950, - [3967] = 3947, - [3968] = 3950, - [3969] = 3947, - [3970] = 3947, + [3963] = 3910, + [3964] = 3964, + [3965] = 3904, + [3966] = 3966, + [3967] = 3967, + [3968] = 3967, + [3969] = 3969, + [3970] = 3970, [3971] = 3971, - [3972] = 3956, - [3973] = 3953, - [3974] = 3953, - [3975] = 3951, - [3976] = 3962, - [3977] = 3953, - [3978] = 3955, - [3979] = 3950, - [3980] = 3980, - [3981] = 3960, - [3982] = 3953, - [3983] = 3983, - [3984] = 3950, - [3985] = 3953, - [3986] = 3956, - [3987] = 3987, - [3988] = 3960, - [3989] = 3980, - [3990] = 3950, - [3991] = 3947, - [3992] = 3992, - [3993] = 3960, - [3994] = 3956, - [3995] = 3987, - [3996] = 3947, - [3997] = 2192, - [3998] = 3950, - [3999] = 3980, - [4000] = 3950, - [4001] = 3953, - [4002] = 3971, - [4003] = 4003, - [4004] = 3947, - [4005] = 3947, - [4006] = 3953, - [4007] = 3947, - [4008] = 3947, - [4009] = 3971, - [4010] = 3953, - [4011] = 3980, - [4012] = 3955, - [4013] = 3956, - [4014] = 3956, - [4015] = 3962, - [4016] = 3954, - [4017] = 3954, - [4018] = 3950, - [4019] = 3962, - [4020] = 3956, - [4021] = 3956, - [4022] = 3954, - [4023] = 3983, - [4024] = 3947, - [4025] = 3950, - [4026] = 3953, - [4027] = 3971, - [4028] = 3954, - [4029] = 3950, - [4030] = 3950, - [4031] = 3947, - [4032] = 3950, + [3972] = 3967, + [3973] = 3967, + [3974] = 3969, + [3975] = 3975, + [3976] = 3025, + [3977] = 3977, + [3978] = 3967, + [3979] = 3979, + [3980] = 3977, + [3981] = 3969, + [3982] = 3969, + [3983] = 3967, + [3984] = 3967, + [3985] = 3967, + [3986] = 3967, + [3987] = 3979, + [3988] = 3977, + [3989] = 3977, + [3990] = 3970, + [3991] = 3979, + [3992] = 3969, + [3993] = 3977, + [3994] = 3969, + [3995] = 3967, + [3996] = 3967, + [3997] = 3969, + [3998] = 3977, + [3999] = 3999, + [4000] = 3969, + [4001] = 3969, + [4002] = 3967, + [4003] = 3977, + [4004] = 3969, + [4005] = 3969, + [4006] = 3967, + [4007] = 3969, + [4008] = 3969, + [4009] = 3970, + [4010] = 3977, + [4011] = 4011, + [4012] = 3967, + [4013] = 3977, + [4014] = 3977, + [4015] = 3969, + [4016] = 3910, + [4017] = 3979, + [4018] = 3970, + [4019] = 3969, + [4020] = 3975, + [4021] = 3969, + [4022] = 3969, + [4023] = 3959, + [4024] = 3967, + [4025] = 3967, + [4026] = 3967, + [4027] = 4027, + [4028] = 4028, + [4029] = 4029, + [4030] = 3966, + [4031] = 4031, + [4032] = 4032, [4033] = 4033, - [4034] = 3950, - [4035] = 3950, - [4036] = 3954, - [4037] = 3950, - [4038] = 3953, - [4039] = 3955, - [4040] = 3953, - [4041] = 3953, - [4042] = 3947, - [4043] = 3950, - [4044] = 3956, - [4045] = 4045, - [4046] = 3954, - [4047] = 3987, - [4048] = 2167, - [4049] = 3950, - [4050] = 3947, - [4051] = 3950, - [4052] = 3947, - [4053] = 3947, - [4054] = 3954, - [4055] = 3987, - [4056] = 3953, - [4057] = 3950, - [4058] = 3950, - [4059] = 3947, - [4060] = 3956, - [4061] = 3947, - [4062] = 3954, - [4063] = 3953, - [4064] = 3953, - [4065] = 3950, - [4066] = 4066, - [4067] = 4067, - [4068] = 2234, - [4069] = 4067, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4070, - [4078] = 4078, - [4079] = 4079, - [4080] = 4067, - [4081] = 4075, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4035, + [4038] = 4038, + [4039] = 4039, + [4040] = 4036, + [4041] = 4041, + [4042] = 4042, + [4043] = 4039, + [4044] = 4044, + [4045] = 4035, + [4046] = 4041, + [4047] = 4036, + [4048] = 4038, + [4049] = 4049, + [4050] = 4038, + [4051] = 4038, + [4052] = 4036, + [4053] = 4053, + [4054] = 4038, + [4055] = 4055, + [4056] = 4035, + [4057] = 4057, + [4058] = 4035, + [4059] = 4049, + [4060] = 4060, + [4061] = 2226, + [4062] = 4038, + [4063] = 4053, + [4064] = 4036, + [4065] = 4055, + [4066] = 4049, + [4067] = 4044, + [4068] = 4038, + [4069] = 4039, + [4070] = 4035, + [4071] = 2230, + [4072] = 4036, + [4073] = 4036, + [4074] = 4049, + [4075] = 4038, + [4076] = 4035, + [4077] = 4036, + [4078] = 4038, + [4079] = 4035, + [4080] = 4035, + [4081] = 4039, [4082] = 4082, - [4083] = 4083, - [4084] = 4083, - [4085] = 4070, - [4086] = 4086, - [4087] = 4087, - [4088] = 4066, - [4089] = 4083, - [4090] = 4090, - [4091] = 4067, - [4092] = 4033, - [4093] = 2272, - [4094] = 4094, - [4095] = 4070, - [4096] = 4067, - [4097] = 4075, - [4098] = 4067, - [4099] = 4099, - [4100] = 4079, - [4101] = 4070, - [4102] = 4102, - [4103] = 4103, - [4104] = 2941, - [4105] = 4087, - [4106] = 4067, - [4107] = 4087, - [4108] = 4087, - [4109] = 4109, - [4110] = 4079, - [4111] = 4070, - [4112] = 4112, - [4113] = 4070, - [4114] = 4070, - [4115] = 4079, - [4116] = 4067, - [4117] = 4117, - [4118] = 4067, - [4119] = 2249, - [4120] = 2167, - [4121] = 4083, - [4122] = 2192, - [4123] = 4066, - [4124] = 4075, - [4125] = 4066, - [4126] = 4070, - [4127] = 4127, - [4128] = 4067, - [4129] = 3992, - [4130] = 4130, - [4131] = 4131, - [4132] = 4070, - [4133] = 4133, - [4134] = 4134, - [4135] = 4135, - [4136] = 4136, - [4137] = 4137, - [4138] = 4138, - [4139] = 4139, + [4083] = 4082, + [4084] = 4039, + [4085] = 4049, + [4086] = 4057, + [4087] = 4038, + [4088] = 4035, + [4089] = 4036, + [4090] = 4038, + [4091] = 4091, + [4092] = 4038, + [4093] = 4038, + [4094] = 4036, + [4095] = 4035, + [4096] = 4035, + [4097] = 4039, + [4098] = 4036, + [4099] = 4091, + [4100] = 4035, + [4101] = 4035, + [4102] = 4038, + [4103] = 4091, + [4104] = 837, + [4105] = 4082, + [4106] = 4106, + [4107] = 4036, + [4108] = 4057, + [4109] = 4049, + [4110] = 4039, + [4111] = 4039, + [4112] = 4036, + [4113] = 4113, + [4114] = 4114, + [4115] = 4115, + [4116] = 4038, + [4117] = 4049, + [4118] = 4049, + [4119] = 4042, + [4120] = 4036, + [4121] = 4038, + [4122] = 4042, + [4123] = 4082, + [4124] = 4035, + [4125] = 4036, + [4126] = 4036, + [4127] = 4038, + [4128] = 4039, + [4129] = 4035, + [4130] = 4053, + [4131] = 4036, + [4132] = 4038, + [4133] = 4057, + [4134] = 817, + [4135] = 4055, + [4136] = 4036, + [4137] = 4038, + [4138] = 4049, + [4139] = 4038, [4140] = 4140, - [4141] = 4136, - [4142] = 4142, - [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 4146, - [4147] = 4147, - [4148] = 4148, - [4149] = 4149, - [4150] = 4146, - [4151] = 4151, - [4152] = 4149, - [4153] = 4153, - [4154] = 4148, - [4155] = 4143, + [4141] = 4042, + [4142] = 4038, + [4143] = 4036, + [4144] = 4036, + [4145] = 4091, + [4146] = 4038, + [4147] = 4038, + [4148] = 4036, + [4149] = 4036, + [4150] = 4035, + [4151] = 4055, + [4152] = 4049, + [4153] = 4039, + [4154] = 4036, + [4155] = 4053, [4156] = 4156, [4157] = 4157, - [4158] = 4138, + [4158] = 4158, [4159] = 4159, [4160] = 4160, - [4161] = 4153, + [4161] = 4161, [4162] = 4162, [4163] = 4163, [4164] = 4164, - [4165] = 4156, - [4166] = 4144, - [4167] = 4167, - [4168] = 2346, - [4169] = 4136, - [4170] = 4170, + [4165] = 4165, + [4166] = 834, + [4167] = 4156, + [4168] = 4168, + [4169] = 4163, + [4170] = 4156, [4171] = 4171, [4172] = 4172, - [4173] = 4173, - [4174] = 4174, - [4175] = 2356, - [4176] = 4138, - [4177] = 4157, - [4178] = 2249, - [4179] = 2315, - [4180] = 4180, - [4181] = 4173, + [4173] = 4156, + [4174] = 4156, + [4175] = 827, + [4176] = 4157, + [4177] = 4159, + [4178] = 4156, + [4179] = 4157, + [4180] = 4164, + [4181] = 4106, [4182] = 4182, - [4183] = 4156, - [4184] = 2234, + [4183] = 4183, + [4184] = 2226, [4185] = 4185, - [4186] = 4186, - [4187] = 2226, - [4188] = 4188, - [4189] = 4188, - [4190] = 4180, - [4191] = 4191, - [4192] = 2272, - [4193] = 4157, - [4194] = 2239, - [4195] = 4195, - [4196] = 4185, + [4186] = 4165, + [4187] = 4115, + [4188] = 4164, + [4189] = 4189, + [4190] = 4190, + [4191] = 4157, + [4192] = 4156, + [4193] = 4160, + [4194] = 4194, + [4195] = 4164, + [4196] = 4196, [4197] = 4197, - [4198] = 4198, - [4199] = 4199, - [4200] = 4200, - [4201] = 4143, - [4202] = 4202, - [4203] = 4203, - [4204] = 4157, - [4205] = 4138, - [4206] = 4136, - [4207] = 4207, - [4208] = 4157, - [4209] = 4209, - [4210] = 4200, - [4211] = 4138, - [4212] = 4195, - [4213] = 4153, - [4214] = 4214, + [4198] = 4156, + [4199] = 4160, + [4200] = 828, + [4201] = 2230, + [4202] = 4159, + [4203] = 4165, + [4204] = 3025, + [4205] = 4164, + [4206] = 4206, + [4207] = 4164, + [4208] = 4163, + [4209] = 4160, + [4210] = 4210, + [4211] = 4163, + [4212] = 2324, + [4213] = 2326, + [4214] = 4164, [4215] = 4215, - [4216] = 4138, - [4217] = 4188, - [4218] = 4136, - [4219] = 4157, - [4220] = 4138, - [4221] = 4221, - [4222] = 4156, - [4223] = 4138, - [4224] = 4156, - [4225] = 4225, - [4226] = 4215, - [4227] = 4188, - [4228] = 4148, - [4229] = 4188, - [4230] = 4136, - [4231] = 4156, + [4216] = 4159, + [4217] = 4164, + [4218] = 2284, + [4219] = 4156, + [4220] = 4164, + [4221] = 4156, + [4222] = 4222, + [4223] = 4164, + [4224] = 4224, + [4225] = 4165, + [4226] = 4226, + [4227] = 4227, + [4228] = 4228, + [4229] = 2326, + [4230] = 4230, + [4231] = 4231, [4232] = 4232, [4233] = 4233, - [4234] = 4234, - [4235] = 4136, - [4236] = 4188, - [4237] = 4133, - [4238] = 2243, + [4234] = 4226, + [4235] = 4226, + [4236] = 2324, + [4237] = 4237, + [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 4241, - [4242] = 4188, - [4243] = 4185, - [4244] = 750, - [4245] = 4156, - [4246] = 750, - [4247] = 4136, - [4248] = 818, + [4241] = 4240, + [4242] = 4242, + [4243] = 4243, + [4244] = 4237, + [4245] = 2284, + [4246] = 4243, + [4247] = 2384, + [4248] = 4248, [4249] = 4249, - [4250] = 4135, - [4251] = 4251, - [4252] = 4188, - [4253] = 4200, - [4254] = 4188, - [4255] = 4240, - [4256] = 4138, - [4257] = 4157, - [4258] = 4146, - [4259] = 4157, - [4260] = 4138, - [4261] = 4195, - [4262] = 4188, + [4250] = 4250, + [4251] = 2455, + [4252] = 4232, + [4253] = 4230, + [4254] = 4237, + [4255] = 4250, + [4256] = 4256, + [4257] = 4231, + [4258] = 4258, + [4259] = 4259, + [4260] = 2453, + [4261] = 4230, + [4262] = 4262, [4263] = 4263, - [4264] = 4209, - [4265] = 4157, + [4264] = 4264, + [4265] = 4265, [4266] = 4266, - [4267] = 4267, - [4268] = 4215, - [4269] = 4156, - [4270] = 4144, - [4271] = 4136, + [4267] = 4240, + [4268] = 4248, + [4269] = 4269, + [4270] = 4270, + [4271] = 4228, [4272] = 4272, - [4273] = 4273, - [4274] = 4153, + [4273] = 4230, + [4274] = 4274, [4275] = 4275, - [4276] = 4146, - [4277] = 4277, - [4278] = 4278, - [4279] = 4279, - [4280] = 4144, - [4281] = 4146, - [4282] = 4282, + [4276] = 4226, + [4277] = 4232, + [4278] = 4226, + [4279] = 4272, + [4280] = 4280, + [4281] = 4281, + [4282] = 4266, [4283] = 4283, - [4284] = 4221, - [4285] = 4285, - [4286] = 4149, - [4287] = 4287, - [4288] = 4288, - [4289] = 4146, - [4290] = 4188, - [4291] = 4185, - [4292] = 4156, - [4293] = 4195, - [4294] = 4251, - [4295] = 4146, - [4296] = 4209, - [4297] = 4149, - [4298] = 4148, - [4299] = 4209, - [4300] = 4136, - [4301] = 4215, - [4302] = 4188, - [4303] = 4156, - [4304] = 4143, - [4305] = 4146, - [4306] = 4200, - [4307] = 4157, + [4284] = 4228, + [4285] = 2305, + [4286] = 4286, + [4287] = 4231, + [4288] = 4231, + [4289] = 2325, + [4290] = 4290, + [4291] = 4291, + [4292] = 4249, + [4293] = 4293, + [4294] = 4248, + [4295] = 4295, + [4296] = 4228, + [4297] = 4297, + [4298] = 4298, + [4299] = 4299, + [4300] = 4237, + [4301] = 829, + [4302] = 4228, + [4303] = 4298, + [4304] = 4291, + [4305] = 4298, + [4306] = 4306, + [4307] = 4307, [4308] = 4308, - [4309] = 4309, - [4310] = 4310, - [4311] = 4311, - [4312] = 2243, - [4313] = 4313, + [4309] = 4240, + [4310] = 753, + [4311] = 4240, + [4312] = 4226, + [4313] = 4283, [4314] = 4314, - [4315] = 4315, - [4316] = 4314, + [4315] = 4290, + [4316] = 4228, [4317] = 4317, - [4318] = 4318, - [4319] = 4319, - [4320] = 4315, - [4321] = 4321, - [4322] = 4322, + [4318] = 753, + [4319] = 4230, + [4320] = 4232, + [4321] = 4230, + [4322] = 4263, [4323] = 4323, - [4324] = 4324, - [4325] = 4313, + [4324] = 4232, + [4325] = 4325, [4326] = 4326, - [4327] = 4327, - [4328] = 4328, - [4329] = 4311, - [4330] = 4330, - [4331] = 4315, - [4332] = 4332, + [4327] = 4250, + [4328] = 4248, + [4329] = 4329, + [4330] = 4240, + [4331] = 4331, + [4332] = 2310, [4333] = 4333, - [4334] = 4334, - [4335] = 4311, - [4336] = 4336, - [4337] = 4311, - [4338] = 4338, - [4339] = 4313, + [4334] = 4232, + [4335] = 4243, + [4336] = 4237, + [4337] = 4337, + [4338] = 4230, + [4339] = 4240, [4340] = 4340, - [4341] = 4315, - [4342] = 4342, - [4343] = 4314, - [4344] = 4344, - [4345] = 4315, - [4346] = 4346, - [4347] = 4342, - [4348] = 4315, - [4349] = 4349, - [4350] = 4350, - [4351] = 4351, - [4352] = 4338, - [4353] = 4344, + [4341] = 4232, + [4342] = 4227, + [4343] = 4228, + [4344] = 4314, + [4345] = 4243, + [4346] = 4290, + [4347] = 4347, + [4348] = 4237, + [4349] = 4266, + [4350] = 4226, + [4351] = 4230, + [4352] = 4290, + [4353] = 4353, [4354] = 4354, - [4355] = 4311, - [4356] = 4313, - [4357] = 4357, + [4355] = 4272, + [4356] = 4356, + [4357] = 4228, [4358] = 4358, - [4359] = 4315, - [4360] = 4310, - [4361] = 2226, - [4362] = 4362, + [4359] = 4240, + [4360] = 4360, + [4361] = 4361, + [4362] = 4240, [4363] = 4363, - [4364] = 4313, - [4365] = 4313, - [4366] = 4315, - [4367] = 4367, - [4368] = 4368, - [4369] = 4308, - [4370] = 4370, + [4364] = 4364, + [4365] = 4365, + [4366] = 4230, + [4367] = 4291, + [4368] = 4286, + [4369] = 4369, + [4370] = 4249, [4371] = 4371, - [4372] = 2239, - [4373] = 4373, - [4374] = 4371, - [4375] = 4362, - [4376] = 4344, - [4377] = 4336, - [4378] = 4311, - [4379] = 4308, - [4380] = 4311, + [4372] = 4291, + [4373] = 4298, + [4374] = 4374, + [4375] = 4375, + [4376] = 4237, + [4377] = 4228, + [4378] = 4240, + [4379] = 4240, + [4380] = 4232, [4381] = 4381, - [4382] = 4367, - [4383] = 4338, - [4384] = 4314, - [4385] = 4368, - [4386] = 4317, - [4387] = 4373, - [4388] = 4342, - [4389] = 4371, - [4390] = 4313, - [4391] = 4391, - [4392] = 4315, - [4393] = 4370, - [4394] = 4368, - [4395] = 4319, - [4396] = 4396, - [4397] = 4322, - [4398] = 4327, - [4399] = 4367, + [4382] = 4226, + [4383] = 4232, + [4384] = 4275, + [4385] = 4250, + [4386] = 4237, + [4387] = 4387, + [4388] = 4226, + [4389] = 4389, + [4390] = 4269, + [4391] = 4226, + [4392] = 4230, + [4393] = 4232, + [4394] = 4266, + [4395] = 4228, + [4396] = 4240, + [4397] = 4249, + [4398] = 4272, + [4399] = 4399, [4400] = 4400, - [4401] = 4401, - [4402] = 4358, - [4403] = 4370, - [4404] = 4309, - [4405] = 4313, - [4406] = 4342, - [4407] = 4362, - [4408] = 4315, - [4409] = 4357, - [4410] = 4354, - [4411] = 4313, - [4412] = 4358, - [4413] = 4318, - [4414] = 4313, - [4415] = 4338, - [4416] = 4315, + [4401] = 2310, + [4402] = 4402, + [4403] = 4403, + [4404] = 4404, + [4405] = 4405, + [4406] = 4402, + [4407] = 4407, + [4408] = 4408, + [4409] = 953, + [4410] = 4410, + [4411] = 4411, + [4412] = 4410, + [4413] = 901, + [4414] = 4399, + [4415] = 4415, + [4416] = 4416, [4417] = 4417, - [4418] = 4319, - [4419] = 4371, - [4420] = 4336, - [4421] = 4362, - [4422] = 4311, - [4423] = 4334, - [4424] = 4424, - [4425] = 4344, - [4426] = 4336, - [4427] = 4311, - [4428] = 4371, - [4429] = 4429, - [4430] = 4308, - [4431] = 4333, - [4432] = 4330, - [4433] = 4328, - [4434] = 4434, - [4435] = 4308, - [4436] = 4326, - [4437] = 4327, - [4438] = 4321, - [4439] = 4439, - [4440] = 4314, + [4418] = 4400, + [4419] = 4419, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 4420, + [4424] = 4419, + [4425] = 4420, + [4426] = 4426, + [4427] = 4410, + [4428] = 4428, + [4429] = 4404, + [4430] = 4430, + [4431] = 4408, + [4432] = 4410, + [4433] = 4433, + [4434] = 4411, + [4435] = 4435, + [4436] = 4411, + [4437] = 4408, + [4438] = 4438, + [4439] = 4408, + [4440] = 4422, [4441] = 4441, - [4442] = 4317, - [4443] = 4322, - [4444] = 4336, - [4445] = 4319, - [4446] = 4313, - [4447] = 4322, - [4448] = 4327, - [4449] = 4449, - [4450] = 4308, - [4451] = 4317, - [4452] = 4314, - [4453] = 4342, - [4454] = 2426, + [4442] = 4442, + [4443] = 4419, + [4444] = 4419, + [4445] = 4428, + [4446] = 4446, + [4447] = 4441, + [4448] = 4438, + [4449] = 4420, + [4450] = 4450, + [4451] = 4422, + [4452] = 4442, + [4453] = 4442, + [4454] = 4441, [4455] = 4455, - [4456] = 4309, - [4457] = 4315, - [4458] = 4458, - [4459] = 4338, - [4460] = 4310, - [4461] = 4461, - [4462] = 4313, - [4463] = 4310, - [4464] = 4464, - [4465] = 4308, - [4466] = 4358, - [4467] = 4309, - [4468] = 4468, - [4469] = 4321, - [4470] = 4371, - [4471] = 4362, - [4472] = 4326, - [4473] = 4328, - [4474] = 4344, - [4475] = 4336, - [4476] = 4311, - [4477] = 4333, - [4478] = 4358, - [4479] = 4334, - [4480] = 4468, - [4481] = 4311, - [4482] = 4362, - [4483] = 4336, - [4484] = 2396, - [4485] = 2416, - [4486] = 4344, - [4487] = 4487, - [4488] = 4488, - [4489] = 4489, - [4490] = 4314, - [4491] = 4318, - [4492] = 4314, - [4493] = 4317, - [4494] = 4319, - [4495] = 4317, - [4496] = 4354, - [4497] = 4322, - [4498] = 4342, - [4499] = 4319, - [4500] = 4500, - [4501] = 4327, - [4502] = 4357, - [4503] = 4503, - [4504] = 4338, - [4505] = 4322, - [4506] = 4327, - [4507] = 4362, - [4508] = 2346, - [4509] = 4509, - [4510] = 2315, - [4511] = 4362, - [4512] = 4512, - [4513] = 4367, - [4514] = 4514, - [4515] = 4363, - [4516] = 4516, - [4517] = 2356, - [4518] = 4468, - [4519] = 4368, - [4520] = 4468, - [4521] = 4315, - [4522] = 4314, + [4456] = 4422, + [4457] = 4438, + [4458] = 4410, + [4459] = 4459, + [4460] = 4460, + [4461] = 4402, + [4462] = 4410, + [4463] = 4463, + [4464] = 2382, + [4465] = 4428, + [4466] = 4466, + [4467] = 4411, + [4468] = 4408, + [4469] = 4469, + [4470] = 4470, + [4471] = 4405, + [4472] = 4472, + [4473] = 4419, + [4474] = 4474, + [4475] = 4475, + [4476] = 4476, + [4477] = 4408, + [4478] = 4441, + [4479] = 4420, + [4480] = 4419, + [4481] = 4469, + [4482] = 4463, + [4483] = 4483, + [4484] = 4484, + [4485] = 4442, + [4486] = 4441, + [4487] = 4399, + [4488] = 4403, + [4489] = 4402, + [4490] = 4428, + [4491] = 4400, + [4492] = 4410, + [4493] = 4411, + [4494] = 4420, + [4495] = 911, + [4496] = 4496, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 4399, + [4501] = 4474, + [4502] = 4438, + [4503] = 4419, + [4504] = 4430, + [4505] = 4505, + [4506] = 4506, + [4507] = 4410, + [4508] = 2305, + [4509] = 4420, + [4510] = 4404, + [4511] = 891, + [4512] = 4410, + [4513] = 4430, + [4514] = 4419, + [4515] = 4419, + [4516] = 4428, + [4517] = 4517, + [4518] = 4518, + [4519] = 4438, + [4520] = 2491, + [4521] = 4410, + [4522] = 4408, [4523] = 4523, - [4524] = 4330, - [4525] = 4370, - [4526] = 4526, - [4527] = 4371, - [4528] = 4338, - [4529] = 4313, - [4530] = 4358, - [4531] = 4468, - [4532] = 4321, - [4533] = 4371, - [4534] = 4362, - [4535] = 4535, - [4536] = 4536, - [4537] = 4342, - [4538] = 4344, - [4539] = 4539, - [4540] = 4314, - [4541] = 4308, - [4542] = 4311, - [4543] = 4357, - [4544] = 4424, - [4545] = 4363, - [4546] = 4371, - [4547] = 4354, - [4548] = 4338, - [4549] = 4358, - [4550] = 4314, - [4551] = 4317, - [4552] = 4319, - [4553] = 4342, - [4554] = 4322, - [4555] = 4555, - [4556] = 4313, - [4557] = 4314, - [4558] = 4317, - [4559] = 4338, - [4560] = 4315, - [4561] = 4561, - [4562] = 4319, - [4563] = 4322, - [4564] = 4327, - [4565] = 4565, - [4566] = 4363, - [4567] = 4342, - [4568] = 4373, - [4569] = 4315, - [4570] = 4327, - [4571] = 4468, - [4572] = 4326, - [4573] = 4315, - [4574] = 4468, - [4575] = 4338, - [4576] = 4318, - [4577] = 4461, - [4578] = 4313, - [4579] = 4330, - [4580] = 4327, - [4581] = 4358, - [4582] = 4582, - [4583] = 4313, - [4584] = 4322, - [4585] = 4319, - [4586] = 4328, - [4587] = 4358, - [4588] = 4371, - [4589] = 4362, - [4590] = 4464, - [4591] = 932, - [4592] = 4344, - [4593] = 4555, - [4594] = 4561, - [4595] = 4317, - [4596] = 4336, - [4597] = 4311, - [4598] = 896, - [4599] = 4314, - [4600] = 894, - [4601] = 4601, - [4602] = 4602, - [4603] = 891, - [4604] = 4308, - [4605] = 889, - [4606] = 888, - [4607] = 887, - [4608] = 886, - [4609] = 885, - [4610] = 4610, - [4611] = 884, - [4612] = 883, - [4613] = 882, - [4614] = 4614, - [4615] = 4615, - [4616] = 4468, - [4617] = 4617, - [4618] = 4373, - [4619] = 4619, - [4620] = 4468, - [4621] = 4334, - [4622] = 4311, - [4623] = 881, - [4624] = 880, - [4625] = 4625, - [4626] = 4344, - [4627] = 4336, - [4628] = 4311, - [4629] = 4336, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4344, - [4634] = 4401, - [4635] = 4314, - [4636] = 4308, - [4637] = 4637, - [4638] = 4317, - [4639] = 4319, - [4640] = 4322, - [4641] = 4327, - [4642] = 4334, - [4643] = 4314, - [4644] = 879, - [4645] = 4645, - [4646] = 878, - [4647] = 877, - [4648] = 876, - [4649] = 4330, - [4650] = 875, - [4651] = 4315, - [4652] = 868, - [4653] = 4363, - [4654] = 865, - [4655] = 874, - [4656] = 4468, - [4657] = 870, - [4658] = 869, - [4659] = 871, - [4660] = 4313, - [4661] = 4338, - [4662] = 890, - [4663] = 872, - [4664] = 863, - [4665] = 4342, - [4666] = 944, - [4667] = 4667, - [4668] = 4668, - [4669] = 961, - [4670] = 4333, - [4671] = 4358, - [4672] = 4672, - [4673] = 915, - [4674] = 4674, - [4675] = 4674, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4677, + [4524] = 4422, + [4525] = 4403, + [4526] = 4411, + [4527] = 4527, + [4528] = 4528, + [4529] = 4442, + [4530] = 4496, + [4531] = 4460, + [4532] = 4419, + [4533] = 4517, + [4534] = 4534, + [4535] = 907, + [4536] = 4405, + [4537] = 2487, + [4538] = 4420, + [4539] = 4415, + [4540] = 4399, + [4541] = 4474, + [4542] = 4542, + [4543] = 4517, + [4544] = 4544, + [4545] = 4518, + [4546] = 4546, + [4547] = 4420, + [4548] = 4548, + [4549] = 4410, + [4550] = 4403, + [4551] = 4400, + [4552] = 4410, + [4553] = 4553, + [4554] = 4410, + [4555] = 4402, + [4556] = 4556, + [4557] = 4400, + [4558] = 4527, + [4559] = 4518, + [4560] = 4402, + [4561] = 4420, + [4562] = 4506, + [4563] = 4542, + [4564] = 4441, + [4565] = 4404, + [4566] = 4528, + [4567] = 4544, + [4568] = 4534, + [4569] = 4403, + [4570] = 4570, + [4571] = 4399, + [4572] = 4403, + [4573] = 943, + [4574] = 4410, + [4575] = 4408, + [4576] = 4402, + [4577] = 4402, + [4578] = 4578, + [4579] = 4411, + [4580] = 4400, + [4581] = 4581, + [4582] = 4420, + [4583] = 4400, + [4584] = 2453, + [4585] = 4534, + [4586] = 2384, + [4587] = 940, + [4588] = 4588, + [4589] = 4430, + [4590] = 2455, + [4591] = 4404, + [4592] = 4420, + [4593] = 4593, + [4594] = 4542, + [4595] = 4415, + [4596] = 4596, + [4597] = 4597, + [4598] = 4419, + [4599] = 909, + [4600] = 4428, + [4601] = 4438, + [4602] = 4422, + [4603] = 4442, + [4604] = 4441, + [4605] = 989, + [4606] = 4528, + [4607] = 4411, + [4608] = 4570, + [4609] = 4496, + [4610] = 4581, + [4611] = 965, + [4612] = 4588, + [4613] = 905, + [4614] = 4411, + [4615] = 900, + [4616] = 4616, + [4617] = 4596, + [4618] = 936, + [4619] = 4527, + [4620] = 4620, + [4621] = 4405, + [4622] = 4404, + [4623] = 4623, + [4624] = 4430, + [4625] = 882, + [4626] = 997, + [4627] = 4627, + [4628] = 4628, + [4629] = 896, + [4630] = 4578, + [4631] = 902, + [4632] = 976, + [4633] = 2325, + [4634] = 4430, + [4635] = 4635, + [4636] = 4441, + [4637] = 4441, + [4638] = 4517, + [4639] = 879, + [4640] = 4399, + [4641] = 4404, + [4642] = 4403, + [4643] = 4402, + [4644] = 4400, + [4645] = 4420, + [4646] = 941, + [4647] = 4408, + [4648] = 4404, + [4649] = 4649, + [4650] = 4442, + [4651] = 4651, + [4652] = 4430, + [4653] = 4411, + [4654] = 4542, + [4655] = 894, + [4656] = 4656, + [4657] = 893, + [4658] = 4403, + [4659] = 4419, + [4660] = 4544, + [4661] = 4661, + [4662] = 4422, + [4663] = 4428, + [4664] = 4415, + [4665] = 4438, + [4666] = 4666, + [4667] = 4430, + [4668] = 4438, + [4669] = 4430, + [4670] = 4422, + [4671] = 4442, + [4672] = 4410, + [4673] = 4596, + [4674] = 4588, + [4675] = 4404, + [4676] = 4410, + [4677] = 4428, + [4678] = 4419, + [4679] = 4581, + [4680] = 4506, + [4681] = 880, [4682] = 4682, - [4683] = 4683, - [4684] = 4684, - [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, + [4683] = 4399, + [4684] = 923, + [4685] = 881, + [4686] = 4570, + [4687] = 4441, + [4688] = 4496, [4689] = 4689, - [4690] = 4690, - [4691] = 4691, - [4692] = 4692, - [4693] = 4693, - [4694] = 4694, - [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4679, + [4690] = 4420, + [4691] = 4399, + [4692] = 4506, + [4693] = 4400, + [4694] = 4542, + [4695] = 4416, + [4696] = 4399, + [4697] = 4410, + [4698] = 4698, [4699] = 4699, - [4700] = 4700, + [4700] = 4403, [4701] = 4701, - [4702] = 4702, - [4703] = 4703, - [4704] = 4704, + [4702] = 4419, + [4703] = 4428, + [4704] = 4570, [4705] = 4705, - [4706] = 4706, - [4707] = 4703, - [4708] = 4708, - [4709] = 4703, - [4710] = 4708, - [4711] = 4705, - [4712] = 4712, - [4713] = 4704, - [4714] = 4708, - [4715] = 4702, - [4716] = 4699, - [4717] = 4701, - [4718] = 4718, - [4719] = 4719, - [4720] = 4694, - [4721] = 4721, - [4722] = 4722, - [4723] = 4691, - [4724] = 4724, - [4725] = 4678, - [4726] = 4679, - [4727] = 4727, - [4728] = 4728, - [4729] = 4687, - [4730] = 4684, - [4731] = 4690, - [4732] = 4683, + [4706] = 4438, + [4707] = 4415, + [4708] = 888, + [4709] = 887, + [4710] = 4402, + [4711] = 886, + [4712] = 4407, + [4713] = 4422, + [4714] = 4544, + [4715] = 4715, + [4716] = 4400, + [4717] = 4442, + [4718] = 4405, + [4719] = 4420, + [4720] = 885, + [4721] = 4411, + [4722] = 4404, + [4723] = 4723, + [4724] = 884, + [4725] = 4430, + [4726] = 4408, + [4727] = 4474, + [4728] = 883, + [4729] = 4581, + [4730] = 4730, + [4731] = 4534, + [4732] = 4528, [4733] = 4733, - [4734] = 4677, - [4735] = 4696, - [4736] = 4697, - [4737] = 4705, - [4738] = 4738, - [4739] = 4697, - [4740] = 4696, - [4741] = 4690, - [4742] = 4742, - [4743] = 4683, - [4744] = 4684, - [4745] = 4678, + [4734] = 4419, + [4735] = 4735, + [4736] = 4428, + [4737] = 4737, + [4738] = 4438, + [4739] = 4588, + [4740] = 4527, + [4741] = 4422, + [4742] = 4442, + [4743] = 4403, + [4744] = 4596, + [4745] = 4518, [4746] = 4746, - [4747] = 4687, + [4747] = 4747, [4748] = 4748, [4749] = 4749, - [4750] = 4691, - [4751] = 4751, - [4752] = 4749, - [4753] = 4694, - [4754] = 4749, - [4755] = 4749, - [4756] = 4749, - [4757] = 4701, - [4758] = 4749, + [4750] = 4750, + [4751] = 4747, + [4752] = 4752, + [4753] = 4753, + [4754] = 4754, + [4755] = 4755, + [4756] = 4756, + [4757] = 4753, + [4758] = 4758, [4759] = 4759, - [4760] = 4704, - [4761] = 4705, - [4762] = 4749, - [4763] = 4703, - [4764] = 4749, - [4765] = 4708, - [4766] = 4749, - [4767] = 4749, - [4768] = 4749, + [4760] = 4760, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4764, + [4765] = 4765, + [4766] = 4766, + [4767] = 4767, + [4768] = 4768, [4769] = 4769, - [4770] = 4702, - [4771] = 4699, - [4772] = 4749, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, [4773] = 4773, [4774] = 4774, [4775] = 4775, - [4776] = 4749, - [4777] = 4678, - [4778] = 4679, + [4776] = 4776, + [4777] = 4755, + [4778] = 4778, [4779] = 4779, [4780] = 4780, - [4781] = 4749, - [4782] = 4749, - [4783] = 4690, - [4784] = 4749, - [4785] = 4749, - [4786] = 4749, - [4787] = 4696, - [4788] = 4697, - [4789] = 4789, - [4790] = 4749, - [4791] = 4789, - [4792] = 4688, - [4793] = 4742, - [4794] = 4683, - [4795] = 4684, - [4796] = 4749, - [4797] = 4789, - [4798] = 4687, - [4799] = 4688, - [4800] = 4742, + [4781] = 4781, + [4782] = 4782, + [4783] = 4782, + [4784] = 4782, + [4785] = 4785, + [4786] = 4786, + [4787] = 4782, + [4788] = 4782, + [4789] = 4782, + [4790] = 4790, + [4791] = 4782, + [4792] = 4782, + [4793] = 4793, + [4794] = 4782, + [4795] = 4795, + [4796] = 4782, + [4797] = 4746, + [4798] = 4798, + [4799] = 4782, + [4800] = 4782, [4801] = 4801, - [4802] = 4701, - [4803] = 4803, + [4802] = 4782, + [4803] = 4782, [4804] = 4804, - [4805] = 4704, - [4806] = 4806, - [4807] = 4749, - [4808] = 4789, - [4809] = 4688, + [4805] = 4756, + [4806] = 4782, + [4807] = 4782, + [4808] = 4747, + [4809] = 4809, [4810] = 4810, - [4811] = 4804, - [4812] = 4678, - [4813] = 4679, - [4814] = 4749, - [4815] = 4789, - [4816] = 4742, - [4817] = 4690, - [4818] = 4688, - [4819] = 4742, - [4820] = 4804, - [4821] = 4696, - [4822] = 4697, - [4823] = 4749, - [4824] = 4789, - [4825] = 4688, - [4826] = 4742, - [4827] = 4804, - [4828] = 4683, - [4829] = 4684, - [4830] = 4830, - [4831] = 4749, - [4832] = 4687, - [4833] = 4789, - [4834] = 4688, - [4835] = 4701, - [4836] = 4704, - [4837] = 4837, - [4838] = 4704, - [4839] = 4839, - [4840] = 4742, - [4841] = 4841, + [4811] = 4811, + [4812] = 4812, + [4813] = 4782, + [4814] = 4782, + [4815] = 4781, + [4816] = 4780, + [4817] = 4801, + [4818] = 4782, + [4819] = 4801, + [4820] = 4820, + [4821] = 4798, + [4822] = 4748, + [4823] = 4779, + [4824] = 4812, + [4825] = 4810, + [4826] = 4782, + [4827] = 4773, + [4828] = 4772, + [4829] = 4801, + [4830] = 4820, + [4831] = 4798, + [4832] = 4790, + [4833] = 4811, + [4834] = 4782, + [4835] = 4756, + [4836] = 4801, + [4837] = 4760, + [4838] = 4749, + [4839] = 4820, + [4840] = 4798, + [4841] = 4761, [4842] = 4804, - [4843] = 4749, - [4844] = 4789, - [4845] = 4678, - [4846] = 4679, - [4847] = 4688, - [4848] = 4701, + [4843] = 4790, + [4844] = 2422, + [4845] = 4764, + [4846] = 4846, + [4847] = 4782, + [4848] = 4752, [4849] = 4849, - [4850] = 4690, - [4851] = 4742, - [4852] = 4804, - [4853] = 4853, - [4854] = 4696, - [4855] = 4697, - [4856] = 4749, - [4857] = 4857, - [4858] = 4858, - [4859] = 4683, - [4860] = 4684, - [4861] = 4789, - [4862] = 4862, - [4863] = 4687, - [4864] = 4864, - [4865] = 4688, - [4866] = 4701, - [4867] = 4742, - [4868] = 4804, - [4869] = 4704, - [4870] = 4789, - [4871] = 4749, - [4872] = 4857, - [4873] = 4858, - [4874] = 4789, - [4875] = 4688, - [4876] = 4678, - [4877] = 4679, - [4878] = 4742, - [4879] = 4804, - [4880] = 4880, - [4881] = 4690, - [4882] = 4749, - [4883] = 4857, - [4884] = 4858, - [4885] = 4696, - [4886] = 4697, - [4887] = 4839, - [4888] = 4688, - [4889] = 4742, - [4890] = 4683, - [4891] = 4684, - [4892] = 4804, - [4893] = 4749, - [4894] = 4687, - [4895] = 4857, - [4896] = 4858, - [4897] = 4701, - [4898] = 4789, - [4899] = 4688, - [4900] = 4704, - [4901] = 4742, - [4902] = 4804, - [4903] = 4749, - [4904] = 4857, - [4905] = 4858, - [4906] = 4789, - [4907] = 4678, - [4908] = 4679, - [4909] = 4688, - [4910] = 4742, - [4911] = 4804, - [4912] = 4690, - [4913] = 4749, - [4914] = 4914, - [4915] = 4857, - [4916] = 4696, - [4917] = 4697, - [4918] = 4858, - [4919] = 4789, - [4920] = 4688, - [4921] = 4683, - [4922] = 4684, - [4923] = 4742, - [4924] = 4804, - [4925] = 4687, - [4926] = 4749, - [4927] = 4857, - [4928] = 4701, - [4929] = 4858, - [4930] = 4930, - [4931] = 4704, - [4932] = 4932, - [4933] = 4789, - [4934] = 4688, + [4850] = 4798, + [4851] = 4820, + [4852] = 4798, + [4853] = 4790, + [4854] = 4854, + [4855] = 4748, + [4856] = 4778, + [4857] = 4782, + [4858] = 4747, + [4859] = 4753, + [4860] = 4801, + [4861] = 4755, + [4862] = 4776, + [4863] = 4863, + [4864] = 4759, + [4865] = 4775, + [4866] = 4763, + [4867] = 4820, + [4868] = 4798, + [4869] = 4766, + [4870] = 4768, + [4871] = 4756, + [4872] = 4790, + [4873] = 4782, + [4874] = 4801, + [4875] = 4820, + [4876] = 4798, + [4877] = 4812, + [4878] = 4790, + [4879] = 4879, + [4880] = 4781, + [4881] = 4780, + [4882] = 4770, + [4883] = 4782, + [4884] = 4884, + [4885] = 4801, + [4886] = 4779, + [4887] = 4758, + [4888] = 4820, + [4889] = 4798, + [4890] = 4773, + [4891] = 4772, + [4892] = 4812, + [4893] = 4790, + [4894] = 4782, + [4895] = 4884, + [4896] = 4849, + [4897] = 4782, + [4898] = 4760, + [4899] = 4749, + [4900] = 4900, + [4901] = 4901, + [4902] = 4761, + [4903] = 4801, + [4904] = 4904, + [4905] = 4764, + [4906] = 4884, + [4907] = 4820, + [4908] = 4752, + [4909] = 4909, + [4910] = 4820, + [4911] = 4798, + [4912] = 4748, + [4913] = 4849, + [4914] = 4900, + [4915] = 4747, + [4916] = 4753, + [4917] = 4812, + [4918] = 4755, + [4919] = 4790, + [4920] = 4759, + [4921] = 4762, + [4922] = 4782, + [4923] = 4884, + [4924] = 4849, + [4925] = 4766, + [4926] = 4768, + [4927] = 4900, + [4928] = 4928, + [4929] = 4929, + [4930] = 4801, + [4931] = 4931, + [4932] = 4781, + [4933] = 4780, + [4934] = 4934, [4935] = 4935, - [4936] = 4682, - [4937] = 4742, - [4938] = 4678, - [4939] = 4679, - [4940] = 4940, - [4941] = 4702, - [4942] = 4849, - [4943] = 4690, - [4944] = 4862, - [4945] = 4945, - [4946] = 4804, - [4947] = 4696, - [4948] = 4697, - [4949] = 4694, - [4950] = 4950, - [4951] = 4940, - [4952] = 4683, - [4953] = 4684, - [4954] = 4954, + [4936] = 4936, + [4937] = 4937, + [4938] = 4779, + [4939] = 4820, + [4940] = 4798, + [4941] = 4812, + [4942] = 4773, + [4943] = 4772, + [4944] = 4790, + [4945] = 4782, + [4946] = 4884, + [4947] = 4849, + [4948] = 4900, + [4949] = 4760, + [4950] = 4749, + [4951] = 4951, + [4952] = 4952, + [4953] = 4761, + [4954] = 4801, [4955] = 4955, - [4956] = 4687, - [4957] = 4957, - [4958] = 4749, - [4959] = 4701, - [4960] = 4857, - [4961] = 4691, - [4962] = 4704, - [4963] = 4858, - [4964] = 4964, - [4965] = 4678, - [4966] = 4679, - [4967] = 4967, - [4968] = 4968, - [4969] = 4696, - [4970] = 4970, - [4971] = 4930, - [4972] = 4972, - [4973] = 4678, - [4974] = 4679, - [4975] = 4789, - [4976] = 4976, - [4977] = 4696, - [4978] = 4688, - [4979] = 4935, - [4980] = 4682, - [4981] = 4678, - [4982] = 4679, - [4983] = 4983, - [4984] = 4984, - [4985] = 4696, - [4986] = 4742, - [4987] = 4839, - [4988] = 4849, - [4989] = 4678, - [4990] = 4679, - [4991] = 4862, + [4956] = 4956, + [4957] = 4748, + [4958] = 4958, + [4959] = 4752, + [4960] = 4747, + [4961] = 4961, + [4962] = 4962, + [4963] = 4963, + [4964] = 4820, + [4965] = 4798, + [4966] = 4812, + [4967] = 4781, + [4968] = 4780, + [4969] = 4969, + [4970] = 4790, + [4971] = 4764, + [4972] = 4779, + [4973] = 4973, + [4974] = 4782, + [4975] = 4884, + [4976] = 4773, + [4977] = 4772, + [4978] = 4978, + [4979] = 4801, + [4980] = 4900, + [4981] = 829, + [4982] = 4801, + [4983] = 4760, + [4984] = 4749, + [4985] = 4820, + [4986] = 4798, + [4987] = 4761, + [4988] = 4812, + [4989] = 4790, + [4990] = 4748, + [4991] = 4782, [4992] = 4992, - [4993] = 4804, - [4994] = 4950, - [4995] = 4678, - [4996] = 4679, - [4997] = 4674, - [4998] = 4789, - [4999] = 4999, - [5000] = 5000, - [5001] = 4678, - [5002] = 4679, - [5003] = 5003, - [5004] = 5004, - [5005] = 5005, - [5006] = 5006, - [5007] = 4678, - [5008] = 4679, - [5009] = 4749, - [5010] = 4804, - [5011] = 4857, - [5012] = 4858, - [5013] = 5013, - [5014] = 4968, - [5015] = 4970, - [5016] = 4930, - [5017] = 4972, - [5018] = 4857, - [5019] = 4688, - [5020] = 4935, - [5021] = 4682, - [5022] = 4700, - [5023] = 4742, - [5024] = 4839, - [5025] = 4849, - [5026] = 4862, - [5027] = 4804, - [5028] = 4950, - [5029] = 4935, - [5030] = 4940, - [5031] = 5031, - [5032] = 4699, - [5033] = 5033, - [5034] = 4749, - [5035] = 5035, - [5036] = 4857, - [5037] = 5037, - [5038] = 5038, + [4993] = 4747, + [4994] = 4801, + [4995] = 4884, + [4996] = 4849, + [4997] = 4997, + [4998] = 4900, + [4999] = 4801, + [5000] = 4781, + [5001] = 4780, + [5002] = 2437, + [5003] = 4820, + [5004] = 4790, + [5005] = 4779, + [5006] = 4798, + [5007] = 4812, + [5008] = 4790, + [5009] = 4773, + [5010] = 4772, + [5011] = 4782, + [5012] = 4884, + [5013] = 4849, + [5014] = 4760, + [5015] = 4749, + [5016] = 4900, + [5017] = 4801, + [5018] = 4761, + [5019] = 5019, + [5020] = 4961, + [5021] = 4748, + [5022] = 4969, + [5023] = 4820, + [5024] = 4747, + [5025] = 4798, + [5026] = 4812, + [5027] = 4790, + [5028] = 4935, + [5029] = 5029, + [5030] = 4934, + [5031] = 4781, + [5032] = 4780, + [5033] = 4782, + [5034] = 4779, + [5035] = 4884, + [5036] = 4849, + [5037] = 4900, + [5038] = 4773, [5039] = 5039, [5040] = 5040, - [5041] = 5041, - [5042] = 4858, - [5043] = 4950, - [5044] = 5044, - [5045] = 5045, - [5046] = 5046, - [5047] = 5047, + [5041] = 4772, + [5042] = 5042, + [5043] = 4928, + [5044] = 4935, + [5045] = 4760, + [5046] = 4749, + [5047] = 4801, [5048] = 5048, - [5049] = 4674, - [5050] = 5050, - [5051] = 5051, - [5052] = 4968, - [5053] = 4970, - [5054] = 5054, - [5055] = 4940, - [5056] = 5037, - [5057] = 5033, - [5058] = 4930, - [5059] = 4972, - [5060] = 4945, - [5061] = 5061, - [5062] = 4932, - [5063] = 4789, - [5064] = 4733, - [5065] = 4722, - [5066] = 5066, - [5067] = 4721, - [5068] = 4688, - [5069] = 4935, - [5070] = 4682, - [5071] = 4680, - [5072] = 4718, - [5073] = 4742, - [5074] = 4880, - [5075] = 4967, - [5076] = 4839, - [5077] = 5077, - [5078] = 5078, - [5079] = 4849, - [5080] = 4687, - [5081] = 4862, - [5082] = 4804, - [5083] = 4950, - [5084] = 4674, - [5085] = 4940, - [5086] = 5086, - [5087] = 5054, + [5049] = 4761, + [5050] = 4793, + [5051] = 4795, + [5052] = 4748, + [5053] = 4900, + [5054] = 4746, + [5055] = 4747, + [5056] = 5056, + [5057] = 4849, + [5058] = 5058, + [5059] = 4884, + [5060] = 4782, + [5061] = 4820, + [5062] = 4781, + [5063] = 4780, + [5064] = 4904, + [5065] = 4901, + [5066] = 4901, + [5067] = 4779, + [5068] = 4798, + [5069] = 4761, + [5070] = 5070, + [5071] = 4773, + [5072] = 4772, + [5073] = 4811, + [5074] = 4812, + [5075] = 4904, + [5076] = 4760, + [5077] = 4749, + [5078] = 4810, + [5079] = 4804, + [5080] = 4761, + [5081] = 4790, + [5082] = 4793, + [5083] = 4748, + [5084] = 4795, + [5085] = 5085, + [5086] = 4747, + [5087] = 4746, [5088] = 5088, [5089] = 5089, - [5090] = 5090, - [5091] = 4749, - [5092] = 4684, - [5093] = 5038, - [5094] = 5041, - [5095] = 4862, - [5096] = 4858, - [5097] = 5097, - [5098] = 5045, - [5099] = 5048, - [5100] = 4683, - [5101] = 5101, - [5102] = 5102, - [5103] = 4968, - [5104] = 4970, - [5105] = 5054, - [5106] = 4930, - [5107] = 4972, - [5108] = 4789, - [5109] = 4945, - [5110] = 5110, - [5111] = 5111, - [5112] = 4733, - [5113] = 4722, - [5114] = 5114, - [5115] = 4721, - [5116] = 4688, - [5117] = 4935, - [5118] = 4718, - [5119] = 4682, - [5120] = 4967, - [5121] = 4742, - [5122] = 4839, - [5123] = 5123, - [5124] = 5124, - [5125] = 4849, - [5126] = 5038, - [5127] = 5041, - [5128] = 4682, - [5129] = 4804, - [5130] = 5045, - [5131] = 4950, - [5132] = 4674, - [5133] = 4940, - [5134] = 5134, - [5135] = 5054, - [5136] = 5136, - [5137] = 5137, - [5138] = 5138, - [5139] = 4945, - [5140] = 5140, - [5141] = 5141, - [5142] = 4733, - [5143] = 4722, - [5144] = 5144, - [5145] = 4721, - [5146] = 5146, - [5147] = 4749, - [5148] = 4718, - [5149] = 4857, - [5150] = 4967, - [5151] = 4677, - [5152] = 4858, - [5153] = 4968, - [5154] = 4970, - [5155] = 5038, - [5156] = 5041, - [5157] = 4930, - [5158] = 4972, - [5159] = 5045, + [5090] = 4749, + [5091] = 5091, + [5092] = 4820, + [5093] = 4781, + [5094] = 4780, + [5095] = 2382, + [5096] = 4760, + [5097] = 4782, + [5098] = 4779, + [5099] = 4884, + [5100] = 4849, + [5101] = 4900, + [5102] = 4773, + [5103] = 4772, + [5104] = 4812, + [5105] = 4928, + [5106] = 4934, + [5107] = 4760, + [5108] = 4749, + [5109] = 4935, + [5110] = 4771, + [5111] = 4761, + [5112] = 5112, + [5113] = 4969, + [5114] = 4748, + [5115] = 4801, + [5116] = 4863, + [5117] = 5117, + [5118] = 5118, + [5119] = 4820, + [5120] = 4781, + [5121] = 4780, + [5122] = 4904, + [5123] = 4901, + [5124] = 4773, + [5125] = 4798, + [5126] = 4811, + [5127] = 4812, + [5128] = 4781, + [5129] = 4780, + [5130] = 4810, + [5131] = 4863, + [5132] = 4773, + [5133] = 4804, + [5134] = 4790, + [5135] = 4793, + [5136] = 4781, + [5137] = 4780, + [5138] = 4795, + [5139] = 4746, + [5140] = 4773, + [5141] = 4909, + [5142] = 5142, + [5143] = 4746, + [5144] = 4781, + [5145] = 4780, + [5146] = 4795, + [5147] = 4793, + [5148] = 4773, + [5149] = 4782, + [5150] = 4884, + [5151] = 4781, + [5152] = 4780, + [5153] = 4849, + [5154] = 4756, + [5155] = 4773, + [5156] = 4900, + [5157] = 4790, + [5158] = 4781, + [5159] = 4780, [5160] = 5160, - [5161] = 4789, - [5162] = 5054, - [5163] = 5163, - [5164] = 4688, - [5165] = 4935, - [5166] = 4682, - [5167] = 4742, - [5168] = 4839, - [5169] = 5038, - [5170] = 5041, - [5171] = 4849, - [5172] = 4862, - [5173] = 5045, - [5174] = 4804, - [5175] = 5054, - [5176] = 4950, - [5177] = 4674, - [5178] = 4940, - [5179] = 4677, - [5180] = 4749, - [5181] = 5181, - [5182] = 5038, - [5183] = 5041, - [5184] = 4857, - [5185] = 4858, - [5186] = 5045, - [5187] = 4968, - [5188] = 5054, - [5189] = 4970, - [5190] = 4930, - [5191] = 4972, - [5192] = 4789, - [5193] = 2393, - [5194] = 5140, - [5195] = 5038, - [5196] = 5041, - [5197] = 5138, - [5198] = 5102, - [5199] = 5045, - [5200] = 5048, - [5201] = 5054, - [5202] = 5101, - [5203] = 5047, - [5204] = 4738, - [5205] = 5097, - [5206] = 5163, - [5207] = 5207, - [5208] = 5038, - [5209] = 5041, - [5210] = 4955, - [5211] = 4954, - [5212] = 5045, - [5213] = 4688, - [5214] = 5054, + [5161] = 4759, + [5162] = 4928, + [5163] = 4934, + [5164] = 4781, + [5165] = 4780, + [5166] = 4935, + [5167] = 4969, + [5168] = 4801, + [5169] = 5169, + [5170] = 4762, + [5171] = 4820, + [5172] = 4904, + [5173] = 4901, + [5174] = 4798, + [5175] = 4811, + [5176] = 4812, + [5177] = 5177, + [5178] = 4810, + [5179] = 4804, + [5180] = 4790, + [5181] = 4793, + [5182] = 923, + [5183] = 4795, + [5184] = 901, + [5185] = 4900, + [5186] = 909, + [5187] = 891, + [5188] = 5188, + [5189] = 4756, + [5190] = 4782, + [5191] = 4884, + [5192] = 4849, + [5193] = 5193, + [5194] = 4900, + [5195] = 4804, + [5196] = 4810, + [5197] = 5197, + [5198] = 5198, + [5199] = 4929, + [5200] = 4928, + [5201] = 4934, + [5202] = 5202, + [5203] = 5203, + [5204] = 5204, + [5205] = 5205, + [5206] = 4935, + [5207] = 4969, + [5208] = 4801, + [5209] = 5209, + [5210] = 4798, + [5211] = 5085, + [5212] = 4811, + [5213] = 5048, + [5214] = 5029, [5215] = 5215, - [5216] = 4935, - [5217] = 4930, - [5218] = 4719, - [5219] = 4742, - [5220] = 4839, - [5221] = 5038, - [5222] = 5041, - [5223] = 4849, - [5224] = 4862, - [5225] = 5045, - [5226] = 4804, - [5227] = 5054, - [5228] = 4950, - [5229] = 4674, - [5230] = 5038, - [5231] = 5046, - [5232] = 5038, - [5233] = 5233, - [5234] = 5038, + [5216] = 5216, + [5217] = 4958, + [5218] = 4798, + [5219] = 4937, + [5220] = 4763, + [5221] = 4754, + [5222] = 5117, + [5223] = 4820, + [5224] = 4765, + [5225] = 4904, + [5226] = 5205, + [5227] = 4901, + [5228] = 5070, + [5229] = 5169, + [5230] = 5230, + [5231] = 5231, + [5232] = 5232, + [5233] = 5204, + [5234] = 4746, [5235] = 5235, - [5236] = 5236, - [5237] = 5237, - [5238] = 4940, - [5239] = 4972, - [5240] = 4677, - [5241] = 4749, - [5242] = 5181, - [5243] = 4930, - [5244] = 5004, - [5245] = 5035, - [5246] = 4857, - [5247] = 4858, - [5248] = 4837, - [5249] = 818, - [5250] = 5236, - [5251] = 5237, - [5252] = 4968, - [5253] = 4970, - [5254] = 2378, - [5255] = 5236, - [5256] = 5237, - [5257] = 4972, - [5258] = 4930, - [5259] = 4789, - [5260] = 5236, - [5261] = 5237, - [5262] = 4858, - [5263] = 5140, - [5264] = 5138, - [5265] = 5236, - [5266] = 5237, - [5267] = 5102, - [5268] = 5045, - [5269] = 5101, - [5270] = 5236, - [5271] = 5237, - [5272] = 5097, - [5273] = 5163, - [5274] = 4955, - [5275] = 5236, - [5276] = 5237, - [5277] = 4954, - [5278] = 4697, - [5279] = 4749, - [5280] = 5236, - [5281] = 5237, - [5282] = 4688, - [5283] = 5283, - [5284] = 4935, - [5285] = 5236, - [5286] = 5237, - [5287] = 4682, - [5288] = 4857, - [5289] = 4858, - [5290] = 4693, - [5291] = 4719, - [5292] = 4751, - [5293] = 4742, - [5294] = 4839, - [5295] = 4849, - [5296] = 4862, - [5297] = 4914, - [5298] = 5061, - [5299] = 4803, - [5300] = 4804, - [5301] = 4950, - [5302] = 4674, - [5303] = 4940, - [5304] = 5134, - [5305] = 4677, - [5306] = 4696, - [5307] = 4749, - [5308] = 4857, - [5309] = 4690, - [5310] = 4693, - [5311] = 4968, - [5312] = 4968, - [5313] = 4970, - [5314] = 5314, - [5315] = 4972, + [5236] = 4811, + [5237] = 4812, + [5238] = 4810, + [5239] = 4804, + [5240] = 4790, + [5241] = 4793, + [5242] = 4795, + [5243] = 4746, + [5244] = 5244, + [5245] = 5197, + [5246] = 5198, + [5247] = 4782, + [5248] = 4884, + [5249] = 4849, + [5250] = 5202, + [5251] = 5205, + [5252] = 4900, + [5253] = 4963, + [5254] = 4758, + [5255] = 5255, + [5256] = 4928, + [5257] = 5085, + [5258] = 4773, + [5259] = 4934, + [5260] = 4935, + [5261] = 4958, + [5262] = 4969, + [5263] = 4801, + [5264] = 4754, + [5265] = 5117, + [5266] = 4770, + [5267] = 4765, + [5268] = 5268, + [5269] = 4962, + [5270] = 5169, + [5271] = 4820, + [5272] = 5232, + [5273] = 4904, + [5274] = 4901, + [5275] = 5275, + [5276] = 4798, + [5277] = 4811, + [5278] = 5197, + [5279] = 5198, + [5280] = 4812, + [5281] = 5281, + [5282] = 5202, + [5283] = 5231, + [5284] = 4810, + [5285] = 4804, + [5286] = 4901, + [5287] = 5085, + [5288] = 5203, + [5289] = 4904, + [5290] = 4820, + [5291] = 4958, + [5292] = 5292, + [5293] = 4790, + [5294] = 4754, + [5295] = 5117, + [5296] = 5296, + [5297] = 4765, + [5298] = 4793, + [5299] = 4884, + [5300] = 5169, + [5301] = 4795, + [5302] = 5232, + [5303] = 4804, + [5304] = 4782, + [5305] = 4931, + [5306] = 4936, + [5307] = 5197, + [5308] = 5198, + [5309] = 4951, + [5310] = 4952, + [5311] = 5202, + [5312] = 4782, + [5313] = 4884, + [5314] = 5085, + [5315] = 4849, [5316] = 5316, - [5317] = 4970, - [5318] = 4930, - [5319] = 4972, - [5320] = 4789, - [5321] = 2396, - [5322] = 5140, - [5323] = 5138, - [5324] = 5137, - [5325] = 5102, - [5326] = 5326, - [5327] = 5101, - [5328] = 5097, - [5329] = 5163, - [5330] = 4955, - [5331] = 5331, - [5332] = 4954, - [5333] = 4789, - [5334] = 4746, - [5335] = 4706, - [5336] = 5336, - [5337] = 4688, - [5338] = 4935, - [5339] = 4682, - [5340] = 4789, - [5341] = 4719, - [5342] = 5342, - [5343] = 4970, - [5344] = 4751, - [5345] = 4773, - [5346] = 4774, - [5347] = 4780, - [5348] = 5348, - [5349] = 4742, - [5350] = 5350, - [5351] = 5041, - [5352] = 4839, - [5353] = 4679, - [5354] = 4678, - [5355] = 4849, - [5356] = 4862, - [5357] = 4914, - [5358] = 4804, - [5359] = 4950, - [5360] = 5038, - [5361] = 4674, - [5362] = 4940, - [5363] = 5237, - [5364] = 5236, - [5365] = 890, - [5366] = 932, - [5367] = 5134, - [5368] = 4677, - [5369] = 872, - [5370] = 4696, - [5371] = 4696, - [5372] = 5038, - [5373] = 5038, - [5374] = 915, - [5375] = 4749, - [5376] = 4857, - [5377] = 4858, - [5378] = 4968, - [5379] = 5379, - [5380] = 5380, + [5317] = 4900, + [5318] = 4955, + [5319] = 4956, + [5320] = 4962, + [5321] = 5197, + [5322] = 5198, + [5323] = 4963, + [5324] = 4928, + [5325] = 5202, + [5326] = 5202, + [5327] = 5085, + [5328] = 4934, + [5329] = 4935, + [5330] = 4969, + [5331] = 4801, + [5332] = 5332, + [5333] = 4772, + [5334] = 5197, + [5335] = 5198, + [5336] = 4782, + [5337] = 5337, + [5338] = 5202, + [5339] = 4884, + [5340] = 5085, + [5341] = 4849, + [5342] = 4900, + [5343] = 4766, + [5344] = 5344, + [5345] = 5345, + [5346] = 4820, + [5347] = 5197, + [5348] = 5198, + [5349] = 4904, + [5350] = 4901, + [5351] = 5202, + [5352] = 4798, + [5353] = 5085, + [5354] = 4931, + [5355] = 4811, + [5356] = 4812, + [5357] = 4936, + [5358] = 5358, + [5359] = 4810, + [5360] = 5197, + [5361] = 5198, + [5362] = 4935, + [5363] = 4935, + [5364] = 5202, + [5365] = 4790, + [5366] = 5085, + [5367] = 4793, + [5368] = 4795, + [5369] = 4779, + [5370] = 4746, + [5371] = 5371, + [5372] = 5232, + [5373] = 5197, + [5374] = 5198, + [5375] = 5375, + [5376] = 4956, + [5377] = 5202, + [5378] = 4928, + [5379] = 5085, + [5380] = 4934, [5381] = 5381, - [5382] = 5382, - [5383] = 5383, + [5382] = 5197, + [5383] = 4969, + [5384] = 5197, + [5385] = 5385, + [5386] = 5197, + [5387] = 4756, + [5388] = 5197, + [5389] = 5197, + [5390] = 5390, + [5391] = 5391, + [5392] = 4955, + [5393] = 4952, + [5394] = 5394, + [5395] = 4951, + [5396] = 5193, + [5397] = 4782, + [5398] = 4978, + [5399] = 5042, + [5400] = 4884, + [5401] = 4849, + [5402] = 4809, + [5403] = 4900, + [5404] = 5390, + [5405] = 5391, + [5406] = 4928, + [5407] = 4934, + [5408] = 4849, + [5409] = 5390, + [5410] = 5391, + [5411] = 4969, + [5412] = 4801, + [5413] = 5413, + [5414] = 5390, + [5415] = 5391, + [5416] = 5416, + [5417] = 5417, + [5418] = 5418, + [5419] = 5390, + [5420] = 5391, + [5421] = 5421, + [5422] = 5422, + [5423] = 5423, + [5424] = 5390, + [5425] = 5391, + [5426] = 5426, + [5427] = 5427, + [5428] = 5428, + [5429] = 5390, + [5430] = 5391, + [5431] = 5431, + [5432] = 5432, + [5433] = 4963, + [5434] = 5390, + [5435] = 5391, + [5436] = 4962, + [5437] = 4801, + [5438] = 4801, + [5439] = 5390, + [5440] = 5391, + [5441] = 4956, + [5442] = 4955, + [5443] = 5443, + [5444] = 4952, + [5445] = 4951, + [5446] = 4936, + [5447] = 4931, + [5448] = 5448, + [5449] = 4820, + [5450] = 4904, + [5451] = 4901, + [5452] = 5056, + [5453] = 4786, + [5454] = 5454, + [5455] = 5455, + [5456] = 4756, + [5457] = 4758, + [5458] = 5458, + [5459] = 4798, + [5460] = 4811, + [5461] = 5461, + [5462] = 4812, + [5463] = 5463, + [5464] = 5198, + [5465] = 4767, + [5466] = 4780, + [5467] = 4781, + [5468] = 5468, + [5469] = 4810, + [5470] = 4804, + [5471] = 4969, + [5472] = 4935, + [5473] = 5197, + [5474] = 4934, + [5475] = 4928, + [5476] = 5391, + [5477] = 5390, + [5478] = 5478, + [5479] = 4790, + [5480] = 4793, + [5481] = 4795, + [5482] = 4746, + [5483] = 4768, + [5484] = 5484, + [5485] = 5485, + [5486] = 5486, + [5487] = 5487, + [5488] = 5488, + [5489] = 5489, }; -static inline bool sym__non_escape_char_character_set_1(int32_t c) { - return (c < 'f' - ? (c < '\'' - ? (c < '"' - ? c == 0 - : c <= '"') - : (c <= '\'' || (c >= 'a' && c <= 'b'))) - : (c <= 'f' || (c < 't' - ? (c < 'r' - ? c == 'n' - : c <= 'r') - : (c <= 't' || c == 'v')))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43520 - ? (c < 4197 - ? (c < 2730 - ? (c < 2036 - ? (c < 1015 - ? (c < 750 - ? (c < 216 - ? (c < 181 - ? (c < 170 - ? (c >= 'A' && c <= 'z') - : c <= 170) - : (c <= 181 || (c < 192 - ? c == 186 - : c <= 214))) - : (c <= 246 || (c < 736 - ? (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721) - : (c <= 740 || c == 748)))) - : (c <= 750 || (c < 902 - ? (c < 891 - ? (c < 886 - ? (c >= 880 && c <= 884) - : c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 910 - ? (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908) - : (c <= 929 || (c >= 931 && c <= 1013))))))) - : (c <= 1153 || (c < 1749 - ? (c < 1488 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1514 || (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))))) - : (c <= 1749 || (c < 1808 - ? (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) - : (c <= 2037 || (c < 2486 - ? (c < 2308 - ? (c < 2112 - ? (c < 2074 - ? (c < 2048 - ? c == 2042 - : c <= 2069) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))))) - : (c <= 2361 || (c < 2437 - ? (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)))))) - : (c <= 2489 || (c < 2602 - ? (c < 2544 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c >= 2527 && c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3253 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3114 - ? (c < 2990 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))) - : (c <= 3001 || (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))))) - : (c <= 3129 || (c < 3200 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) - : (c <= 3257 || (c < 3713 - ? (c < 3423 - ? (c < 3342 - ? (c < 3296 - ? (c < 3293 - ? c == 3261 - : c <= 3294) - : (c <= 3297 || (c < 3332 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))))) - : (c <= 3425 || (c < 3517 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))))))) - : (c <= 3714 || (c < 3804 - ? (c < 3751 - ? (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)) - : (c <= 3760 || (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)))) - : (c <= 3807 || (c < 4096 - ? (c < 3913 - ? (c < 3904 - ? c == 3840 - : c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))) - : (c <= 4138 || (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)))))))))))) - : (c <= 4198 || (c < 8144 - ? (c < 6272 - ? (c < 4824 - ? (c < 4696 - ? (c < 4301 - ? (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4682 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680) - : (c <= 4685 || (c >= 4688 && c <= 4694))))) - : (c <= 4696 || (c < 4786 - ? (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c >= 4808 && c <= 4822))))))) - : (c <= 4880 || (c < 5870 - ? (c < 5112 - ? (c < 4992 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954) - : (c <= 5007 || (c >= 5024 && c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c >= 5792 && c <= 5866))))) - : (c <= 5880 || (c < 5998 - ? (c < 5952 - ? (c < 5919 - ? (c >= 5888 && c <= 5905) - : c <= 5937) - : (c <= 5969 || (c >= 5984 && c <= 5996))) - : (c <= 6000 || (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6067) - : c <= 6103) - : (c <= 6108 || (c >= 6176 && c <= 6264))))))))) - : (c <= 6312 || (c < 7357 - ? (c < 6917 - ? (c < 6528 - ? (c < 6400 - ? (c < 6320 - ? c == 6314 - : c <= 6389) - : (c <= 6430 || (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6688 - ? (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678) - : (c <= 6740 || c == 6823)))) - : (c <= 6963 || (c < 7168 - ? (c < 7086 - ? (c < 7043 - ? (c >= 6981 && c <= 6988) - : c <= 7072) - : (c <= 7087 || (c >= 7098 && c <= 7141))) - : (c <= 7203 || (c < 7296 - ? (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))))))) - : (c <= 7359 || (c < 8016 - ? (c < 7424 - ? (c < 7413 - ? (c < 7406 - ? (c >= 7401 && c <= 7404) - : c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))) - : (c <= 8023 || (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) - : (c <= 8147 || (c < 12344 - ? (c < 11264 - ? (c < 8469 - ? (c < 8319 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305))) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))) - : (c <= 8469 || (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))) - : (c <= 11492 || (c < 11688 - ? (c < 11565 - ? (c < 11520 - ? (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507) - : (c <= 11557 || c == 11559)) - : (c <= 11565 || (c < 11648 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c >= 11680 && c <= 11686))))) - : (c <= 11694 || (c < 11728 - ? (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))) - : (c <= 11734 || (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) - : (c <= 12348 || (c < 42960 - ? (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c >= 19968 && c <= 42124))))) - : (c <= 42237 || (c < 42623 - ? (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))) - : (c <= 42653 || (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))))))) - : (c <= 42961 || (c < 43259 - ? (c < 43015 - ? (c < 42994 - ? (c < 42965 - ? c == 42963 - : c <= 42969) - : (c <= 43009 || (c >= 43011 && c <= 43013))) - : (c <= 43018 || (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c >= 43250 && c <= 43255))))) - : (c <= 43259 || (c < 43396 - ? (c < 43312 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))) - : (c <= 43442 || (c < 43494 - ? (c < 43488 - ? c == 43471 - : c <= 43492) - : (c <= 43503 || (c >= 43514 && c <= 43518))))))))))))))) - : (c <= 43560 || (c < 70751 - ? (c < 66964 - ? (c < 65008 - ? (c < 43888 - ? (c < 43739 - ? (c < 43697 - ? (c < 43616 - ? (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595) - : (c <= 43638 || (c < 43646 - ? c == 43642 - : c <= 43695))) - : (c <= 43697 || (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)))) - : (c <= 43741 || (c < 43793 - ? (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))) - : (c <= 43798 || (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))))))) - : (c <= 44002 || (c < 64298 - ? (c < 64112 - ? (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))))) - : (c <= 64310 || (c < 64326 - ? (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))) - : (c <= 64433 || (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))))))))) - : (c <= 65017 || (c < 65616 - ? (c < 65440 - ? (c < 65149 - ? (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65437))))) - : (c <= 65470 || (c < 65536 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))))))) - : (c <= 65629 || (c < 66504 - ? (c < 66304 - ? (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c >= 66464 && c <= 66499))))) - : (c <= 66511 || (c < 66816 - ? (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c >= 66776 && c <= 66811))) - : (c <= 66855 || (c < 66940 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : c <= 66938) - : (c <= 66954 || (c >= 66956 && c <= 66962))))))))))) - : (c <= 66965 || (c < 69248 - ? (c < 67840 - ? (c < 67584 - ? (c < 67392 - ? (c < 66995 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993) - : (c <= 67001 || (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382))) - : (c <= 67413 || (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))))) - : (c <= 67589 || (c < 67647 - ? (c < 67639 - ? (c < 67594 - ? c == 67592 - : c <= 67637) - : (c <= 67640 || c == 67644)) - : (c <= 67669 || (c < 67808 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742) - : (c <= 67826 || (c >= 67828 && c <= 67829))))))) - : (c <= 67861 || (c < 68288 - ? (c < 68112 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || c == 68096)) - : (c <= 68115 || (c < 68192 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68220 || (c >= 68224 && c <= 68252))))) - : (c <= 68295 || (c < 68480 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68324) - : c <= 68405) - : (c <= 68437 || (c >= 68448 && c <= 68466))) - : (c <= 68497 || (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c >= 68864 && c <= 68899))))))))) - : (c <= 69289 || (c < 70108 - ? (c < 69763 - ? (c < 69552 - ? (c < 69415 - ? (c < 69376 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69445) - : c <= 69505))) - : (c <= 69572 || (c < 69745 - ? (c < 69635 - ? (c >= 69600 && c <= 69622) - : c <= 69687) - : (c <= 69746 || c == 69749)))) - : (c <= 69807 || (c < 69968 - ? (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)) - : (c <= 70002 || (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)))))) - : (c <= 70108 || (c < 70415 - ? (c < 70282 - ? (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)) - : (c <= 70285 || (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))))) - : (c <= 70416 || (c < 70461 - ? (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c >= 70727 && c <= 70730))))))))))))) - : (c <= 70753 || (c < 119966 - ? (c < 73063 - ? (c < 72096 - ? (c < 71488 - ? (c < 71168 - ? (c < 70855 - ? (c < 70852 - ? (c >= 70784 && c <= 70831) - : c <= 70853) - : (c <= 70855 || (c < 71128 - ? (c >= 71040 && c <= 71086) - : c <= 71131))) - : (c <= 71215 || (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c >= 71424 && c <= 71450))))) - : (c <= 71494 || (c < 71948 - ? (c < 71935 - ? (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903) - : (c <= 71942 || c == 71945)) - : (c <= 71955 || (c < 71999 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71983) - : (c <= 71999 || c == 72001)))))) - : (c <= 72103 || (c < 72368 - ? (c < 72203 - ? (c < 72163 - ? (c < 72161 - ? (c >= 72106 && c <= 72144) - : c <= 72161) - : (c <= 72163 || c == 72192)) - : (c <= 72242 || (c < 72284 - ? (c < 72272 - ? c == 72250 - : c <= 72272) - : (c <= 72329 || c == 72349)))) - : (c <= 72440 || (c < 72960 - ? (c < 72768 - ? (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72750) - : (c <= 72768 || (c >= 72818 && c <= 72847))) - : (c <= 72966 || (c < 73030 - ? (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008) - : (c <= 73030 || (c >= 73056 && c <= 73061))))))))) - : (c <= 73064 || (c < 94032 - ? (c < 92160 - ? (c < 74752 - ? (c < 73440 - ? (c < 73112 - ? (c >= 73066 && c <= 73097) - : c <= 73112) - : (c <= 73458 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 77824 - ? (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808) - : (c <= 78894 || (c >= 82944 && c <= 83526))))) - : (c <= 92728 || (c < 92992 - ? (c < 92880 - ? (c < 92784 - ? (c >= 92736 && c <= 92766) - : c <= 92862) - : (c <= 92909 || (c >= 92928 && c <= 92975))) - : (c <= 92995 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))))))) - : (c <= 94032 || (c < 110592 - ? (c < 100352 - ? (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))) - : (c <= 101589 || (c < 110581 - ? (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579) - : (c <= 110587 || (c >= 110589 && c <= 110590))))) - : (c <= 110882 || (c < 113776 - ? (c < 110960 - ? (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 119808 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) - : (c <= 119967 || (c < 126464 - ? (c < 120598 - ? (c < 120094 - ? (c < 119997 - ? (c < 119977 - ? (c < 119973 - ? c == 119970 - : c <= 119974) - : (c <= 119980 || (c < 119995 - ? (c >= 119982 && c <= 119993) - : c <= 119995))) - : (c <= 120003 || (c < 120077 - ? (c < 120071 - ? (c >= 120005 && c <= 120069) - : c <= 120074) - : (c <= 120084 || (c >= 120086 && c <= 120092))))) - : (c <= 120121 || (c < 120146 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c >= 120138 && c <= 120144))) - : (c <= 120485 || (c < 120540 - ? (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538) - : (c <= 120570 || (c >= 120572 && c <= 120596))))))) - : (c <= 120628 || (c < 123214 - ? (c < 120746 - ? (c < 120688 - ? (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686) - : (c <= 120712 || (c >= 120714 && c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c >= 123191 && c <= 123197))))) - : (c <= 123214 || (c < 124909 - ? (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123565) - : c <= 123627) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || c == 126503)) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < '_' - ? (c >= 'A' && c <= 'Y') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} +static TSCharacterRange sym__non_escape_char_character_set_1[] = { + {0, '!'}, {'#', '&'}, {'(', '`'}, {'c', 'e'}, {'g', 'm'}, {'o', 'q'}, {'s', 's'}, {'u', 'u'}, + {'w', 0x10ffff}, +}; -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2741 - ? (c < 2042 - ? (c < 931 - ? (c < 248 - ? (c < 170 - ? (c < 'A' - ? (c < '0' - ? c == '\'' - : c <= '9') - : (c <= 'Z' || (c < 'a' - ? c == '_' - : c <= 'z'))) - : (c <= 170 || (c < 186 - ? (c < 183 - ? c == 181 - : c <= 183) - : (c <= 186 || (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246))))) - : (c <= 705 || (c < 886 - ? (c < 748 - ? (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740) - : (c <= 748 || (c < 768 - ? c == 750 - : c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 906 || (c < 910 - ? c == 908 - : c <= 929))))))) - : (c <= 1013 || (c < 1488 - ? (c < 1376 - ? (c < 1162 - ? (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1473 - ? (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471) - : (c <= 1474 || (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479))))) - : (c <= 1514 || (c < 1759 - ? (c < 1568 - ? (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562) - : (c <= 1641 || (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756))) - : (c <= 1768 || (c < 1808 - ? (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))))))))) - : (c <= 2042 || (c < 2556 - ? (c < 2447 - ? (c < 2185 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183))) - : (c <= 2190 || (c < 2406 - ? (c < 2275 - ? (c >= 2200 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c < 2534 - ? (c >= 2527 && c <= 2531) - : c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739))))))))))) - : (c <= 2745 || (c < 3165 - ? (c < 2949 - ? (c < 2858 - ? (c < 2790 - ? (c < 2763 - ? (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761) - : (c <= 2765 || (c < 2784 - ? c == 2768 - : c <= 2787))) - : (c <= 2799 || (c < 2821 - ? (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819) - : (c <= 2828 || (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856))))) - : (c <= 2864 || (c < 2901 - ? (c < 2876 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2884 || (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893))) - : (c <= 2903 || (c < 2918 - ? (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915) - : (c <= 2927 || (c < 2946 - ? c == 2929 - : c <= 2947))))))) - : (c <= 2954 || (c < 3024 - ? (c < 2979 - ? (c < 2969 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))) - : (c <= 2980 || (c < 3006 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3010 || (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021))))) - : (c <= 3024 || (c < 3114 - ? (c < 3072 - ? (c < 3046 - ? c == 3031 - : c <= 3055) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3146 - ? (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144) - : (c <= 3149 || (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162))))))))) - : (c <= 3165 || (c < 3430 - ? (c < 3285 - ? (c < 3218 - ? (c < 3200 - ? (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183) - : (c <= 3203 || (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216))) - : (c <= 3240 || (c < 3260 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257) - : (c <= 3268 || (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277))))) - : (c <= 3286 || (c < 3342 - ? (c < 3302 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3402 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400) - : (c <= 3406 || (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427))))))) - : (c <= 3439 || (c < 3558 - ? (c < 3517 - ? (c < 3461 - ? (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))) - : (c <= 3517 || (c < 3535 - ? (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530) - : (c <= 3540 || (c < 3544 - ? c == 3542 - : c <= 3551))))) - : (c <= 3567 || (c < 3716 - ? (c < 3648 - ? (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642) - : (c <= 3662 || (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, + {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, + {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, {0x531, 0x556}, + {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, + {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, + {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, + {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, + {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, + {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, + {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, {0xa85, 0xa8d}, + {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, + {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, + {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, + {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, + {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, {0xc85, 0xc8c}, + {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xcf1, 0xcf2}, + {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, {0xd7a, 0xd7f}, + {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, {0xe40, 0xe46}, + {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, {0xebd, 0xebd}, + {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, + {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, + {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, + {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, + {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, + {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, + {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, + {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, + {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, + {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, + {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, + {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, + {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, + {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, + {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, + {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, + {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, + {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, + {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, + {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, + {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, + {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, + {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, + {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, + {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, + {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, + {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, + {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, + {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, + {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, + {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, + {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, + {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, + {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, + {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, + {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, + {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, + {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, + {0x11ee0, 0x11ef2}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, + {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, + {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, + {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, + {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, + {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, + {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, + {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, + {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, +}; -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2741 - ? (c < 2042 - ? (c < 931 - ? (c < 248 - ? (c < 170 - ? (c < 'A' - ? (c < '0' - ? c == '\'' - : c <= '9') - : (c <= 'Z' || (c < 'b' - ? c == '_' - : c <= 'z'))) - : (c <= 170 || (c < 186 - ? (c < 183 - ? c == 181 - : c <= 183) - : (c <= 186 || (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246))))) - : (c <= 705 || (c < 886 - ? (c < 748 - ? (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740) - : (c <= 748 || (c < 768 - ? c == 750 - : c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 906 || (c < 910 - ? c == 908 - : c <= 929))))))) - : (c <= 1013 || (c < 1488 - ? (c < 1376 - ? (c < 1162 - ? (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1473 - ? (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471) - : (c <= 1474 || (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479))))) - : (c <= 1514 || (c < 1759 - ? (c < 1568 - ? (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562) - : (c <= 1641 || (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756))) - : (c <= 1768 || (c < 1808 - ? (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))))))))) - : (c <= 2042 || (c < 2556 - ? (c < 2447 - ? (c < 2185 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183))) - : (c <= 2190 || (c < 2406 - ? (c < 2275 - ? (c >= 2200 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c < 2534 - ? (c >= 2527 && c <= 2531) - : c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739))))))))))) - : (c <= 2745 || (c < 3165 - ? (c < 2949 - ? (c < 2858 - ? (c < 2790 - ? (c < 2763 - ? (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761) - : (c <= 2765 || (c < 2784 - ? c == 2768 - : c <= 2787))) - : (c <= 2799 || (c < 2821 - ? (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819) - : (c <= 2828 || (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856))))) - : (c <= 2864 || (c < 2901 - ? (c < 2876 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2884 || (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893))) - : (c <= 2903 || (c < 2918 - ? (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915) - : (c <= 2927 || (c < 2946 - ? c == 2929 - : c <= 2947))))))) - : (c <= 2954 || (c < 3024 - ? (c < 2979 - ? (c < 2969 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))) - : (c <= 2980 || (c < 3006 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3010 || (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021))))) - : (c <= 3024 || (c < 3114 - ? (c < 3072 - ? (c < 3046 - ? c == 3031 - : c <= 3055) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3146 - ? (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144) - : (c <= 3149 || (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162))))))))) - : (c <= 3165 || (c < 3430 - ? (c < 3285 - ? (c < 3218 - ? (c < 3200 - ? (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183) - : (c <= 3203 || (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216))) - : (c <= 3240 || (c < 3260 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257) - : (c <= 3268 || (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277))))) - : (c <= 3286 || (c < 3342 - ? (c < 3302 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3402 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400) - : (c <= 3406 || (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427))))))) - : (c <= 3439 || (c < 3558 - ? (c < 3517 - ? (c < 3461 - ? (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))) - : (c <= 3517 || (c < 3535 - ? (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530) - : (c <= 3540 || (c < 3544 - ? c == 3542 - : c <= 3551))))) - : (c <= 3567 || (c < 3716 - ? (c < 3648 - ? (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642) - : (c <= 3662 || (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'\'', '\''}, {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, + {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, + {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, + {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, + {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, + {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, + {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, + {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, + {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, + {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, + {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, + {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, {0xb01, 0xb03}, + {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, {0xb47, 0xb48}, + {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, {0xb85, 0xb8a}, + {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, + {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, + {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, + {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, + {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, + {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, + {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, + {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, + {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, + {0xec8, 0xecd}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, + {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, + {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, {0x1380, 0x138f}, + {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1715}, + {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, + {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, + {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, + {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, + {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, + {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, + {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, + {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, + {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, + {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, + {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, + {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, + {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, + {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, + {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, + {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, + {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, + {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, + {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, + {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, + {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, + {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, + {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, + {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, + {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, + {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, + {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x1123e}, + {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, + {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, + {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, + {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, + {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, + {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, + {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, + {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, + {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, + {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, + {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, + {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, + {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, + {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1e000, 0x1e006}, + {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, + {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(380); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(368); - if (lookahead == '(') ADVANCE(340); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(344); - if (lookahead == '+') ADVANCE(387); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(455); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'M') ADVANCE(453); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'f') ADVANCE(448); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == 'l') ADVANCE(432); - if (lookahead == 'm') ADVANCE(452); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(435); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == 'y') ADVANCE(422); - if (lookahead == '{') ADVANCE(370); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 411, + '#', 382, + '$', 445, + '%', 428, + '&', 327, + '\'', 399, + '(', 371, + ')', 319, + '*', 375, + '+', 418, + ',', 320, + '-', 421, + '.', 486, + '/', 154, + '0', 447, + ':', 302, + ';', 334, + '<', 364, + '=', 387, + '>', 365, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 329, + '\\', 2, + ']', 333, + '^', 386, + '`', 168, + 'a', 534, + 'd', 532, + 'f', 479, + 'i', 529, + 'l', 463, + 'm', 483, + 'n', 471, + 'r', 524, + 's', 458, + 'u', 466, + 'w', 525, + 'y', 453, + '{', 401, + '|', 324, + '}', 339, + '~', 432, + 'E', 491, + 'e', 491, + 'G', 481, + 'I', 481, + 'N', 481, + 'Q', 481, + 'R', 481, + 'Z', 481, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(512); - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '\\') SKIP(39) + if (lookahead == '\n') ADVANCE(542); + if (lookahead == '"') ADVANCE(404); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '@') ADVANCE(88); + if (lookahead == '\\') SKIP(42); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(1) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(1); END_STATE(); case 2: - if (lookahead == '\r') SKIP(161) - if (lookahead == 'n') SKIP(48) - if (lookahead == 'u') ADVANCE(225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '\r') SKIP(185); + if (lookahead == 'n') SKIP(51); + if (lookahead == 'u') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(358); - if (lookahead == 'n') ADVANCE(357); - if (lookahead == 'u') ADVANCE(358); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == 'a' || - lookahead == 'b' || - lookahead == 'f' || - lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(357); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(358); - if (lookahead != 0) ADVANCE(358); + ADVANCE_MAP( + '\r', 389, + 'n', 388, + 'u', 389, + '"', 388, + '\'', 388, + 'a', 388, + 'b', 388, + 'f', 388, + 'r', 388, + 't', 388, + 'v', 388, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(389); + if (lookahead != 0) ADVANCE(389); END_STATE(); case 4: - if (lookahead == '\r') SKIP(189) - if (lookahead == 'n') SKIP(66) + if (lookahead == '\r') SKIP(215); + if (lookahead == 'n') SKIP(78); END_STATE(); case 5: - if (lookahead == '\r') SKIP(190) - if (lookahead == 'n') SKIP(70) + if (lookahead == '\r') SKIP(216); + if (lookahead == 'n') SKIP(83); END_STATE(); case 6: - if (lookahead == '\r') SKIP(165) - if (lookahead == 'n') SKIP(72) + if (lookahead == '\r') SKIP(189); + if (lookahead == 'n') SKIP(85); END_STATE(); case 7: - if (lookahead == '\r') SKIP(198) - if (lookahead == 'n') SKIP(67) + if (lookahead == '\r') SKIP(190); + if (lookahead == 'n') SKIP(74); END_STATE(); case 8: - if (lookahead == '\r') SKIP(191) - if (lookahead == 'n') SKIP(61) + if (lookahead == '\r') SKIP(224); + if (lookahead == 'n') SKIP(79); END_STATE(); case 9: - if (lookahead == '\r') SKIP(192) - if (lookahead == 'n') SKIP(62) + if (lookahead == '\r') SKIP(225); + if (lookahead == 'n') SKIP(82); END_STATE(); case 10: - if (lookahead == '\r') SKIP(199) - if (lookahead == 'n') SKIP(69) + if (lookahead == '\r') SKIP(217); + if (lookahead == 'n') SKIP(72); END_STATE(); case 11: - if (lookahead == '\r') SKIP(201) - if (lookahead == 'n') SKIP(71) + if (lookahead == '\r') SKIP(218); + if (lookahead == 'n') SKIP(73); END_STATE(); case 12: - if (lookahead == '\r') SKIP(202) - if (lookahead == 'n') SKIP(63) + if (lookahead == '\r') SKIP(227); + if (lookahead == 'n') SKIP(81); END_STATE(); case 13: - if (lookahead == '\r') SKIP(203) - if (lookahead == 'n') SKIP(68) + if (lookahead == '\r') SKIP(228); + if (lookahead == 'n') SKIP(84); END_STATE(); case 14: - if (lookahead == '\r') SKIP(166) - if (lookahead == 'n') SKIP(98) + if (lookahead == '\r') SKIP(229); + if (lookahead == 'n') SKIP(75); END_STATE(); case 15: - if (lookahead == '\r') SKIP(167) - if (lookahead == 'n') SKIP(88) + if (lookahead == '\r') SKIP(230); + if (lookahead == 'n') SKIP(80); END_STATE(); case 16: - if (lookahead == '\r') SKIP(168) - if (lookahead == 'n') SKIP(94) + if (lookahead == '\r') SKIP(191); + if (lookahead == 'n') SKIP(119); END_STATE(); case 17: - if (lookahead == '\r') SKIP(193) - if (lookahead == 'n') SKIP(78) + if (lookahead == '\r') SKIP(192); + if (lookahead == 'n') SKIP(103); END_STATE(); case 18: - if (lookahead == '\r') SKIP(169) - if (lookahead == 'n') SKIP(99) + if (lookahead == '\r') SKIP(193); + if (lookahead == 'n') SKIP(113); END_STATE(); case 19: - if (lookahead == '\r') SKIP(170) - if (lookahead == 'n') SKIP(85) + if (lookahead == '\r') SKIP(219); + if (lookahead == 'n') SKIP(91); END_STATE(); case 20: - if (lookahead == '\r') SKIP(171) - if (lookahead == 'n') SKIP(92) + if (lookahead == '\r') SKIP(194); + if (lookahead == 'n') SKIP(120); END_STATE(); case 21: - if (lookahead == '\r') SKIP(172) - if (lookahead == 'n') SKIP(97) + if (lookahead == '\r') SKIP(195); + if (lookahead == 'n') SKIP(100); END_STATE(); case 22: - if (lookahead == '\r') SKIP(173) - if (lookahead == 'n') SKIP(93) + if (lookahead == '\r') SKIP(196); + if (lookahead == 'n') SKIP(109); END_STATE(); case 23: - if (lookahead == '\r') SKIP(174) - if (lookahead == 'n') SKIP(86) + if (lookahead == '\r') SKIP(197); + if (lookahead == 'n') SKIP(118); END_STATE(); case 24: - if (lookahead == '\r') SKIP(175) - if (lookahead == 'n') SKIP(83) + if (lookahead == '\r') SKIP(198); + if (lookahead == 'n') SKIP(112); END_STATE(); case 25: - if (lookahead == '\r') SKIP(176) - if (lookahead == 'n') SKIP(101) + if (lookahead == '\r') SKIP(199); + if (lookahead == 'n') SKIP(96); END_STATE(); case 26: - if (lookahead == '\r') SKIP(194) - if (lookahead == 'n') SKIP(113) + if (lookahead == '\r') SKIP(200); + if (lookahead == 'n') SKIP(101); END_STATE(); case 27: - if (lookahead == '\r') SKIP(177) - if (lookahead == 'n') SKIP(95) + if (lookahead == '\r') SKIP(201); + if (lookahead == 'n') SKIP(122); END_STATE(); case 28: - if (lookahead == '\r') SKIP(178) - if (lookahead == 'n') SKIP(89) + if (lookahead == '\r') SKIP(220); + if (lookahead == 'n') SKIP(137); END_STATE(); case 29: - if (lookahead == '\r') SKIP(179) - if (lookahead == 'n') SKIP(110) + if (lookahead == '\r') SKIP(202); + if (lookahead == 'n') SKIP(114); END_STATE(); case 30: - if (lookahead == '\r') SKIP(182) - if (lookahead == 'n') SKIP(109) + if (lookahead == '\r') SKIP(203); + if (lookahead == 'n') SKIP(104); END_STATE(); case 31: - if (lookahead == '\r') SKIP(183) - if (lookahead == 'n') SKIP(111) + if (lookahead == '\r') SKIP(204); + if (lookahead == 'n') SKIP(134); END_STATE(); case 32: - if (lookahead == '\r') SKIP(184) - if (lookahead == 'n') SKIP(112) + if (lookahead == '\r') SKIP(207); + if (lookahead == 'n') SKIP(125); END_STATE(); case 33: - if (lookahead == '\r') SKIP(185) - if (lookahead == 'n') SKIP(117) + if (lookahead == '\r') SKIP(208); + if (lookahead == 'n') SKIP(133); END_STATE(); case 34: - if (lookahead == '\r') SKIP(186) - if (lookahead == 'n') SKIP(79) - if (lookahead == 'u') ADVANCE(225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '\r') SKIP(209); + if (lookahead == 'n') SKIP(135); END_STATE(); case 35: - if (lookahead == '\r') SKIP(187) - if (lookahead == 'n') SKIP(107) + if (lookahead == '\r') SKIP(210); + if (lookahead == 'n') SKIP(136); END_STATE(); case 36: - if (lookahead == '\r') SKIP(195) - if (lookahead == 'n') SKIP(118) + if (lookahead == '\r') SKIP(211); + if (lookahead == 'n') SKIP(141); END_STATE(); case 37: - if (lookahead == '\r') SKIP(196) - if (lookahead == 'n') ADVANCE(357); - if (lookahead == 'u') ADVANCE(226); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == 'a' || - lookahead == 'b' || - lookahead == 'f' || - lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(357); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '\r') SKIP(212); + if (lookahead == 'n') SKIP(92); + if (lookahead == 'u') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); case 38: - if (lookahead == '\r') SKIP(196) - if (lookahead == 'n') SKIP(116) - if (lookahead == 'u') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + if (lookahead == '\r') SKIP(213); + if (lookahead == 'n') SKIP(131); END_STATE(); case 39: - if (lookahead == '\r') SKIP(188) - if (lookahead == 'n') SKIP(1) + if (lookahead == '\r') SKIP(221); + if (lookahead == 'n') SKIP(142); END_STATE(); case 40: - if (lookahead == '\r') SKIP(197) - if (lookahead == 'n') SKIP(64) + if (lookahead == '\r') SKIP(222); + if (lookahead == 'n') ADVANCE(388); + if (lookahead == 'u') ADVANCE(253); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(388); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); case 41: - if (lookahead == '\r') SKIP(200) - if (lookahead == 'n') SKIP(65) + if (lookahead == '\r') SKIP(222); + if (lookahead == 'n') SKIP(140); + if (lookahead == 'u') ADVANCE(253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(240); END_STATE(); case 42: - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'e') ADVANCE(160); - if (lookahead == 'i') ADVANCE(154); - if (lookahead == 'l') ADVANCE(158); - if (lookahead == 'n') ADVANCE(204); - if (lookahead == 'r') ADVANCE(264); + if (lookahead == '\r') SKIP(214); + if (lookahead == 'n') SKIP(1); END_STATE(); case 43: - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == '\r') SKIP(223); + if (lookahead == 'n') SKIP(76); END_STATE(); case 44: - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'i') ADVANCE(154); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == '\r') SKIP(226); + if (lookahead == 'n') SKIP(77); END_STATE(); case 45: - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'i') ADVANCE(154); - if (lookahead == 'l') ADVANCE(158); - if (lookahead == 'n') ADVANCE(204); - if (lookahead == 'r') ADVANCE(264); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'n') ADVANCE(231); + if (lookahead == 'r') ADVANCE(296); END_STATE(); case 46: - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'l') ADVANCE(181); END_STATE(); case 47: - if (lookahead == ' ') ADVANCE(129); - if (lookahead == ')') ADVANCE(386); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'l') ADVANCE(181); + END_STATE(); + case 48: + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'n') ADVANCE(231); + if (lookahead == 'r') ADVANCE(296); + END_STATE(); + case 49: + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'l') ADVANCE(181); + END_STATE(); + case 50: + if (lookahead == ' ') ADVANCE(153); + if (lookahead == ')') ADVANCE(417); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -13551,3504 +9405,4679 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(124); + lookahead == '~') ADVANCE(148); END_STATE(); - case 48: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(352); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '+') ADVANCE(387); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(329); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); + case 51: + ADVANCE_MAP( + '!', 158, + '"', 404, + '#', 383, + '$', 445, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + ')', 319, + '*', 374, + '+', 418, + ',', 320, + '-', 421, + '.', 361, + '/', 154, + '0', 447, + ':', 302, + ';', 334, + '<', 378, + '=', 387, + '>', 365, + '?', 310, + '@', 89, + '[', 329, + '\\', 2, + ']', 333, + '^', 386, + '`', 168, + 'a', 534, + 'd', 532, + 'i', 529, + 'l', 520, + 'm', 517, + 'r', 524, + 'u', 535, + 'w', 525, + 'y', 527, + '{', 338, + '|', 324, + '}', 339, + '~', 432, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(51); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); - case 49: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(8) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + case 52: + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 331, + ); + if (lookahead == '\\') SKIP(10); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); - case 50: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + case 53: + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 331, + ); + if (lookahead == '\\') SKIP(11); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); - case 51: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'M') ADVANCE(453); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(40) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(432); - if (lookahead == 'm') ADVANCE(452); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(435); - if (lookahead == 'y') ADVANCE(422); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + case 54: + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 486, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(7); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); - END_STATE(); - case 52: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(12) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); - case 53: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(41) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '>' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); - END_STATE(); - case 54: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(457); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'M') ADVANCE(453); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(7) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(432); - if (lookahead == 'm') ADVANCE(452); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(435); - if (lookahead == 'y') ADVANCE(422); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + case 55: + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 488, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(43); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(67) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); - END_STATE(); - case 55: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(4) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '>' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 56: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(13) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 387, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(14); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 57: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(43); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(69) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 58: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(457); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'M') ADVANCE(453); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(432); - if (lookahead == 'm') ADVANCE(452); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(435); - if (lookahead == 'y') ADVANCE(422); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(43); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(70) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 59: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(44); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(70) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(77); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 60: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 487, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(8); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(71) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 61: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(8) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '>' || - lookahead == '^') ADVANCE(408); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(8); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 62: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '>' || - lookahead == '^') ADVANCE(408); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(8); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 63: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(12) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(4); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(78); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(40) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(15); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(80); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(332); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(41) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(12); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(81); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 66: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(4) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 488, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(9); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(82); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 67: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(7) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 487, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(5); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(67) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 68: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(13) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(5); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 69: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + 'M', 484, + '[', 332, + ); + if (lookahead == '\\') SKIP(5); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(69) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 70: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(5); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(70) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 71: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(13); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(408); + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(71) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(84); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 72: - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(44); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '+') ADVANCE(387); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(136); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(6) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '~') ADVANCE(401); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 379, + '=', 294, + '?', 310, + '@', 89, + '[', 331, + ); + if (lookahead == '\\') SKIP(10); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(72) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 73: - if (lookahead == '"') ADVANCE(380); - if (lookahead == '#') ADVANCE(367); - if (lookahead == '(') ADVANCE(367); - if (lookahead == '/') ADVANCE(367); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(115) - if (lookahead == '\n' || + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 379, + '=', 294, + '?', 310, + '@', 89, + '[', 331, + ); + if (lookahead == '\\') SKIP(11); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(367); - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8) ADVANCE(367); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 74: - if (lookahead == '"') ADVANCE(372); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(7); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 75: - if (lookahead == '"') ADVANCE(378); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 387, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(14); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 76: - if (lookahead == '"') ADVANCE(378); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(137); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(43); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 77: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(351); - if (lookahead == '$') ADVANCE(103); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(286); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '[') ADVANCE(132); - if (lookahead == '\\') SKIP(17) - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(44); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(78) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(77); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 78: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(103); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(286); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '[') ADVANCE(132); - if (lookahead == '\\') SKIP(17) - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(4); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(78) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(78); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 79: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(34); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(8); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(79) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 80: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(367); - if (lookahead == '(') ADVANCE(367); - if (lookahead == '/') ADVANCE(367); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == '{') ADVANCE(370); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(79) - if (lookahead == '\n' || + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(15); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(367); - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8) ADVANCE(367); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(80); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 81: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(367); - if (lookahead == '(') ADVANCE(367); - if (lookahead == '/') ADVANCE(367); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(79) - if (lookahead == '\n' || + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 422, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(12); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(367); - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8) ADVANCE(367); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(81); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 82: - if (lookahead == '"') ADVANCE(383); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 422, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(9); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(82); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 83: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(271); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(299); - if (lookahead == '\\') SKIP(24) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(291); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(5); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(83) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 84: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(19) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'y') ADVANCE(423); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(291); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(453); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 47, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 422, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '?', 310, + '@', 89, + '[', 332, + ); + if (lookahead == '\\') SKIP(13); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(439); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(85) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(84); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 85: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(19) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(291); + ADVANCE_MAP( + '!', 241, + '"', 405, + '#', 47, + '$', 87, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + '*', 374, + '+', 418, + '-', 421, + '.', 360, + '/', 154, + '0', 447, + ':', 160, + '<', 380, + '@', 88, + '[', 331, + ); + if (lookahead == '\\') SKIP(6); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '~') ADVANCE(432); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(85) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(85); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 86: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(272); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '"') ADVANCE(411); + if (lookahead == '#') ADVANCE(398); + if (lookahead == '(') ADVANCE(398); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) SKIP(139); + if (lookahead == '\n' || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(398); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(398); END_STATE(); case 87: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == '*') ADVANCE(121); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '>') ADVANCE(143); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(15) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (lookahead == '"') ADVANCE(403); END_STATE(); case 88: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '>') ADVANCE(143); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(15) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (lookahead == '"') ADVANCE(409); END_STATE(); case 89: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (lookahead == '"') ADVANCE(409); + if (lookahead == '>') ADVANCE(346); + if (lookahead == '@') ADVANCE(161); END_STATE(); case 90: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(20) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == 'y') ADVANCE(423); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(453); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + ADVANCE_MAP( + '"', 404, + '#', 382, + '$', 127, + '\'', 385, + '(', 318, + ')', 319, + ',', 320, + '/', 154, + ':', 306, + '<', 377, + '=', 294, + '[', 156, + ); + if (lookahead == '\\') SKIP(19); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(91); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 91: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(22) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'y') ADVANCE(423); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(453); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + ADVANCE_MAP( + '"', 404, + '#', 49, + '$', 127, + '\'', 385, + '(', 318, + ')', 319, + ',', 320, + '/', 154, + ':', 306, + '<', 377, + '=', 294, + '[', 156, + ); + if (lookahead == '\\') SKIP(19); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(91); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 92: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(20) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + if (lookahead == '"') ADVANCE(404); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') ADVANCE(37); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(92); END_STATE(); case 93: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(22) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '"') ADVANCE(404); + if (lookahead == '#') ADVANCE(398); + if (lookahead == '(') ADVANCE(398); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '\\') ADVANCE(3); + if (lookahead == '{') ADVANCE(401); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) SKIP(92); + if (lookahead == '\n' || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(398); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(398); END_STATE(); case 94: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(16) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '"') ADVANCE(404); + if (lookahead == '#') ADVANCE(398); + if (lookahead == '(') ADVANCE(398); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) SKIP(92); + if (lookahead == '\n' || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(398); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(398); END_STATE(); case 95: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + if (lookahead == '"') ADVANCE(414); + END_STATE(); + case 96: + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 303, + ';', 334, + '<', 377, + '=', 294, + '@', 88, + '[', 331, + ); + if (lookahead == '\\') SKIP(25); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); - case 96: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(21) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'y') ADVANCE(423); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + case 97: + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + ',', 320, + '-', 159, + '.', 485, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '<', 377, + '=', 294, + '?', 309, + '@', 88, + 'L', 475, + 'U', 516, + '[', 330, + ); + if (lookahead == '\\') SKIP(21); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'y') ADVANCE(454); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); + lookahead == 'e') ADVANCE(491); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(453); + lookahead == 'm') ADVANCE(484); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); - END_STATE(); - case 97: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(21) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 98: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(138); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(14) - if (lookahead == '`') ADVANCE(144); - if (lookahead == '{') ADVANCE(305); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '<', 377, + '=', 294, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(21); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 99: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(18) - if (lookahead == '`') ADVANCE(144); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '<', 377, + '=', 294, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(21); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 100: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(268); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(25) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'y') ADVANCE(423); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(209); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(453); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '<', 377, + '=', 294, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(21); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 101: - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(268); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(300); - if (lookahead == '\\') SKIP(25) - if (lookahead == '`') ADVANCE(144); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(209); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 304, + ';', 334, + '<', 377, + '=', 294, + '?', 309, + '@', 88, + '[', 329, + ); + if (lookahead == '\\') SKIP(26); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 102: - if (lookahead == '"') ADVANCE(384); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + '*', 145, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '=', 387, + '>', 167, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(17); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 103: - if (lookahead == '"') ADVANCE(371); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '=', 387, + '>', 167, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(17); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 104: - if (lookahead == '"') ADVANCE(375); - if (lookahead == '#') ADVANCE(367); - if (lookahead == '(') ADVANCE(367); - if (lookahead == '/') ADVANCE(367); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(79) - if (lookahead == '\n' || + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 301, + ';', 334, + '<', 377, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(30); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(367); - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8) ADVANCE(367); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(104); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 105: - if (lookahead == '"') ADVANCE(379); - if (lookahead == '#') ADVANCE(367); - if (lookahead == '(') ADVANCE(367); - if (lookahead == '/') ADVANCE(367); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(115) - if (lookahead == '\n' || + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '.', 485, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + 'L', 475, + 'U', 516, + '[', 330, + ); + if (lookahead == '\\') SKIP(22); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == 'y') ADVANCE(454); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(367); - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8) ADVANCE(367); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 106: - if (lookahead == '#') ADVANCE(351); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(286); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '[') ADVANCE(133); - if (lookahead == '\\') SKIP(26) - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '.', 485, + '/', 154, + '0', 447, + ':', 301, + ';', 334, + '=', 294, + '@', 88, + 'L', 475, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(24); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'y') ADVANCE(454); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(113) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 107: - if (lookahead == '#') ADVANCE(352); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(286); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') SKIP(35) - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(22); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(107) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 108: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(369); - if (lookahead == '(') ADVANCE(125); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == 'L') ADVANCE(443); - if (lookahead == 'U') ADVANCE(140); - if (lookahead == '\\') SKIP(29) - if (lookahead == ']') ADVANCE(301); - if (lookahead == 'a') ADVANCE(206); - if (lookahead == 'f') ADVANCE(447); - if (lookahead == 'i') ADVANCE(180); - if (lookahead == 'l') ADVANCE(431); - if (lookahead == 'n') ADVANCE(439); - if (lookahead == 's') ADVANCE(426); - if (lookahead == 'u') ADVANCE(437); - if (lookahead == 'w') ADVANCE(156); - if (lookahead == 'y') ADVANCE(421); - if (lookahead == '|') ADVANCE(291); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(460); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(22); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(451); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(449); + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(110) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 109: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(141); - if (lookahead == '(') ADVANCE(125); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '\\') SKIP(30) - if (lookahead == ']') ADVANCE(301); - if (lookahead == 'a') ADVANCE(206); - if (lookahead == 'i') ADVANCE(180); - if (lookahead == 'w') ADVANCE(156); - if (lookahead == '|') ADVANCE(291); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(22); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(109) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 110: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(125); - if (lookahead == ')') ADVANCE(287); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(269); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '\\') SKIP(29) - if (lookahead == ']') ADVANCE(301); - if (lookahead == 'a') ADVANCE(206); - if (lookahead == 'i') ADVANCE(180); - if (lookahead == 'w') ADVANCE(156); - if (lookahead == '|') ADVANCE(291); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 301, + ';', 334, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(24); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(110) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 111: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(271); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '\\') SKIP(31) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 301, + ';', 334, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(24); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(111) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 112: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(271); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '[') ADVANCE(142); - if (lookahead == '\\') SKIP(32) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '-', 159, + '/', 154, + '0', 447, + ':', 301, + ';', 334, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(24); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(112) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 113: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(286); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '[') ADVANCE(133); - if (lookahead == '\\') SKIP(26) - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == '|') ADVANCE(290); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '.', 360, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '=', 387, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(18); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(113) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 114: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '\\') SKIP(33) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'l') ADVANCE(433); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(436); - if (lookahead == 'y') ADVANCE(423); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '.', 360, + '/', 154, + '0', 447, + ':', 305, + '=', 294, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(29); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(117) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(114); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 115: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(376); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '.', 485, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + 'L', 475, + 'U', 516, + '[', 330, + ); + if (lookahead == '\\') SKIP(23); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'y') ADVANCE(454); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(115) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 116: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(38); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(23); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(116) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 117: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') SKIP(33) - if (lookahead == '`') ADVANCE(144); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(23); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(117) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 118: - if (lookahead == '#') ADVANCE(46); - if (lookahead == '(') ADVANCE(285); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') SKIP(36) - if (lookahead == '`') ADVANCE(144); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ',', 320, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(23); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 119: - if (lookahead == '#') ADVANCE(360); - if (lookahead == '(') ADVANCE(361); - if (lookahead == '/') ADVANCE(362); - if (lookahead == '\\') ADVANCE(37); - if (lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(359); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(116) - if (lookahead != 0 && - lookahead != 7 && - lookahead != 8 && - lookahead != '\'') ADVANCE(359); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 315, + '/', 154, + '0', 447, + ':', 162, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(16); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '{') ADVANCE(337); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(119); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 120: - if (lookahead == '#') ADVANCE(465); - if (lookahead == '(') ADVANCE(467); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '\\') ADVANCE(472); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 306, + ';', 334, + '=', 294, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(20); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(322); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(466); - if (lookahead != 0) ADVANCE(474); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(120); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 121: - if (lookahead == ')') ADVANCE(478); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '.', 485, + '/', 154, + '0', 447, + ':', 300, + '=', 294, + '@', 88, + 'L', 475, + 'U', 516, + '[', 332, + ); + if (lookahead == '\\') SKIP(27); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'y') ADVANCE(454); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(236); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 122: - if (lookahead == ')') ADVANCE(386); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '/', 154, + '0', 447, + ':', 300, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(27); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(236); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 123: - if (lookahead == ')') ADVANCE(386); - if (lookahead == '.') ADVANCE(47); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(124); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '/', 154, + '0', 447, + ':', 300, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(32); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 124: - if (lookahead == ')') ADVANCE(386); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(124); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '/', 154, + '0', 447, + ':', 300, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(32); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == '{') ADVANCE(337); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(484); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 125: - if (lookahead == '*') ADVANCE(475); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + '-', 159, + '/', 154, + '0', 447, + ':', 300, + '=', 294, + '@', 88, + '[', 332, + ); + if (lookahead == '\\') SKIP(32); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '{') ADVANCE(337); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 126: - if (lookahead == '-') ADVANCE(415); + if (lookahead == '"') ADVANCE(415); END_STATE(); case 127: - if (lookahead == '.') ADVANCE(342); + if (lookahead == '"') ADVANCE(402); END_STATE(); case 128: - if (lookahead == '.') ADVANCE(122); + if (lookahead == '"') ADVANCE(406); + if (lookahead == '#') ADVANCE(398); + if (lookahead == '(') ADVANCE(398); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) SKIP(92); + if (lookahead == '\n' || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(398); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(398); END_STATE(); case 129: - if (lookahead == '.') ADVANCE(128); + if (lookahead == '"') ADVANCE(410); + if (lookahead == '#') ADVANCE(398); + if (lookahead == '(') ADVANCE(398); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) SKIP(139); + if (lookahead == '\n' || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(398); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead)) ADVANCE(398); END_STATE(); case 130: - if (lookahead == '/') ADVANCE(131); + ADVANCE_MAP( + '#', 382, + '\'', 385, + '(', 318, + ')', 319, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + ':', 306, + '<', 377, + '=', 294, + '>', 365, + '?', 309, + '[', 157, + ); + if (lookahead == '\\') SKIP(28); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(137); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 131: - if (lookahead == '/') ADVANCE(462); - if (lookahead != 0) ADVANCE(479); + if (lookahead == '#') ADVANCE(383); + if (lookahead == '\'') ADVANCE(385); + if (lookahead == '(') ADVANCE(318); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') SKIP(38); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(131); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 132: - if (lookahead == '<') ADVANCE(266); + ADVANCE_MAP( + '#', 49, + '&', 326, + '\'', 400, + '(', 149, + ')', 319, + ',', 320, + '-', 159, + '.', 485, + '/', 154, + ':', 301, + ';', 334, + '<', 377, + '=', 294, + '>', 365, + 'L', 474, + 'U', 164, + ); + if (lookahead == '\\') SKIP(31); + if (lookahead == ']') ADVANCE(333); + if (lookahead == 'a') ADVANCE(233); + if (lookahead == 'f') ADVANCE(478); + if (lookahead == 'i') ADVANCE(205); + if (lookahead == 'l') ADVANCE(462); + if (lookahead == 'n') ADVANCE(470); + if (lookahead == 's') ADVANCE(457); + if (lookahead == 'u') ADVANCE(468); + if (lookahead == 'w') ADVANCE(180); + if (lookahead == 'y') ADVANCE(452); + if (lookahead == '|') ADVANCE(323); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(490); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(482); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(480); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); case 133: - if (lookahead == '<') ADVANCE(266); - if (lookahead == ']') ADVANCE(350); + ADVANCE_MAP( + '#', 49, + '&', 326, + '\'', 165, + '(', 149, + ')', 319, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + ':', 301, + ';', 334, + '<', 377, + '=', 294, + ); + if (lookahead == '\\') SKIP(33); + if (lookahead == ']') ADVANCE(333); + if (lookahead == 'a') ADVANCE(233); + if (lookahead == 'i') ADVANCE(205); + if (lookahead == 'w') ADVANCE(180); + if (lookahead == '|') ADVANCE(323); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(133); END_STATE(); case 134: - if (lookahead == '=') ADVANCE(412); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(402); + ADVANCE_MAP( + '#', 49, + '&', 326, + '(', 149, + ')', 319, + ',', 320, + '-', 159, + '/', 154, + ':', 301, + ';', 334, + '<', 377, + '=', 294, + '>', 365, + ); + if (lookahead == '\\') SKIP(31); + if (lookahead == ']') ADVANCE(333); + if (lookahead == 'a') ADVANCE(233); + if (lookahead == 'i') ADVANCE(205); + if (lookahead == 'w') ADVANCE(180); + if (lookahead == '|') ADVANCE(323); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); case 135: - if (lookahead == '>') ADVANCE(322); + ADVANCE_MAP( + '#', 49, + '&', 326, + '(', 149, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + ':', 303, + ';', 334, + '<', 377, + '[', 166, + ); + if (lookahead == '\\') SKIP(34); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'i') ADVANCE(529); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(135); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 136: - if (lookahead == '>') ADVANCE(318); + ADVANCE_MAP( + '#', 49, + '&', 326, + '(', 149, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + ':', 303, + ';', 334, + '<', 377, + '[', 166, + ); + if (lookahead == '\\') SKIP(35); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'w') ADVANCE(525); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(136); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 137: - if (lookahead == '>') ADVANCE(317); + ADVANCE_MAP( + '#', 49, + '\'', 385, + '(', 318, + ')', 319, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + ':', 306, + '<', 377, + '=', 294, + '>', 365, + '?', 309, + '[', 157, + ); + if (lookahead == '\\') SKIP(28); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '|') ADVANCE(322); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(137); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 138: - if (lookahead == '?') ADVANCE(279); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == 'L') ADVANCE(475); + if (lookahead == 'U') ADVANCE(516); + if (lookahead == '\\') SKIP(36); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(467); + if (lookahead == 'y') ADVANCE(454); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(141); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 139: - if (lookahead == '@') ADVANCE(312); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') ADVANCE(407); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(139); END_STATE(); case 140: - if (lookahead == 'L') ADVANCE(445); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') ADVANCE(41); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(140); END_STATE(); case 141: - if (lookahead == 'T') ADVANCE(353); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(149); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') SKIP(36); + if (lookahead == '`') ADVANCE(168); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(141); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 142: - if (lookahead == ']') ADVANCE(350); + if (lookahead == '#') ADVANCE(49); + if (lookahead == '(') ADVANCE(317); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') SKIP(39); + if (lookahead == '`') ADVANCE(168); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(142); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 143: - if (lookahead == ']') ADVANCE(267); + ADVANCE_MAP( + '#', 391, + '(', 392, + '/', 393, + '\\', 40, + ' ', 390, + 0x200b, 390, + 0x2060, 390, + 0xfeff, 390, + ); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(140); + if (lookahead != 0 && + (lookahead < 0x07 || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '(') ADVANCE(390); END_STATE(); case 144: - if (lookahead == '`') ADVANCE(227); + if (lookahead == '#') ADVANCE(495); + if (lookahead == '(') ADVANCE(497); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') ADVANCE(502); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(496); + if (lookahead != 0) ADVANCE(504); END_STATE(); case 145: - if (lookahead == '`') ADVANCE(480); + if (lookahead == ')') ADVANCE(508); END_STATE(); case 146: - if (lookahead == '`') ADVANCE(145); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(146); + if (lookahead == ')') ADVANCE(417); END_STATE(); case 147: - if (lookahead == 'a') ADVANCE(205); + if (lookahead == ')') ADVANCE(417); + if (lookahead == '.') ADVANCE(50); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(148); END_STATE(); case 148: - if (lookahead == 'a') ADVANCE(149); + if (lookahead == ')') ADVANCE(417); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(148); END_STATE(); case 149: - if (lookahead == 'd') ADVANCE(265); + if (lookahead == '*') ADVANCE(505); END_STATE(); case 150: - if (lookahead == 'd') ADVANCE(159); + if (lookahead == '-') ADVANCE(446); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == '.') ADVANCE(146); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(515); + if (lookahead == '.') ADVANCE(373); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == '.') ADVANCE(151); END_STATE(); case 154: - if (lookahead == 'f') ADVANCE(513); + if (lookahead == '/') ADVANCE(155); END_STATE(); case 155: - if (lookahead == 'f') ADVANCE(514); + if (lookahead == '/') ADVANCE(492); + if (lookahead != 0) ADVANCE(509); END_STATE(); case 156: - if (lookahead == 'h') ADVANCE(153); + if (lookahead == '<') ADVANCE(298); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(162); + if (lookahead == '<') ADVANCE(298); + if (lookahead == ']') ADVANCE(381); END_STATE(); case 158: - if (lookahead == 'i') ADVANCE(162); - if (lookahead == 'o') ADVANCE(148); + if (lookahead == '=') ADVANCE(443); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(433); END_STATE(); case 159: - if (lookahead == 'i') ADVANCE(155); + if (lookahead == '>') ADVANCE(354); END_STATE(); case 160: - if (lookahead == 'l') ADVANCE(207); - if (lookahead == 'n') ADVANCE(150); + if (lookahead == '>') ADVANCE(350); END_STATE(); case 161: - if (lookahead == 'n') SKIP(48) + if (lookahead == '>') ADVANCE(349); END_STATE(); case 162: - if (lookahead == 'n') ADVANCE(151); + if (lookahead == '?') ADVANCE(311); END_STATE(); case 163: - if (lookahead == 'n') ADVANCE(150); + if (lookahead == '@') ADVANCE(344); END_STATE(); case 164: - if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'L') ADVANCE(476); END_STATE(); case 165: - if (lookahead == 'n') SKIP(72) + if (lookahead == 'T') ADVANCE(384); END_STATE(); case 166: - if (lookahead == 'n') SKIP(98) + if (lookahead == ']') ADVANCE(381); END_STATE(); case 167: - if (lookahead == 'n') SKIP(88) + if (lookahead == ']') ADVANCE(299); END_STATE(); case 168: - if (lookahead == 'n') SKIP(94) + if (lookahead == '`') ADVANCE(254); END_STATE(); case 169: - if (lookahead == 'n') SKIP(99) + if (lookahead == '`') ADVANCE(510); END_STATE(); case 170: - if (lookahead == 'n') SKIP(85) + if (lookahead == '`') ADVANCE(169); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(170); END_STATE(); case 171: - if (lookahead == 'n') SKIP(92) + if (lookahead == 'a') ADVANCE(232); END_STATE(); case 172: - if (lookahead == 'n') SKIP(97) + if (lookahead == 'a') ADVANCE(173); END_STATE(); case 173: - if (lookahead == 'n') SKIP(93) + if (lookahead == 'd') ADVANCE(297); END_STATE(); case 174: - if (lookahead == 'n') SKIP(86) + if (lookahead == 'd') ADVANCE(183); END_STATE(); case 175: - if (lookahead == 'n') SKIP(83) + if (lookahead == 'e') ADVANCE(541); END_STATE(); case 176: - if (lookahead == 'n') SKIP(101) + if (lookahead == 'e') ADVANCE(545); END_STATE(); case 177: - if (lookahead == 'n') SKIP(95) + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 178: - if (lookahead == 'n') SKIP(89) + if (lookahead == 'f') ADVANCE(543); END_STATE(); case 179: - if (lookahead == 'n') SKIP(110) + if (lookahead == 'f') ADVANCE(544); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'h') ADVANCE(177); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(338); + if (lookahead == 'i') ADVANCE(186); END_STATE(); case 182: - if (lookahead == 'n') SKIP(109) + if (lookahead == 'i') ADVANCE(186); + if (lookahead == 'o') ADVANCE(172); END_STATE(); case 183: - if (lookahead == 'n') SKIP(111) + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 184: - if (lookahead == 'n') SKIP(112) + if (lookahead == 'l') ADVANCE(234); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 185: - if (lookahead == 'n') SKIP(117) + if (lookahead == 'n') SKIP(51); END_STATE(); case 186: - if (lookahead == 'n') SKIP(79) + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 187: - if (lookahead == 'n') SKIP(107) + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 188: - if (lookahead == 'n') SKIP(1) + if (lookahead == 'n') ADVANCE(295); END_STATE(); case 189: - if (lookahead == 'n') SKIP(66) + if (lookahead == 'n') SKIP(85); END_STATE(); case 190: - if (lookahead == 'n') SKIP(70) + if (lookahead == 'n') SKIP(74); END_STATE(); case 191: - if (lookahead == 'n') SKIP(61) + if (lookahead == 'n') SKIP(119); END_STATE(); case 192: - if (lookahead == 'n') SKIP(62) + if (lookahead == 'n') SKIP(103); END_STATE(); case 193: - if (lookahead == 'n') SKIP(78) + if (lookahead == 'n') SKIP(113); END_STATE(); case 194: - if (lookahead == 'n') SKIP(113) + if (lookahead == 'n') SKIP(120); END_STATE(); case 195: - if (lookahead == 'n') SKIP(118) + if (lookahead == 'n') SKIP(100); END_STATE(); case 196: - if (lookahead == 'n') SKIP(116) + if (lookahead == 'n') SKIP(109); END_STATE(); case 197: - if (lookahead == 'n') SKIP(64) + if (lookahead == 'n') SKIP(118); END_STATE(); case 198: - if (lookahead == 'n') SKIP(67) + if (lookahead == 'n') SKIP(112); END_STATE(); case 199: - if (lookahead == 'n') SKIP(69) + if (lookahead == 'n') SKIP(96); END_STATE(); case 200: - if (lookahead == 'n') SKIP(65) + if (lookahead == 'n') SKIP(101); END_STATE(); case 201: - if (lookahead == 'n') SKIP(71) + if (lookahead == 'n') SKIP(122); END_STATE(); case 202: - if (lookahead == 'n') SKIP(63) + if (lookahead == 'n') SKIP(114); END_STATE(); case 203: - if (lookahead == 'n') SKIP(68) + if (lookahead == 'n') SKIP(104); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(208); + if (lookahead == 'n') SKIP(134); END_STATE(); case 205: - if (lookahead == 'r') ADVANCE(164); + if (lookahead == 'n') ADVANCE(352); END_STATE(); case 206: - if (lookahead == 's') ADVANCE(281); + if (lookahead == 'n') ADVANCE(369); END_STATE(); case 207: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 'n') SKIP(125); END_STATE(); case 208: - if (lookahead == 'w') ADVANCE(147); + if (lookahead == 'n') SKIP(133); END_STATE(); case 209: - if (lookahead == '}') ADVANCE(309); + if (lookahead == 'n') SKIP(135); END_STATE(); case 210: - if (lookahead == '0' || - lookahead == '1') ADVANCE(418); + if (lookahead == 'n') SKIP(136); END_STATE(); case 211: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(419); + if (lookahead == 'n') SKIP(141); END_STATE(); case 212: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + if (lookahead == 'n') SKIP(92); END_STATE(); case 213: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == 'n') SKIP(131); END_STATE(); case 214: - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - lookahead == '<' || - ('>' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(402); + if (lookahead == 'n') SKIP(1); END_STATE(); case 215: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(420); + if (lookahead == 'n') SKIP(78); END_STATE(); case 216: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + if (lookahead == 'n') SKIP(83); END_STATE(); case 217: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(365); + if (lookahead == 'n') SKIP(72); END_STATE(); case 218: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(363); + if (lookahead == 'n') SKIP(73); END_STATE(); case 219: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(216); + if (lookahead == 'n') SKIP(91); END_STATE(); case 220: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(217); + if (lookahead == 'n') SKIP(137); END_STATE(); case 221: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(218); + if (lookahead == 'n') SKIP(142); END_STATE(); case 222: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); + if (lookahead == 'n') SKIP(140); END_STATE(); case 223: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); + if (lookahead == 'n') SKIP(76); END_STATE(); case 224: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); + if (lookahead == 'n') SKIP(79); END_STATE(); case 225: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(222); + if (lookahead == 'n') SKIP(82); END_STATE(); case 226: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(224); + if (lookahead == 'n') SKIP(77); END_STATE(); case 227: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '`') ADVANCE(146); + if (lookahead == 'n') SKIP(81); END_STATE(); case 228: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(252) - if (lookahead == 'n') SKIP(247) + if (lookahead == 'n') SKIP(84); END_STATE(); case 229: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(257) - if (lookahead == 'n') SKIP(244) + if (lookahead == 'n') SKIP(75); END_STATE(); case 230: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(253) - if (lookahead == 'n') SKIP(248) + if (lookahead == 'n') SKIP(80); END_STATE(); case 231: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(258) - if (lookahead == 'n') SKIP(243) + if (lookahead == 'o') ADVANCE(235); END_STATE(); case 232: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(254) - if (lookahead == 'n') SKIP(250) + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 233: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(255) - if (lookahead == 'n') SKIP(251) + if (lookahead == 's') ADVANCE(313); END_STATE(); case 234: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(256) - if (lookahead == 'n') SKIP(249) + if (lookahead == 's') ADVANCE(176); END_STATE(); case 235: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(259) - if (lookahead == 'n') SKIP(246) + if (lookahead == 'w') ADVANCE(171); END_STATE(); case 236: - if (eof) ADVANCE(261); - if (lookahead == '\r') SKIP(260) - if (lookahead == 'n') SKIP(245) + if (lookahead == '}') ADVANCE(341); END_STATE(); case 237: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(352); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '+') ADVANCE(387); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(329); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(356); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'w') ADVANCE(495); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (lookahead == '0' || + lookahead == '1') ADVANCE(449); END_STATE(); case 238: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') SKIP(231) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(408); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(450); END_STATE(); case 239: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(456); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == 'L') ADVANCE(444); - if (lookahead == 'M') ADVANCE(453); - if (lookahead == 'U') ADVANCE(486); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(229) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(432); - if (lookahead == 'm') ADVANCE(452); - if (lookahead == 'n') ADVANCE(440); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 's') ADVANCE(427); - if (lookahead == 'u') ADVANCE(435); - if (lookahead == 'y') ADVANCE(422); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(461); - if (lookahead == 'G' || - lookahead == 'I' || - lookahead == 'N' || - lookahead == 'Q' || - lookahead == 'R' || - lookahead == 'Z') ADVANCE(450); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); END_STATE(); case 240: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(229) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); END_STATE(); case 241: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(236) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + lookahead == '<' || + ('>' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(433); END_STATE(); case 242: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(340); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(235) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); END_STATE(); case 243: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(345); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(391); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') SKIP(231) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(408); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(395); END_STATE(); case 244: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(229) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); END_STATE(); case 245: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(330); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(236) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(394); END_STATE(); case 246: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(414); - if (lookahead == '%') ADVANCE(398); - if (lookahead == '&') ADVANCE(296); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(388); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(392); - if (lookahead == '.') ADVANCE(331); - if (lookahead == '/') ADVANCE(404); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(270); - if (lookahead == '<') ADVANCE(403); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(406); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '@') ADVANCE(76); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(235) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '|') ADVANCE(407); - if (lookahead == '}') ADVANCE(307); - if (lookahead == '~') ADVANCE(401); - if (lookahead == '*' || - lookahead == '^') ADVANCE(408); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); END_STATE(); case 247: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(42); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '+') ADVANCE(387); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(127); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '<') ADVANCE(139); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(228) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(244); END_STATE(); case 248: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(45); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '+') ADVANCE(387); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '>') ADVANCE(143); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(297); - if (lookahead == '\\') SKIP(230) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); END_STATE(); case 249: - if (eof) ADVANCE(261); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(45); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '%') ADVANCE(397); - if (lookahead == '&') ADVANCE(295); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(283); - if (lookahead == '+') ADVANCE(387); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '<') ADVANCE(139); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(234) - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'l') ADVANCE(490); - if (lookahead == 'm') ADVANCE(487); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(505); - if (lookahead == 'y') ADVANCE(497); - if (lookahead == '{') ADVANCE(306); - if (lookahead == '~') ADVANCE(401); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(249) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); END_STATE(); case 250: - if (eof) ADVANCE(261); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(43); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '&') ADVANCE(294); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(232) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '}') ADVANCE(307); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(247); END_STATE(); case 251: - if (eof) ADVANCE(261); - if (lookahead == '"') ADVANCE(374); - if (lookahead == '#') ADVANCE(46); - if (lookahead == '$') ADVANCE(74); - if (lookahead == '\'') ADVANCE(354); - if (lookahead == '(') ADVANCE(284); - if (lookahead == ')') ADVANCE(287); - if (lookahead == '*') ADVANCE(343); - if (lookahead == ',') ADVANCE(288); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(328); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(416); - if (lookahead == ':') ADVANCE(138); - if (lookahead == ';') ADVANCE(302); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(262); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(277); - if (lookahead == '@') ADVANCE(75); - if (lookahead == '[') ADVANCE(298); - if (lookahead == '\\') SKIP(233) - if (lookahead == ']') ADVANCE(301); - if (lookahead == '^') ADVANCE(355); - if (lookahead == '`') ADVANCE(144); - if (lookahead == '{') ADVANCE(305); - if (lookahead == '|') ADVANCE(291); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); END_STATE(); case 252: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(247) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(249); END_STATE(); case 253: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(248) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); END_STATE(); case 254: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(250) + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '`') ADVANCE(170); END_STATE(); case 255: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(251) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(283); + if (lookahead == 'n') SKIP(278); END_STATE(); case 256: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(249) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(288); + if (lookahead == 'n') SKIP(274); END_STATE(); case 257: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(244) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(284); + if (lookahead == 'n') SKIP(279); END_STATE(); case 258: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(243) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(289); + if (lookahead == 'n') SKIP(273); END_STATE(); case 259: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(246) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(285); + if (lookahead == 'n') SKIP(281); END_STATE(); case 260: - if (eof) ADVANCE(261); - if (lookahead == 'n') SKIP(245) + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(286); + if (lookahead == 'n') SKIP(282); END_STATE(); case 261: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(287); + if (lookahead == 'n') SKIP(280); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_EQ); + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(290); + if (lookahead == 'n') SKIP(277); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_POUNDnowarn); + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(291); + if (lookahead == 'n') SKIP(276); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_POUNDr); + if (eof) ADVANCE(293); + if (lookahead == '\r') SKIP(292); + if (lookahead == 'n') SKIP(275); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_POUNDload); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 404, + '#', 383, + '$', 445, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + ')', 319, + '*', 374, + '+', 418, + ',', 320, + '-', 421, + '.', 361, + '/', 154, + '0', 447, + ':', 302, + ';', 334, + '<', 378, + '=', 387, + '>', 365, + '?', 310, + '@', 89, + '[', 329, + '\\', 2, + ']', 333, + '^', 386, + '`', 168, + 'a', 534, + 'd', 532, + 'i', 529, + 'l', 520, + 'm', 517, + 'r', 524, + 'u', 535, + 'w', 525, + 'y', 527, + '{', 338, + '|', 324, + '}', 339, + '~', 432, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_LBRACK_LT); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 329, + ); + if (lookahead == '\\') SKIP(258); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '^') ADVANCE(439); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_GT_RBRACK); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + 'M', 484, + '[', 330, + ); + if (lookahead == '\\') SKIP(256); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_COLON); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + 'M', 484, + '[', 330, + ); + if (lookahead == '\\') SKIP(256); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'f') ADVANCE(479); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(289); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(256); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(289); - if (lookahead == '=') ADVANCE(413); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(280); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(264); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(289); - if (lookahead == '>') ADVANCE(318); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 488, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + 'L', 475, + 'M', 484, + 'U', 516, + '[', 330, + ); + if (lookahead == '\\') SKIP(263); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(463); + if (lookahead == 'm') ADVANCE(483); + if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 's') ADVANCE(458); + if (lookahead == 'u') ADVANCE(466); + if (lookahead == 'y') ADVANCE(453); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(491); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(481); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(289); - if (lookahead == '>') ADVANCE(318); - if (lookahead == '?') ADVANCE(279); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 371, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 364, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(262); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(289); - if (lookahead == '?') ADVANCE(279); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '*', 376, + '+', 419, + ',', 320, + '-', 422, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 379, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 329, + ); + if (lookahead == '\\') SKIP(258); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '^') ADVANCE(439); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(318); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(256); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '!') ADVANCE(276); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 361, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(264); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(325); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_let_BANG); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 363, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(263); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_QMARK); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 158, + '"', 405, + '#', 45, + '$', 445, + '%', 429, + '&', 328, + '\'', 385, + '(', 315, + '+', 419, + ',', 320, + '-', 423, + '.', 362, + '/', 435, + '0', 447, + ':', 302, + '<', 434, + '=', 294, + '>', 437, + '?', 310, + '@', 89, + '[', 330, + ); + if (lookahead == '\\') SKIP(262); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '|') ADVANCE(438); + if (lookahead == '}') ADVANCE(339); + if (lookahead == '~') ADVANCE(432); + if (lookahead == '*' || + lookahead == '^') ADVANCE(439); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '<') ADVANCE(126); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 241, + '"', 405, + '#', 45, + '$', 87, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + '*', 374, + '+', 418, + ',', 320, + '-', 420, + '.', 152, + '/', 154, + '0', 447, + '<', 163, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(255); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '~') ADVANCE(432); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 241, + '"', 405, + '#', 48, + '$', 87, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + '*', 374, + '+', 418, + '-', 421, + '.', 360, + '/', 154, + '0', 447, + ':', 306, + '<', 380, + '>', 167, + '@', 88, + '[', 329, + ); + if (lookahead == '\\') SKIP(257); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '~') ADVANCE(432); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(279); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '>') ADVANCE(319); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '!', 241, + '"', 405, + '#', 48, + '$', 87, + '%', 428, + '&', 327, + '\'', 385, + '(', 315, + '+', 418, + '-', 420, + '.', 360, + '/', 154, + '0', 447, + '<', 163, + '=', 294, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(261); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'm') ADVANCE(517); + if (lookahead == 'r') ADVANCE(524); + if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(338); + if (lookahead == '~') ADVANCE(432); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_as); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '"', 405, + '#', 46, + '$', 87, + '&', 326, + '\'', 385, + '(', 316, + ')', 319, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 305, + ';', 334, + '<', 377, + '=', 294, + '>', 365, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(259); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); + if (lookahead == '}') ADVANCE(339); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(281); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_as); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (eof) ADVANCE(293); + ADVANCE_MAP( + '"', 405, + '#', 49, + '$', 87, + '\'', 385, + '(', 316, + ')', 319, + '*', 374, + ',', 320, + '-', 159, + '.', 360, + '/', 154, + '0', 447, + ':', 162, + ';', 334, + '<', 377, + '=', 294, + '>', 365, + '?', 309, + '@', 88, + '[', 330, + ); + if (lookahead == '\\') SKIP(260); + if (lookahead == ']') ADVANCE(333); + if (lookahead == '^') ADVANCE(386); + if (lookahead == '`') ADVANCE(168); + if (lookahead == '{') ADVANCE(337); + if (lookahead == '|') ADVANCE(323); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (set_contains(sym_identifier_character_set_1, 655, lookahead)) ADVANCE(540); END_STATE(); case 283: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(278); + END_STATE(); + case 284: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(279); + END_STATE(); + case 285: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(281); + END_STATE(); + case 286: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(282); + END_STATE(); + case 287: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(280); + END_STATE(); + case 288: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(274); + END_STATE(); + case 289: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(273); + END_STATE(); + case 290: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(277); + END_STATE(); + case 291: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(276); + END_STATE(); + case 292: + if (eof) ADVANCE(293); + if (lookahead == 'n') SKIP(275); + END_STATE(); + case 293: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_POUNDnowarn); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_POUNDr); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_POUNDload); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_LBRACK_LT); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_GT_RBRACK); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(321); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(321); + if (lookahead == '=') ADVANCE(444); + if (lookahead == '>') ADVANCE(350); + if (lookahead == '?') ADVANCE(312); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(321); + if (lookahead == '>') ADVANCE(350); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(321); + if (lookahead == '>') ADVANCE(350); + if (lookahead == '?') ADVANCE(311); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(321); + if (lookahead == '?') ADVANCE(311); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '>') ADVANCE(350); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '!') ADVANCE(308); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_let_BANG); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '<') ADVANCE(150); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '>') ADVANCE(351); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); + END_STATE(); + case 315: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(385); - if (lookahead == '*') ADVANCE(476); - if (lookahead == '.') ADVANCE(123); - if (lookahead == '?') ADVANCE(122); + if (lookahead == ')') ADVANCE(416); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '?') ADVANCE(146); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17056,18 +14085,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(124); + lookahead == '~') ADVANCE(148); END_STATE(); - case 284: + case 316: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(385); - if (lookahead == '*') ADVANCE(475); + if (lookahead == ')') ADVANCE(416); + if (lookahead == '*') ADVANCE(505); END_STATE(); - case 285: + case 317: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '*') ADVANCE(476); - if (lookahead == '.') ADVANCE(123); - if (lookahead == '?') ADVANCE(122); + if (lookahead == '*') ADVANCE(506); + if (lookahead == '.') ADVANCE(147); + if (lookahead == '?') ADVANCE(146); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17075,124 +14104,124 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(124); + lookahead == '~') ADVANCE(148); END_STATE(); - case 286: + case 318: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '*') ADVANCE(475); + if (lookahead == '*') ADVANCE(505); END_STATE(); - case 287: + case 319: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 288: + case 320: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 289: + case 321: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 290: + case 322: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 291: + case 323: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(304); + if (lookahead == ']') ADVANCE(336); END_STATE(); - case 292: + case 324: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(304); - if (lookahead == '|') ADVANCE(410); - if (lookahead == '}') ADVANCE(309); + if (lookahead == ']') ADVANCE(336); + if (lookahead == '|') ADVANCE(441); + if (lookahead == '}') ADVANCE(341); END_STATE(); - case 293: + case 325: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(411); + if (lookahead == '|') ADVANCE(442); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 294: + case 326: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 295: + case 327: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(399); + if (lookahead == '&') ADVANCE(430); END_STATE(); - case 296: + case 328: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(400); + if (lookahead == '&') ADVANCE(431); if (lookahead == '!' || lookahead == '%' || ('*' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 297: + case 329: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(266); - if (lookahead == ']') ADVANCE(350); - if (lookahead == '|') ADVANCE(303); + if (lookahead == '<') ADVANCE(298); + if (lookahead == ']') ADVANCE(381); + if (lookahead == '|') ADVANCE(335); END_STATE(); - case 298: + case 330: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(266); - if (lookahead == '|') ADVANCE(303); + if (lookahead == '<') ADVANCE(298); + if (lookahead == '|') ADVANCE(335); END_STATE(); - case 299: + case 331: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(350); - if (lookahead == '|') ADVANCE(303); + if (lookahead == ']') ADVANCE(381); + if (lookahead == '|') ADVANCE(335); END_STATE(); - case 300: + case 332: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '|') ADVANCE(303); + if (lookahead == '|') ADVANCE(335); END_STATE(); - case 301: + case 333: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 302: + case 334: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 303: + case 335: ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); END_STATE(); - case 304: + case 336: ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); END_STATE(); - case 305: + case 337: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 306: + case 338: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(308); + if (lookahead == '|') ADVANCE(340); END_STATE(); - case 307: + case 339: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 308: + case 340: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 309: + case 341: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); - case 310: + case 342: ACCEPT_TOKEN(anon_sym_return_BANG); END_STATE(); - case 311: + case 343: ACCEPT_TOKEN(anon_sym_yield_BANG); END_STATE(); - case 312: + case 344: ACCEPT_TOKEN(anon_sym_LT_AT); - if (lookahead == '@') ADVANCE(315); + if (lookahead == '@') ADVANCE(347); END_STATE(); - case 313: + case 345: ACCEPT_TOKEN(anon_sym_LT_AT); - if (lookahead == '@') ADVANCE(316); + if (lookahead == '@') ADVANCE(348); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17200,15 +14229,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 314: + case 346: ACCEPT_TOKEN(anon_sym_AT_GT); END_STATE(); - case 315: + case 347: ACCEPT_TOKEN(anon_sym_LT_AT_AT); END_STATE(); - case 316: + case 348: ACCEPT_TOKEN(anon_sym_LT_AT_AT); if (lookahead == '!' || lookahead == '%' || @@ -17217,28 +14246,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 317: + case 349: ACCEPT_TOKEN(anon_sym_AT_AT_GT); END_STATE(); - case 318: + case 350: ACCEPT_TOKEN(anon_sym_COLON_GT); END_STATE(); - case 319: + case 351: ACCEPT_TOKEN(anon_sym_COLON_QMARK_GT); END_STATE(); - case 320: + case 352: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 321: + case 353: ACCEPT_TOKEN(anon_sym_in); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 322: + case 354: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 323: + case 355: ACCEPT_TOKEN(anon_sym_DASH_GT); if (lookahead == '!' || lookahead == '%' || @@ -17247,15 +14276,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 324: + case 356: ACCEPT_TOKEN(anon_sym_match_BANG); END_STATE(); - case 325: + case 357: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 326: + case 358: ACCEPT_TOKEN(anon_sym_LT_DASH); if (lookahead == '!' || lookahead == '%' || @@ -17264,72 +14293,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 327: + case 359: ACCEPT_TOKEN(anon_sym_DOT_LBRACK); END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 329: + case 360: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '[') ADVANCE(327); END_STATE(); - case 330: + case 361: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '.') ADVANCE(372); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 331: + case 362: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '.') ADVANCE(368); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 332: + case 363: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 333: + case 364: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 334: + case 365: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 335: + case 366: ACCEPT_TOKEN(anon_sym_use_BANG); END_STATE(); - case 336: + case 367: ACCEPT_TOKEN(anon_sym_do_BANG); END_STATE(); - case 337: + case 368: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 338: + case 369: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 339: + case 370: ACCEPT_TOKEN(anon_sym_when); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 340: + case 371: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 341: + case 372: ACCEPT_TOKEN(anon_sym_DOT_DOT2); END_STATE(); - case 342: + case 373: ACCEPT_TOKEN(anon_sym_DOT_DOT3); END_STATE(); - case 343: + case 374: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 344: + case 375: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == ')') ADVANCE(478); + if (lookahead == ')') ADVANCE(508); END_STATE(); - case 345: + case 376: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '!' || lookahead == '%' || @@ -17338,20 +14362,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 346: + case 377: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 347: + case 378: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(325); - if (lookahead == '@') ADVANCE(312); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '@') ADVANCE(344); END_STATE(); - case 348: + case 379: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(326); - if (lookahead == '@') ADVANCE(313); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '@') ADVANCE(345); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17359,148 +14383,148 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 349: + case 380: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '@') ADVANCE(312); + if (lookahead == '@') ADVANCE(344); END_STATE(); - case 350: + case 381: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 351: + case 382: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'l') ADVANCE(181); END_STATE(); - case 352: + case 383: ACCEPT_TOKEN(anon_sym_POUND2); - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'l') ADVANCE(181); END_STATE(); - case 353: + case 384: ACCEPT_TOKEN(anon_sym_SQUOTET); END_STATE(); - case 354: + case 385: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 355: + case 386: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 356: + case 387: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 357: + case 388: ACCEPT_TOKEN(sym__escape_char); END_STATE(); - case 358: + case 389: ACCEPT_TOKEN(sym__non_escape_char); END_STATE(); - case 359: + case 390: ACCEPT_TOKEN(sym__simple_char_char); END_STATE(); - case 360: + case 391: ACCEPT_TOKEN(sym__simple_char_char); - if (lookahead == ' ') ADVANCE(511); - if (lookahead == 'l') ADVANCE(157); + if (lookahead == ' ') ADVANCE(541); + if (lookahead == 'l') ADVANCE(181); END_STATE(); - case 361: + case 392: ACCEPT_TOKEN(sym__simple_char_char); - if (lookahead == '*') ADVANCE(475); + if (lookahead == '*') ADVANCE(505); END_STATE(); - case 362: + case 393: ACCEPT_TOKEN(sym__simple_char_char); - if (lookahead == '/') ADVANCE(131); + if (lookahead == '/') ADVANCE(155); END_STATE(); - case 363: + case 394: ACCEPT_TOKEN(sym__unicodegraph_short); END_STATE(); - case 364: + case 395: ACCEPT_TOKEN(sym__unicodegraph_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); END_STATE(); - case 365: + case 396: ACCEPT_TOKEN(sym__unicodegraph_long); END_STATE(); - case 366: + case 397: ACCEPT_TOKEN(sym__trigraph); END_STATE(); - case 367: + case 398: ACCEPT_TOKEN(sym__simple_string_char); END_STATE(); - case 368: + case 399: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 369: + case 400: ACCEPT_TOKEN(anon_sym_SQUOTE2); - if (lookahead == 'B') ADVANCE(381); + if (lookahead == 'B') ADVANCE(412); END_STATE(); - case 370: + case 401: ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); - case 371: + case 402: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 372: + case 403: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); - if (lookahead == '"') ADVANCE(82); + if (lookahead == '"') ADVANCE(95); END_STATE(); - case 373: + case 404: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 374: + case 405: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(102); + if (lookahead == '"') ADVANCE(126); END_STATE(); - case 375: + case 406: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == 'B') ADVANCE(382); + if (lookahead == 'B') ADVANCE(413); END_STATE(); - case 376: + case 407: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 377: + case 408: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\r') ADVANCE(358); - if (!sym__non_escape_char_character_set_1(lookahead)) ADVANCE(358); + if (lookahead == '\r') ADVANCE(389); + if ((!eof && set_contains(sym__non_escape_char_character_set_1, 9, lookahead))) ADVANCE(389); END_STATE(); - case 378: + case 409: ACCEPT_TOKEN(anon_sym_AT_DQUOTE); END_STATE(); - case 379: + case 410: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 380: + case 411: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == 'B') ADVANCE(382); + if (lookahead == 'B') ADVANCE(413); END_STATE(); - case 381: + case 412: ACCEPT_TOKEN(anon_sym_SQUOTEB); END_STATE(); - case 382: + case 413: ACCEPT_TOKEN(anon_sym_DQUOTEB); END_STATE(); - case 383: + case 414: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 384: + case 415: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 385: + case 416: ACCEPT_TOKEN(sym_unit); END_STATE(); - case 386: + case 417: ACCEPT_TOKEN(aux_sym__identifier_or_op_token1); END_STATE(); - case 387: + case 418: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(393); + if (lookahead == '.') ADVANCE(424); END_STATE(); - case 388: + case 419: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(394); + if (lookahead == '.') ADVANCE(425); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17508,21 +14532,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 389: + case 420: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(395); + if (lookahead == '.') ADVANCE(426); END_STATE(); - case 390: + case 421: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(395); - if (lookahead == '>') ADVANCE(322); + if (lookahead == '.') ADVANCE(426); + if (lookahead == '>') ADVANCE(354); END_STATE(); - case 391: + case 422: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(396); - if (lookahead == '>') ADVANCE(323); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '>') ADVANCE(355); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17530,11 +14554,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 392: + case 423: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(396); + if (lookahead == '.') ADVANCE(427); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17542,12 +14566,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 393: + case 424: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 394: + case 425: ACCEPT_TOKEN(anon_sym_PLUS_DOT); if (lookahead == '!' || lookahead == '%' || @@ -17556,12 +14580,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 395: + case 426: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 396: + case 427: ACCEPT_TOKEN(anon_sym_DASH_DOT); if (lookahead == '!' || lookahead == '%' || @@ -17570,12 +14594,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 397: + case 428: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 398: + case 429: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '!' || lookahead == '%' || @@ -17584,12 +14608,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 399: + case 430: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 400: + case 431: ACCEPT_TOKEN(anon_sym_AMP_AMP); if (lookahead == '!' || lookahead == '%' || @@ -17598,12 +14622,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 401: + case 432: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 402: + case 433: ACCEPT_TOKEN(aux_sym_prefix_op_token1); if (lookahead == '!' || lookahead == '%' || @@ -17612,12 +14636,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(402); + lookahead == '~') ADVANCE(433); END_STATE(); - case 403: + case 434: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '-') ADVANCE(326); - if (lookahead == '@') ADVANCE(313); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '@') ADVANCE(345); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17625,11 +14649,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 404: + case 435: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '/') ADVANCE(405); + if (lookahead == '/') ADVANCE(436); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17637,11 +14661,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 405: + case 436: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '/') ADVANCE(463); + if (lookahead == '/') ADVANCE(493); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17649,12 +14673,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(409); - if (lookahead != 0) ADVANCE(479); + lookahead == '~') ADVANCE(440); + if (lookahead != 0) ADVANCE(509); END_STATE(); - case 406: + case 437: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == ']') ADVANCE(267); + if (lookahead == ']') ADVANCE(299); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -17662,20 +14686,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 407: + case 438: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '|') ADVANCE(411); + if (lookahead == '|') ADVANCE(442); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 408: + case 439: ACCEPT_TOKEN(aux_sym_infix_op_token1); if (lookahead == '!' || lookahead == '%' || @@ -17684,9 +14708,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 409: + case 440: ACCEPT_TOKEN(aux_sym_infix_op_token1); if (lookahead == '!' || lookahead == '%' || @@ -17695,15 +14719,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(409); + lookahead == '~') ADVANCE(440); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(479); + lookahead != '\r') ADVANCE(509); END_STATE(); - case 410: + case 441: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 411: + case 442: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); if (lookahead == '!' || lookahead == '%' || @@ -17712,227 +14736,222 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 412: + case 443: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 413: + case 444: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 414: + case 445: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(372); + if (lookahead == '"') ADVANCE(403); END_STATE(); - case 415: + case 446: ACCEPT_TOKEN(anon_sym_QMARK_LT_DASH); END_STATE(); - case 416: + case 447: ACCEPT_TOKEN(sym_int); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(210); + lookahead == 'b') ADVANCE(237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(211); + lookahead == 'o') ADVANCE(238); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'x') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); - case 417: + case 448: ACCEPT_TOKEN(sym_int); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); - case 418: + case 449: ACCEPT_TOKEN(sym_xint); if (lookahead == '0' || - lookahead == '1') ADVANCE(418); + lookahead == '1') ADVANCE(449); END_STATE(); - case 419: + case 450: ACCEPT_TOKEN(sym_xint); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(450); END_STATE(); - case 420: + case 451: ACCEPT_TOKEN(sym_xint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(420); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); END_STATE(); - case 421: + case 452: ACCEPT_TOKEN(anon_sym_y); END_STATE(); - case 422: + case 453: ACCEPT_TOKEN(anon_sym_y); - if (lookahead == 'i') ADVANCE(491); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'i') ADVANCE(521); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 423: + case 454: ACCEPT_TOKEN(anon_sym_y); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 424: + case 455: ACCEPT_TOKEN(anon_sym_uy); END_STATE(); - case 425: + case 456: ACCEPT_TOKEN(anon_sym_uy); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 426: + case 457: ACCEPT_TOKEN(anon_sym_s); END_STATE(); - case 427: + case 458: ACCEPT_TOKEN(anon_sym_s); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 428: + case 459: ACCEPT_TOKEN(anon_sym_us); END_STATE(); - case 429: + case 460: ACCEPT_TOKEN(anon_sym_us); - if (lookahead == 'e') ADVANCE(482); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(512); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 430: + case 461: ACCEPT_TOKEN(anon_sym_us); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 431: + case 462: ACCEPT_TOKEN(anon_sym_l); END_STATE(); - case 432: + case 463: ACCEPT_TOKEN(anon_sym_l); - if (lookahead == 'e') ADVANCE(506); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(536); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 433: + case 464: ACCEPT_TOKEN(anon_sym_l); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 434: + case 465: ACCEPT_TOKEN(aux_sym_uint32_token1); END_STATE(); - case 435: + case 466: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(446); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'n') ADVANCE(442); - if (lookahead == 's') ADVANCE(429); - if (lookahead == 'y') ADVANCE(425); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'L') ADVANCE(477); + if (lookahead == 'l') ADVANCE(469); + if (lookahead == 'n') ADVANCE(473); + if (lookahead == 's') ADVANCE(460); + if (lookahead == 'y') ADVANCE(456); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 436: + case 467: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(446); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'n') ADVANCE(442); - if (lookahead == 's') ADVANCE(430); - if (lookahead == 'y') ADVANCE(425); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'L') ADVANCE(477); + if (lookahead == 'l') ADVANCE(469); + if (lookahead == 'n') ADVANCE(473); + if (lookahead == 's') ADVANCE(461); + if (lookahead == 'y') ADVANCE(456); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 437: + case 468: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(445); - if (lookahead == 'l') ADVANCE(434); - if (lookahead == 'n') ADVANCE(441); - if (lookahead == 's') ADVANCE(428); - if (lookahead == 'y') ADVANCE(424); + if (lookahead == 'L') ADVANCE(476); + if (lookahead == 'l') ADVANCE(465); + if (lookahead == 'n') ADVANCE(472); + if (lookahead == 's') ADVANCE(459); + if (lookahead == 'y') ADVANCE(455); END_STATE(); - case 438: + case 469: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 439: + case 470: ACCEPT_TOKEN(anon_sym_n); END_STATE(); - case 440: + case 471: ACCEPT_TOKEN(anon_sym_n); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 441: + case 472: ACCEPT_TOKEN(anon_sym_un); END_STATE(); - case 442: + case 473: ACCEPT_TOKEN(anon_sym_un); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 443: + case 474: ACCEPT_TOKEN(anon_sym_L); END_STATE(); - case 444: + case 475: ACCEPT_TOKEN(anon_sym_L); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 445: + case 476: ACCEPT_TOKEN(aux_sym_uint64_token1); END_STATE(); - case 446: + case 477: ACCEPT_TOKEN(aux_sym_uint64_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 447: + case 478: ACCEPT_TOKEN(anon_sym_f); END_STATE(); - case 448: + case 479: ACCEPT_TOKEN(anon_sym_f); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 449: + case 480: ACCEPT_TOKEN(aux_sym_bignum_token1); END_STATE(); - case 450: + case 481: ACCEPT_TOKEN(aux_sym_bignum_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 451: + case 482: ACCEPT_TOKEN(aux_sym_decimal_token1); END_STATE(); - case 452: + case 483: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (lookahead == 'a') ADVANCE(507); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(510); + if (lookahead == 'a') ADVANCE(537); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 453: + case 484: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); - END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym_DOT2); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 455: + case 485: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '[') ADVANCE(327); END_STATE(); - case 456: + case 486: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '.') ADVANCE(372); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 457: + case 487: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '.') ADVANCE(368); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 458: + case 488: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '[') ADVANCE(327); + if (lookahead == '[') ADVANCE(359); END_STATE(); - case 459: + case 489: ACCEPT_TOKEN(aux_sym_float_token1); END_STATE(); - case 460: + case 490: ACCEPT_TOKEN(aux_sym_float_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(459); + lookahead == '-') ADVANCE(489); END_STATE(); - case 461: + case 491: ACCEPT_TOKEN(aux_sym_float_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(459); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + lookahead == '-') ADVANCE(489); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 462: + case 492: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); END_STATE(); - case 463: + case 493: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); if (lookahead == '!' || lookahead == '%' || @@ -17941,99 +14960,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(408); + lookahead == '~') ADVANCE(439); END_STATE(); - case 464: + case 494: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 465: + case 495: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == ' ') ADVANCE(474); - if (lookahead == 'l') ADVANCE(471); + if (lookahead == ' ') ADVANCE(504); + if (lookahead == 'l') ADVANCE(501); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 466: + case 496: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '#') ADVANCE(465); - if (lookahead == '(') ADVANCE(467); - if (lookahead == '/') ADVANCE(468); - if (lookahead == '\\') ADVANCE(472); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(466); + ADVANCE_MAP( + '#', 495, + '(', 497, + '/', 498, + '\\', 502, + '\t', 496, + 0x0b, 496, + '\f', 496, + ' ', 496, + 0x200b, 496, + 0x2060, 496, + 0xfeff, 496, + ); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(474); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(504); END_STATE(); - case 467: + case 497: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '*') ADVANCE(477); + if (lookahead == '*') ADVANCE(507); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 468: + case 498: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '/') ADVANCE(469); + if (lookahead == '/') ADVANCE(499); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 469: + case 499: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '/') ADVANCE(464); + if (lookahead == '/') ADVANCE(494); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(479); - if (lookahead != 0) ADVANCE(474); + lookahead == '\r') ADVANCE(509); + if (lookahead != 0) ADVANCE(504); END_STATE(); - case 470: + case 500: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'e') ADVANCE(474); + if (lookahead == 'e') ADVANCE(504); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 471: + case 501: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'i') ADVANCE(473); + if (lookahead == 'i') ADVANCE(503); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 472: + case 502: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'n') ADVANCE(466); + if (lookahead == 'n') ADVANCE(496); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 473: + case 503: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'n') ADVANCE(470); + if (lookahead == 'n') ADVANCE(500); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 474: + case 504: ACCEPT_TOKEN(aux_sym_xml_doc_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 475: + case 505: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); END_STATE(); - case 476: + case 506: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); - if (lookahead == ')') ADVANCE(386); + if (lookahead == ')') ADVANCE(417); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -18041,189 +15062,189 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(124); + lookahead == '~') ADVANCE(148); END_STATE(); - case 477: + case 507: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(474); + lookahead != '\r') ADVANCE(504); END_STATE(); - case 478: + case 508: ACCEPT_TOKEN(anon_sym_STAR_RPAREN); END_STATE(); - case 479: + case 509: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(479); + lookahead != '\r') ADVANCE(509); END_STATE(); - case 480: + case 510: ACCEPT_TOKEN(sym_identifier); END_STATE(); - case 481: + case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(336); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == '!') ADVANCE(367); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 482: + case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(335); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == '!') ADVANCE(366); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 483: + case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(324); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == '!') ADVANCE(356); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 484: + case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(311); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == '!') ADVANCE(343); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 485: + case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(310); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == '!') ADVANCE(342); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 486: + case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(446); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'L') ADVANCE(477); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 487: + case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(507); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(510); + if (lookahead == 'a') ADVANCE(537); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 488: + case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(496); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'c') ADVANCE(526); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 489: + case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(484); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'd') ADVANCE(514); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 490: + case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(506); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(536); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 491: + case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(498); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(528); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 492: + case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(500); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(530); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 493: + case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(482); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(512); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 494: + case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(508); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'e') ADVANCE(538); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 495: + case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(492); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'h') ADVANCE(522); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 496: + case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(483); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'h') ADVANCE(513); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 497: + case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(491); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'i') ADVANCE(521); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 498: + case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(489); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'l') ADVANCE(519); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 499: + case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(321); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'n') ADVANCE(353); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 500: + case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(339); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'n') ADVANCE(370); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 501: + case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(485); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'n') ADVANCE(515); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 502: + case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(481); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'o') ADVANCE(511); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 503: + case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(501); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'r') ADVANCE(531); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 504: + case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(282); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 's') ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 505: + case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(493); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 's') ADVANCE(523); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 506: + case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(275); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 't') ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 507: + case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(488); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 't') ADVANCE(518); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 508: + case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(509); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 't') ADVANCE(539); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 509: + case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(503); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (lookahead == 'u') ADVANCE(533); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 510: + case 540: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(510); + if (set_contains(sym_identifier_character_set_2, 764, lookahead)) ADVANCE(540); END_STATE(); - case 511: + case 541: ACCEPT_TOKEN(aux_sym_preproc_line_token1); END_STATE(); - case 512: + case 542: ACCEPT_TOKEN(aux_sym_preproc_line_token2); - if (lookahead == '\n') ADVANCE(512); + if (lookahead == '\n') ADVANCE(542); END_STATE(); - case 513: + case 543: ACCEPT_TOKEN(anon_sym_POUNDif); END_STATE(); - case 514: + case 544: ACCEPT_TOKEN(anon_sym_POUNDendif); END_STATE(); - case 515: + case 545: ACCEPT_TOKEN(anon_sym_POUNDelse); END_STATE(); default: @@ -18237,7 +15258,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (lookahead == 'L') ADVANCE(1); - if (lookahead == '\\') SKIP(2) + if (lookahead == '\\') SKIP(2); if (lookahead == '_') ADVANCE(3); if (lookahead == 'a') ADVANCE(4); if (lookahead == 'b') ADVANCE(5); @@ -18261,16 +15282,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(23); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(24) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(24); END_STATE(); case 1: if (lookahead == 'F') ADVANCE(25); END_STATE(); case 2: - if (lookahead == '\r') SKIP(26) - if (lookahead == 'n') SKIP(24) + if (lookahead == '\r') SKIP(26); + if (lookahead == 'n') SKIP(24); END_STATE(); case 3: ACCEPT_TOKEN(anon_sym__); @@ -18365,7 +15386,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(75); END_STATE(); case 24: - if (lookahead == '\\') SKIP(2) + if (lookahead == '\\') SKIP(2); if (lookahead == '_') ADVANCE(3); if (lookahead == 'a') ADVANCE(4); if (lookahead == 'b') ADVANCE(5); @@ -18389,15 +15410,15 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(23); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(24) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(24); END_STATE(); case 25: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 26: - if (lookahead == 'n') SKIP(24) + if (lookahead == 'n') SKIP(24); END_STATE(); case 27: if (lookahead == 's') ADVANCE(78); @@ -19190,5389 +16211,5495 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 247, .external_lex_state = 2}, - [2] = {.lex_state = 240, .external_lex_state = 3}, - [3] = {.lex_state = 240, .external_lex_state = 3}, - [4] = {.lex_state = 240, .external_lex_state = 3}, - [5] = {.lex_state = 240, .external_lex_state = 3}, - [6] = {.lex_state = 240, .external_lex_state = 3}, - [7] = {.lex_state = 240, .external_lex_state = 3}, - [8] = {.lex_state = 240, .external_lex_state = 3}, - [9] = {.lex_state = 240, .external_lex_state = 3}, - [10] = {.lex_state = 240, .external_lex_state = 3}, - [11] = {.lex_state = 240, .external_lex_state = 3}, - [12] = {.lex_state = 240, .external_lex_state = 3}, - [13] = {.lex_state = 240, .external_lex_state = 3}, - [14] = {.lex_state = 240, .external_lex_state = 3}, - [15] = {.lex_state = 240, .external_lex_state = 3}, - [16] = {.lex_state = 240, .external_lex_state = 3}, - [17] = {.lex_state = 240, .external_lex_state = 3}, - [18] = {.lex_state = 240, .external_lex_state = 3}, - [19] = {.lex_state = 240, .external_lex_state = 3}, - [20] = {.lex_state = 240, .external_lex_state = 3}, - [21] = {.lex_state = 240, .external_lex_state = 3}, - [22] = {.lex_state = 240, .external_lex_state = 3}, - [23] = {.lex_state = 240, .external_lex_state = 4}, - [24] = {.lex_state = 240, .external_lex_state = 3}, - [25] = {.lex_state = 240, .external_lex_state = 3}, - [26] = {.lex_state = 240, .external_lex_state = 4}, - [27] = {.lex_state = 240, .external_lex_state = 4}, - [28] = {.lex_state = 240, .external_lex_state = 3}, - [29] = {.lex_state = 240, .external_lex_state = 3}, - [30] = {.lex_state = 240, .external_lex_state = 3}, - [31] = {.lex_state = 240, .external_lex_state = 4}, - [32] = {.lex_state = 240, .external_lex_state = 4}, - [33] = {.lex_state = 240, .external_lex_state = 3}, - [34] = {.lex_state = 240, .external_lex_state = 4}, - [35] = {.lex_state = 240, .external_lex_state = 4}, - [36] = {.lex_state = 240, .external_lex_state = 4}, - [37] = {.lex_state = 240, .external_lex_state = 3}, - [38] = {.lex_state = 240, .external_lex_state = 4}, - [39] = {.lex_state = 240, .external_lex_state = 4}, - [40] = {.lex_state = 240, .external_lex_state = 3}, - [41] = {.lex_state = 240, .external_lex_state = 5}, - [42] = {.lex_state = 240, .external_lex_state = 5}, - [43] = {.lex_state = 240, .external_lex_state = 5}, - [44] = {.lex_state = 240, .external_lex_state = 5}, - [45] = {.lex_state = 240, .external_lex_state = 5}, - [46] = {.lex_state = 240, .external_lex_state = 5}, - [47] = {.lex_state = 240, .external_lex_state = 5}, - [48] = {.lex_state = 240, .external_lex_state = 5}, - [49] = {.lex_state = 240, .external_lex_state = 5}, - [50] = {.lex_state = 240, .external_lex_state = 5}, - [51] = {.lex_state = 55, .external_lex_state = 4}, - [52] = {.lex_state = 55, .external_lex_state = 4}, - [53] = {.lex_state = 55, .external_lex_state = 4}, - [54] = {.lex_state = 240, .external_lex_state = 5}, - [55] = {.lex_state = 240, .external_lex_state = 5}, - [56] = {.lex_state = 55, .external_lex_state = 4}, - [57] = {.lex_state = 55, .external_lex_state = 4}, - [58] = {.lex_state = 55, .external_lex_state = 4}, - [59] = {.lex_state = 240, .external_lex_state = 5}, - [60] = {.lex_state = 240, .external_lex_state = 5}, - [61] = {.lex_state = 240, .external_lex_state = 5}, - [62] = {.lex_state = 240, .external_lex_state = 5}, - [63] = {.lex_state = 240, .external_lex_state = 5}, - [64] = {.lex_state = 240, .external_lex_state = 5}, - [65] = {.lex_state = 240, .external_lex_state = 5}, - [66] = {.lex_state = 55, .external_lex_state = 4}, - [67] = {.lex_state = 55, .external_lex_state = 4}, - [68] = {.lex_state = 240, .external_lex_state = 4}, - [69] = {.lex_state = 55, .external_lex_state = 4}, - [70] = {.lex_state = 55, .external_lex_state = 4}, - [71] = {.lex_state = 240, .external_lex_state = 4}, - [72] = {.lex_state = 59, .external_lex_state = 3}, - [73] = {.lex_state = 240, .external_lex_state = 3}, - [74] = {.lex_state = 240, .external_lex_state = 3}, - [75] = {.lex_state = 240, .external_lex_state = 3}, - [76] = {.lex_state = 240, .external_lex_state = 3}, - [77] = {.lex_state = 240, .external_lex_state = 3}, - [78] = {.lex_state = 240, .external_lex_state = 3}, - [79] = {.lex_state = 240, .external_lex_state = 4}, - [80] = {.lex_state = 240, .external_lex_state = 3}, - [81] = {.lex_state = 240, .external_lex_state = 4}, - [82] = {.lex_state = 240, .external_lex_state = 4}, - [83] = {.lex_state = 240, .external_lex_state = 3}, - [84] = {.lex_state = 240, .external_lex_state = 4}, - [85] = {.lex_state = 240, .external_lex_state = 4}, - [86] = {.lex_state = 240, .external_lex_state = 4}, - [87] = {.lex_state = 240, .external_lex_state = 3}, - [88] = {.lex_state = 240, .external_lex_state = 3}, - [89] = {.lex_state = 240, .external_lex_state = 3}, - [90] = {.lex_state = 240, .external_lex_state = 3}, - [91] = {.lex_state = 240, .external_lex_state = 4}, - [92] = {.lex_state = 59, .external_lex_state = 3}, - [93] = {.lex_state = 240, .external_lex_state = 3}, - [94] = {.lex_state = 240, .external_lex_state = 3}, - [95] = {.lex_state = 240, .external_lex_state = 4}, - [96] = {.lex_state = 240, .external_lex_state = 6}, - [97] = {.lex_state = 59, .external_lex_state = 3}, - [98] = {.lex_state = 240, .external_lex_state = 3}, - [99] = {.lex_state = 59, .external_lex_state = 3}, - [100] = {.lex_state = 240, .external_lex_state = 6}, - [101] = {.lex_state = 240, .external_lex_state = 6}, - [102] = {.lex_state = 240, .external_lex_state = 6}, - [103] = {.lex_state = 240, .external_lex_state = 6}, - [104] = {.lex_state = 59, .external_lex_state = 3}, - [105] = {.lex_state = 240, .external_lex_state = 4}, - [106] = {.lex_state = 59, .external_lex_state = 3}, - [107] = {.lex_state = 240, .external_lex_state = 3}, - [108] = {.lex_state = 59, .external_lex_state = 3}, - [109] = {.lex_state = 59, .external_lex_state = 3}, - [110] = {.lex_state = 240, .external_lex_state = 4}, - [111] = {.lex_state = 240, .external_lex_state = 6}, - [112] = {.lex_state = 240, .external_lex_state = 4}, - [113] = {.lex_state = 59, .external_lex_state = 3}, - [114] = {.lex_state = 240, .external_lex_state = 3}, - [115] = {.lex_state = 240, .external_lex_state = 4}, - [116] = {.lex_state = 240, .external_lex_state = 3}, - [117] = {.lex_state = 240, .external_lex_state = 3}, - [118] = {.lex_state = 240, .external_lex_state = 4}, - [119] = {.lex_state = 240, .external_lex_state = 3}, - [120] = {.lex_state = 55, .external_lex_state = 3}, - [121] = {.lex_state = 55, .external_lex_state = 3}, - [122] = {.lex_state = 55, .external_lex_state = 3}, - [123] = {.lex_state = 240, .external_lex_state = 4}, - [124] = {.lex_state = 55, .external_lex_state = 3}, - [125] = {.lex_state = 59, .external_lex_state = 3}, - [126] = {.lex_state = 240, .external_lex_state = 4}, - [127] = {.lex_state = 240, .external_lex_state = 4}, - [128] = {.lex_state = 240, .external_lex_state = 6}, - [129] = {.lex_state = 240, .external_lex_state = 4}, - [130] = {.lex_state = 240, .external_lex_state = 3}, - [131] = {.lex_state = 240, .external_lex_state = 3}, - [132] = {.lex_state = 240, .external_lex_state = 4}, - [133] = {.lex_state = 240, .external_lex_state = 6}, - [134] = {.lex_state = 55, .external_lex_state = 3}, - [135] = {.lex_state = 240, .external_lex_state = 3}, - [136] = {.lex_state = 55, .external_lex_state = 3}, - [137] = {.lex_state = 240, .external_lex_state = 4}, - [138] = {.lex_state = 55, .external_lex_state = 3}, - [139] = {.lex_state = 59, .external_lex_state = 3}, - [140] = {.lex_state = 55, .external_lex_state = 3}, - [141] = {.lex_state = 240, .external_lex_state = 6}, - [142] = {.lex_state = 55, .external_lex_state = 3}, - [143] = {.lex_state = 59, .external_lex_state = 3}, - [144] = {.lex_state = 240, .external_lex_state = 3}, - [145] = {.lex_state = 240, .external_lex_state = 3}, - [146] = {.lex_state = 240, .external_lex_state = 3}, - [147] = {.lex_state = 240, .external_lex_state = 6}, - [148] = {.lex_state = 240, .external_lex_state = 3}, - [149] = {.lex_state = 240, .external_lex_state = 4}, - [150] = {.lex_state = 240, .external_lex_state = 3}, - [151] = {.lex_state = 55, .external_lex_state = 3}, - [152] = {.lex_state = 240, .external_lex_state = 3}, - [153] = {.lex_state = 240, .external_lex_state = 3}, - [154] = {.lex_state = 240, .external_lex_state = 3}, - [155] = {.lex_state = 240, .external_lex_state = 4}, - [156] = {.lex_state = 240, .external_lex_state = 3}, - [157] = {.lex_state = 240, .external_lex_state = 4}, - [158] = {.lex_state = 240, .external_lex_state = 4}, - [159] = {.lex_state = 240, .external_lex_state = 3}, - [160] = {.lex_state = 242, .external_lex_state = 3}, - [161] = {.lex_state = 240, .external_lex_state = 3}, - [162] = {.lex_state = 59, .external_lex_state = 3}, - [163] = {.lex_state = 240, .external_lex_state = 7}, - [164] = {.lex_state = 242, .external_lex_state = 3}, - [165] = {.lex_state = 240, .external_lex_state = 3}, - [166] = {.lex_state = 240, .external_lex_state = 7}, - [167] = {.lex_state = 59, .external_lex_state = 3}, - [168] = {.lex_state = 240, .external_lex_state = 7}, - [169] = {.lex_state = 242, .external_lex_state = 3}, - [170] = {.lex_state = 240, .external_lex_state = 7}, - [171] = {.lex_state = 240, .external_lex_state = 7}, - [172] = {.lex_state = 240, .external_lex_state = 3}, - [173] = {.lex_state = 240, .external_lex_state = 4}, - [174] = {.lex_state = 240, .external_lex_state = 3}, - [175] = {.lex_state = 240, .external_lex_state = 3}, - [176] = {.lex_state = 242, .external_lex_state = 3}, - [177] = {.lex_state = 59, .external_lex_state = 3}, - [178] = {.lex_state = 240, .external_lex_state = 3}, - [179] = {.lex_state = 240, .external_lex_state = 3}, - [180] = {.lex_state = 240, .external_lex_state = 3}, - [181] = {.lex_state = 240, .external_lex_state = 4}, - [182] = {.lex_state = 240, .external_lex_state = 7}, - [183] = {.lex_state = 59, .external_lex_state = 3}, - [184] = {.lex_state = 240, .external_lex_state = 3}, - [185] = {.lex_state = 240, .external_lex_state = 7}, - [186] = {.lex_state = 240, .external_lex_state = 4}, - [187] = {.lex_state = 242, .external_lex_state = 3}, - [188] = {.lex_state = 242, .external_lex_state = 3}, - [189] = {.lex_state = 240, .external_lex_state = 4}, - [190] = {.lex_state = 59, .external_lex_state = 3}, - [191] = {.lex_state = 240, .external_lex_state = 3}, - [192] = {.lex_state = 242, .external_lex_state = 3}, - [193] = {.lex_state = 240, .external_lex_state = 7}, - [194] = {.lex_state = 242, .external_lex_state = 3}, - [195] = {.lex_state = 59, .external_lex_state = 3}, - [196] = {.lex_state = 240, .external_lex_state = 4}, - [197] = {.lex_state = 242, .external_lex_state = 3}, - [198] = {.lex_state = 59, .external_lex_state = 3}, - [199] = {.lex_state = 240, .external_lex_state = 4}, - [200] = {.lex_state = 240, .external_lex_state = 4}, - [201] = {.lex_state = 240, .external_lex_state = 7}, - [202] = {.lex_state = 240, .external_lex_state = 4}, - [203] = {.lex_state = 240, .external_lex_state = 7}, - [204] = {.lex_state = 240, .external_lex_state = 4}, - [205] = {.lex_state = 240, .external_lex_state = 7}, - [206] = {.lex_state = 240, .external_lex_state = 4}, - [207] = {.lex_state = 242, .external_lex_state = 3}, - [208] = {.lex_state = 240, .external_lex_state = 4}, - [209] = {.lex_state = 240, .external_lex_state = 7}, - [210] = {.lex_state = 240, .external_lex_state = 3}, - [211] = {.lex_state = 240, .external_lex_state = 4}, - [212] = {.lex_state = 242, .external_lex_state = 3}, - [213] = {.lex_state = 240, .external_lex_state = 4}, - [214] = {.lex_state = 59, .external_lex_state = 3}, - [215] = {.lex_state = 240, .external_lex_state = 3}, - [216] = {.lex_state = 240, .external_lex_state = 7}, - [217] = {.lex_state = 240, .external_lex_state = 4}, - [218] = {.lex_state = 240, .external_lex_state = 4}, - [219] = {.lex_state = 240, .external_lex_state = 3}, - [220] = {.lex_state = 240, .external_lex_state = 7}, - [221] = {.lex_state = 240, .external_lex_state = 4}, - [222] = {.lex_state = 240, .external_lex_state = 7}, - [223] = {.lex_state = 240, .external_lex_state = 7}, - [224] = {.lex_state = 59, .external_lex_state = 3}, - [225] = {.lex_state = 242, .external_lex_state = 3}, - [226] = {.lex_state = 240, .external_lex_state = 7}, - [227] = {.lex_state = 59, .external_lex_state = 3}, - [228] = {.lex_state = 59, .external_lex_state = 3}, - [229] = {.lex_state = 240, .external_lex_state = 4}, - [230] = {.lex_state = 240, .external_lex_state = 7}, - [231] = {.lex_state = 240, .external_lex_state = 4}, - [232] = {.lex_state = 242, .external_lex_state = 3}, - [233] = {.lex_state = 242, .external_lex_state = 3}, - [234] = {.lex_state = 240, .external_lex_state = 7}, - [235] = {.lex_state = 242, .external_lex_state = 3}, - [236] = {.lex_state = 240, .external_lex_state = 3}, - [237] = {.lex_state = 240, .external_lex_state = 3}, - [238] = {.lex_state = 240, .external_lex_state = 4}, - [239] = {.lex_state = 240, .external_lex_state = 4}, - [240] = {.lex_state = 240, .external_lex_state = 4}, - [241] = {.lex_state = 240, .external_lex_state = 4}, - [242] = {.lex_state = 240, .external_lex_state = 4}, - [243] = {.lex_state = 240, .external_lex_state = 4}, - [244] = {.lex_state = 59, .external_lex_state = 3}, - [245] = {.lex_state = 240, .external_lex_state = 4}, - [246] = {.lex_state = 242, .external_lex_state = 3}, - [247] = {.lex_state = 240, .external_lex_state = 4}, - [248] = {.lex_state = 59, .external_lex_state = 3}, - [249] = {.lex_state = 240, .external_lex_state = 4}, - [250] = {.lex_state = 240, .external_lex_state = 4}, - [251] = {.lex_state = 59, .external_lex_state = 3}, - [252] = {.lex_state = 240, .external_lex_state = 4}, - [253] = {.lex_state = 240, .external_lex_state = 3}, - [254] = {.lex_state = 242, .external_lex_state = 3}, - [255] = {.lex_state = 240, .external_lex_state = 3}, - [256] = {.lex_state = 59, .external_lex_state = 3}, - [257] = {.lex_state = 240, .external_lex_state = 3}, - [258] = {.lex_state = 59, .external_lex_state = 3}, - [259] = {.lex_state = 240, .external_lex_state = 3}, - [260] = {.lex_state = 240, .external_lex_state = 4}, - [261] = {.lex_state = 240, .external_lex_state = 3}, - [262] = {.lex_state = 59, .external_lex_state = 3}, - [263] = {.lex_state = 240, .external_lex_state = 3}, - [264] = {.lex_state = 240, .external_lex_state = 4}, - [265] = {.lex_state = 240, .external_lex_state = 7}, - [266] = {.lex_state = 240, .external_lex_state = 4}, - [267] = {.lex_state = 240, .external_lex_state = 3}, - [268] = {.lex_state = 242, .external_lex_state = 3}, - [269] = {.lex_state = 240, .external_lex_state = 4}, - [270] = {.lex_state = 59, .external_lex_state = 3}, - [271] = {.lex_state = 242, .external_lex_state = 3}, - [272] = {.lex_state = 59, .external_lex_state = 3}, - [273] = {.lex_state = 59, .external_lex_state = 3}, - [274] = {.lex_state = 242, .external_lex_state = 3}, - [275] = {.lex_state = 240, .external_lex_state = 3}, - [276] = {.lex_state = 240, .external_lex_state = 4}, - [277] = {.lex_state = 242, .external_lex_state = 3}, - [278] = {.lex_state = 240, .external_lex_state = 3}, - [279] = {.lex_state = 242, .external_lex_state = 3}, - [280] = {.lex_state = 242, .external_lex_state = 3}, - [281] = {.lex_state = 240, .external_lex_state = 3}, - [282] = {.lex_state = 240, .external_lex_state = 3}, - [283] = {.lex_state = 240, .external_lex_state = 3}, - [284] = {.lex_state = 240, .external_lex_state = 3}, - [285] = {.lex_state = 240, .external_lex_state = 3}, - [286] = {.lex_state = 240, .external_lex_state = 3}, - [287] = {.lex_state = 240, .external_lex_state = 3}, - [288] = {.lex_state = 240, .external_lex_state = 3}, - [289] = {.lex_state = 240, .external_lex_state = 3}, - [290] = {.lex_state = 240, .external_lex_state = 3}, - [291] = {.lex_state = 240, .external_lex_state = 3}, - [292] = {.lex_state = 240, .external_lex_state = 3}, - [293] = {.lex_state = 240, .external_lex_state = 3}, - [294] = {.lex_state = 247, .external_lex_state = 2}, - [295] = {.lex_state = 240, .external_lex_state = 3}, - [296] = {.lex_state = 240, .external_lex_state = 3}, - [297] = {.lex_state = 240, .external_lex_state = 3}, - [298] = {.lex_state = 240, .external_lex_state = 3}, - [299] = {.lex_state = 240, .external_lex_state = 3}, - [300] = {.lex_state = 240, .external_lex_state = 3}, - [301] = {.lex_state = 240, .external_lex_state = 3}, - [302] = {.lex_state = 240, .external_lex_state = 3}, - [303] = {.lex_state = 240, .external_lex_state = 3}, - [304] = {.lex_state = 240, .external_lex_state = 3}, - [305] = {.lex_state = 240, .external_lex_state = 3}, - [306] = {.lex_state = 240, .external_lex_state = 3}, - [307] = {.lex_state = 240, .external_lex_state = 3}, - [308] = {.lex_state = 240, .external_lex_state = 3}, - [309] = {.lex_state = 240, .external_lex_state = 3}, - [310] = {.lex_state = 240, .external_lex_state = 3}, - [311] = {.lex_state = 240, .external_lex_state = 3}, - [312] = {.lex_state = 240, .external_lex_state = 3}, - [313] = {.lex_state = 240, .external_lex_state = 3}, - [314] = {.lex_state = 240, .external_lex_state = 3}, - [315] = {.lex_state = 240, .external_lex_state = 3}, - [316] = {.lex_state = 240, .external_lex_state = 3}, - [317] = {.lex_state = 240, .external_lex_state = 3}, - [318] = {.lex_state = 240, .external_lex_state = 3}, - [319] = {.lex_state = 240, .external_lex_state = 3}, - [320] = {.lex_state = 240, .external_lex_state = 3}, - [321] = {.lex_state = 240, .external_lex_state = 3}, - [322] = {.lex_state = 240, .external_lex_state = 3}, - [323] = {.lex_state = 247, .external_lex_state = 2}, - [324] = {.lex_state = 247, .external_lex_state = 2}, - [325] = {.lex_state = 247, .external_lex_state = 2}, - [326] = {.lex_state = 247, .external_lex_state = 2}, - [327] = {.lex_state = 247, .external_lex_state = 2}, - [328] = {.lex_state = 247, .external_lex_state = 2}, - [329] = {.lex_state = 247, .external_lex_state = 2}, - [330] = {.lex_state = 247, .external_lex_state = 2}, - [331] = {.lex_state = 247, .external_lex_state = 8}, - [332] = {.lex_state = 247, .external_lex_state = 8}, - [333] = {.lex_state = 247, .external_lex_state = 2}, - [334] = {.lex_state = 247, .external_lex_state = 8}, - [335] = {.lex_state = 247, .external_lex_state = 8}, - [336] = {.lex_state = 247, .external_lex_state = 8}, - [337] = {.lex_state = 247, .external_lex_state = 8}, - [338] = {.lex_state = 247, .external_lex_state = 2}, - [339] = {.lex_state = 247, .external_lex_state = 8}, - [340] = {.lex_state = 247, .external_lex_state = 2}, - [341] = {.lex_state = 247, .external_lex_state = 2}, - [342] = {.lex_state = 247, .external_lex_state = 2}, - [343] = {.lex_state = 247, .external_lex_state = 2}, - [344] = {.lex_state = 247, .external_lex_state = 2}, - [345] = {.lex_state = 247, .external_lex_state = 2}, - [346] = {.lex_state = 247, .external_lex_state = 2}, - [347] = {.lex_state = 247, .external_lex_state = 2}, - [348] = {.lex_state = 247, .external_lex_state = 2}, - [349] = {.lex_state = 247, .external_lex_state = 2}, - [350] = {.lex_state = 247, .external_lex_state = 2}, - [351] = {.lex_state = 247, .external_lex_state = 3}, - [352] = {.lex_state = 72, .external_lex_state = 2}, - [353] = {.lex_state = 248, .external_lex_state = 3}, - [354] = {.lex_state = 72, .external_lex_state = 2}, - [355] = {.lex_state = 247, .external_lex_state = 8}, - [356] = {.lex_state = 247, .external_lex_state = 2}, - [357] = {.lex_state = 247, .external_lex_state = 2}, - [358] = {.lex_state = 247, .external_lex_state = 2}, - [359] = {.lex_state = 248, .external_lex_state = 2}, - [360] = {.lex_state = 248, .external_lex_state = 2}, - [361] = {.lex_state = 248, .external_lex_state = 2}, - [362] = {.lex_state = 248, .external_lex_state = 2}, - [363] = {.lex_state = 247, .external_lex_state = 2}, - [364] = {.lex_state = 248, .external_lex_state = 2}, - [365] = {.lex_state = 248, .external_lex_state = 2}, - [366] = {.lex_state = 248, .external_lex_state = 2}, - [367] = {.lex_state = 248, .external_lex_state = 2}, - [368] = {.lex_state = 248, .external_lex_state = 2}, - [369] = {.lex_state = 248, .external_lex_state = 2}, - [370] = {.lex_state = 247, .external_lex_state = 2}, - [371] = {.lex_state = 247, .external_lex_state = 2}, - [372] = {.lex_state = 248, .external_lex_state = 2}, - [373] = {.lex_state = 247, .external_lex_state = 2}, - [374] = {.lex_state = 248, .external_lex_state = 2}, - [375] = {.lex_state = 247, .external_lex_state = 2}, - [376] = {.lex_state = 248, .external_lex_state = 2}, - [377] = {.lex_state = 248, .external_lex_state = 2}, - [378] = {.lex_state = 248, .external_lex_state = 2}, - [379] = {.lex_state = 247, .external_lex_state = 2}, - [380] = {.lex_state = 247, .external_lex_state = 2}, - [381] = {.lex_state = 247, .external_lex_state = 2}, - [382] = {.lex_state = 247, .external_lex_state = 3}, - [383] = {.lex_state = 247, .external_lex_state = 2}, - [384] = {.lex_state = 247, .external_lex_state = 2}, - [385] = {.lex_state = 247, .external_lex_state = 3}, - [386] = {.lex_state = 247, .external_lex_state = 3}, - [387] = {.lex_state = 247, .external_lex_state = 2}, - [388] = {.lex_state = 247, .external_lex_state = 2}, - [389] = {.lex_state = 247, .external_lex_state = 2}, - [390] = {.lex_state = 247, .external_lex_state = 3}, - [391] = {.lex_state = 247, .external_lex_state = 3}, - [392] = {.lex_state = 247, .external_lex_state = 2}, - [393] = {.lex_state = 247, .external_lex_state = 3}, - [394] = {.lex_state = 247, .external_lex_state = 3}, - [395] = {.lex_state = 247, .external_lex_state = 3}, - [396] = {.lex_state = 247, .external_lex_state = 3}, - [397] = {.lex_state = 247, .external_lex_state = 3}, - [398] = {.lex_state = 247, .external_lex_state = 2}, - [399] = {.lex_state = 247, .external_lex_state = 3}, - [400] = {.lex_state = 247, .external_lex_state = 2}, - [401] = {.lex_state = 247, .external_lex_state = 3}, - [402] = {.lex_state = 247, .external_lex_state = 3}, - [403] = {.lex_state = 247, .external_lex_state = 3}, - [404] = {.lex_state = 247, .external_lex_state = 3}, - [405] = {.lex_state = 247, .external_lex_state = 3}, - [406] = {.lex_state = 247, .external_lex_state = 3}, - [407] = {.lex_state = 247, .external_lex_state = 3}, - [408] = {.lex_state = 247, .external_lex_state = 3}, - [409] = {.lex_state = 247, .external_lex_state = 2}, - [410] = {.lex_state = 247, .external_lex_state = 3}, - [411] = {.lex_state = 247, .external_lex_state = 2}, - [412] = {.lex_state = 247, .external_lex_state = 2}, - [413] = {.lex_state = 247, .external_lex_state = 2}, - [414] = {.lex_state = 247, .external_lex_state = 2}, - [415] = {.lex_state = 247, .external_lex_state = 2}, - [416] = {.lex_state = 247, .external_lex_state = 2}, - [417] = {.lex_state = 247, .external_lex_state = 3}, - [418] = {.lex_state = 247, .external_lex_state = 2}, - [419] = {.lex_state = 247, .external_lex_state = 2}, - [420] = {.lex_state = 247, .external_lex_state = 2}, - [421] = {.lex_state = 247, .external_lex_state = 2}, - [422] = {.lex_state = 247, .external_lex_state = 2}, - [423] = {.lex_state = 247, .external_lex_state = 2}, - [424] = {.lex_state = 247, .external_lex_state = 2}, - [425] = {.lex_state = 247, .external_lex_state = 3}, - [426] = {.lex_state = 247, .external_lex_state = 3}, - [427] = {.lex_state = 247, .external_lex_state = 8}, - [428] = {.lex_state = 247, .external_lex_state = 2}, - [429] = {.lex_state = 247, .external_lex_state = 2}, - [430] = {.lex_state = 247, .external_lex_state = 2}, - [431] = {.lex_state = 247, .external_lex_state = 2}, - [432] = {.lex_state = 247, .external_lex_state = 2}, - [433] = {.lex_state = 247, .external_lex_state = 2}, - [434] = {.lex_state = 247, .external_lex_state = 2}, - [435] = {.lex_state = 247, .external_lex_state = 2}, - [436] = {.lex_state = 247, .external_lex_state = 2}, - [437] = {.lex_state = 247, .external_lex_state = 2}, - [438] = {.lex_state = 247, .external_lex_state = 2}, - [439] = {.lex_state = 247, .external_lex_state = 2}, - [440] = {.lex_state = 247, .external_lex_state = 2}, - [441] = {.lex_state = 247, .external_lex_state = 2}, - [442] = {.lex_state = 247, .external_lex_state = 2}, - [443] = {.lex_state = 247, .external_lex_state = 2}, - [444] = {.lex_state = 247, .external_lex_state = 2}, - [445] = {.lex_state = 247, .external_lex_state = 2}, - [446] = {.lex_state = 247, .external_lex_state = 2}, - [447] = {.lex_state = 247, .external_lex_state = 2}, - [448] = {.lex_state = 247, .external_lex_state = 2}, - [449] = {.lex_state = 247, .external_lex_state = 2}, - [450] = {.lex_state = 247, .external_lex_state = 2}, - [451] = {.lex_state = 247, .external_lex_state = 2}, - [452] = {.lex_state = 247, .external_lex_state = 2}, - [453] = {.lex_state = 247, .external_lex_state = 2}, - [454] = {.lex_state = 247, .external_lex_state = 2}, - [455] = {.lex_state = 247, .external_lex_state = 2}, - [456] = {.lex_state = 247, .external_lex_state = 2}, - [457] = {.lex_state = 247, .external_lex_state = 2}, - [458] = {.lex_state = 247, .external_lex_state = 2}, - [459] = {.lex_state = 247, .external_lex_state = 2}, - [460] = {.lex_state = 247, .external_lex_state = 2}, - [461] = {.lex_state = 247, .external_lex_state = 2}, - [462] = {.lex_state = 247, .external_lex_state = 2}, - [463] = {.lex_state = 247, .external_lex_state = 2}, - [464] = {.lex_state = 247, .external_lex_state = 2}, - [465] = {.lex_state = 247, .external_lex_state = 2}, - [466] = {.lex_state = 247, .external_lex_state = 2}, - [467] = {.lex_state = 247, .external_lex_state = 2}, - [468] = {.lex_state = 247, .external_lex_state = 2}, - [469] = {.lex_state = 247, .external_lex_state = 2}, - [470] = {.lex_state = 247, .external_lex_state = 2}, - [471] = {.lex_state = 247, .external_lex_state = 2}, - [472] = {.lex_state = 247, .external_lex_state = 2}, - [473] = {.lex_state = 247, .external_lex_state = 2}, - [474] = {.lex_state = 247, .external_lex_state = 2}, - [475] = {.lex_state = 247, .external_lex_state = 2}, - [476] = {.lex_state = 247, .external_lex_state = 2}, - [477] = {.lex_state = 247, .external_lex_state = 2}, - [478] = {.lex_state = 247, .external_lex_state = 2}, - [479] = {.lex_state = 247, .external_lex_state = 2}, - [480] = {.lex_state = 247, .external_lex_state = 2}, - [481] = {.lex_state = 247, .external_lex_state = 2}, - [482] = {.lex_state = 247, .external_lex_state = 2}, - [483] = {.lex_state = 247, .external_lex_state = 2}, - [484] = {.lex_state = 247, .external_lex_state = 2}, - [485] = {.lex_state = 247, .external_lex_state = 2}, - [486] = {.lex_state = 247, .external_lex_state = 2}, - [487] = {.lex_state = 247, .external_lex_state = 2}, - [488] = {.lex_state = 247, .external_lex_state = 2}, - [489] = {.lex_state = 247, .external_lex_state = 2}, - [490] = {.lex_state = 247, .external_lex_state = 2}, - [491] = {.lex_state = 247, .external_lex_state = 2}, - [492] = {.lex_state = 247, .external_lex_state = 2}, - [493] = {.lex_state = 247, .external_lex_state = 2}, - [494] = {.lex_state = 247, .external_lex_state = 2}, - [495] = {.lex_state = 247, .external_lex_state = 2}, - [496] = {.lex_state = 247, .external_lex_state = 2}, - [497] = {.lex_state = 247, .external_lex_state = 2}, - [498] = {.lex_state = 247, .external_lex_state = 2}, - [499] = {.lex_state = 247, .external_lex_state = 2}, - [500] = {.lex_state = 247, .external_lex_state = 2}, - [501] = {.lex_state = 247, .external_lex_state = 2}, - [502] = {.lex_state = 247, .external_lex_state = 2}, - [503] = {.lex_state = 247, .external_lex_state = 2}, - [504] = {.lex_state = 247, .external_lex_state = 2}, - [505] = {.lex_state = 247, .external_lex_state = 2}, - [506] = {.lex_state = 247, .external_lex_state = 2}, - [507] = {.lex_state = 247, .external_lex_state = 2}, - [508] = {.lex_state = 247, .external_lex_state = 2}, - [509] = {.lex_state = 247, .external_lex_state = 2}, - [510] = {.lex_state = 247, .external_lex_state = 2}, - [511] = {.lex_state = 247, .external_lex_state = 2}, - [512] = {.lex_state = 247, .external_lex_state = 2}, - [513] = {.lex_state = 247, .external_lex_state = 2}, - [514] = {.lex_state = 247, .external_lex_state = 2}, - [515] = {.lex_state = 247, .external_lex_state = 2}, - [516] = {.lex_state = 247, .external_lex_state = 2}, - [517] = {.lex_state = 247, .external_lex_state = 2}, - [518] = {.lex_state = 247, .external_lex_state = 2}, - [519] = {.lex_state = 247, .external_lex_state = 2}, - [520] = {.lex_state = 247, .external_lex_state = 2}, - [521] = {.lex_state = 247, .external_lex_state = 2}, - [522] = {.lex_state = 247, .external_lex_state = 2}, - [523] = {.lex_state = 247, .external_lex_state = 2}, - [524] = {.lex_state = 247, .external_lex_state = 2}, - [525] = {.lex_state = 247, .external_lex_state = 2}, - [526] = {.lex_state = 247, .external_lex_state = 2}, - [527] = {.lex_state = 247, .external_lex_state = 2}, - [528] = {.lex_state = 247, .external_lex_state = 2}, - [529] = {.lex_state = 247, .external_lex_state = 2}, - [530] = {.lex_state = 247, .external_lex_state = 2}, - [531] = {.lex_state = 247, .external_lex_state = 2}, - [532] = {.lex_state = 247, .external_lex_state = 2}, - [533] = {.lex_state = 247, .external_lex_state = 2}, - [534] = {.lex_state = 247, .external_lex_state = 2}, - [535] = {.lex_state = 247, .external_lex_state = 2}, - [536] = {.lex_state = 247, .external_lex_state = 2}, - [537] = {.lex_state = 247, .external_lex_state = 2}, - [538] = {.lex_state = 247, .external_lex_state = 2}, - [539] = {.lex_state = 247, .external_lex_state = 2}, - [540] = {.lex_state = 247, .external_lex_state = 2}, - [541] = {.lex_state = 247, .external_lex_state = 2}, - [542] = {.lex_state = 247, .external_lex_state = 2}, - [543] = {.lex_state = 247, .external_lex_state = 2}, - [544] = {.lex_state = 247, .external_lex_state = 2}, - [545] = {.lex_state = 247, .external_lex_state = 2}, - [546] = {.lex_state = 247, .external_lex_state = 2}, - [547] = {.lex_state = 247, .external_lex_state = 2}, - [548] = {.lex_state = 247, .external_lex_state = 2}, - [549] = {.lex_state = 247, .external_lex_state = 2}, - [550] = {.lex_state = 247, .external_lex_state = 2}, - [551] = {.lex_state = 247, .external_lex_state = 2}, - [552] = {.lex_state = 247, .external_lex_state = 2}, - [553] = {.lex_state = 247, .external_lex_state = 2}, - [554] = {.lex_state = 247, .external_lex_state = 2}, - [555] = {.lex_state = 247, .external_lex_state = 2}, - [556] = {.lex_state = 247, .external_lex_state = 2}, - [557] = {.lex_state = 247, .external_lex_state = 2}, - [558] = {.lex_state = 247, .external_lex_state = 2}, - [559] = {.lex_state = 247, .external_lex_state = 2}, - [560] = {.lex_state = 247, .external_lex_state = 2}, - [561] = {.lex_state = 247, .external_lex_state = 2}, - [562] = {.lex_state = 247, .external_lex_state = 2}, - [563] = {.lex_state = 247, .external_lex_state = 2}, - [564] = {.lex_state = 247, .external_lex_state = 2}, - [565] = {.lex_state = 247, .external_lex_state = 2}, - [566] = {.lex_state = 247, .external_lex_state = 2}, - [567] = {.lex_state = 247, .external_lex_state = 2}, - [568] = {.lex_state = 247, .external_lex_state = 2}, - [569] = {.lex_state = 247, .external_lex_state = 2}, - [570] = {.lex_state = 247, .external_lex_state = 2}, - [571] = {.lex_state = 247, .external_lex_state = 2}, - [572] = {.lex_state = 247, .external_lex_state = 2}, - [573] = {.lex_state = 247, .external_lex_state = 2}, - [574] = {.lex_state = 247, .external_lex_state = 2}, - [575] = {.lex_state = 247, .external_lex_state = 2}, - [576] = {.lex_state = 247, .external_lex_state = 2}, - [577] = {.lex_state = 247, .external_lex_state = 2}, - [578] = {.lex_state = 247, .external_lex_state = 2}, - [579] = {.lex_state = 247, .external_lex_state = 2}, - [580] = {.lex_state = 247, .external_lex_state = 2}, - [581] = {.lex_state = 247, .external_lex_state = 2}, - [582] = {.lex_state = 247, .external_lex_state = 2}, - [583] = {.lex_state = 247, .external_lex_state = 2}, - [584] = {.lex_state = 247, .external_lex_state = 2}, - [585] = {.lex_state = 247, .external_lex_state = 2}, - [586] = {.lex_state = 247, .external_lex_state = 2}, - [587] = {.lex_state = 247, .external_lex_state = 2}, - [588] = {.lex_state = 247, .external_lex_state = 2}, - [589] = {.lex_state = 247, .external_lex_state = 2}, - [590] = {.lex_state = 247, .external_lex_state = 2}, - [591] = {.lex_state = 247, .external_lex_state = 2}, - [592] = {.lex_state = 247, .external_lex_state = 2}, - [593] = {.lex_state = 247, .external_lex_state = 2}, - [594] = {.lex_state = 247, .external_lex_state = 2}, - [595] = {.lex_state = 247, .external_lex_state = 2}, - [596] = {.lex_state = 247, .external_lex_state = 2}, - [597] = {.lex_state = 247, .external_lex_state = 2}, - [598] = {.lex_state = 247, .external_lex_state = 2}, - [599] = {.lex_state = 247, .external_lex_state = 2}, - [600] = {.lex_state = 247, .external_lex_state = 2}, - [601] = {.lex_state = 247, .external_lex_state = 2}, - [602] = {.lex_state = 247, .external_lex_state = 2}, - [603] = {.lex_state = 247, .external_lex_state = 2}, - [604] = {.lex_state = 247, .external_lex_state = 2}, - [605] = {.lex_state = 247, .external_lex_state = 2}, - [606] = {.lex_state = 247, .external_lex_state = 2}, - [607] = {.lex_state = 247, .external_lex_state = 2}, - [608] = {.lex_state = 247, .external_lex_state = 2}, - [609] = {.lex_state = 247, .external_lex_state = 2}, - [610] = {.lex_state = 247, .external_lex_state = 2}, - [611] = {.lex_state = 247, .external_lex_state = 2}, - [612] = {.lex_state = 247, .external_lex_state = 2}, - [613] = {.lex_state = 247, .external_lex_state = 2}, - [614] = {.lex_state = 247, .external_lex_state = 2}, - [615] = {.lex_state = 247, .external_lex_state = 2}, - [616] = {.lex_state = 247, .external_lex_state = 2}, - [617] = {.lex_state = 247, .external_lex_state = 2}, - [618] = {.lex_state = 247, .external_lex_state = 2}, - [619] = {.lex_state = 247, .external_lex_state = 2}, - [620] = {.lex_state = 247, .external_lex_state = 2}, - [621] = {.lex_state = 247, .external_lex_state = 2}, - [622] = {.lex_state = 247, .external_lex_state = 2}, - [623] = {.lex_state = 247, .external_lex_state = 2}, - [624] = {.lex_state = 247, .external_lex_state = 2}, - [625] = {.lex_state = 247, .external_lex_state = 2}, - [626] = {.lex_state = 247, .external_lex_state = 2}, - [627] = {.lex_state = 247, .external_lex_state = 2}, - [628] = {.lex_state = 247, .external_lex_state = 2}, - [629] = {.lex_state = 247, .external_lex_state = 2}, - [630] = {.lex_state = 247, .external_lex_state = 2}, - [631] = {.lex_state = 247, .external_lex_state = 2}, - [632] = {.lex_state = 247, .external_lex_state = 2}, - [633] = {.lex_state = 247, .external_lex_state = 2}, - [634] = {.lex_state = 247, .external_lex_state = 2}, - [635] = {.lex_state = 247, .external_lex_state = 2}, - [636] = {.lex_state = 247, .external_lex_state = 2}, - [637] = {.lex_state = 247, .external_lex_state = 2}, - [638] = {.lex_state = 247, .external_lex_state = 2}, - [639] = {.lex_state = 247, .external_lex_state = 2}, - [640] = {.lex_state = 247, .external_lex_state = 2}, - [641] = {.lex_state = 247, .external_lex_state = 2}, - [642] = {.lex_state = 247, .external_lex_state = 2}, - [643] = {.lex_state = 247, .external_lex_state = 2}, - [644] = {.lex_state = 247, .external_lex_state = 2}, - [645] = {.lex_state = 247, .external_lex_state = 2}, - [646] = {.lex_state = 247, .external_lex_state = 2}, - [647] = {.lex_state = 247, .external_lex_state = 2}, - [648] = {.lex_state = 247, .external_lex_state = 2}, - [649] = {.lex_state = 247, .external_lex_state = 2}, - [650] = {.lex_state = 247, .external_lex_state = 2}, - [651] = {.lex_state = 247, .external_lex_state = 2}, - [652] = {.lex_state = 247, .external_lex_state = 2}, - [653] = {.lex_state = 247, .external_lex_state = 2}, - [654] = {.lex_state = 247, .external_lex_state = 2}, - [655] = {.lex_state = 247, .external_lex_state = 2}, - [656] = {.lex_state = 247, .external_lex_state = 2}, - [657] = {.lex_state = 247, .external_lex_state = 2}, - [658] = {.lex_state = 247, .external_lex_state = 2}, - [659] = {.lex_state = 247, .external_lex_state = 2}, - [660] = {.lex_state = 247, .external_lex_state = 2}, - [661] = {.lex_state = 247, .external_lex_state = 2}, - [662] = {.lex_state = 247, .external_lex_state = 2}, - [663] = {.lex_state = 247, .external_lex_state = 2}, - [664] = {.lex_state = 247, .external_lex_state = 2}, - [665] = {.lex_state = 247, .external_lex_state = 2}, - [666] = {.lex_state = 247, .external_lex_state = 2}, - [667] = {.lex_state = 247, .external_lex_state = 2}, - [668] = {.lex_state = 247, .external_lex_state = 2}, - [669] = {.lex_state = 247, .external_lex_state = 2}, - [670] = {.lex_state = 247, .external_lex_state = 2}, - [671] = {.lex_state = 247, .external_lex_state = 2}, - [672] = {.lex_state = 247, .external_lex_state = 2}, - [673] = {.lex_state = 247, .external_lex_state = 2}, - [674] = {.lex_state = 247, .external_lex_state = 2}, - [675] = {.lex_state = 247, .external_lex_state = 2}, - [676] = {.lex_state = 247, .external_lex_state = 2}, - [677] = {.lex_state = 247, .external_lex_state = 2}, - [678] = {.lex_state = 247, .external_lex_state = 2}, - [679] = {.lex_state = 247, .external_lex_state = 2}, - [680] = {.lex_state = 247, .external_lex_state = 2}, - [681] = {.lex_state = 247, .external_lex_state = 2}, - [682] = {.lex_state = 247, .external_lex_state = 2}, - [683] = {.lex_state = 247, .external_lex_state = 2}, - [684] = {.lex_state = 247, .external_lex_state = 2}, - [685] = {.lex_state = 247, .external_lex_state = 2}, - [686] = {.lex_state = 247, .external_lex_state = 2}, - [687] = {.lex_state = 247, .external_lex_state = 2}, - [688] = {.lex_state = 247, .external_lex_state = 2}, - [689] = {.lex_state = 247, .external_lex_state = 2}, - [690] = {.lex_state = 247, .external_lex_state = 2}, - [691] = {.lex_state = 247, .external_lex_state = 2}, - [692] = {.lex_state = 247, .external_lex_state = 2}, - [693] = {.lex_state = 247, .external_lex_state = 2}, - [694] = {.lex_state = 247, .external_lex_state = 2}, - [695] = {.lex_state = 247, .external_lex_state = 2}, - [696] = {.lex_state = 247, .external_lex_state = 2}, - [697] = {.lex_state = 247, .external_lex_state = 2}, - [698] = {.lex_state = 247, .external_lex_state = 2}, - [699] = {.lex_state = 247, .external_lex_state = 2}, - [700] = {.lex_state = 247, .external_lex_state = 2}, - [701] = {.lex_state = 247, .external_lex_state = 2}, - [702] = {.lex_state = 247, .external_lex_state = 2}, - [703] = {.lex_state = 247, .external_lex_state = 2}, - [704] = {.lex_state = 247, .external_lex_state = 2}, - [705] = {.lex_state = 247, .external_lex_state = 2}, - [706] = {.lex_state = 247, .external_lex_state = 2}, - [707] = {.lex_state = 247, .external_lex_state = 2}, - [708] = {.lex_state = 247, .external_lex_state = 2}, - [709] = {.lex_state = 247, .external_lex_state = 2}, - [710] = {.lex_state = 247, .external_lex_state = 2}, - [711] = {.lex_state = 247, .external_lex_state = 2}, - [712] = {.lex_state = 247, .external_lex_state = 2}, - [713] = {.lex_state = 247, .external_lex_state = 2}, - [714] = {.lex_state = 247, .external_lex_state = 2}, - [715] = {.lex_state = 247, .external_lex_state = 2}, - [716] = {.lex_state = 247, .external_lex_state = 2}, - [717] = {.lex_state = 247, .external_lex_state = 2}, - [718] = {.lex_state = 247, .external_lex_state = 2}, - [719] = {.lex_state = 247, .external_lex_state = 2}, - [720] = {.lex_state = 247, .external_lex_state = 2}, - [721] = {.lex_state = 247, .external_lex_state = 2}, - [722] = {.lex_state = 247, .external_lex_state = 2}, - [723] = {.lex_state = 247, .external_lex_state = 2}, - [724] = {.lex_state = 247, .external_lex_state = 2}, - [725] = {.lex_state = 239, .external_lex_state = 3}, - [726] = {.lex_state = 239, .external_lex_state = 3}, - [727] = {.lex_state = 239, .external_lex_state = 3}, - [728] = {.lex_state = 239, .external_lex_state = 4}, - [729] = {.lex_state = 238, .external_lex_state = 3}, - [730] = {.lex_state = 239, .external_lex_state = 5}, - [731] = {.lex_state = 238, .external_lex_state = 4}, - [732] = {.lex_state = 238, .external_lex_state = 4}, - [733] = {.lex_state = 238, .external_lex_state = 4}, - [734] = {.lex_state = 238, .external_lex_state = 3}, - [735] = {.lex_state = 238, .external_lex_state = 3}, - [736] = {.lex_state = 238, .external_lex_state = 3}, - [737] = {.lex_state = 238, .external_lex_state = 3}, - [738] = {.lex_state = 51, .external_lex_state = 4}, - [739] = {.lex_state = 239, .external_lex_state = 4}, - [740] = {.lex_state = 238, .external_lex_state = 4}, - [741] = {.lex_state = 238, .external_lex_state = 4}, - [742] = {.lex_state = 238, .external_lex_state = 3}, - [743] = {.lex_state = 58, .external_lex_state = 3}, - [744] = {.lex_state = 51, .external_lex_state = 3}, - [745] = {.lex_state = 238, .external_lex_state = 3}, - [746] = {.lex_state = 238, .external_lex_state = 3}, - [747] = {.lex_state = 238, .external_lex_state = 3}, - [748] = {.lex_state = 238, .external_lex_state = 3}, - [749] = {.lex_state = 239, .external_lex_state = 6}, - [750] = {.lex_state = 238, .external_lex_state = 3}, - [751] = {.lex_state = 238, .external_lex_state = 4}, - [752] = {.lex_state = 238, .external_lex_state = 3}, - [753] = {.lex_state = 238, .external_lex_state = 4}, - [754] = {.lex_state = 238, .external_lex_state = 3}, - [755] = {.lex_state = 239, .external_lex_state = 7}, - [756] = {.lex_state = 238, .external_lex_state = 4}, - [757] = {.lex_state = 238, .external_lex_state = 3}, - [758] = {.lex_state = 238, .external_lex_state = 4}, - [759] = {.lex_state = 238, .external_lex_state = 3}, - [760] = {.lex_state = 238, .external_lex_state = 3}, - [761] = {.lex_state = 54, .external_lex_state = 3}, - [762] = {.lex_state = 238, .external_lex_state = 4}, - [763] = {.lex_state = 238, .external_lex_state = 4}, - [764] = {.lex_state = 238, .external_lex_state = 3}, - [765] = {.lex_state = 238, .external_lex_state = 4}, - [766] = {.lex_state = 238, .external_lex_state = 3}, - [767] = {.lex_state = 238, .external_lex_state = 3}, - [768] = {.lex_state = 238, .external_lex_state = 4}, - [769] = {.lex_state = 238, .external_lex_state = 3}, - [770] = {.lex_state = 238, .external_lex_state = 4}, - [771] = {.lex_state = 238, .external_lex_state = 4}, - [772] = {.lex_state = 238, .external_lex_state = 4}, - [773] = {.lex_state = 238, .external_lex_state = 3}, - [774] = {.lex_state = 238, .external_lex_state = 3}, - [775] = {.lex_state = 238, .external_lex_state = 4}, - [776] = {.lex_state = 238, .external_lex_state = 3}, - [777] = {.lex_state = 238, .external_lex_state = 3}, - [778] = {.lex_state = 238, .external_lex_state = 4}, - [779] = {.lex_state = 238, .external_lex_state = 3}, - [780] = {.lex_state = 238, .external_lex_state = 3}, - [781] = {.lex_state = 238, .external_lex_state = 4}, - [782] = {.lex_state = 238, .external_lex_state = 3}, - [783] = {.lex_state = 238, .external_lex_state = 4}, - [784] = {.lex_state = 238, .external_lex_state = 3}, - [785] = {.lex_state = 238, .external_lex_state = 4}, - [786] = {.lex_state = 238, .external_lex_state = 3}, - [787] = {.lex_state = 238, .external_lex_state = 3}, - [788] = {.lex_state = 238, .external_lex_state = 3}, - [789] = {.lex_state = 238, .external_lex_state = 4}, - [790] = {.lex_state = 238, .external_lex_state = 4}, - [791] = {.lex_state = 238, .external_lex_state = 3}, - [792] = {.lex_state = 238, .external_lex_state = 3}, - [793] = {.lex_state = 238, .external_lex_state = 4}, - [794] = {.lex_state = 238, .external_lex_state = 3}, - [795] = {.lex_state = 238, .external_lex_state = 3}, - [796] = {.lex_state = 238, .external_lex_state = 4}, - [797] = {.lex_state = 238, .external_lex_state = 3}, - [798] = {.lex_state = 238, .external_lex_state = 4}, - [799] = {.lex_state = 238, .external_lex_state = 3}, - [800] = {.lex_state = 238, .external_lex_state = 3}, - [801] = {.lex_state = 238, .external_lex_state = 4}, - [802] = {.lex_state = 238, .external_lex_state = 3}, - [803] = {.lex_state = 238, .external_lex_state = 3}, - [804] = {.lex_state = 238, .external_lex_state = 3}, - [805] = {.lex_state = 238, .external_lex_state = 3}, - [806] = {.lex_state = 238, .external_lex_state = 3}, - [807] = {.lex_state = 238, .external_lex_state = 3}, - [808] = {.lex_state = 238, .external_lex_state = 3}, - [809] = {.lex_state = 238, .external_lex_state = 3}, - [810] = {.lex_state = 238, .external_lex_state = 3}, - [811] = {.lex_state = 238, .external_lex_state = 3}, - [812] = {.lex_state = 238, .external_lex_state = 3}, - [813] = {.lex_state = 238, .external_lex_state = 3}, - [814] = {.lex_state = 238, .external_lex_state = 3}, - [815] = {.lex_state = 238, .external_lex_state = 3}, - [816] = {.lex_state = 238, .external_lex_state = 3}, - [817] = {.lex_state = 238, .external_lex_state = 3}, - [818] = {.lex_state = 240, .external_lex_state = 4}, - [819] = {.lex_state = 241, .external_lex_state = 3}, - [820] = {.lex_state = 241, .external_lex_state = 3}, - [821] = {.lex_state = 241, .external_lex_state = 4}, - [822] = {.lex_state = 240, .external_lex_state = 3}, - [823] = {.lex_state = 241, .external_lex_state = 3}, - [824] = {.lex_state = 241, .external_lex_state = 4}, - [825] = {.lex_state = 241, .external_lex_state = 3}, - [826] = {.lex_state = 241, .external_lex_state = 4}, - [827] = {.lex_state = 241, .external_lex_state = 3}, - [828] = {.lex_state = 241, .external_lex_state = 4}, - [829] = {.lex_state = 241, .external_lex_state = 4}, - [830] = {.lex_state = 242, .external_lex_state = 3}, - [831] = {.lex_state = 242, .external_lex_state = 4}, - [832] = {.lex_state = 241, .external_lex_state = 3}, - [833] = {.lex_state = 241, .external_lex_state = 4}, - [834] = {.lex_state = 241, .external_lex_state = 4}, - [835] = {.lex_state = 241, .external_lex_state = 4}, - [836] = {.lex_state = 241, .external_lex_state = 4}, - [837] = {.lex_state = 240, .external_lex_state = 3}, - [838] = {.lex_state = 240, .external_lex_state = 4}, - [839] = {.lex_state = 240, .external_lex_state = 4}, - [840] = {.lex_state = 241, .external_lex_state = 3}, - [841] = {.lex_state = 241, .external_lex_state = 3}, - [842] = {.lex_state = 241, .external_lex_state = 3}, - [843] = {.lex_state = 240, .external_lex_state = 3}, - [844] = {.lex_state = 241, .external_lex_state = 4}, - [845] = {.lex_state = 240, .external_lex_state = 4}, - [846] = {.lex_state = 241, .external_lex_state = 3}, - [847] = {.lex_state = 241, .external_lex_state = 3}, - [848] = {.lex_state = 240, .external_lex_state = 4}, - [849] = {.lex_state = 240, .external_lex_state = 3}, - [850] = {.lex_state = 240, .external_lex_state = 4}, - [851] = {.lex_state = 240, .external_lex_state = 4}, - [852] = {.lex_state = 241, .external_lex_state = 3}, - [853] = {.lex_state = 241, .external_lex_state = 3}, - [854] = {.lex_state = 240, .external_lex_state = 3}, - [855] = {.lex_state = 240, .external_lex_state = 3}, - [856] = {.lex_state = 241, .external_lex_state = 3}, - [857] = {.lex_state = 242, .external_lex_state = 3}, - [858] = {.lex_state = 242, .external_lex_state = 3}, - [859] = {.lex_state = 240, .external_lex_state = 3}, - [860] = {.lex_state = 242, .external_lex_state = 3}, - [861] = {.lex_state = 241, .external_lex_state = 3}, - [862] = {.lex_state = 242, .external_lex_state = 4}, - [863] = {.lex_state = 240, .external_lex_state = 3}, - [864] = {.lex_state = 240, .external_lex_state = 4}, - [865] = {.lex_state = 240, .external_lex_state = 3}, - [866] = {.lex_state = 49, .external_lex_state = 4}, - [867] = {.lex_state = 49, .external_lex_state = 4}, - [868] = {.lex_state = 240, .external_lex_state = 3}, - [869] = {.lex_state = 240, .external_lex_state = 3}, - [870] = {.lex_state = 240, .external_lex_state = 3}, - [871] = {.lex_state = 240, .external_lex_state = 3}, - [872] = {.lex_state = 240, .external_lex_state = 3}, - [873] = {.lex_state = 240, .external_lex_state = 3}, - [874] = {.lex_state = 240, .external_lex_state = 3}, - [875] = {.lex_state = 240, .external_lex_state = 3}, - [876] = {.lex_state = 240, .external_lex_state = 3}, - [877] = {.lex_state = 240, .external_lex_state = 3}, - [878] = {.lex_state = 240, .external_lex_state = 3}, - [879] = {.lex_state = 240, .external_lex_state = 3}, - [880] = {.lex_state = 240, .external_lex_state = 3}, - [881] = {.lex_state = 240, .external_lex_state = 3}, - [882] = {.lex_state = 240, .external_lex_state = 3}, - [883] = {.lex_state = 240, .external_lex_state = 3}, - [884] = {.lex_state = 240, .external_lex_state = 3}, - [885] = {.lex_state = 240, .external_lex_state = 3}, - [886] = {.lex_state = 240, .external_lex_state = 3}, - [887] = {.lex_state = 240, .external_lex_state = 3}, - [888] = {.lex_state = 240, .external_lex_state = 3}, - [889] = {.lex_state = 240, .external_lex_state = 3}, - [890] = {.lex_state = 240, .external_lex_state = 3}, - [891] = {.lex_state = 240, .external_lex_state = 3}, - [892] = {.lex_state = 241, .external_lex_state = 3}, - [893] = {.lex_state = 241, .external_lex_state = 3}, - [894] = {.lex_state = 240, .external_lex_state = 3}, - [895] = {.lex_state = 240, .external_lex_state = 3}, - [896] = {.lex_state = 240, .external_lex_state = 3}, - [897] = {.lex_state = 240, .external_lex_state = 3}, - [898] = {.lex_state = 240, .external_lex_state = 3}, - [899] = {.lex_state = 241, .external_lex_state = 3}, - [900] = {.lex_state = 240, .external_lex_state = 3}, - [901] = {.lex_state = 49, .external_lex_state = 4}, - [902] = {.lex_state = 240, .external_lex_state = 3}, - [903] = {.lex_state = 240, .external_lex_state = 3}, - [904] = {.lex_state = 240, .external_lex_state = 3}, - [905] = {.lex_state = 241, .external_lex_state = 3}, - [906] = {.lex_state = 240, .external_lex_state = 3}, - [907] = {.lex_state = 240, .external_lex_state = 3}, - [908] = {.lex_state = 240, .external_lex_state = 3}, - [909] = {.lex_state = 240, .external_lex_state = 3}, - [910] = {.lex_state = 238, .external_lex_state = 5}, - [911] = {.lex_state = 238, .external_lex_state = 5}, - [912] = {.lex_state = 238, .external_lex_state = 5}, - [913] = {.lex_state = 240, .external_lex_state = 3}, - [914] = {.lex_state = 49, .external_lex_state = 4}, - [915] = {.lex_state = 240, .external_lex_state = 4}, - [916] = {.lex_state = 240, .external_lex_state = 4}, - [917] = {.lex_state = 240, .external_lex_state = 3}, - [918] = {.lex_state = 240, .external_lex_state = 3}, - [919] = {.lex_state = 240, .external_lex_state = 4}, - [920] = {.lex_state = 240, .external_lex_state = 3}, - [921] = {.lex_state = 240, .external_lex_state = 3}, - [922] = {.lex_state = 240, .external_lex_state = 3}, - [923] = {.lex_state = 240, .external_lex_state = 3}, - [924] = {.lex_state = 240, .external_lex_state = 3}, - [925] = {.lex_state = 240, .external_lex_state = 4}, - [926] = {.lex_state = 240, .external_lex_state = 4}, - [927] = {.lex_state = 49, .external_lex_state = 4}, - [928] = {.lex_state = 240, .external_lex_state = 4}, - [929] = {.lex_state = 240, .external_lex_state = 4}, - [930] = {.lex_state = 240, .external_lex_state = 3}, - [931] = {.lex_state = 238, .external_lex_state = 5}, - [932] = {.lex_state = 240, .external_lex_state = 4}, - [933] = {.lex_state = 240, .external_lex_state = 3}, - [934] = {.lex_state = 240, .external_lex_state = 3}, - [935] = {.lex_state = 240, .external_lex_state = 3}, - [936] = {.lex_state = 240, .external_lex_state = 3}, - [937] = {.lex_state = 240, .external_lex_state = 4}, - [938] = {.lex_state = 240, .external_lex_state = 3}, - [939] = {.lex_state = 240, .external_lex_state = 4}, - [940] = {.lex_state = 240, .external_lex_state = 3}, - [941] = {.lex_state = 240, .external_lex_state = 4}, - [942] = {.lex_state = 240, .external_lex_state = 4}, - [943] = {.lex_state = 240, .external_lex_state = 4}, - [944] = {.lex_state = 240, .external_lex_state = 3}, - [945] = {.lex_state = 240, .external_lex_state = 3}, - [946] = {.lex_state = 240, .external_lex_state = 3}, - [947] = {.lex_state = 240, .external_lex_state = 3}, - [948] = {.lex_state = 240, .external_lex_state = 4}, - [949] = {.lex_state = 240, .external_lex_state = 3}, - [950] = {.lex_state = 240, .external_lex_state = 4}, - [951] = {.lex_state = 240, .external_lex_state = 4}, - [952] = {.lex_state = 240, .external_lex_state = 4}, - [953] = {.lex_state = 240, .external_lex_state = 4}, - [954] = {.lex_state = 240, .external_lex_state = 4}, - [955] = {.lex_state = 238, .external_lex_state = 5}, - [956] = {.lex_state = 240, .external_lex_state = 4}, - [957] = {.lex_state = 240, .external_lex_state = 4}, - [958] = {.lex_state = 240, .external_lex_state = 4}, - [959] = {.lex_state = 240, .external_lex_state = 4}, - [960] = {.lex_state = 240, .external_lex_state = 4}, - [961] = {.lex_state = 240, .external_lex_state = 4}, - [962] = {.lex_state = 240, .external_lex_state = 3}, - [963] = {.lex_state = 240, .external_lex_state = 3}, - [964] = {.lex_state = 240, .external_lex_state = 4}, - [965] = {.lex_state = 240, .external_lex_state = 3}, - [966] = {.lex_state = 240, .external_lex_state = 3}, - [967] = {.lex_state = 240, .external_lex_state = 3}, - [968] = {.lex_state = 240, .external_lex_state = 3}, - [969] = {.lex_state = 240, .external_lex_state = 3}, - [970] = {.lex_state = 240, .external_lex_state = 4}, - [971] = {.lex_state = 240, .external_lex_state = 4}, - [972] = {.lex_state = 240, .external_lex_state = 3}, - [973] = {.lex_state = 240, .external_lex_state = 4}, - [974] = {.lex_state = 240, .external_lex_state = 4}, - [975] = {.lex_state = 240, .external_lex_state = 4}, - [976] = {.lex_state = 240, .external_lex_state = 4}, - [977] = {.lex_state = 240, .external_lex_state = 4}, - [978] = {.lex_state = 240, .external_lex_state = 3}, - [979] = {.lex_state = 240, .external_lex_state = 4}, - [980] = {.lex_state = 240, .external_lex_state = 4}, - [981] = {.lex_state = 240, .external_lex_state = 4}, - [982] = {.lex_state = 240, .external_lex_state = 3}, - [983] = {.lex_state = 240, .external_lex_state = 3}, - [984] = {.lex_state = 240, .external_lex_state = 4}, - [985] = {.lex_state = 240, .external_lex_state = 4}, - [986] = {.lex_state = 240, .external_lex_state = 3}, - [987] = {.lex_state = 240, .external_lex_state = 3}, - [988] = {.lex_state = 240, .external_lex_state = 4}, - [989] = {.lex_state = 240, .external_lex_state = 4}, - [990] = {.lex_state = 240, .external_lex_state = 4}, - [991] = {.lex_state = 240, .external_lex_state = 4}, - [992] = {.lex_state = 240, .external_lex_state = 4}, - [993] = {.lex_state = 240, .external_lex_state = 3}, - [994] = {.lex_state = 240, .external_lex_state = 4}, - [995] = {.lex_state = 240, .external_lex_state = 3}, - [996] = {.lex_state = 240, .external_lex_state = 4}, - [997] = {.lex_state = 240, .external_lex_state = 4}, - [998] = {.lex_state = 240, .external_lex_state = 3}, - [999] = {.lex_state = 241, .external_lex_state = 3}, - [1000] = {.lex_state = 240, .external_lex_state = 4}, - [1001] = {.lex_state = 240, .external_lex_state = 4}, - [1002] = {.lex_state = 240, .external_lex_state = 4}, - [1003] = {.lex_state = 240, .external_lex_state = 3}, - [1004] = {.lex_state = 240, .external_lex_state = 4}, - [1005] = {.lex_state = 240, .external_lex_state = 4}, - [1006] = {.lex_state = 240, .external_lex_state = 4}, - [1007] = {.lex_state = 240, .external_lex_state = 4}, - [1008] = {.lex_state = 240, .external_lex_state = 3}, - [1009] = {.lex_state = 240, .external_lex_state = 4}, - [1010] = {.lex_state = 240, .external_lex_state = 3}, - [1011] = {.lex_state = 240, .external_lex_state = 3}, - [1012] = {.lex_state = 240, .external_lex_state = 3}, - [1013] = {.lex_state = 240, .external_lex_state = 3}, - [1014] = {.lex_state = 240, .external_lex_state = 4}, - [1015] = {.lex_state = 240, .external_lex_state = 4}, - [1016] = {.lex_state = 240, .external_lex_state = 3}, - [1017] = {.lex_state = 240, .external_lex_state = 3}, - [1018] = {.lex_state = 240, .external_lex_state = 4}, - [1019] = {.lex_state = 240, .external_lex_state = 4}, - [1020] = {.lex_state = 240, .external_lex_state = 3}, - [1021] = {.lex_state = 240, .external_lex_state = 4}, - [1022] = {.lex_state = 240, .external_lex_state = 4}, - [1023] = {.lex_state = 240, .external_lex_state = 4}, - [1024] = {.lex_state = 240, .external_lex_state = 4}, - [1025] = {.lex_state = 240, .external_lex_state = 4}, - [1026] = {.lex_state = 240, .external_lex_state = 4}, - [1027] = {.lex_state = 240, .external_lex_state = 4}, - [1028] = {.lex_state = 240, .external_lex_state = 4}, - [1029] = {.lex_state = 240, .external_lex_state = 4}, - [1030] = {.lex_state = 240, .external_lex_state = 4}, - [1031] = {.lex_state = 240, .external_lex_state = 4}, - [1032] = {.lex_state = 240, .external_lex_state = 4}, - [1033] = {.lex_state = 240, .external_lex_state = 4}, - [1034] = {.lex_state = 240, .external_lex_state = 4}, - [1035] = {.lex_state = 240, .external_lex_state = 3}, - [1036] = {.lex_state = 240, .external_lex_state = 4}, - [1037] = {.lex_state = 240, .external_lex_state = 4}, - [1038] = {.lex_state = 240, .external_lex_state = 3}, - [1039] = {.lex_state = 240, .external_lex_state = 3}, - [1040] = {.lex_state = 240, .external_lex_state = 3}, - [1041] = {.lex_state = 240, .external_lex_state = 3}, - [1042] = {.lex_state = 240, .external_lex_state = 3}, - [1043] = {.lex_state = 240, .external_lex_state = 3}, - [1044] = {.lex_state = 240, .external_lex_state = 3}, - [1045] = {.lex_state = 49, .external_lex_state = 3}, - [1046] = {.lex_state = 240, .external_lex_state = 3}, - [1047] = {.lex_state = 238, .external_lex_state = 6}, - [1048] = {.lex_state = 49, .external_lex_state = 3}, - [1049] = {.lex_state = 238, .external_lex_state = 6}, - [1050] = {.lex_state = 238, .external_lex_state = 6}, - [1051] = {.lex_state = 238, .external_lex_state = 6}, - [1052] = {.lex_state = 49, .external_lex_state = 3}, - [1053] = {.lex_state = 238, .external_lex_state = 6}, - [1054] = {.lex_state = 240, .external_lex_state = 3}, - [1055] = {.lex_state = 240, .external_lex_state = 3}, - [1056] = {.lex_state = 240, .external_lex_state = 3}, - [1057] = {.lex_state = 240, .external_lex_state = 3}, - [1058] = {.lex_state = 240, .external_lex_state = 3}, - [1059] = {.lex_state = 240, .external_lex_state = 3}, - [1060] = {.lex_state = 240, .external_lex_state = 3}, - [1061] = {.lex_state = 240, .external_lex_state = 3}, - [1062] = {.lex_state = 240, .external_lex_state = 3}, - [1063] = {.lex_state = 240, .external_lex_state = 3}, - [1064] = {.lex_state = 240, .external_lex_state = 3}, - [1065] = {.lex_state = 240, .external_lex_state = 3}, - [1066] = {.lex_state = 240, .external_lex_state = 3}, - [1067] = {.lex_state = 240, .external_lex_state = 4}, - [1068] = {.lex_state = 240, .external_lex_state = 3}, - [1069] = {.lex_state = 240, .external_lex_state = 3}, - [1070] = {.lex_state = 240, .external_lex_state = 3}, - [1071] = {.lex_state = 240, .external_lex_state = 3}, - [1072] = {.lex_state = 240, .external_lex_state = 3}, - [1073] = {.lex_state = 240, .external_lex_state = 3}, - [1074] = {.lex_state = 240, .external_lex_state = 3}, - [1075] = {.lex_state = 240, .external_lex_state = 3}, - [1076] = {.lex_state = 240, .external_lex_state = 3}, - [1077] = {.lex_state = 240, .external_lex_state = 3}, - [1078] = {.lex_state = 240, .external_lex_state = 3}, - [1079] = {.lex_state = 240, .external_lex_state = 3}, - [1080] = {.lex_state = 240, .external_lex_state = 3}, - [1081] = {.lex_state = 240, .external_lex_state = 3}, - [1082] = {.lex_state = 49, .external_lex_state = 3}, - [1083] = {.lex_state = 240, .external_lex_state = 3}, - [1084] = {.lex_state = 240, .external_lex_state = 3}, - [1085] = {.lex_state = 240, .external_lex_state = 3}, - [1086] = {.lex_state = 240, .external_lex_state = 3}, - [1087] = {.lex_state = 240, .external_lex_state = 3}, - [1088] = {.lex_state = 240, .external_lex_state = 3}, - [1089] = {.lex_state = 240, .external_lex_state = 3}, - [1090] = {.lex_state = 240, .external_lex_state = 4}, - [1091] = {.lex_state = 240, .external_lex_state = 3}, - [1092] = {.lex_state = 240, .external_lex_state = 3}, - [1093] = {.lex_state = 240, .external_lex_state = 3}, - [1094] = {.lex_state = 240, .external_lex_state = 3}, - [1095] = {.lex_state = 240, .external_lex_state = 3}, - [1096] = {.lex_state = 240, .external_lex_state = 3}, - [1097] = {.lex_state = 240, .external_lex_state = 3}, - [1098] = {.lex_state = 240, .external_lex_state = 3}, - [1099] = {.lex_state = 240, .external_lex_state = 3}, - [1100] = {.lex_state = 240, .external_lex_state = 3}, - [1101] = {.lex_state = 240, .external_lex_state = 3}, - [1102] = {.lex_state = 49, .external_lex_state = 3}, - [1103] = {.lex_state = 240, .external_lex_state = 3}, - [1104] = {.lex_state = 240, .external_lex_state = 3}, - [1105] = {.lex_state = 240, .external_lex_state = 3}, - [1106] = {.lex_state = 240, .external_lex_state = 3}, - [1107] = {.lex_state = 240, .external_lex_state = 3}, - [1108] = {.lex_state = 240, .external_lex_state = 3}, - [1109] = {.lex_state = 240, .external_lex_state = 3}, - [1110] = {.lex_state = 240, .external_lex_state = 3}, - [1111] = {.lex_state = 240, .external_lex_state = 3}, - [1112] = {.lex_state = 240, .external_lex_state = 3}, - [1113] = {.lex_state = 240, .external_lex_state = 3}, - [1114] = {.lex_state = 240, .external_lex_state = 3}, - [1115] = {.lex_state = 240, .external_lex_state = 3}, - [1116] = {.lex_state = 240, .external_lex_state = 3}, - [1117] = {.lex_state = 240, .external_lex_state = 3}, - [1118] = {.lex_state = 240, .external_lex_state = 3}, - [1119] = {.lex_state = 240, .external_lex_state = 3}, - [1120] = {.lex_state = 240, .external_lex_state = 3}, - [1121] = {.lex_state = 240, .external_lex_state = 3}, - [1122] = {.lex_state = 240, .external_lex_state = 3}, - [1123] = {.lex_state = 240, .external_lex_state = 3}, - [1124] = {.lex_state = 240, .external_lex_state = 3}, - [1125] = {.lex_state = 240, .external_lex_state = 3}, - [1126] = {.lex_state = 240, .external_lex_state = 3}, - [1127] = {.lex_state = 240, .external_lex_state = 3}, - [1128] = {.lex_state = 238, .external_lex_state = 5}, - [1129] = {.lex_state = 50, .external_lex_state = 3}, - [1130] = {.lex_state = 50, .external_lex_state = 3}, - [1131] = {.lex_state = 50, .external_lex_state = 3}, - [1132] = {.lex_state = 49, .external_lex_state = 4}, - [1133] = {.lex_state = 238, .external_lex_state = 7}, - [1134] = {.lex_state = 49, .external_lex_state = 4}, - [1135] = {.lex_state = 238, .external_lex_state = 5}, - [1136] = {.lex_state = 238, .external_lex_state = 5}, - [1137] = {.lex_state = 238, .external_lex_state = 5}, - [1138] = {.lex_state = 240, .external_lex_state = 4}, - [1139] = {.lex_state = 240, .external_lex_state = 4}, - [1140] = {.lex_state = 238, .external_lex_state = 5}, - [1141] = {.lex_state = 238, .external_lex_state = 7}, - [1142] = {.lex_state = 238, .external_lex_state = 5}, - [1143] = {.lex_state = 238, .external_lex_state = 7}, - [1144] = {.lex_state = 49, .external_lex_state = 4}, - [1145] = {.lex_state = 50, .external_lex_state = 3}, - [1146] = {.lex_state = 238, .external_lex_state = 7}, - [1147] = {.lex_state = 50, .external_lex_state = 3}, - [1148] = {.lex_state = 240, .external_lex_state = 4}, - [1149] = {.lex_state = 49, .external_lex_state = 4}, - [1150] = {.lex_state = 49, .external_lex_state = 4}, - [1151] = {.lex_state = 238, .external_lex_state = 7}, - [1152] = {.lex_state = 49, .external_lex_state = 4}, - [1153] = {.lex_state = 50, .external_lex_state = 3}, - [1154] = {.lex_state = 238, .external_lex_state = 6}, - [1155] = {.lex_state = 238, .external_lex_state = 5}, - [1156] = {.lex_state = 238, .external_lex_state = 5}, - [1157] = {.lex_state = 49, .external_lex_state = 3}, - [1158] = {.lex_state = 238, .external_lex_state = 3}, - [1159] = {.lex_state = 49, .external_lex_state = 3}, - [1160] = {.lex_state = 49, .external_lex_state = 3}, - [1161] = {.lex_state = 49, .external_lex_state = 3}, - [1162] = {.lex_state = 49, .external_lex_state = 4}, - [1163] = {.lex_state = 49, .external_lex_state = 4}, - [1164] = {.lex_state = 238, .external_lex_state = 6}, - [1165] = {.lex_state = 49, .external_lex_state = 4}, - [1166] = {.lex_state = 49, .external_lex_state = 4}, - [1167] = {.lex_state = 49, .external_lex_state = 4}, - [1168] = {.lex_state = 49, .external_lex_state = 3}, - [1169] = {.lex_state = 238, .external_lex_state = 5}, - [1170] = {.lex_state = 49, .external_lex_state = 4}, - [1171] = {.lex_state = 238, .external_lex_state = 5}, - [1172] = {.lex_state = 238, .external_lex_state = 5}, - [1173] = {.lex_state = 49, .external_lex_state = 4}, - [1174] = {.lex_state = 238, .external_lex_state = 5}, - [1175] = {.lex_state = 238, .external_lex_state = 5}, - [1176] = {.lex_state = 49, .external_lex_state = 4}, - [1177] = {.lex_state = 238, .external_lex_state = 6}, - [1178] = {.lex_state = 49, .external_lex_state = 4}, - [1179] = {.lex_state = 49, .external_lex_state = 3}, - [1180] = {.lex_state = 49, .external_lex_state = 4}, - [1181] = {.lex_state = 49, .external_lex_state = 4}, - [1182] = {.lex_state = 49, .external_lex_state = 4}, - [1183] = {.lex_state = 238, .external_lex_state = 5}, - [1184] = {.lex_state = 49, .external_lex_state = 4}, - [1185] = {.lex_state = 238, .external_lex_state = 5}, - [1186] = {.lex_state = 238, .external_lex_state = 5}, - [1187] = {.lex_state = 49, .external_lex_state = 4}, - [1188] = {.lex_state = 238, .external_lex_state = 6}, - [1189] = {.lex_state = 238, .external_lex_state = 5}, - [1190] = {.lex_state = 238, .external_lex_state = 6}, - [1191] = {.lex_state = 238, .external_lex_state = 5}, - [1192] = {.lex_state = 238, .external_lex_state = 5}, - [1193] = {.lex_state = 238, .external_lex_state = 5}, - [1194] = {.lex_state = 49, .external_lex_state = 4}, - [1195] = {.lex_state = 238, .external_lex_state = 6}, - [1196] = {.lex_state = 49, .external_lex_state = 4}, - [1197] = {.lex_state = 238, .external_lex_state = 5}, - [1198] = {.lex_state = 238, .external_lex_state = 5}, - [1199] = {.lex_state = 49, .external_lex_state = 4}, - [1200] = {.lex_state = 50, .external_lex_state = 3}, - [1201] = {.lex_state = 238, .external_lex_state = 6}, - [1202] = {.lex_state = 49, .external_lex_state = 3}, - [1203] = {.lex_state = 238, .external_lex_state = 6}, - [1204] = {.lex_state = 50, .external_lex_state = 3}, - [1205] = {.lex_state = 238, .external_lex_state = 6}, - [1206] = {.lex_state = 238, .external_lex_state = 6}, - [1207] = {.lex_state = 238, .external_lex_state = 7}, - [1208] = {.lex_state = 49, .external_lex_state = 3}, - [1209] = {.lex_state = 238, .external_lex_state = 6}, - [1210] = {.lex_state = 49, .external_lex_state = 3}, - [1211] = {.lex_state = 50, .external_lex_state = 3}, - [1212] = {.lex_state = 238, .external_lex_state = 6}, - [1213] = {.lex_state = 238, .external_lex_state = 6}, - [1214] = {.lex_state = 49, .external_lex_state = 3}, - [1215] = {.lex_state = 49, .external_lex_state = 3}, - [1216] = {.lex_state = 50, .external_lex_state = 3}, - [1217] = {.lex_state = 238, .external_lex_state = 7}, - [1218] = {.lex_state = 238, .external_lex_state = 6}, - [1219] = {.lex_state = 238, .external_lex_state = 6}, - [1220] = {.lex_state = 238, .external_lex_state = 6}, - [1221] = {.lex_state = 238, .external_lex_state = 6}, - [1222] = {.lex_state = 50, .external_lex_state = 3}, - [1223] = {.lex_state = 238, .external_lex_state = 6}, - [1224] = {.lex_state = 238, .external_lex_state = 6}, - [1225] = {.lex_state = 50, .external_lex_state = 3}, - [1226] = {.lex_state = 238, .external_lex_state = 7}, - [1227] = {.lex_state = 49, .external_lex_state = 3}, - [1228] = {.lex_state = 49, .external_lex_state = 3}, - [1229] = {.lex_state = 238, .external_lex_state = 7}, - [1230] = {.lex_state = 238, .external_lex_state = 7}, - [1231] = {.lex_state = 238, .external_lex_state = 7}, - [1232] = {.lex_state = 50, .external_lex_state = 3}, - [1233] = {.lex_state = 238, .external_lex_state = 6}, - [1234] = {.lex_state = 49, .external_lex_state = 3}, - [1235] = {.lex_state = 49, .external_lex_state = 3}, - [1236] = {.lex_state = 49, .external_lex_state = 3}, - [1237] = {.lex_state = 238, .external_lex_state = 6}, - [1238] = {.lex_state = 49, .external_lex_state = 3}, - [1239] = {.lex_state = 238, .external_lex_state = 6}, - [1240] = {.lex_state = 49, .external_lex_state = 3}, - [1241] = {.lex_state = 49, .external_lex_state = 3}, - [1242] = {.lex_state = 49, .external_lex_state = 3}, - [1243] = {.lex_state = 49, .external_lex_state = 3}, - [1244] = {.lex_state = 49, .external_lex_state = 3}, - [1245] = {.lex_state = 49, .external_lex_state = 3}, - [1246] = {.lex_state = 238, .external_lex_state = 7}, - [1247] = {.lex_state = 50, .external_lex_state = 3}, - [1248] = {.lex_state = 50, .external_lex_state = 3}, - [1249] = {.lex_state = 241, .external_lex_state = 5}, - [1250] = {.lex_state = 238, .external_lex_state = 7}, - [1251] = {.lex_state = 55, .external_lex_state = 4}, - [1252] = {.lex_state = 57, .external_lex_state = 4}, - [1253] = {.lex_state = 238, .external_lex_state = 7}, - [1254] = {.lex_state = 53, .external_lex_state = 4}, - [1255] = {.lex_state = 238, .external_lex_state = 7}, - [1256] = {.lex_state = 50, .external_lex_state = 3}, - [1257] = {.lex_state = 53, .external_lex_state = 4}, - [1258] = {.lex_state = 242, .external_lex_state = 5}, - [1259] = {.lex_state = 241, .external_lex_state = 5}, - [1260] = {.lex_state = 241, .external_lex_state = 5}, - [1261] = {.lex_state = 50, .external_lex_state = 3}, - [1262] = {.lex_state = 238, .external_lex_state = 7}, - [1263] = {.lex_state = 50, .external_lex_state = 3}, - [1264] = {.lex_state = 50, .external_lex_state = 3}, - [1265] = {.lex_state = 238, .external_lex_state = 3}, - [1266] = {.lex_state = 53, .external_lex_state = 4}, - [1267] = {.lex_state = 238, .external_lex_state = 7}, - [1268] = {.lex_state = 50, .external_lex_state = 3}, - [1269] = {.lex_state = 242, .external_lex_state = 5}, - [1270] = {.lex_state = 238, .external_lex_state = 7}, - [1271] = {.lex_state = 50, .external_lex_state = 3}, - [1272] = {.lex_state = 59, .external_lex_state = 4}, - [1273] = {.lex_state = 238, .external_lex_state = 7}, - [1274] = {.lex_state = 50, .external_lex_state = 3}, - [1275] = {.lex_state = 50, .external_lex_state = 3}, - [1276] = {.lex_state = 53, .external_lex_state = 4}, - [1277] = {.lex_state = 53, .external_lex_state = 4}, - [1278] = {.lex_state = 238, .external_lex_state = 7}, - [1279] = {.lex_state = 50, .external_lex_state = 3}, - [1280] = {.lex_state = 238, .external_lex_state = 7}, - [1281] = {.lex_state = 241, .external_lex_state = 5}, - [1282] = {.lex_state = 238, .external_lex_state = 7}, - [1283] = {.lex_state = 50, .external_lex_state = 3}, - [1284] = {.lex_state = 50, .external_lex_state = 3}, - [1285] = {.lex_state = 50, .external_lex_state = 3}, - [1286] = {.lex_state = 50, .external_lex_state = 3}, - [1287] = {.lex_state = 238, .external_lex_state = 7}, - [1288] = {.lex_state = 238, .external_lex_state = 3}, - [1289] = {.lex_state = 57, .external_lex_state = 4}, - [1290] = {.lex_state = 238, .external_lex_state = 7}, - [1291] = {.lex_state = 238, .external_lex_state = 7}, - [1292] = {.lex_state = 238, .external_lex_state = 7}, - [1293] = {.lex_state = 50, .external_lex_state = 3}, - [1294] = {.lex_state = 238, .external_lex_state = 7}, - [1295] = {.lex_state = 50, .external_lex_state = 3}, - [1296] = {.lex_state = 59, .external_lex_state = 4}, - [1297] = {.lex_state = 55, .external_lex_state = 4}, - [1298] = {.lex_state = 241, .external_lex_state = 5}, - [1299] = {.lex_state = 55, .external_lex_state = 4}, - [1300] = {.lex_state = 241, .external_lex_state = 6}, - [1301] = {.lex_state = 242, .external_lex_state = 6}, - [1302] = {.lex_state = 240, .external_lex_state = 3}, - [1303] = {.lex_state = 241, .external_lex_state = 6}, - [1304] = {.lex_state = 240, .external_lex_state = 5}, - [1305] = {.lex_state = 55, .external_lex_state = 4}, - [1306] = {.lex_state = 60, .external_lex_state = 3}, - [1307] = {.lex_state = 241, .external_lex_state = 5}, - [1308] = {.lex_state = 242, .external_lex_state = 6}, - [1309] = {.lex_state = 53, .external_lex_state = 4}, - [1310] = {.lex_state = 52, .external_lex_state = 4}, - [1311] = {.lex_state = 60, .external_lex_state = 3}, - [1312] = {.lex_state = 241, .external_lex_state = 6}, - [1313] = {.lex_state = 241, .external_lex_state = 6}, - [1314] = {.lex_state = 52, .external_lex_state = 4}, - [1315] = {.lex_state = 241, .external_lex_state = 5}, - [1316] = {.lex_state = 238, .external_lex_state = 3}, - [1317] = {.lex_state = 241, .external_lex_state = 5}, - [1318] = {.lex_state = 53, .external_lex_state = 3}, + [1] = {.lex_state = 278, .external_lex_state = 2}, + [2] = {.lex_state = 269, .external_lex_state = 3}, + [3] = {.lex_state = 269, .external_lex_state = 3}, + [4] = {.lex_state = 269, .external_lex_state = 3}, + [5] = {.lex_state = 269, .external_lex_state = 3}, + [6] = {.lex_state = 269, .external_lex_state = 3}, + [7] = {.lex_state = 269, .external_lex_state = 3}, + [8] = {.lex_state = 269, .external_lex_state = 3}, + [9] = {.lex_state = 269, .external_lex_state = 3}, + [10] = {.lex_state = 269, .external_lex_state = 3}, + [11] = {.lex_state = 269, .external_lex_state = 3}, + [12] = {.lex_state = 269, .external_lex_state = 3}, + [13] = {.lex_state = 269, .external_lex_state = 3}, + [14] = {.lex_state = 269, .external_lex_state = 3}, + [15] = {.lex_state = 269, .external_lex_state = 3}, + [16] = {.lex_state = 269, .external_lex_state = 3}, + [17] = {.lex_state = 269, .external_lex_state = 3}, + [18] = {.lex_state = 269, .external_lex_state = 3}, + [19] = {.lex_state = 269, .external_lex_state = 3}, + [20] = {.lex_state = 269, .external_lex_state = 3}, + [21] = {.lex_state = 269, .external_lex_state = 3}, + [22] = {.lex_state = 269, .external_lex_state = 3}, + [23] = {.lex_state = 269, .external_lex_state = 3}, + [24] = {.lex_state = 269, .external_lex_state = 3}, + [25] = {.lex_state = 269, .external_lex_state = 3}, + [26] = {.lex_state = 269, .external_lex_state = 3}, + [27] = {.lex_state = 269, .external_lex_state = 4}, + [28] = {.lex_state = 269, .external_lex_state = 4}, + [29] = {.lex_state = 269, .external_lex_state = 4}, + [30] = {.lex_state = 269, .external_lex_state = 3}, + [31] = {.lex_state = 269, .external_lex_state = 4}, + [32] = {.lex_state = 269, .external_lex_state = 3}, + [33] = {.lex_state = 269, .external_lex_state = 3}, + [34] = {.lex_state = 269, .external_lex_state = 4}, + [35] = {.lex_state = 269, .external_lex_state = 4}, + [36] = {.lex_state = 269, .external_lex_state = 4}, + [37] = {.lex_state = 269, .external_lex_state = 3}, + [38] = {.lex_state = 269, .external_lex_state = 4}, + [39] = {.lex_state = 269, .external_lex_state = 4}, + [40] = {.lex_state = 269, .external_lex_state = 4}, + [41] = {.lex_state = 269, .external_lex_state = 5}, + [42] = {.lex_state = 269, .external_lex_state = 5}, + [43] = {.lex_state = 269, .external_lex_state = 5}, + [44] = {.lex_state = 269, .external_lex_state = 5}, + [45] = {.lex_state = 269, .external_lex_state = 5}, + [46] = {.lex_state = 269, .external_lex_state = 5}, + [47] = {.lex_state = 269, .external_lex_state = 5}, + [48] = {.lex_state = 269, .external_lex_state = 5}, + [49] = {.lex_state = 269, .external_lex_state = 5}, + [50] = {.lex_state = 269, .external_lex_state = 5}, + [51] = {.lex_state = 269, .external_lex_state = 4}, + [52] = {.lex_state = 63, .external_lex_state = 4}, + [53] = {.lex_state = 63, .external_lex_state = 4}, + [54] = {.lex_state = 269, .external_lex_state = 5}, + [55] = {.lex_state = 269, .external_lex_state = 5}, + [56] = {.lex_state = 63, .external_lex_state = 4}, + [57] = {.lex_state = 63, .external_lex_state = 4}, + [58] = {.lex_state = 269, .external_lex_state = 5}, + [59] = {.lex_state = 63, .external_lex_state = 4}, + [60] = {.lex_state = 269, .external_lex_state = 5}, + [61] = {.lex_state = 269, .external_lex_state = 5}, + [62] = {.lex_state = 269, .external_lex_state = 5}, + [63] = {.lex_state = 269, .external_lex_state = 5}, + [64] = {.lex_state = 269, .external_lex_state = 5}, + [65] = {.lex_state = 63, .external_lex_state = 4}, + [66] = {.lex_state = 269, .external_lex_state = 5}, + [67] = {.lex_state = 63, .external_lex_state = 4}, + [68] = {.lex_state = 63, .external_lex_state = 4}, + [69] = {.lex_state = 63, .external_lex_state = 4}, + [70] = {.lex_state = 63, .external_lex_state = 4}, + [71] = {.lex_state = 269, .external_lex_state = 3}, + [72] = {.lex_state = 269, .external_lex_state = 3}, + [73] = {.lex_state = 269, .external_lex_state = 4}, + [74] = {.lex_state = 269, .external_lex_state = 4}, + [75] = {.lex_state = 269, .external_lex_state = 4}, + [76] = {.lex_state = 63, .external_lex_state = 3}, + [77] = {.lex_state = 269, .external_lex_state = 4}, + [78] = {.lex_state = 269, .external_lex_state = 6}, + [79] = {.lex_state = 269, .external_lex_state = 4}, + [80] = {.lex_state = 269, .external_lex_state = 4}, + [81] = {.lex_state = 269, .external_lex_state = 4}, + [82] = {.lex_state = 63, .external_lex_state = 3}, + [83] = {.lex_state = 269, .external_lex_state = 3}, + [84] = {.lex_state = 269, .external_lex_state = 4}, + [85] = {.lex_state = 269, .external_lex_state = 4}, + [86] = {.lex_state = 269, .external_lex_state = 6}, + [87] = {.lex_state = 269, .external_lex_state = 3}, + [88] = {.lex_state = 269, .external_lex_state = 6}, + [89] = {.lex_state = 269, .external_lex_state = 3}, + [90] = {.lex_state = 269, .external_lex_state = 4}, + [91] = {.lex_state = 269, .external_lex_state = 3}, + [92] = {.lex_state = 63, .external_lex_state = 3}, + [93] = {.lex_state = 269, .external_lex_state = 4}, + [94] = {.lex_state = 269, .external_lex_state = 3}, + [95] = {.lex_state = 269, .external_lex_state = 6}, + [96] = {.lex_state = 70, .external_lex_state = 3}, + [97] = {.lex_state = 70, .external_lex_state = 3}, + [98] = {.lex_state = 269, .external_lex_state = 4}, + [99] = {.lex_state = 269, .external_lex_state = 3}, + [100] = {.lex_state = 269, .external_lex_state = 6}, + [101] = {.lex_state = 269, .external_lex_state = 3}, + [102] = {.lex_state = 269, .external_lex_state = 3}, + [103] = {.lex_state = 70, .external_lex_state = 3}, + [104] = {.lex_state = 269, .external_lex_state = 6}, + [105] = {.lex_state = 70, .external_lex_state = 3}, + [106] = {.lex_state = 70, .external_lex_state = 3}, + [107] = {.lex_state = 70, .external_lex_state = 3}, + [108] = {.lex_state = 269, .external_lex_state = 3}, + [109] = {.lex_state = 269, .external_lex_state = 3}, + [110] = {.lex_state = 269, .external_lex_state = 4}, + [111] = {.lex_state = 269, .external_lex_state = 3}, + [112] = {.lex_state = 269, .external_lex_state = 3}, + [113] = {.lex_state = 269, .external_lex_state = 3}, + [114] = {.lex_state = 269, .external_lex_state = 4}, + [115] = {.lex_state = 63, .external_lex_state = 3}, + [116] = {.lex_state = 269, .external_lex_state = 6}, + [117] = {.lex_state = 63, .external_lex_state = 3}, + [118] = {.lex_state = 70, .external_lex_state = 3}, + [119] = {.lex_state = 70, .external_lex_state = 3}, + [120] = {.lex_state = 269, .external_lex_state = 3}, + [121] = {.lex_state = 269, .external_lex_state = 4}, + [122] = {.lex_state = 269, .external_lex_state = 4}, + [123] = {.lex_state = 269, .external_lex_state = 3}, + [124] = {.lex_state = 269, .external_lex_state = 4}, + [125] = {.lex_state = 269, .external_lex_state = 3}, + [126] = {.lex_state = 269, .external_lex_state = 3}, + [127] = {.lex_state = 269, .external_lex_state = 3}, + [128] = {.lex_state = 70, .external_lex_state = 3}, + [129] = {.lex_state = 269, .external_lex_state = 6}, + [130] = {.lex_state = 70, .external_lex_state = 3}, + [131] = {.lex_state = 70, .external_lex_state = 3}, + [132] = {.lex_state = 269, .external_lex_state = 4}, + [133] = {.lex_state = 70, .external_lex_state = 3}, + [134] = {.lex_state = 269, .external_lex_state = 3}, + [135] = {.lex_state = 269, .external_lex_state = 3}, + [136] = {.lex_state = 269, .external_lex_state = 4}, + [137] = {.lex_state = 269, .external_lex_state = 4}, + [138] = {.lex_state = 269, .external_lex_state = 6}, + [139] = {.lex_state = 269, .external_lex_state = 3}, + [140] = {.lex_state = 63, .external_lex_state = 3}, + [141] = {.lex_state = 63, .external_lex_state = 3}, + [142] = {.lex_state = 269, .external_lex_state = 3}, + [143] = {.lex_state = 269, .external_lex_state = 3}, + [144] = {.lex_state = 269, .external_lex_state = 3}, + [145] = {.lex_state = 269, .external_lex_state = 3}, + [146] = {.lex_state = 269, .external_lex_state = 6}, + [147] = {.lex_state = 269, .external_lex_state = 3}, + [148] = {.lex_state = 269, .external_lex_state = 4}, + [149] = {.lex_state = 63, .external_lex_state = 3}, + [150] = {.lex_state = 269, .external_lex_state = 3}, + [151] = {.lex_state = 269, .external_lex_state = 3}, + [152] = {.lex_state = 63, .external_lex_state = 3}, + [153] = {.lex_state = 269, .external_lex_state = 4}, + [154] = {.lex_state = 269, .external_lex_state = 3}, + [155] = {.lex_state = 63, .external_lex_state = 3}, + [156] = {.lex_state = 269, .external_lex_state = 3}, + [157] = {.lex_state = 70, .external_lex_state = 3}, + [158] = {.lex_state = 269, .external_lex_state = 7}, + [159] = {.lex_state = 269, .external_lex_state = 3}, + [160] = {.lex_state = 269, .external_lex_state = 3}, + [161] = {.lex_state = 269, .external_lex_state = 4}, + [162] = {.lex_state = 272, .external_lex_state = 3}, + [163] = {.lex_state = 269, .external_lex_state = 3}, + [164] = {.lex_state = 269, .external_lex_state = 4}, + [165] = {.lex_state = 272, .external_lex_state = 3}, + [166] = {.lex_state = 70, .external_lex_state = 3}, + [167] = {.lex_state = 272, .external_lex_state = 3}, + [168] = {.lex_state = 269, .external_lex_state = 7}, + [169] = {.lex_state = 269, .external_lex_state = 3}, + [170] = {.lex_state = 272, .external_lex_state = 3}, + [171] = {.lex_state = 272, .external_lex_state = 3}, + [172] = {.lex_state = 70, .external_lex_state = 3}, + [173] = {.lex_state = 269, .external_lex_state = 7}, + [174] = {.lex_state = 269, .external_lex_state = 3}, + [175] = {.lex_state = 272, .external_lex_state = 3}, + [176] = {.lex_state = 269, .external_lex_state = 7}, + [177] = {.lex_state = 269, .external_lex_state = 3}, + [178] = {.lex_state = 269, .external_lex_state = 4}, + [179] = {.lex_state = 272, .external_lex_state = 3}, + [180] = {.lex_state = 272, .external_lex_state = 3}, + [181] = {.lex_state = 269, .external_lex_state = 3}, + [182] = {.lex_state = 70, .external_lex_state = 3}, + [183] = {.lex_state = 269, .external_lex_state = 3}, + [184] = {.lex_state = 269, .external_lex_state = 7}, + [185] = {.lex_state = 269, .external_lex_state = 7}, + [186] = {.lex_state = 272, .external_lex_state = 3}, + [187] = {.lex_state = 272, .external_lex_state = 3}, + [188] = {.lex_state = 269, .external_lex_state = 7}, + [189] = {.lex_state = 269, .external_lex_state = 3}, + [190] = {.lex_state = 269, .external_lex_state = 4}, + [191] = {.lex_state = 269, .external_lex_state = 7}, + [192] = {.lex_state = 269, .external_lex_state = 7}, + [193] = {.lex_state = 272, .external_lex_state = 3}, + [194] = {.lex_state = 70, .external_lex_state = 3}, + [195] = {.lex_state = 272, .external_lex_state = 3}, + [196] = {.lex_state = 70, .external_lex_state = 3}, + [197] = {.lex_state = 269, .external_lex_state = 7}, + [198] = {.lex_state = 70, .external_lex_state = 3}, + [199] = {.lex_state = 272, .external_lex_state = 3}, + [200] = {.lex_state = 269, .external_lex_state = 3}, + [201] = {.lex_state = 269, .external_lex_state = 7}, + [202] = {.lex_state = 269, .external_lex_state = 4}, + [203] = {.lex_state = 70, .external_lex_state = 3}, + [204] = {.lex_state = 269, .external_lex_state = 3}, + [205] = {.lex_state = 269, .external_lex_state = 4}, + [206] = {.lex_state = 269, .external_lex_state = 3}, + [207] = {.lex_state = 70, .external_lex_state = 3}, + [208] = {.lex_state = 272, .external_lex_state = 3}, + [209] = {.lex_state = 272, .external_lex_state = 3}, + [210] = {.lex_state = 269, .external_lex_state = 3}, + [211] = {.lex_state = 269, .external_lex_state = 3}, + [212] = {.lex_state = 272, .external_lex_state = 3}, + [213] = {.lex_state = 70, .external_lex_state = 3}, + [214] = {.lex_state = 272, .external_lex_state = 3}, + [215] = {.lex_state = 269, .external_lex_state = 4}, + [216] = {.lex_state = 269, .external_lex_state = 3}, + [217] = {.lex_state = 70, .external_lex_state = 3}, + [218] = {.lex_state = 272, .external_lex_state = 3}, + [219] = {.lex_state = 70, .external_lex_state = 3}, + [220] = {.lex_state = 269, .external_lex_state = 7}, + [221] = {.lex_state = 269, .external_lex_state = 4}, + [222] = {.lex_state = 70, .external_lex_state = 3}, + [223] = {.lex_state = 269, .external_lex_state = 3}, + [224] = {.lex_state = 269, .external_lex_state = 4}, + [225] = {.lex_state = 269, .external_lex_state = 3}, + [226] = {.lex_state = 269, .external_lex_state = 3}, + [227] = {.lex_state = 269, .external_lex_state = 4}, + [228] = {.lex_state = 70, .external_lex_state = 3}, + [229] = {.lex_state = 269, .external_lex_state = 3}, + [230] = {.lex_state = 70, .external_lex_state = 3}, + [231] = {.lex_state = 269, .external_lex_state = 3}, + [232] = {.lex_state = 70, .external_lex_state = 3}, + [233] = {.lex_state = 70, .external_lex_state = 3}, + [234] = {.lex_state = 272, .external_lex_state = 3}, + [235] = {.lex_state = 70, .external_lex_state = 3}, + [236] = {.lex_state = 70, .external_lex_state = 3}, + [237] = {.lex_state = 269, .external_lex_state = 7}, + [238] = {.lex_state = 272, .external_lex_state = 3}, + [239] = {.lex_state = 272, .external_lex_state = 3}, + [240] = {.lex_state = 272, .external_lex_state = 3}, + [241] = {.lex_state = 269, .external_lex_state = 4}, + [242] = {.lex_state = 272, .external_lex_state = 3}, + [243] = {.lex_state = 269, .external_lex_state = 3}, + [244] = {.lex_state = 269, .external_lex_state = 7}, + [245] = {.lex_state = 269, .external_lex_state = 3}, + [246] = {.lex_state = 269, .external_lex_state = 4}, + [247] = {.lex_state = 70, .external_lex_state = 3}, + [248] = {.lex_state = 269, .external_lex_state = 4}, + [249] = {.lex_state = 269, .external_lex_state = 3}, + [250] = {.lex_state = 269, .external_lex_state = 4}, + [251] = {.lex_state = 269, .external_lex_state = 4}, + [252] = {.lex_state = 269, .external_lex_state = 4}, + [253] = {.lex_state = 269, .external_lex_state = 3}, + [254] = {.lex_state = 269, .external_lex_state = 4}, + [255] = {.lex_state = 269, .external_lex_state = 4}, + [256] = {.lex_state = 269, .external_lex_state = 4}, + [257] = {.lex_state = 269, .external_lex_state = 3}, + [258] = {.lex_state = 269, .external_lex_state = 4}, + [259] = {.lex_state = 269, .external_lex_state = 4}, + [260] = {.lex_state = 269, .external_lex_state = 4}, + [261] = {.lex_state = 269, .external_lex_state = 4}, + [262] = {.lex_state = 269, .external_lex_state = 4}, + [263] = {.lex_state = 269, .external_lex_state = 4}, + [264] = {.lex_state = 269, .external_lex_state = 7}, + [265] = {.lex_state = 269, .external_lex_state = 4}, + [266] = {.lex_state = 269, .external_lex_state = 4}, + [267] = {.lex_state = 269, .external_lex_state = 7}, + [268] = {.lex_state = 269, .external_lex_state = 7}, + [269] = {.lex_state = 269, .external_lex_state = 4}, + [270] = {.lex_state = 269, .external_lex_state = 7}, + [271] = {.lex_state = 269, .external_lex_state = 7}, + [272] = {.lex_state = 269, .external_lex_state = 4}, + [273] = {.lex_state = 269, .external_lex_state = 4}, + [274] = {.lex_state = 269, .external_lex_state = 4}, + [275] = {.lex_state = 269, .external_lex_state = 4}, + [276] = {.lex_state = 269, .external_lex_state = 4}, + [277] = {.lex_state = 269, .external_lex_state = 4}, + [278] = {.lex_state = 269, .external_lex_state = 4}, + [279] = {.lex_state = 269, .external_lex_state = 4}, + [280] = {.lex_state = 269, .external_lex_state = 7}, + [281] = {.lex_state = 269, .external_lex_state = 3}, + [282] = {.lex_state = 269, .external_lex_state = 3}, + [283] = {.lex_state = 269, .external_lex_state = 3}, + [284] = {.lex_state = 269, .external_lex_state = 3}, + [285] = {.lex_state = 269, .external_lex_state = 3}, + [286] = {.lex_state = 269, .external_lex_state = 3}, + [287] = {.lex_state = 269, .external_lex_state = 3}, + [288] = {.lex_state = 269, .external_lex_state = 3}, + [289] = {.lex_state = 269, .external_lex_state = 3}, + [290] = {.lex_state = 269, .external_lex_state = 3}, + [291] = {.lex_state = 269, .external_lex_state = 3}, + [292] = {.lex_state = 269, .external_lex_state = 3}, + [293] = {.lex_state = 269, .external_lex_state = 3}, + [294] = {.lex_state = 269, .external_lex_state = 3}, + [295] = {.lex_state = 269, .external_lex_state = 3}, + [296] = {.lex_state = 269, .external_lex_state = 3}, + [297] = {.lex_state = 269, .external_lex_state = 3}, + [298] = {.lex_state = 269, .external_lex_state = 3}, + [299] = {.lex_state = 269, .external_lex_state = 3}, + [300] = {.lex_state = 269, .external_lex_state = 3}, + [301] = {.lex_state = 269, .external_lex_state = 3}, + [302] = {.lex_state = 269, .external_lex_state = 3}, + [303] = {.lex_state = 269, .external_lex_state = 3}, + [304] = {.lex_state = 269, .external_lex_state = 3}, + [305] = {.lex_state = 269, .external_lex_state = 3}, + [306] = {.lex_state = 269, .external_lex_state = 3}, + [307] = {.lex_state = 269, .external_lex_state = 3}, + [308] = {.lex_state = 269, .external_lex_state = 3}, + [309] = {.lex_state = 269, .external_lex_state = 3}, + [310] = {.lex_state = 269, .external_lex_state = 3}, + [311] = {.lex_state = 269, .external_lex_state = 3}, + [312] = {.lex_state = 269, .external_lex_state = 3}, + [313] = {.lex_state = 269, .external_lex_state = 3}, + [314] = {.lex_state = 269, .external_lex_state = 3}, + [315] = {.lex_state = 269, .external_lex_state = 3}, + [316] = {.lex_state = 269, .external_lex_state = 3}, + [317] = {.lex_state = 269, .external_lex_state = 3}, + [318] = {.lex_state = 269, .external_lex_state = 3}, + [319] = {.lex_state = 269, .external_lex_state = 3}, + [320] = {.lex_state = 269, .external_lex_state = 3}, + [321] = {.lex_state = 269, .external_lex_state = 3}, + [322] = {.lex_state = 278, .external_lex_state = 2}, + [323] = {.lex_state = 278, .external_lex_state = 2}, + [324] = {.lex_state = 278, .external_lex_state = 2}, + [325] = {.lex_state = 278, .external_lex_state = 2}, + [326] = {.lex_state = 278, .external_lex_state = 2}, + [327] = {.lex_state = 278, .external_lex_state = 2}, + [328] = {.lex_state = 278, .external_lex_state = 2}, + [329] = {.lex_state = 278, .external_lex_state = 2}, + [330] = {.lex_state = 278, .external_lex_state = 8}, + [331] = {.lex_state = 278, .external_lex_state = 8}, + [332] = {.lex_state = 278, .external_lex_state = 2}, + [333] = {.lex_state = 278, .external_lex_state = 2}, + [334] = {.lex_state = 278, .external_lex_state = 8}, + [335] = {.lex_state = 278, .external_lex_state = 2}, + [336] = {.lex_state = 278, .external_lex_state = 2}, + [337] = {.lex_state = 278, .external_lex_state = 2}, + [338] = {.lex_state = 278, .external_lex_state = 2}, + [339] = {.lex_state = 278, .external_lex_state = 8}, + [340] = {.lex_state = 278, .external_lex_state = 8}, + [341] = {.lex_state = 278, .external_lex_state = 8}, + [342] = {.lex_state = 278, .external_lex_state = 8}, + [343] = {.lex_state = 278, .external_lex_state = 2}, + [344] = {.lex_state = 278, .external_lex_state = 2}, + [345] = {.lex_state = 278, .external_lex_state = 2}, + [346] = {.lex_state = 278, .external_lex_state = 2}, + [347] = {.lex_state = 278, .external_lex_state = 2}, + [348] = {.lex_state = 278, .external_lex_state = 2}, + [349] = {.lex_state = 278, .external_lex_state = 2}, + [350] = {.lex_state = 278, .external_lex_state = 2}, + [351] = {.lex_state = 278, .external_lex_state = 3}, + [352] = {.lex_state = 85, .external_lex_state = 2}, + [353] = {.lex_state = 278, .external_lex_state = 8}, + [354] = {.lex_state = 85, .external_lex_state = 2}, + [355] = {.lex_state = 278, .external_lex_state = 2}, + [356] = {.lex_state = 279, .external_lex_state = 3}, + [357] = {.lex_state = 278, .external_lex_state = 2}, + [358] = {.lex_state = 278, .external_lex_state = 2}, + [359] = {.lex_state = 279, .external_lex_state = 2}, + [360] = {.lex_state = 279, .external_lex_state = 2}, + [361] = {.lex_state = 279, .external_lex_state = 2}, + [362] = {.lex_state = 279, .external_lex_state = 2}, + [363] = {.lex_state = 279, .external_lex_state = 2}, + [364] = {.lex_state = 278, .external_lex_state = 2}, + [365] = {.lex_state = 279, .external_lex_state = 2}, + [366] = {.lex_state = 278, .external_lex_state = 2}, + [367] = {.lex_state = 278, .external_lex_state = 2}, + [368] = {.lex_state = 279, .external_lex_state = 2}, + [369] = {.lex_state = 279, .external_lex_state = 2}, + [370] = {.lex_state = 279, .external_lex_state = 2}, + [371] = {.lex_state = 278, .external_lex_state = 2}, + [372] = {.lex_state = 279, .external_lex_state = 2}, + [373] = {.lex_state = 279, .external_lex_state = 2}, + [374] = {.lex_state = 279, .external_lex_state = 2}, + [375] = {.lex_state = 279, .external_lex_state = 2}, + [376] = {.lex_state = 278, .external_lex_state = 2}, + [377] = {.lex_state = 278, .external_lex_state = 2}, + [378] = {.lex_state = 279, .external_lex_state = 2}, + [379] = {.lex_state = 278, .external_lex_state = 2}, + [380] = {.lex_state = 278, .external_lex_state = 2}, + [381] = {.lex_state = 279, .external_lex_state = 2}, + [382] = {.lex_state = 278, .external_lex_state = 3}, + [383] = {.lex_state = 278, .external_lex_state = 2}, + [384] = {.lex_state = 278, .external_lex_state = 2}, + [385] = {.lex_state = 278, .external_lex_state = 3}, + [386] = {.lex_state = 278, .external_lex_state = 3}, + [387] = {.lex_state = 278, .external_lex_state = 2}, + [388] = {.lex_state = 278, .external_lex_state = 2}, + [389] = {.lex_state = 278, .external_lex_state = 3}, + [390] = {.lex_state = 278, .external_lex_state = 3}, + [391] = {.lex_state = 278, .external_lex_state = 3}, + [392] = {.lex_state = 278, .external_lex_state = 2}, + [393] = {.lex_state = 278, .external_lex_state = 2}, + [394] = {.lex_state = 278, .external_lex_state = 3}, + [395] = {.lex_state = 278, .external_lex_state = 3}, + [396] = {.lex_state = 278, .external_lex_state = 3}, + [397] = {.lex_state = 278, .external_lex_state = 3}, + [398] = {.lex_state = 278, .external_lex_state = 3}, + [399] = {.lex_state = 278, .external_lex_state = 3}, + [400] = {.lex_state = 278, .external_lex_state = 2}, + [401] = {.lex_state = 278, .external_lex_state = 3}, + [402] = {.lex_state = 278, .external_lex_state = 3}, + [403] = {.lex_state = 278, .external_lex_state = 3}, + [404] = {.lex_state = 278, .external_lex_state = 3}, + [405] = {.lex_state = 278, .external_lex_state = 2}, + [406] = {.lex_state = 278, .external_lex_state = 2}, + [407] = {.lex_state = 278, .external_lex_state = 3}, + [408] = {.lex_state = 278, .external_lex_state = 3}, + [409] = {.lex_state = 278, .external_lex_state = 3}, + [410] = {.lex_state = 278, .external_lex_state = 3}, + [411] = {.lex_state = 278, .external_lex_state = 2}, + [412] = {.lex_state = 278, .external_lex_state = 2}, + [413] = {.lex_state = 278, .external_lex_state = 3}, + [414] = {.lex_state = 278, .external_lex_state = 2}, + [415] = {.lex_state = 278, .external_lex_state = 2}, + [416] = {.lex_state = 278, .external_lex_state = 2}, + [417] = {.lex_state = 278, .external_lex_state = 2}, + [418] = {.lex_state = 278, .external_lex_state = 2}, + [419] = {.lex_state = 278, .external_lex_state = 2}, + [420] = {.lex_state = 278, .external_lex_state = 2}, + [421] = {.lex_state = 278, .external_lex_state = 2}, + [422] = {.lex_state = 278, .external_lex_state = 2}, + [423] = {.lex_state = 278, .external_lex_state = 2}, + [424] = {.lex_state = 278, .external_lex_state = 2}, + [425] = {.lex_state = 278, .external_lex_state = 3}, + [426] = {.lex_state = 278, .external_lex_state = 3}, + [427] = {.lex_state = 278, .external_lex_state = 2}, + [428] = {.lex_state = 278, .external_lex_state = 8}, + [429] = {.lex_state = 278, .external_lex_state = 2}, + [430] = {.lex_state = 278, .external_lex_state = 2}, + [431] = {.lex_state = 278, .external_lex_state = 2}, + [432] = {.lex_state = 278, .external_lex_state = 2}, + [433] = {.lex_state = 278, .external_lex_state = 2}, + [434] = {.lex_state = 278, .external_lex_state = 2}, + [435] = {.lex_state = 278, .external_lex_state = 2}, + [436] = {.lex_state = 278, .external_lex_state = 2}, + [437] = {.lex_state = 278, .external_lex_state = 2}, + [438] = {.lex_state = 278, .external_lex_state = 2}, + [439] = {.lex_state = 278, .external_lex_state = 2}, + [440] = {.lex_state = 278, .external_lex_state = 2}, + [441] = {.lex_state = 278, .external_lex_state = 2}, + [442] = {.lex_state = 278, .external_lex_state = 2}, + [443] = {.lex_state = 278, .external_lex_state = 2}, + [444] = {.lex_state = 278, .external_lex_state = 2}, + [445] = {.lex_state = 278, .external_lex_state = 2}, + [446] = {.lex_state = 278, .external_lex_state = 2}, + [447] = {.lex_state = 278, .external_lex_state = 2}, + [448] = {.lex_state = 278, .external_lex_state = 2}, + [449] = {.lex_state = 278, .external_lex_state = 2}, + [450] = {.lex_state = 278, .external_lex_state = 2}, + [451] = {.lex_state = 278, .external_lex_state = 2}, + [452] = {.lex_state = 278, .external_lex_state = 2}, + [453] = {.lex_state = 278, .external_lex_state = 2}, + [454] = {.lex_state = 278, .external_lex_state = 2}, + [455] = {.lex_state = 278, .external_lex_state = 2}, + [456] = {.lex_state = 278, .external_lex_state = 2}, + [457] = {.lex_state = 278, .external_lex_state = 2}, + [458] = {.lex_state = 278, .external_lex_state = 2}, + [459] = {.lex_state = 278, .external_lex_state = 2}, + [460] = {.lex_state = 278, .external_lex_state = 2}, + [461] = {.lex_state = 278, .external_lex_state = 2}, + [462] = {.lex_state = 278, .external_lex_state = 2}, + [463] = {.lex_state = 278, .external_lex_state = 2}, + [464] = {.lex_state = 278, .external_lex_state = 2}, + [465] = {.lex_state = 278, .external_lex_state = 2}, + [466] = {.lex_state = 278, .external_lex_state = 2}, + [467] = {.lex_state = 278, .external_lex_state = 2}, + [468] = {.lex_state = 278, .external_lex_state = 2}, + [469] = {.lex_state = 278, .external_lex_state = 2}, + [470] = {.lex_state = 278, .external_lex_state = 2}, + [471] = {.lex_state = 278, .external_lex_state = 2}, + [472] = {.lex_state = 278, .external_lex_state = 2}, + [473] = {.lex_state = 278, .external_lex_state = 2}, + [474] = {.lex_state = 278, .external_lex_state = 2}, + [475] = {.lex_state = 278, .external_lex_state = 2}, + [476] = {.lex_state = 278, .external_lex_state = 2}, + [477] = {.lex_state = 278, .external_lex_state = 2}, + [478] = {.lex_state = 278, .external_lex_state = 2}, + [479] = {.lex_state = 278, .external_lex_state = 2}, + [480] = {.lex_state = 278, .external_lex_state = 2}, + [481] = {.lex_state = 278, .external_lex_state = 2}, + [482] = {.lex_state = 278, .external_lex_state = 2}, + [483] = {.lex_state = 278, .external_lex_state = 2}, + [484] = {.lex_state = 278, .external_lex_state = 2}, + [485] = {.lex_state = 278, .external_lex_state = 2}, + [486] = {.lex_state = 278, .external_lex_state = 2}, + [487] = {.lex_state = 278, .external_lex_state = 2}, + [488] = {.lex_state = 278, .external_lex_state = 2}, + [489] = {.lex_state = 278, .external_lex_state = 2}, + [490] = {.lex_state = 278, .external_lex_state = 2}, + [491] = {.lex_state = 278, .external_lex_state = 2}, + [492] = {.lex_state = 278, .external_lex_state = 2}, + [493] = {.lex_state = 278, .external_lex_state = 2}, + [494] = {.lex_state = 278, .external_lex_state = 2}, + [495] = {.lex_state = 278, .external_lex_state = 2}, + [496] = {.lex_state = 278, .external_lex_state = 2}, + [497] = {.lex_state = 278, .external_lex_state = 2}, + [498] = {.lex_state = 278, .external_lex_state = 2}, + [499] = {.lex_state = 278, .external_lex_state = 2}, + [500] = {.lex_state = 278, .external_lex_state = 2}, + [501] = {.lex_state = 278, .external_lex_state = 2}, + [502] = {.lex_state = 278, .external_lex_state = 2}, + [503] = {.lex_state = 278, .external_lex_state = 2}, + [504] = {.lex_state = 278, .external_lex_state = 2}, + [505] = {.lex_state = 278, .external_lex_state = 2}, + [506] = {.lex_state = 278, .external_lex_state = 2}, + [507] = {.lex_state = 278, .external_lex_state = 2}, + [508] = {.lex_state = 278, .external_lex_state = 2}, + [509] = {.lex_state = 278, .external_lex_state = 2}, + [510] = {.lex_state = 278, .external_lex_state = 2}, + [511] = {.lex_state = 278, .external_lex_state = 2}, + [512] = {.lex_state = 278, .external_lex_state = 2}, + [513] = {.lex_state = 278, .external_lex_state = 2}, + [514] = {.lex_state = 278, .external_lex_state = 2}, + [515] = {.lex_state = 278, .external_lex_state = 2}, + [516] = {.lex_state = 278, .external_lex_state = 2}, + [517] = {.lex_state = 278, .external_lex_state = 2}, + [518] = {.lex_state = 278, .external_lex_state = 2}, + [519] = {.lex_state = 278, .external_lex_state = 2}, + [520] = {.lex_state = 278, .external_lex_state = 2}, + [521] = {.lex_state = 278, .external_lex_state = 2}, + [522] = {.lex_state = 278, .external_lex_state = 2}, + [523] = {.lex_state = 278, .external_lex_state = 2}, + [524] = {.lex_state = 278, .external_lex_state = 2}, + [525] = {.lex_state = 278, .external_lex_state = 2}, + [526] = {.lex_state = 278, .external_lex_state = 2}, + [527] = {.lex_state = 278, .external_lex_state = 2}, + [528] = {.lex_state = 278, .external_lex_state = 2}, + [529] = {.lex_state = 278, .external_lex_state = 2}, + [530] = {.lex_state = 278, .external_lex_state = 2}, + [531] = {.lex_state = 278, .external_lex_state = 2}, + [532] = {.lex_state = 278, .external_lex_state = 2}, + [533] = {.lex_state = 278, .external_lex_state = 2}, + [534] = {.lex_state = 278, .external_lex_state = 2}, + [535] = {.lex_state = 278, .external_lex_state = 2}, + [536] = {.lex_state = 278, .external_lex_state = 2}, + [537] = {.lex_state = 278, .external_lex_state = 2}, + [538] = {.lex_state = 278, .external_lex_state = 2}, + [539] = {.lex_state = 278, .external_lex_state = 2}, + [540] = {.lex_state = 278, .external_lex_state = 2}, + [541] = {.lex_state = 278, .external_lex_state = 2}, + [542] = {.lex_state = 278, .external_lex_state = 2}, + [543] = {.lex_state = 278, .external_lex_state = 2}, + [544] = {.lex_state = 278, .external_lex_state = 2}, + [545] = {.lex_state = 278, .external_lex_state = 2}, + [546] = {.lex_state = 278, .external_lex_state = 2}, + [547] = {.lex_state = 278, .external_lex_state = 2}, + [548] = {.lex_state = 278, .external_lex_state = 2}, + [549] = {.lex_state = 278, .external_lex_state = 2}, + [550] = {.lex_state = 278, .external_lex_state = 2}, + [551] = {.lex_state = 278, .external_lex_state = 2}, + [552] = {.lex_state = 278, .external_lex_state = 2}, + [553] = {.lex_state = 278, .external_lex_state = 2}, + [554] = {.lex_state = 278, .external_lex_state = 2}, + [555] = {.lex_state = 278, .external_lex_state = 2}, + [556] = {.lex_state = 278, .external_lex_state = 2}, + [557] = {.lex_state = 278, .external_lex_state = 2}, + [558] = {.lex_state = 278, .external_lex_state = 2}, + [559] = {.lex_state = 278, .external_lex_state = 2}, + [560] = {.lex_state = 278, .external_lex_state = 2}, + [561] = {.lex_state = 278, .external_lex_state = 2}, + [562] = {.lex_state = 278, .external_lex_state = 2}, + [563] = {.lex_state = 278, .external_lex_state = 2}, + [564] = {.lex_state = 278, .external_lex_state = 2}, + [565] = {.lex_state = 278, .external_lex_state = 2}, + [566] = {.lex_state = 278, .external_lex_state = 2}, + [567] = {.lex_state = 278, .external_lex_state = 2}, + [568] = {.lex_state = 278, .external_lex_state = 2}, + [569] = {.lex_state = 278, .external_lex_state = 2}, + [570] = {.lex_state = 278, .external_lex_state = 2}, + [571] = {.lex_state = 278, .external_lex_state = 2}, + [572] = {.lex_state = 278, .external_lex_state = 2}, + [573] = {.lex_state = 278, .external_lex_state = 2}, + [574] = {.lex_state = 278, .external_lex_state = 2}, + [575] = {.lex_state = 278, .external_lex_state = 2}, + [576] = {.lex_state = 278, .external_lex_state = 2}, + [577] = {.lex_state = 278, .external_lex_state = 2}, + [578] = {.lex_state = 278, .external_lex_state = 2}, + [579] = {.lex_state = 278, .external_lex_state = 2}, + [580] = {.lex_state = 278, .external_lex_state = 2}, + [581] = {.lex_state = 278, .external_lex_state = 2}, + [582] = {.lex_state = 278, .external_lex_state = 2}, + [583] = {.lex_state = 278, .external_lex_state = 2}, + [584] = {.lex_state = 278, .external_lex_state = 2}, + [585] = {.lex_state = 278, .external_lex_state = 2}, + [586] = {.lex_state = 278, .external_lex_state = 2}, + [587] = {.lex_state = 278, .external_lex_state = 2}, + [588] = {.lex_state = 278, .external_lex_state = 2}, + [589] = {.lex_state = 278, .external_lex_state = 2}, + [590] = {.lex_state = 278, .external_lex_state = 2}, + [591] = {.lex_state = 278, .external_lex_state = 2}, + [592] = {.lex_state = 278, .external_lex_state = 2}, + [593] = {.lex_state = 278, .external_lex_state = 2}, + [594] = {.lex_state = 278, .external_lex_state = 2}, + [595] = {.lex_state = 278, .external_lex_state = 2}, + [596] = {.lex_state = 278, .external_lex_state = 2}, + [597] = {.lex_state = 278, .external_lex_state = 2}, + [598] = {.lex_state = 278, .external_lex_state = 2}, + [599] = {.lex_state = 278, .external_lex_state = 2}, + [600] = {.lex_state = 278, .external_lex_state = 2}, + [601] = {.lex_state = 278, .external_lex_state = 2}, + [602] = {.lex_state = 278, .external_lex_state = 2}, + [603] = {.lex_state = 278, .external_lex_state = 2}, + [604] = {.lex_state = 278, .external_lex_state = 2}, + [605] = {.lex_state = 278, .external_lex_state = 2}, + [606] = {.lex_state = 278, .external_lex_state = 2}, + [607] = {.lex_state = 278, .external_lex_state = 2}, + [608] = {.lex_state = 278, .external_lex_state = 2}, + [609] = {.lex_state = 278, .external_lex_state = 2}, + [610] = {.lex_state = 278, .external_lex_state = 2}, + [611] = {.lex_state = 278, .external_lex_state = 2}, + [612] = {.lex_state = 278, .external_lex_state = 2}, + [613] = {.lex_state = 278, .external_lex_state = 2}, + [614] = {.lex_state = 278, .external_lex_state = 2}, + [615] = {.lex_state = 278, .external_lex_state = 2}, + [616] = {.lex_state = 278, .external_lex_state = 2}, + [617] = {.lex_state = 278, .external_lex_state = 2}, + [618] = {.lex_state = 278, .external_lex_state = 2}, + [619] = {.lex_state = 278, .external_lex_state = 2}, + [620] = {.lex_state = 278, .external_lex_state = 2}, + [621] = {.lex_state = 278, .external_lex_state = 2}, + [622] = {.lex_state = 278, .external_lex_state = 2}, + [623] = {.lex_state = 278, .external_lex_state = 2}, + [624] = {.lex_state = 278, .external_lex_state = 2}, + [625] = {.lex_state = 278, .external_lex_state = 2}, + [626] = {.lex_state = 278, .external_lex_state = 2}, + [627] = {.lex_state = 278, .external_lex_state = 2}, + [628] = {.lex_state = 278, .external_lex_state = 2}, + [629] = {.lex_state = 278, .external_lex_state = 2}, + [630] = {.lex_state = 278, .external_lex_state = 2}, + [631] = {.lex_state = 278, .external_lex_state = 2}, + [632] = {.lex_state = 278, .external_lex_state = 2}, + [633] = {.lex_state = 278, .external_lex_state = 2}, + [634] = {.lex_state = 278, .external_lex_state = 2}, + [635] = {.lex_state = 278, .external_lex_state = 2}, + [636] = {.lex_state = 278, .external_lex_state = 2}, + [637] = {.lex_state = 278, .external_lex_state = 2}, + [638] = {.lex_state = 278, .external_lex_state = 2}, + [639] = {.lex_state = 278, .external_lex_state = 2}, + [640] = {.lex_state = 278, .external_lex_state = 2}, + [641] = {.lex_state = 278, .external_lex_state = 2}, + [642] = {.lex_state = 278, .external_lex_state = 2}, + [643] = {.lex_state = 278, .external_lex_state = 2}, + [644] = {.lex_state = 278, .external_lex_state = 2}, + [645] = {.lex_state = 278, .external_lex_state = 2}, + [646] = {.lex_state = 278, .external_lex_state = 2}, + [647] = {.lex_state = 278, .external_lex_state = 2}, + [648] = {.lex_state = 278, .external_lex_state = 2}, + [649] = {.lex_state = 278, .external_lex_state = 2}, + [650] = {.lex_state = 278, .external_lex_state = 2}, + [651] = {.lex_state = 278, .external_lex_state = 2}, + [652] = {.lex_state = 278, .external_lex_state = 2}, + [653] = {.lex_state = 278, .external_lex_state = 2}, + [654] = {.lex_state = 278, .external_lex_state = 2}, + [655] = {.lex_state = 278, .external_lex_state = 2}, + [656] = {.lex_state = 278, .external_lex_state = 2}, + [657] = {.lex_state = 278, .external_lex_state = 2}, + [658] = {.lex_state = 278, .external_lex_state = 2}, + [659] = {.lex_state = 278, .external_lex_state = 2}, + [660] = {.lex_state = 278, .external_lex_state = 2}, + [661] = {.lex_state = 278, .external_lex_state = 2}, + [662] = {.lex_state = 278, .external_lex_state = 2}, + [663] = {.lex_state = 278, .external_lex_state = 2}, + [664] = {.lex_state = 278, .external_lex_state = 2}, + [665] = {.lex_state = 278, .external_lex_state = 2}, + [666] = {.lex_state = 278, .external_lex_state = 2}, + [667] = {.lex_state = 278, .external_lex_state = 2}, + [668] = {.lex_state = 278, .external_lex_state = 2}, + [669] = {.lex_state = 278, .external_lex_state = 2}, + [670] = {.lex_state = 278, .external_lex_state = 2}, + [671] = {.lex_state = 278, .external_lex_state = 2}, + [672] = {.lex_state = 278, .external_lex_state = 2}, + [673] = {.lex_state = 278, .external_lex_state = 2}, + [674] = {.lex_state = 278, .external_lex_state = 2}, + [675] = {.lex_state = 278, .external_lex_state = 2}, + [676] = {.lex_state = 278, .external_lex_state = 2}, + [677] = {.lex_state = 278, .external_lex_state = 2}, + [678] = {.lex_state = 278, .external_lex_state = 2}, + [679] = {.lex_state = 278, .external_lex_state = 2}, + [680] = {.lex_state = 278, .external_lex_state = 2}, + [681] = {.lex_state = 278, .external_lex_state = 2}, + [682] = {.lex_state = 278, .external_lex_state = 2}, + [683] = {.lex_state = 278, .external_lex_state = 2}, + [684] = {.lex_state = 278, .external_lex_state = 2}, + [685] = {.lex_state = 278, .external_lex_state = 2}, + [686] = {.lex_state = 278, .external_lex_state = 2}, + [687] = {.lex_state = 278, .external_lex_state = 2}, + [688] = {.lex_state = 278, .external_lex_state = 2}, + [689] = {.lex_state = 278, .external_lex_state = 2}, + [690] = {.lex_state = 278, .external_lex_state = 2}, + [691] = {.lex_state = 278, .external_lex_state = 2}, + [692] = {.lex_state = 278, .external_lex_state = 2}, + [693] = {.lex_state = 278, .external_lex_state = 2}, + [694] = {.lex_state = 278, .external_lex_state = 2}, + [695] = {.lex_state = 278, .external_lex_state = 2}, + [696] = {.lex_state = 278, .external_lex_state = 2}, + [697] = {.lex_state = 278, .external_lex_state = 2}, + [698] = {.lex_state = 278, .external_lex_state = 2}, + [699] = {.lex_state = 278, .external_lex_state = 2}, + [700] = {.lex_state = 278, .external_lex_state = 2}, + [701] = {.lex_state = 278, .external_lex_state = 2}, + [702] = {.lex_state = 278, .external_lex_state = 2}, + [703] = {.lex_state = 278, .external_lex_state = 2}, + [704] = {.lex_state = 278, .external_lex_state = 2}, + [705] = {.lex_state = 278, .external_lex_state = 2}, + [706] = {.lex_state = 278, .external_lex_state = 2}, + [707] = {.lex_state = 278, .external_lex_state = 2}, + [708] = {.lex_state = 278, .external_lex_state = 2}, + [709] = {.lex_state = 278, .external_lex_state = 2}, + [710] = {.lex_state = 278, .external_lex_state = 2}, + [711] = {.lex_state = 278, .external_lex_state = 2}, + [712] = {.lex_state = 278, .external_lex_state = 2}, + [713] = {.lex_state = 278, .external_lex_state = 2}, + [714] = {.lex_state = 278, .external_lex_state = 2}, + [715] = {.lex_state = 278, .external_lex_state = 2}, + [716] = {.lex_state = 278, .external_lex_state = 2}, + [717] = {.lex_state = 278, .external_lex_state = 2}, + [718] = {.lex_state = 278, .external_lex_state = 2}, + [719] = {.lex_state = 278, .external_lex_state = 2}, + [720] = {.lex_state = 278, .external_lex_state = 2}, + [721] = {.lex_state = 278, .external_lex_state = 2}, + [722] = {.lex_state = 278, .external_lex_state = 2}, + [723] = {.lex_state = 278, .external_lex_state = 2}, + [724] = {.lex_state = 278, .external_lex_state = 2}, + [725] = {.lex_state = 271, .external_lex_state = 3}, + [726] = {.lex_state = 271, .external_lex_state = 3}, + [727] = {.lex_state = 271, .external_lex_state = 3}, + [728] = {.lex_state = 271, .external_lex_state = 4}, + [729] = {.lex_state = 266, .external_lex_state = 4}, + [730] = {.lex_state = 271, .external_lex_state = 5}, + [731] = {.lex_state = 266, .external_lex_state = 3}, + [732] = {.lex_state = 266, .external_lex_state = 4}, + [733] = {.lex_state = 55, .external_lex_state = 4}, + [734] = {.lex_state = 266, .external_lex_state = 4}, + [735] = {.lex_state = 266, .external_lex_state = 3}, + [736] = {.lex_state = 266, .external_lex_state = 3}, + [737] = {.lex_state = 266, .external_lex_state = 3}, + [738] = {.lex_state = 266, .external_lex_state = 4}, + [739] = {.lex_state = 266, .external_lex_state = 3}, + [740] = {.lex_state = 266, .external_lex_state = 4}, + [741] = {.lex_state = 266, .external_lex_state = 3}, + [742] = {.lex_state = 271, .external_lex_state = 6}, + [743] = {.lex_state = 266, .external_lex_state = 3}, + [744] = {.lex_state = 54, .external_lex_state = 3}, + [745] = {.lex_state = 55, .external_lex_state = 3}, + [746] = {.lex_state = 266, .external_lex_state = 3}, + [747] = {.lex_state = 266, .external_lex_state = 3}, + [748] = {.lex_state = 67, .external_lex_state = 3}, + [749] = {.lex_state = 271, .external_lex_state = 4}, + [750] = {.lex_state = 54, .external_lex_state = 4}, + [751] = {.lex_state = 266, .external_lex_state = 3}, + [752] = {.lex_state = 266, .external_lex_state = 3}, + [753] = {.lex_state = 266, .external_lex_state = 3}, + [754] = {.lex_state = 271, .external_lex_state = 7}, + [755] = {.lex_state = 60, .external_lex_state = 3}, + [756] = {.lex_state = 266, .external_lex_state = 4}, + [757] = {.lex_state = 266, .external_lex_state = 3}, + [758] = {.lex_state = 266, .external_lex_state = 4}, + [759] = {.lex_state = 266, .external_lex_state = 4}, + [760] = {.lex_state = 266, .external_lex_state = 3}, + [761] = {.lex_state = 266, .external_lex_state = 4}, + [762] = {.lex_state = 66, .external_lex_state = 3}, + [763] = {.lex_state = 266, .external_lex_state = 3}, + [764] = {.lex_state = 266, .external_lex_state = 3}, + [765] = {.lex_state = 266, .external_lex_state = 4}, + [766] = {.lex_state = 266, .external_lex_state = 4}, + [767] = {.lex_state = 266, .external_lex_state = 3}, + [768] = {.lex_state = 266, .external_lex_state = 3}, + [769] = {.lex_state = 266, .external_lex_state = 3}, + [770] = {.lex_state = 266, .external_lex_state = 3}, + [771] = {.lex_state = 266, .external_lex_state = 3}, + [772] = {.lex_state = 266, .external_lex_state = 3}, + [773] = {.lex_state = 266, .external_lex_state = 4}, + [774] = {.lex_state = 266, .external_lex_state = 4}, + [775] = {.lex_state = 266, .external_lex_state = 3}, + [776] = {.lex_state = 266, .external_lex_state = 3}, + [777] = {.lex_state = 266, .external_lex_state = 3}, + [778] = {.lex_state = 266, .external_lex_state = 3}, + [779] = {.lex_state = 266, .external_lex_state = 3}, + [780] = {.lex_state = 266, .external_lex_state = 3}, + [781] = {.lex_state = 266, .external_lex_state = 3}, + [782] = {.lex_state = 266, .external_lex_state = 4}, + [783] = {.lex_state = 266, .external_lex_state = 3}, + [784] = {.lex_state = 266, .external_lex_state = 3}, + [785] = {.lex_state = 266, .external_lex_state = 4}, + [786] = {.lex_state = 266, .external_lex_state = 3}, + [787] = {.lex_state = 266, .external_lex_state = 4}, + [788] = {.lex_state = 266, .external_lex_state = 3}, + [789] = {.lex_state = 266, .external_lex_state = 4}, + [790] = {.lex_state = 266, .external_lex_state = 3}, + [791] = {.lex_state = 266, .external_lex_state = 4}, + [792] = {.lex_state = 266, .external_lex_state = 4}, + [793] = {.lex_state = 266, .external_lex_state = 3}, + [794] = {.lex_state = 266, .external_lex_state = 4}, + [795] = {.lex_state = 266, .external_lex_state = 4}, + [796] = {.lex_state = 266, .external_lex_state = 4}, + [797] = {.lex_state = 266, .external_lex_state = 4}, + [798] = {.lex_state = 266, .external_lex_state = 3}, + [799] = {.lex_state = 266, .external_lex_state = 3}, + [800] = {.lex_state = 266, .external_lex_state = 3}, + [801] = {.lex_state = 266, .external_lex_state = 4}, + [802] = {.lex_state = 266, .external_lex_state = 4}, + [803] = {.lex_state = 266, .external_lex_state = 4}, + [804] = {.lex_state = 266, .external_lex_state = 4}, + [805] = {.lex_state = 266, .external_lex_state = 3}, + [806] = {.lex_state = 266, .external_lex_state = 3}, + [807] = {.lex_state = 266, .external_lex_state = 3}, + [808] = {.lex_state = 266, .external_lex_state = 3}, + [809] = {.lex_state = 266, .external_lex_state = 3}, + [810] = {.lex_state = 266, .external_lex_state = 3}, + [811] = {.lex_state = 266, .external_lex_state = 3}, + [812] = {.lex_state = 266, .external_lex_state = 3}, + [813] = {.lex_state = 266, .external_lex_state = 3}, + [814] = {.lex_state = 266, .external_lex_state = 3}, + [815] = {.lex_state = 266, .external_lex_state = 3}, + [816] = {.lex_state = 266, .external_lex_state = 3}, + [817] = {.lex_state = 267, .external_lex_state = 3}, + [818] = {.lex_state = 266, .external_lex_state = 3}, + [819] = {.lex_state = 266, .external_lex_state = 3}, + [820] = {.lex_state = 266, .external_lex_state = 3}, + [821] = {.lex_state = 266, .external_lex_state = 3}, + [822] = {.lex_state = 270, .external_lex_state = 3}, + [823] = {.lex_state = 270, .external_lex_state = 4}, + [824] = {.lex_state = 270, .external_lex_state = 3}, + [825] = {.lex_state = 270, .external_lex_state = 4}, + [826] = {.lex_state = 270, .external_lex_state = 4}, + [827] = {.lex_state = 268, .external_lex_state = 3}, + [828] = {.lex_state = 268, .external_lex_state = 3}, + [829] = {.lex_state = 269, .external_lex_state = 4}, + [830] = {.lex_state = 270, .external_lex_state = 3}, + [831] = {.lex_state = 269, .external_lex_state = 3}, + [832] = {.lex_state = 270, .external_lex_state = 3}, + [833] = {.lex_state = 270, .external_lex_state = 4}, + [834] = {.lex_state = 268, .external_lex_state = 3}, + [835] = {.lex_state = 270, .external_lex_state = 3}, + [836] = {.lex_state = 267, .external_lex_state = 3}, + [837] = {.lex_state = 268, .external_lex_state = 3}, + [838] = {.lex_state = 270, .external_lex_state = 4}, + [839] = {.lex_state = 270, .external_lex_state = 3}, + [840] = {.lex_state = 268, .external_lex_state = 3}, + [841] = {.lex_state = 270, .external_lex_state = 3}, + [842] = {.lex_state = 272, .external_lex_state = 3}, + [843] = {.lex_state = 269, .external_lex_state = 3}, + [844] = {.lex_state = 270, .external_lex_state = 3}, + [845] = {.lex_state = 269, .external_lex_state = 3}, + [846] = {.lex_state = 269, .external_lex_state = 4}, + [847] = {.lex_state = 268, .external_lex_state = 3}, + [848] = {.lex_state = 270, .external_lex_state = 4}, + [849] = {.lex_state = 269, .external_lex_state = 4}, + [850] = {.lex_state = 270, .external_lex_state = 4}, + [851] = {.lex_state = 272, .external_lex_state = 4}, + [852] = {.lex_state = 270, .external_lex_state = 4}, + [853] = {.lex_state = 272, .external_lex_state = 3}, + [854] = {.lex_state = 270, .external_lex_state = 3}, + [855] = {.lex_state = 269, .external_lex_state = 3}, + [856] = {.lex_state = 269, .external_lex_state = 4}, + [857] = {.lex_state = 269, .external_lex_state = 4}, + [858] = {.lex_state = 270, .external_lex_state = 3}, + [859] = {.lex_state = 272, .external_lex_state = 3}, + [860] = {.lex_state = 272, .external_lex_state = 4}, + [861] = {.lex_state = 267, .external_lex_state = 4}, + [862] = {.lex_state = 272, .external_lex_state = 3}, + [863] = {.lex_state = 270, .external_lex_state = 3}, + [864] = {.lex_state = 270, .external_lex_state = 4}, + [865] = {.lex_state = 270, .external_lex_state = 3}, + [866] = {.lex_state = 269, .external_lex_state = 3}, + [867] = {.lex_state = 270, .external_lex_state = 3}, + [868] = {.lex_state = 268, .external_lex_state = 3}, + [869] = {.lex_state = 270, .external_lex_state = 4}, + [870] = {.lex_state = 268, .external_lex_state = 3}, + [871] = {.lex_state = 270, .external_lex_state = 3}, + [872] = {.lex_state = 269, .external_lex_state = 3}, + [873] = {.lex_state = 270, .external_lex_state = 3}, + [874] = {.lex_state = 269, .external_lex_state = 3}, + [875] = {.lex_state = 269, .external_lex_state = 4}, + [876] = {.lex_state = 269, .external_lex_state = 4}, + [877] = {.lex_state = 269, .external_lex_state = 4}, + [878] = {.lex_state = 269, .external_lex_state = 3}, + [879] = {.lex_state = 269, .external_lex_state = 4}, + [880] = {.lex_state = 269, .external_lex_state = 4}, + [881] = {.lex_state = 269, .external_lex_state = 3}, + [882] = {.lex_state = 269, .external_lex_state = 3}, + [883] = {.lex_state = 269, .external_lex_state = 4}, + [884] = {.lex_state = 269, .external_lex_state = 4}, + [885] = {.lex_state = 269, .external_lex_state = 4}, + [886] = {.lex_state = 269, .external_lex_state = 4}, + [887] = {.lex_state = 269, .external_lex_state = 4}, + [888] = {.lex_state = 269, .external_lex_state = 4}, + [889] = {.lex_state = 269, .external_lex_state = 4}, + [890] = {.lex_state = 269, .external_lex_state = 3}, + [891] = {.lex_state = 269, .external_lex_state = 4}, + [892] = {.lex_state = 269, .external_lex_state = 3}, + [893] = {.lex_state = 269, .external_lex_state = 4}, + [894] = {.lex_state = 269, .external_lex_state = 4}, + [895] = {.lex_state = 269, .external_lex_state = 3}, + [896] = {.lex_state = 269, .external_lex_state = 3}, + [897] = {.lex_state = 269, .external_lex_state = 4}, + [898] = {.lex_state = 269, .external_lex_state = 3}, + [899] = {.lex_state = 269, .external_lex_state = 3}, + [900] = {.lex_state = 269, .external_lex_state = 4}, + [901] = {.lex_state = 269, .external_lex_state = 3}, + [902] = {.lex_state = 269, .external_lex_state = 3}, + [903] = {.lex_state = 269, .external_lex_state = 3}, + [904] = {.lex_state = 269, .external_lex_state = 4}, + [905] = {.lex_state = 269, .external_lex_state = 3}, + [906] = {.lex_state = 266, .external_lex_state = 5}, + [907] = {.lex_state = 269, .external_lex_state = 4}, + [908] = {.lex_state = 266, .external_lex_state = 5}, + [909] = {.lex_state = 269, .external_lex_state = 3}, + [910] = {.lex_state = 266, .external_lex_state = 5}, + [911] = {.lex_state = 269, .external_lex_state = 3}, + [912] = {.lex_state = 268, .external_lex_state = 4}, + [913] = {.lex_state = 269, .external_lex_state = 3}, + [914] = {.lex_state = 270, .external_lex_state = 3}, + [915] = {.lex_state = 266, .external_lex_state = 5}, + [916] = {.lex_state = 269, .external_lex_state = 4}, + [917] = {.lex_state = 269, .external_lex_state = 4}, + [918] = {.lex_state = 269, .external_lex_state = 3}, + [919] = {.lex_state = 269, .external_lex_state = 4}, + [920] = {.lex_state = 270, .external_lex_state = 3}, + [921] = {.lex_state = 269, .external_lex_state = 3}, + [922] = {.lex_state = 269, .external_lex_state = 4}, + [923] = {.lex_state = 269, .external_lex_state = 4}, + [924] = {.lex_state = 269, .external_lex_state = 4}, + [925] = {.lex_state = 269, .external_lex_state = 4}, + [926] = {.lex_state = 269, .external_lex_state = 4}, + [927] = {.lex_state = 269, .external_lex_state = 3}, + [928] = {.lex_state = 266, .external_lex_state = 5}, + [929] = {.lex_state = 269, .external_lex_state = 3}, + [930] = {.lex_state = 268, .external_lex_state = 4}, + [931] = {.lex_state = 269, .external_lex_state = 3}, + [932] = {.lex_state = 269, .external_lex_state = 3}, + [933] = {.lex_state = 269, .external_lex_state = 3}, + [934] = {.lex_state = 52, .external_lex_state = 4}, + [935] = {.lex_state = 269, .external_lex_state = 3}, + [936] = {.lex_state = 269, .external_lex_state = 3}, + [937] = {.lex_state = 269, .external_lex_state = 4}, + [938] = {.lex_state = 269, .external_lex_state = 4}, + [939] = {.lex_state = 270, .external_lex_state = 3}, + [940] = {.lex_state = 269, .external_lex_state = 3}, + [941] = {.lex_state = 269, .external_lex_state = 4}, + [942] = {.lex_state = 269, .external_lex_state = 3}, + [943] = {.lex_state = 269, .external_lex_state = 4}, + [944] = {.lex_state = 269, .external_lex_state = 3}, + [945] = {.lex_state = 269, .external_lex_state = 3}, + [946] = {.lex_state = 269, .external_lex_state = 3}, + [947] = {.lex_state = 269, .external_lex_state = 3}, + [948] = {.lex_state = 269, .external_lex_state = 3}, + [949] = {.lex_state = 269, .external_lex_state = 3}, + [950] = {.lex_state = 269, .external_lex_state = 3}, + [951] = {.lex_state = 269, .external_lex_state = 3}, + [952] = {.lex_state = 269, .external_lex_state = 3}, + [953] = {.lex_state = 269, .external_lex_state = 4}, + [954] = {.lex_state = 269, .external_lex_state = 3}, + [955] = {.lex_state = 269, .external_lex_state = 4}, + [956] = {.lex_state = 269, .external_lex_state = 3}, + [957] = {.lex_state = 52, .external_lex_state = 4}, + [958] = {.lex_state = 269, .external_lex_state = 3}, + [959] = {.lex_state = 269, .external_lex_state = 4}, + [960] = {.lex_state = 269, .external_lex_state = 3}, + [961] = {.lex_state = 269, .external_lex_state = 4}, + [962] = {.lex_state = 52, .external_lex_state = 4}, + [963] = {.lex_state = 52, .external_lex_state = 4}, + [964] = {.lex_state = 269, .external_lex_state = 3}, + [965] = {.lex_state = 269, .external_lex_state = 3}, + [966] = {.lex_state = 269, .external_lex_state = 3}, + [967] = {.lex_state = 52, .external_lex_state = 4}, + [968] = {.lex_state = 269, .external_lex_state = 4}, + [969] = {.lex_state = 268, .external_lex_state = 4}, + [970] = {.lex_state = 269, .external_lex_state = 3}, + [971] = {.lex_state = 269, .external_lex_state = 4}, + [972] = {.lex_state = 269, .external_lex_state = 3}, + [973] = {.lex_state = 269, .external_lex_state = 4}, + [974] = {.lex_state = 268, .external_lex_state = 4}, + [975] = {.lex_state = 269, .external_lex_state = 3}, + [976] = {.lex_state = 269, .external_lex_state = 3}, + [977] = {.lex_state = 269, .external_lex_state = 3}, + [978] = {.lex_state = 269, .external_lex_state = 3}, + [979] = {.lex_state = 269, .external_lex_state = 4}, + [980] = {.lex_state = 269, .external_lex_state = 4}, + [981] = {.lex_state = 269, .external_lex_state = 4}, + [982] = {.lex_state = 269, .external_lex_state = 3}, + [983] = {.lex_state = 269, .external_lex_state = 3}, + [984] = {.lex_state = 269, .external_lex_state = 3}, + [985] = {.lex_state = 269, .external_lex_state = 4}, + [986] = {.lex_state = 269, .external_lex_state = 3}, + [987] = {.lex_state = 269, .external_lex_state = 3}, + [988] = {.lex_state = 269, .external_lex_state = 4}, + [989] = {.lex_state = 269, .external_lex_state = 4}, + [990] = {.lex_state = 269, .external_lex_state = 3}, + [991] = {.lex_state = 269, .external_lex_state = 3}, + [992] = {.lex_state = 269, .external_lex_state = 3}, + [993] = {.lex_state = 269, .external_lex_state = 3}, + [994] = {.lex_state = 269, .external_lex_state = 3}, + [995] = {.lex_state = 269, .external_lex_state = 3}, + [996] = {.lex_state = 269, .external_lex_state = 3}, + [997] = {.lex_state = 269, .external_lex_state = 4}, + [998] = {.lex_state = 269, .external_lex_state = 3}, + [999] = {.lex_state = 269, .external_lex_state = 3}, + [1000] = {.lex_state = 269, .external_lex_state = 3}, + [1001] = {.lex_state = 269, .external_lex_state = 3}, + [1002] = {.lex_state = 269, .external_lex_state = 3}, + [1003] = {.lex_state = 270, .external_lex_state = 3}, + [1004] = {.lex_state = 269, .external_lex_state = 3}, + [1005] = {.lex_state = 269, .external_lex_state = 4}, + [1006] = {.lex_state = 269, .external_lex_state = 3}, + [1007] = {.lex_state = 269, .external_lex_state = 4}, + [1008] = {.lex_state = 270, .external_lex_state = 3}, + [1009] = {.lex_state = 269, .external_lex_state = 4}, + [1010] = {.lex_state = 269, .external_lex_state = 3}, + [1011] = {.lex_state = 269, .external_lex_state = 4}, + [1012] = {.lex_state = 269, .external_lex_state = 4}, + [1013] = {.lex_state = 269, .external_lex_state = 3}, + [1014] = {.lex_state = 269, .external_lex_state = 3}, + [1015] = {.lex_state = 269, .external_lex_state = 4}, + [1016] = {.lex_state = 269, .external_lex_state = 4}, + [1017] = {.lex_state = 269, .external_lex_state = 3}, + [1018] = {.lex_state = 269, .external_lex_state = 3}, + [1019] = {.lex_state = 269, .external_lex_state = 4}, + [1020] = {.lex_state = 269, .external_lex_state = 4}, + [1021] = {.lex_state = 269, .external_lex_state = 4}, + [1022] = {.lex_state = 269, .external_lex_state = 4}, + [1023] = {.lex_state = 269, .external_lex_state = 4}, + [1024] = {.lex_state = 269, .external_lex_state = 4}, + [1025] = {.lex_state = 269, .external_lex_state = 4}, + [1026] = {.lex_state = 269, .external_lex_state = 4}, + [1027] = {.lex_state = 269, .external_lex_state = 4}, + [1028] = {.lex_state = 269, .external_lex_state = 4}, + [1029] = {.lex_state = 269, .external_lex_state = 4}, + [1030] = {.lex_state = 269, .external_lex_state = 4}, + [1031] = {.lex_state = 269, .external_lex_state = 4}, + [1032] = {.lex_state = 269, .external_lex_state = 4}, + [1033] = {.lex_state = 269, .external_lex_state = 4}, + [1034] = {.lex_state = 269, .external_lex_state = 4}, + [1035] = {.lex_state = 269, .external_lex_state = 4}, + [1036] = {.lex_state = 269, .external_lex_state = 3}, + [1037] = {.lex_state = 269, .external_lex_state = 4}, + [1038] = {.lex_state = 269, .external_lex_state = 3}, + [1039] = {.lex_state = 269, .external_lex_state = 3}, + [1040] = {.lex_state = 269, .external_lex_state = 4}, + [1041] = {.lex_state = 269, .external_lex_state = 4}, + [1042] = {.lex_state = 269, .external_lex_state = 4}, + [1043] = {.lex_state = 269, .external_lex_state = 4}, + [1044] = {.lex_state = 269, .external_lex_state = 3}, + [1045] = {.lex_state = 269, .external_lex_state = 4}, + [1046] = {.lex_state = 269, .external_lex_state = 3}, + [1047] = {.lex_state = 269, .external_lex_state = 4}, + [1048] = {.lex_state = 269, .external_lex_state = 3}, + [1049] = {.lex_state = 269, .external_lex_state = 4}, + [1050] = {.lex_state = 269, .external_lex_state = 3}, + [1051] = {.lex_state = 269, .external_lex_state = 3}, + [1052] = {.lex_state = 269, .external_lex_state = 3}, + [1053] = {.lex_state = 269, .external_lex_state = 3}, + [1054] = {.lex_state = 269, .external_lex_state = 3}, + [1055] = {.lex_state = 269, .external_lex_state = 3}, + [1056] = {.lex_state = 269, .external_lex_state = 3}, + [1057] = {.lex_state = 269, .external_lex_state = 3}, + [1058] = {.lex_state = 52, .external_lex_state = 3}, + [1059] = {.lex_state = 269, .external_lex_state = 3}, + [1060] = {.lex_state = 269, .external_lex_state = 3}, + [1061] = {.lex_state = 266, .external_lex_state = 6}, + [1062] = {.lex_state = 269, .external_lex_state = 3}, + [1063] = {.lex_state = 269, .external_lex_state = 3}, + [1064] = {.lex_state = 269, .external_lex_state = 3}, + [1065] = {.lex_state = 269, .external_lex_state = 3}, + [1066] = {.lex_state = 269, .external_lex_state = 3}, + [1067] = {.lex_state = 52, .external_lex_state = 3}, + [1068] = {.lex_state = 269, .external_lex_state = 3}, + [1069] = {.lex_state = 269, .external_lex_state = 3}, + [1070] = {.lex_state = 266, .external_lex_state = 6}, + [1071] = {.lex_state = 269, .external_lex_state = 3}, + [1072] = {.lex_state = 269, .external_lex_state = 3}, + [1073] = {.lex_state = 269, .external_lex_state = 3}, + [1074] = {.lex_state = 269, .external_lex_state = 3}, + [1075] = {.lex_state = 269, .external_lex_state = 3}, + [1076] = {.lex_state = 266, .external_lex_state = 6}, + [1077] = {.lex_state = 269, .external_lex_state = 3}, + [1078] = {.lex_state = 269, .external_lex_state = 3}, + [1079] = {.lex_state = 269, .external_lex_state = 3}, + [1080] = {.lex_state = 269, .external_lex_state = 3}, + [1081] = {.lex_state = 266, .external_lex_state = 6}, + [1082] = {.lex_state = 266, .external_lex_state = 6}, + [1083] = {.lex_state = 269, .external_lex_state = 3}, + [1084] = {.lex_state = 269, .external_lex_state = 3}, + [1085] = {.lex_state = 269, .external_lex_state = 3}, + [1086] = {.lex_state = 52, .external_lex_state = 3}, + [1087] = {.lex_state = 269, .external_lex_state = 4}, + [1088] = {.lex_state = 269, .external_lex_state = 3}, + [1089] = {.lex_state = 269, .external_lex_state = 3}, + [1090] = {.lex_state = 269, .external_lex_state = 3}, + [1091] = {.lex_state = 269, .external_lex_state = 3}, + [1092] = {.lex_state = 269, .external_lex_state = 3}, + [1093] = {.lex_state = 269, .external_lex_state = 3}, + [1094] = {.lex_state = 269, .external_lex_state = 3}, + [1095] = {.lex_state = 52, .external_lex_state = 3}, + [1096] = {.lex_state = 269, .external_lex_state = 3}, + [1097] = {.lex_state = 269, .external_lex_state = 3}, + [1098] = {.lex_state = 269, .external_lex_state = 3}, + [1099] = {.lex_state = 269, .external_lex_state = 3}, + [1100] = {.lex_state = 269, .external_lex_state = 3}, + [1101] = {.lex_state = 269, .external_lex_state = 3}, + [1102] = {.lex_state = 269, .external_lex_state = 3}, + [1103] = {.lex_state = 269, .external_lex_state = 3}, + [1104] = {.lex_state = 269, .external_lex_state = 3}, + [1105] = {.lex_state = 269, .external_lex_state = 3}, + [1106] = {.lex_state = 269, .external_lex_state = 3}, + [1107] = {.lex_state = 269, .external_lex_state = 3}, + [1108] = {.lex_state = 52, .external_lex_state = 3}, + [1109] = {.lex_state = 269, .external_lex_state = 3}, + [1110] = {.lex_state = 269, .external_lex_state = 3}, + [1111] = {.lex_state = 269, .external_lex_state = 3}, + [1112] = {.lex_state = 269, .external_lex_state = 3}, + [1113] = {.lex_state = 269, .external_lex_state = 3}, + [1114] = {.lex_state = 269, .external_lex_state = 3}, + [1115] = {.lex_state = 269, .external_lex_state = 3}, + [1116] = {.lex_state = 269, .external_lex_state = 3}, + [1117] = {.lex_state = 269, .external_lex_state = 3}, + [1118] = {.lex_state = 269, .external_lex_state = 3}, + [1119] = {.lex_state = 269, .external_lex_state = 3}, + [1120] = {.lex_state = 269, .external_lex_state = 3}, + [1121] = {.lex_state = 269, .external_lex_state = 3}, + [1122] = {.lex_state = 269, .external_lex_state = 3}, + [1123] = {.lex_state = 269, .external_lex_state = 3}, + [1124] = {.lex_state = 269, .external_lex_state = 3}, + [1125] = {.lex_state = 269, .external_lex_state = 3}, + [1126] = {.lex_state = 269, .external_lex_state = 3}, + [1127] = {.lex_state = 269, .external_lex_state = 3}, + [1128] = {.lex_state = 269, .external_lex_state = 3}, + [1129] = {.lex_state = 269, .external_lex_state = 3}, + [1130] = {.lex_state = 269, .external_lex_state = 3}, + [1131] = {.lex_state = 269, .external_lex_state = 3}, + [1132] = {.lex_state = 269, .external_lex_state = 3}, + [1133] = {.lex_state = 269, .external_lex_state = 3}, + [1134] = {.lex_state = 269, .external_lex_state = 3}, + [1135] = {.lex_state = 269, .external_lex_state = 3}, + [1136] = {.lex_state = 269, .external_lex_state = 3}, + [1137] = {.lex_state = 269, .external_lex_state = 3}, + [1138] = {.lex_state = 269, .external_lex_state = 3}, + [1139] = {.lex_state = 269, .external_lex_state = 3}, + [1140] = {.lex_state = 269, .external_lex_state = 3}, + [1141] = {.lex_state = 269, .external_lex_state = 3}, + [1142] = {.lex_state = 269, .external_lex_state = 4}, + [1143] = {.lex_state = 269, .external_lex_state = 3}, + [1144] = {.lex_state = 269, .external_lex_state = 3}, + [1145] = {.lex_state = 269, .external_lex_state = 3}, + [1146] = {.lex_state = 266, .external_lex_state = 7}, + [1147] = {.lex_state = 269, .external_lex_state = 4}, + [1148] = {.lex_state = 266, .external_lex_state = 5}, + [1149] = {.lex_state = 52, .external_lex_state = 4}, + [1150] = {.lex_state = 266, .external_lex_state = 7}, + [1151] = {.lex_state = 52, .external_lex_state = 4}, + [1152] = {.lex_state = 266, .external_lex_state = 7}, + [1153] = {.lex_state = 52, .external_lex_state = 4}, + [1154] = {.lex_state = 53, .external_lex_state = 3}, + [1155] = {.lex_state = 266, .external_lex_state = 5}, + [1156] = {.lex_state = 53, .external_lex_state = 3}, + [1157] = {.lex_state = 53, .external_lex_state = 3}, + [1158] = {.lex_state = 53, .external_lex_state = 3}, + [1159] = {.lex_state = 53, .external_lex_state = 3}, + [1160] = {.lex_state = 52, .external_lex_state = 4}, + [1161] = {.lex_state = 266, .external_lex_state = 7}, + [1162] = {.lex_state = 269, .external_lex_state = 4}, + [1163] = {.lex_state = 266, .external_lex_state = 5}, + [1164] = {.lex_state = 266, .external_lex_state = 5}, + [1165] = {.lex_state = 266, .external_lex_state = 5}, + [1166] = {.lex_state = 266, .external_lex_state = 5}, + [1167] = {.lex_state = 269, .external_lex_state = 4}, + [1168] = {.lex_state = 52, .external_lex_state = 4}, + [1169] = {.lex_state = 266, .external_lex_state = 7}, + [1170] = {.lex_state = 52, .external_lex_state = 4}, + [1171] = {.lex_state = 53, .external_lex_state = 3}, + [1172] = {.lex_state = 266, .external_lex_state = 5}, + [1173] = {.lex_state = 266, .external_lex_state = 5}, + [1174] = {.lex_state = 52, .external_lex_state = 4}, + [1175] = {.lex_state = 52, .external_lex_state = 4}, + [1176] = {.lex_state = 52, .external_lex_state = 3}, + [1177] = {.lex_state = 266, .external_lex_state = 5}, + [1178] = {.lex_state = 266, .external_lex_state = 6}, + [1179] = {.lex_state = 52, .external_lex_state = 3}, + [1180] = {.lex_state = 52, .external_lex_state = 3}, + [1181] = {.lex_state = 266, .external_lex_state = 5}, + [1182] = {.lex_state = 52, .external_lex_state = 3}, + [1183] = {.lex_state = 266, .external_lex_state = 6}, + [1184] = {.lex_state = 266, .external_lex_state = 6}, + [1185] = {.lex_state = 266, .external_lex_state = 6}, + [1186] = {.lex_state = 266, .external_lex_state = 5}, + [1187] = {.lex_state = 266, .external_lex_state = 5}, + [1188] = {.lex_state = 52, .external_lex_state = 4}, + [1189] = {.lex_state = 52, .external_lex_state = 4}, + [1190] = {.lex_state = 52, .external_lex_state = 4}, + [1191] = {.lex_state = 266, .external_lex_state = 5}, + [1192] = {.lex_state = 266, .external_lex_state = 5}, + [1193] = {.lex_state = 266, .external_lex_state = 5}, + [1194] = {.lex_state = 266, .external_lex_state = 6}, + [1195] = {.lex_state = 52, .external_lex_state = 3}, + [1196] = {.lex_state = 266, .external_lex_state = 5}, + [1197] = {.lex_state = 266, .external_lex_state = 5}, + [1198] = {.lex_state = 266, .external_lex_state = 3}, + [1199] = {.lex_state = 52, .external_lex_state = 4}, + [1200] = {.lex_state = 266, .external_lex_state = 5}, + [1201] = {.lex_state = 266, .external_lex_state = 6}, + [1202] = {.lex_state = 266, .external_lex_state = 5}, + [1203] = {.lex_state = 52, .external_lex_state = 4}, + [1204] = {.lex_state = 52, .external_lex_state = 4}, + [1205] = {.lex_state = 266, .external_lex_state = 5}, + [1206] = {.lex_state = 52, .external_lex_state = 4}, + [1207] = {.lex_state = 52, .external_lex_state = 4}, + [1208] = {.lex_state = 52, .external_lex_state = 4}, + [1209] = {.lex_state = 266, .external_lex_state = 5}, + [1210] = {.lex_state = 52, .external_lex_state = 4}, + [1211] = {.lex_state = 52, .external_lex_state = 4}, + [1212] = {.lex_state = 52, .external_lex_state = 3}, + [1213] = {.lex_state = 52, .external_lex_state = 4}, + [1214] = {.lex_state = 52, .external_lex_state = 4}, + [1215] = {.lex_state = 52, .external_lex_state = 4}, + [1216] = {.lex_state = 266, .external_lex_state = 5}, + [1217] = {.lex_state = 52, .external_lex_state = 4}, + [1218] = {.lex_state = 52, .external_lex_state = 3}, + [1219] = {.lex_state = 266, .external_lex_state = 6}, + [1220] = {.lex_state = 266, .external_lex_state = 6}, + [1221] = {.lex_state = 266, .external_lex_state = 6}, + [1222] = {.lex_state = 57, .external_lex_state = 4}, + [1223] = {.lex_state = 52, .external_lex_state = 3}, + [1224] = {.lex_state = 266, .external_lex_state = 7}, + [1225] = {.lex_state = 53, .external_lex_state = 3}, + [1226] = {.lex_state = 266, .external_lex_state = 6}, + [1227] = {.lex_state = 52, .external_lex_state = 3}, + [1228] = {.lex_state = 52, .external_lex_state = 3}, + [1229] = {.lex_state = 266, .external_lex_state = 7}, + [1230] = {.lex_state = 52, .external_lex_state = 3}, + [1231] = {.lex_state = 52, .external_lex_state = 3}, + [1232] = {.lex_state = 266, .external_lex_state = 7}, + [1233] = {.lex_state = 52, .external_lex_state = 3}, + [1234] = {.lex_state = 52, .external_lex_state = 3}, + [1235] = {.lex_state = 266, .external_lex_state = 7}, + [1236] = {.lex_state = 52, .external_lex_state = 3}, + [1237] = {.lex_state = 266, .external_lex_state = 6}, + [1238] = {.lex_state = 266, .external_lex_state = 6}, + [1239] = {.lex_state = 267, .external_lex_state = 4}, + [1240] = {.lex_state = 266, .external_lex_state = 7}, + [1241] = {.lex_state = 266, .external_lex_state = 6}, + [1242] = {.lex_state = 266, .external_lex_state = 6}, + [1243] = {.lex_state = 266, .external_lex_state = 6}, + [1244] = {.lex_state = 52, .external_lex_state = 3}, + [1245] = {.lex_state = 52, .external_lex_state = 3}, + [1246] = {.lex_state = 267, .external_lex_state = 5}, + [1247] = {.lex_state = 53, .external_lex_state = 3}, + [1248] = {.lex_state = 53, .external_lex_state = 3}, + [1249] = {.lex_state = 53, .external_lex_state = 3}, + [1250] = {.lex_state = 52, .external_lex_state = 3}, + [1251] = {.lex_state = 266, .external_lex_state = 6}, + [1252] = {.lex_state = 266, .external_lex_state = 6}, + [1253] = {.lex_state = 53, .external_lex_state = 3}, + [1254] = {.lex_state = 266, .external_lex_state = 6}, + [1255] = {.lex_state = 266, .external_lex_state = 6}, + [1256] = {.lex_state = 266, .external_lex_state = 7}, + [1257] = {.lex_state = 53, .external_lex_state = 3}, + [1258] = {.lex_state = 52, .external_lex_state = 3}, + [1259] = {.lex_state = 52, .external_lex_state = 3}, + [1260] = {.lex_state = 53, .external_lex_state = 3}, + [1261] = {.lex_state = 52, .external_lex_state = 3}, + [1262] = {.lex_state = 266, .external_lex_state = 6}, + [1263] = {.lex_state = 266, .external_lex_state = 6}, + [1264] = {.lex_state = 52, .external_lex_state = 3}, + [1265] = {.lex_state = 266, .external_lex_state = 6}, + [1266] = {.lex_state = 52, .external_lex_state = 3}, + [1267] = {.lex_state = 270, .external_lex_state = 5}, + [1268] = {.lex_state = 266, .external_lex_state = 7}, + [1269] = {.lex_state = 53, .external_lex_state = 3}, + [1270] = {.lex_state = 53, .external_lex_state = 3}, + [1271] = {.lex_state = 53, .external_lex_state = 3}, + [1272] = {.lex_state = 58, .external_lex_state = 4}, + [1273] = {.lex_state = 53, .external_lex_state = 3}, + [1274] = {.lex_state = 57, .external_lex_state = 3}, + [1275] = {.lex_state = 58, .external_lex_state = 4}, + [1276] = {.lex_state = 266, .external_lex_state = 7}, + [1277] = {.lex_state = 53, .external_lex_state = 3}, + [1278] = {.lex_state = 270, .external_lex_state = 5}, + [1279] = {.lex_state = 266, .external_lex_state = 7}, + [1280] = {.lex_state = 268, .external_lex_state = 5}, + [1281] = {.lex_state = 266, .external_lex_state = 7}, + [1282] = {.lex_state = 267, .external_lex_state = 6}, + [1283] = {.lex_state = 63, .external_lex_state = 4}, + [1284] = {.lex_state = 270, .external_lex_state = 5}, + [1285] = {.lex_state = 63, .external_lex_state = 4}, + [1286] = {.lex_state = 270, .external_lex_state = 5}, + [1287] = {.lex_state = 266, .external_lex_state = 3}, + [1288] = {.lex_state = 266, .external_lex_state = 7}, + [1289] = {.lex_state = 65, .external_lex_state = 4}, + [1290] = {.lex_state = 266, .external_lex_state = 7}, + [1291] = {.lex_state = 266, .external_lex_state = 7}, + [1292] = {.lex_state = 266, .external_lex_state = 7}, + [1293] = {.lex_state = 65, .external_lex_state = 4}, + [1294] = {.lex_state = 266, .external_lex_state = 7}, + [1295] = {.lex_state = 53, .external_lex_state = 3}, + [1296] = {.lex_state = 53, .external_lex_state = 3}, + [1297] = {.lex_state = 266, .external_lex_state = 7}, + [1298] = {.lex_state = 53, .external_lex_state = 3}, + [1299] = {.lex_state = 59, .external_lex_state = 4}, + [1300] = {.lex_state = 270, .external_lex_state = 5}, + [1301] = {.lex_state = 268, .external_lex_state = 5}, + [1302] = {.lex_state = 268, .external_lex_state = 5}, + [1303] = {.lex_state = 268, .external_lex_state = 4}, + [1304] = {.lex_state = 58, .external_lex_state = 4}, + [1305] = {.lex_state = 266, .external_lex_state = 7}, + [1306] = {.lex_state = 266, .external_lex_state = 7}, + [1307] = {.lex_state = 53, .external_lex_state = 3}, + [1308] = {.lex_state = 53, .external_lex_state = 3}, + [1309] = {.lex_state = 266, .external_lex_state = 7}, + [1310] = {.lex_state = 68, .external_lex_state = 3}, + [1311] = {.lex_state = 272, .external_lex_state = 5}, + [1312] = {.lex_state = 70, .external_lex_state = 4}, + [1313] = {.lex_state = 53, .external_lex_state = 3}, + [1314] = {.lex_state = 59, .external_lex_state = 4}, + [1315] = {.lex_state = 53, .external_lex_state = 3}, + [1316] = {.lex_state = 53, .external_lex_state = 3}, + [1317] = {.lex_state = 53, .external_lex_state = 3}, + [1318] = {.lex_state = 272, .external_lex_state = 5}, [1319] = {.lex_state = 53, .external_lex_state = 3}, - [1320] = {.lex_state = 241, .external_lex_state = 5}, + [1320] = {.lex_state = 266, .external_lex_state = 7}, [1321] = {.lex_state = 53, .external_lex_state = 3}, - [1322] = {.lex_state = 60, .external_lex_state = 3}, - [1323] = {.lex_state = 60, .external_lex_state = 3}, - [1324] = {.lex_state = 240, .external_lex_state = 5}, - [1325] = {.lex_state = 53, .external_lex_state = 4}, - [1326] = {.lex_state = 55, .external_lex_state = 4}, - [1327] = {.lex_state = 55, .external_lex_state = 3}, - [1328] = {.lex_state = 241, .external_lex_state = 5}, - [1329] = {.lex_state = 240, .external_lex_state = 5}, - [1330] = {.lex_state = 240, .external_lex_state = 5}, - [1331] = {.lex_state = 60, .external_lex_state = 3}, - [1332] = {.lex_state = 53, .external_lex_state = 3}, - [1333] = {.lex_state = 53, .external_lex_state = 3}, - [1334] = {.lex_state = 240, .external_lex_state = 4}, - [1335] = {.lex_state = 55, .external_lex_state = 4}, - [1336] = {.lex_state = 55, .external_lex_state = 4}, - [1337] = {.lex_state = 55, .external_lex_state = 4}, - [1338] = {.lex_state = 241, .external_lex_state = 6}, - [1339] = {.lex_state = 55, .external_lex_state = 4}, - [1340] = {.lex_state = 52, .external_lex_state = 4}, - [1341] = {.lex_state = 55, .external_lex_state = 3}, - [1342] = {.lex_state = 53, .external_lex_state = 4}, - [1343] = {.lex_state = 240, .external_lex_state = 5}, - [1344] = {.lex_state = 240, .external_lex_state = 5}, - [1345] = {.lex_state = 53, .external_lex_state = 4}, - [1346] = {.lex_state = 240, .external_lex_state = 5}, - [1347] = {.lex_state = 53, .external_lex_state = 4}, - [1348] = {.lex_state = 55, .external_lex_state = 4}, - [1349] = {.lex_state = 240, .external_lex_state = 5}, - [1350] = {.lex_state = 55, .external_lex_state = 4}, - [1351] = {.lex_state = 240, .external_lex_state = 5}, - [1352] = {.lex_state = 59, .external_lex_state = 3}, - [1353] = {.lex_state = 240, .external_lex_state = 6}, - [1354] = {.lex_state = 241, .external_lex_state = 6}, - [1355] = {.lex_state = 240, .external_lex_state = 6}, - [1356] = {.lex_state = 59, .external_lex_state = 3}, - [1357] = {.lex_state = 60, .external_lex_state = 3}, - [1358] = {.lex_state = 59, .external_lex_state = 3}, - [1359] = {.lex_state = 60, .external_lex_state = 3}, - [1360] = {.lex_state = 60, .external_lex_state = 3}, - [1361] = {.lex_state = 60, .external_lex_state = 3}, - [1362] = {.lex_state = 59, .external_lex_state = 3}, - [1363] = {.lex_state = 240, .external_lex_state = 6}, - [1364] = {.lex_state = 242, .external_lex_state = 7}, - [1365] = {.lex_state = 248, .external_lex_state = 2}, - [1366] = {.lex_state = 248, .external_lex_state = 2}, - [1367] = {.lex_state = 248, .external_lex_state = 2}, - [1368] = {.lex_state = 240, .external_lex_state = 4}, - [1369] = {.lex_state = 240, .external_lex_state = 3}, - [1370] = {.lex_state = 60, .external_lex_state = 3}, - [1371] = {.lex_state = 248, .external_lex_state = 2}, - [1372] = {.lex_state = 59, .external_lex_state = 3}, - [1373] = {.lex_state = 240, .external_lex_state = 5}, - [1374] = {.lex_state = 55, .external_lex_state = 4}, - [1375] = {.lex_state = 55, .external_lex_state = 4}, - [1376] = {.lex_state = 55, .external_lex_state = 4}, - [1377] = {.lex_state = 240, .external_lex_state = 4}, - [1378] = {.lex_state = 55, .external_lex_state = 3}, - [1379] = {.lex_state = 59, .external_lex_state = 3}, - [1380] = {.lex_state = 55, .external_lex_state = 4}, - [1381] = {.lex_state = 55, .external_lex_state = 3}, - [1382] = {.lex_state = 241, .external_lex_state = 6}, - [1383] = {.lex_state = 52, .external_lex_state = 3}, - [1384] = {.lex_state = 53, .external_lex_state = 3}, - [1385] = {.lex_state = 53, .external_lex_state = 3}, - [1386] = {.lex_state = 55, .external_lex_state = 4}, - [1387] = {.lex_state = 53, .external_lex_state = 3}, - [1388] = {.lex_state = 52, .external_lex_state = 3}, - [1389] = {.lex_state = 59, .external_lex_state = 3}, - [1390] = {.lex_state = 55, .external_lex_state = 4}, - [1391] = {.lex_state = 59, .external_lex_state = 3}, - [1392] = {.lex_state = 52, .external_lex_state = 4}, - [1393] = {.lex_state = 241, .external_lex_state = 6}, - [1394] = {.lex_state = 241, .external_lex_state = 6}, - [1395] = {.lex_state = 241, .external_lex_state = 7}, - [1396] = {.lex_state = 241, .external_lex_state = 7}, - [1397] = {.lex_state = 55, .external_lex_state = 4}, - [1398] = {.lex_state = 55, .external_lex_state = 3}, - [1399] = {.lex_state = 241, .external_lex_state = 6}, - [1400] = {.lex_state = 240, .external_lex_state = 6}, - [1401] = {.lex_state = 55, .external_lex_state = 4}, - [1402] = {.lex_state = 55, .external_lex_state = 4}, - [1403] = {.lex_state = 55, .external_lex_state = 4}, - [1404] = {.lex_state = 55, .external_lex_state = 4}, - [1405] = {.lex_state = 56, .external_lex_state = 3}, - [1406] = {.lex_state = 53, .external_lex_state = 3}, - [1407] = {.lex_state = 240, .external_lex_state = 5}, - [1408] = {.lex_state = 55, .external_lex_state = 3}, - [1409] = {.lex_state = 55, .external_lex_state = 4}, - [1410] = {.lex_state = 55, .external_lex_state = 4}, - [1411] = {.lex_state = 53, .external_lex_state = 3}, - [1412] = {.lex_state = 240, .external_lex_state = 5}, - [1413] = {.lex_state = 55, .external_lex_state = 4}, - [1414] = {.lex_state = 241, .external_lex_state = 7}, - [1415] = {.lex_state = 55, .external_lex_state = 4}, - [1416] = {.lex_state = 55, .external_lex_state = 4}, - [1417] = {.lex_state = 56, .external_lex_state = 3}, - [1418] = {.lex_state = 56, .external_lex_state = 3}, - [1419] = {.lex_state = 55, .external_lex_state = 4}, - [1420] = {.lex_state = 55, .external_lex_state = 4}, - [1421] = {.lex_state = 55, .external_lex_state = 4}, - [1422] = {.lex_state = 55, .external_lex_state = 4}, - [1423] = {.lex_state = 55, .external_lex_state = 4}, - [1424] = {.lex_state = 55, .external_lex_state = 4}, - [1425] = {.lex_state = 55, .external_lex_state = 4}, - [1426] = {.lex_state = 52, .external_lex_state = 4}, - [1427] = {.lex_state = 240, .external_lex_state = 6}, - [1428] = {.lex_state = 55, .external_lex_state = 4}, - [1429] = {.lex_state = 55, .external_lex_state = 4}, - [1430] = {.lex_state = 55, .external_lex_state = 4}, - [1431] = {.lex_state = 55, .external_lex_state = 3}, - [1432] = {.lex_state = 240, .external_lex_state = 5}, - [1433] = {.lex_state = 52, .external_lex_state = 3}, - [1434] = {.lex_state = 59, .external_lex_state = 3}, - [1435] = {.lex_state = 240, .external_lex_state = 5}, - [1436] = {.lex_state = 240, .external_lex_state = 5}, - [1437] = {.lex_state = 240, .external_lex_state = 5}, - [1438] = {.lex_state = 240, .external_lex_state = 5}, - [1439] = {.lex_state = 240, .external_lex_state = 5}, - [1440] = {.lex_state = 55, .external_lex_state = 4}, - [1441] = {.lex_state = 56, .external_lex_state = 3}, - [1442] = {.lex_state = 55, .external_lex_state = 4}, - [1443] = {.lex_state = 55, .external_lex_state = 4}, - [1444] = {.lex_state = 241, .external_lex_state = 7}, - [1445] = {.lex_state = 55, .external_lex_state = 4}, - [1446] = {.lex_state = 240, .external_lex_state = 5}, - [1447] = {.lex_state = 241, .external_lex_state = 7}, - [1448] = {.lex_state = 240, .external_lex_state = 5}, - [1449] = {.lex_state = 55, .external_lex_state = 4}, - [1450] = {.lex_state = 240, .external_lex_state = 5}, - [1451] = {.lex_state = 55, .external_lex_state = 4}, - [1452] = {.lex_state = 55, .external_lex_state = 4}, - [1453] = {.lex_state = 55, .external_lex_state = 4}, - [1454] = {.lex_state = 55, .external_lex_state = 4}, - [1455] = {.lex_state = 240, .external_lex_state = 5}, - [1456] = {.lex_state = 240, .external_lex_state = 4}, - [1457] = {.lex_state = 55, .external_lex_state = 4}, - [1458] = {.lex_state = 55, .external_lex_state = 4}, - [1459] = {.lex_state = 55, .external_lex_state = 4}, - [1460] = {.lex_state = 55, .external_lex_state = 4}, - [1461] = {.lex_state = 55, .external_lex_state = 4}, - [1462] = {.lex_state = 59, .external_lex_state = 3}, - [1463] = {.lex_state = 240, .external_lex_state = 5}, - [1464] = {.lex_state = 240, .external_lex_state = 5}, - [1465] = {.lex_state = 55, .external_lex_state = 4}, - [1466] = {.lex_state = 55, .external_lex_state = 4}, - [1467] = {.lex_state = 240, .external_lex_state = 5}, - [1468] = {.lex_state = 55, .external_lex_state = 4}, - [1469] = {.lex_state = 55, .external_lex_state = 4}, - [1470] = {.lex_state = 55, .external_lex_state = 4}, - [1471] = {.lex_state = 55, .external_lex_state = 4}, - [1472] = {.lex_state = 55, .external_lex_state = 4}, - [1473] = {.lex_state = 240, .external_lex_state = 5}, - [1474] = {.lex_state = 240, .external_lex_state = 3}, - [1475] = {.lex_state = 240, .external_lex_state = 5}, - [1476] = {.lex_state = 55, .external_lex_state = 4}, - [1477] = {.lex_state = 55, .external_lex_state = 4}, - [1478] = {.lex_state = 55, .external_lex_state = 4}, - [1479] = {.lex_state = 55, .external_lex_state = 4}, - [1480] = {.lex_state = 55, .external_lex_state = 4}, - [1481] = {.lex_state = 240, .external_lex_state = 5}, - [1482] = {.lex_state = 240, .external_lex_state = 5}, - [1483] = {.lex_state = 240, .external_lex_state = 5}, - [1484] = {.lex_state = 55, .external_lex_state = 3}, - [1485] = {.lex_state = 55, .external_lex_state = 4}, - [1486] = {.lex_state = 55, .external_lex_state = 4}, - [1487] = {.lex_state = 55, .external_lex_state = 4}, - [1488] = {.lex_state = 242, .external_lex_state = 7}, - [1489] = {.lex_state = 240, .external_lex_state = 5}, - [1490] = {.lex_state = 59, .external_lex_state = 3}, - [1491] = {.lex_state = 240, .external_lex_state = 5}, - [1492] = {.lex_state = 55, .external_lex_state = 3}, - [1493] = {.lex_state = 240, .external_lex_state = 5}, - [1494] = {.lex_state = 240, .external_lex_state = 5}, - [1495] = {.lex_state = 240, .external_lex_state = 5}, - [1496] = {.lex_state = 240, .external_lex_state = 5}, - [1497] = {.lex_state = 240, .external_lex_state = 5}, - [1498] = {.lex_state = 240, .external_lex_state = 5}, - [1499] = {.lex_state = 55, .external_lex_state = 4}, - [1500] = {.lex_state = 240, .external_lex_state = 5}, - [1501] = {.lex_state = 55, .external_lex_state = 3}, - [1502] = {.lex_state = 56, .external_lex_state = 3}, - [1503] = {.lex_state = 55, .external_lex_state = 4}, - [1504] = {.lex_state = 55, .external_lex_state = 4}, - [1505] = {.lex_state = 55, .external_lex_state = 4}, - [1506] = {.lex_state = 240, .external_lex_state = 5}, - [1507] = {.lex_state = 240, .external_lex_state = 5}, - [1508] = {.lex_state = 240, .external_lex_state = 5}, - [1509] = {.lex_state = 240, .external_lex_state = 5}, - [1510] = {.lex_state = 240, .external_lex_state = 5}, - [1511] = {.lex_state = 55, .external_lex_state = 4}, - [1512] = {.lex_state = 240, .external_lex_state = 5}, - [1513] = {.lex_state = 240, .external_lex_state = 5}, - [1514] = {.lex_state = 240, .external_lex_state = 5}, - [1515] = {.lex_state = 55, .external_lex_state = 4}, - [1516] = {.lex_state = 240, .external_lex_state = 5}, - [1517] = {.lex_state = 55, .external_lex_state = 4}, - [1518] = {.lex_state = 55, .external_lex_state = 4}, - [1519] = {.lex_state = 240, .external_lex_state = 5}, - [1520] = {.lex_state = 55, .external_lex_state = 4}, - [1521] = {.lex_state = 240, .external_lex_state = 5}, - [1522] = {.lex_state = 240, .external_lex_state = 5}, - [1523] = {.lex_state = 240, .external_lex_state = 5}, - [1524] = {.lex_state = 240, .external_lex_state = 5}, - [1525] = {.lex_state = 240, .external_lex_state = 5}, - [1526] = {.lex_state = 240, .external_lex_state = 5}, - [1527] = {.lex_state = 240, .external_lex_state = 4}, - [1528] = {.lex_state = 240, .external_lex_state = 5}, - [1529] = {.lex_state = 240, .external_lex_state = 6}, - [1530] = {.lex_state = 240, .external_lex_state = 6}, - [1531] = {.lex_state = 240, .external_lex_state = 5}, - [1532] = {.lex_state = 240, .external_lex_state = 6}, - [1533] = {.lex_state = 240, .external_lex_state = 5}, - [1534] = {.lex_state = 55, .external_lex_state = 4}, - [1535] = {.lex_state = 240, .external_lex_state = 5}, - [1536] = {.lex_state = 240, .external_lex_state = 5}, - [1537] = {.lex_state = 240, .external_lex_state = 5}, - [1538] = {.lex_state = 240, .external_lex_state = 5}, - [1539] = {.lex_state = 240, .external_lex_state = 5}, - [1540] = {.lex_state = 55, .external_lex_state = 4}, - [1541] = {.lex_state = 55, .external_lex_state = 4}, - [1542] = {.lex_state = 240, .external_lex_state = 5}, - [1543] = {.lex_state = 55, .external_lex_state = 4}, - [1544] = {.lex_state = 55, .external_lex_state = 4}, - [1545] = {.lex_state = 240, .external_lex_state = 5}, - [1546] = {.lex_state = 240, .external_lex_state = 5}, - [1547] = {.lex_state = 240, .external_lex_state = 5}, - [1548] = {.lex_state = 55, .external_lex_state = 4}, - [1549] = {.lex_state = 240, .external_lex_state = 5}, - [1550] = {.lex_state = 240, .external_lex_state = 5}, - [1551] = {.lex_state = 240, .external_lex_state = 5}, - [1552] = {.lex_state = 240, .external_lex_state = 5}, - [1553] = {.lex_state = 55, .external_lex_state = 4}, - [1554] = {.lex_state = 55, .external_lex_state = 4}, - [1555] = {.lex_state = 55, .external_lex_state = 4}, - [1556] = {.lex_state = 240, .external_lex_state = 5}, - [1557] = {.lex_state = 55, .external_lex_state = 4}, - [1558] = {.lex_state = 240, .external_lex_state = 5}, - [1559] = {.lex_state = 240, .external_lex_state = 5}, - [1560] = {.lex_state = 240, .external_lex_state = 5}, - [1561] = {.lex_state = 240, .external_lex_state = 5}, - [1562] = {.lex_state = 240, .external_lex_state = 5}, - [1563] = {.lex_state = 240, .external_lex_state = 5}, - [1564] = {.lex_state = 240, .external_lex_state = 5}, - [1565] = {.lex_state = 240, .external_lex_state = 5}, - [1566] = {.lex_state = 240, .external_lex_state = 5}, - [1567] = {.lex_state = 240, .external_lex_state = 5}, - [1568] = {.lex_state = 240, .external_lex_state = 5}, - [1569] = {.lex_state = 55, .external_lex_state = 3}, - [1570] = {.lex_state = 59, .external_lex_state = 3}, - [1571] = {.lex_state = 55, .external_lex_state = 3}, - [1572] = {.lex_state = 240, .external_lex_state = 7}, - [1573] = {.lex_state = 55, .external_lex_state = 3}, - [1574] = {.lex_state = 241, .external_lex_state = 7}, - [1575] = {.lex_state = 240, .external_lex_state = 6}, - [1576] = {.lex_state = 55, .external_lex_state = 3}, - [1577] = {.lex_state = 55, .external_lex_state = 3}, - [1578] = {.lex_state = 240, .external_lex_state = 7}, - [1579] = {.lex_state = 55, .external_lex_state = 3}, + [1322] = {.lex_state = 266, .external_lex_state = 3}, + [1323] = {.lex_state = 268, .external_lex_state = 4}, + [1324] = {.lex_state = 266, .external_lex_state = 7}, + [1325] = {.lex_state = 268, .external_lex_state = 5}, + [1326] = {.lex_state = 266, .external_lex_state = 7}, + [1327] = {.lex_state = 58, .external_lex_state = 4}, + [1328] = {.lex_state = 268, .external_lex_state = 4}, + [1329] = {.lex_state = 268, .external_lex_state = 4}, + [1330] = {.lex_state = 53, .external_lex_state = 3}, + [1331] = {.lex_state = 59, .external_lex_state = 4}, + [1332] = {.lex_state = 59, .external_lex_state = 4}, + [1333] = {.lex_state = 70, .external_lex_state = 4}, + [1334] = {.lex_state = 59, .external_lex_state = 4}, + [1335] = {.lex_state = 269, .external_lex_state = 4}, + [1336] = {.lex_state = 270, .external_lex_state = 5}, + [1337] = {.lex_state = 59, .external_lex_state = 3}, + [1338] = {.lex_state = 59, .external_lex_state = 3}, + [1339] = {.lex_state = 59, .external_lex_state = 4}, + [1340] = {.lex_state = 270, .external_lex_state = 5}, + [1341] = {.lex_state = 59, .external_lex_state = 4}, + [1342] = {.lex_state = 71, .external_lex_state = 3}, + [1343] = {.lex_state = 269, .external_lex_state = 5}, + [1344] = {.lex_state = 272, .external_lex_state = 6}, + [1345] = {.lex_state = 59, .external_lex_state = 3}, + [1346] = {.lex_state = 56, .external_lex_state = 4}, + [1347] = {.lex_state = 269, .external_lex_state = 5}, + [1348] = {.lex_state = 56, .external_lex_state = 4}, + [1349] = {.lex_state = 56, .external_lex_state = 4}, + [1350] = {.lex_state = 59, .external_lex_state = 4}, + [1351] = {.lex_state = 59, .external_lex_state = 3}, + [1352] = {.lex_state = 266, .external_lex_state = 3}, + [1353] = {.lex_state = 58, .external_lex_state = 3}, + [1354] = {.lex_state = 268, .external_lex_state = 6}, + [1355] = {.lex_state = 269, .external_lex_state = 5}, + [1356] = {.lex_state = 269, .external_lex_state = 3}, + [1357] = {.lex_state = 59, .external_lex_state = 4}, + [1358] = {.lex_state = 268, .external_lex_state = 6}, + [1359] = {.lex_state = 59, .external_lex_state = 3}, + [1360] = {.lex_state = 270, .external_lex_state = 5}, + [1361] = {.lex_state = 71, .external_lex_state = 3}, + [1362] = {.lex_state = 63, .external_lex_state = 4}, + [1363] = {.lex_state = 63, .external_lex_state = 4}, + [1364] = {.lex_state = 58, .external_lex_state = 3}, + [1365] = {.lex_state = 69, .external_lex_state = 3}, + [1366] = {.lex_state = 69, .external_lex_state = 3}, + [1367] = {.lex_state = 63, .external_lex_state = 4}, + [1368] = {.lex_state = 69, .external_lex_state = 3}, + [1369] = {.lex_state = 63, .external_lex_state = 4}, + [1370] = {.lex_state = 272, .external_lex_state = 6}, + [1371] = {.lex_state = 268, .external_lex_state = 6}, + [1372] = {.lex_state = 59, .external_lex_state = 4}, + [1373] = {.lex_state = 71, .external_lex_state = 3}, + [1374] = {.lex_state = 58, .external_lex_state = 3}, + [1375] = {.lex_state = 63, .external_lex_state = 4}, + [1376] = {.lex_state = 269, .external_lex_state = 5}, + [1377] = {.lex_state = 269, .external_lex_state = 5}, + [1378] = {.lex_state = 270, .external_lex_state = 6}, + [1379] = {.lex_state = 63, .external_lex_state = 3}, + [1380] = {.lex_state = 270, .external_lex_state = 6}, + [1381] = {.lex_state = 270, .external_lex_state = 6}, + [1382] = {.lex_state = 269, .external_lex_state = 5}, + [1383] = {.lex_state = 61, .external_lex_state = 3}, + [1384] = {.lex_state = 63, .external_lex_state = 4}, + [1385] = {.lex_state = 267, .external_lex_state = 7}, + [1386] = {.lex_state = 270, .external_lex_state = 6}, + [1387] = {.lex_state = 269, .external_lex_state = 5}, + [1388] = {.lex_state = 58, .external_lex_state = 3}, + [1389] = {.lex_state = 270, .external_lex_state = 6}, + [1390] = {.lex_state = 269, .external_lex_state = 5}, + [1391] = {.lex_state = 71, .external_lex_state = 3}, + [1392] = {.lex_state = 63, .external_lex_state = 4}, + [1393] = {.lex_state = 63, .external_lex_state = 3}, + [1394] = {.lex_state = 63, .external_lex_state = 4}, + [1395] = {.lex_state = 270, .external_lex_state = 5}, + [1396] = {.lex_state = 69, .external_lex_state = 3}, + [1397] = {.lex_state = 268, .external_lex_state = 6}, + [1398] = {.lex_state = 270, .external_lex_state = 5}, + [1399] = {.lex_state = 71, .external_lex_state = 3}, + [1400] = {.lex_state = 63, .external_lex_state = 4}, + [1401] = {.lex_state = 63, .external_lex_state = 4}, + [1402] = {.lex_state = 269, .external_lex_state = 5}, + [1403] = {.lex_state = 269, .external_lex_state = 5}, + [1404] = {.lex_state = 269, .external_lex_state = 5}, + [1405] = {.lex_state = 270, .external_lex_state = 7}, + [1406] = {.lex_state = 270, .external_lex_state = 7}, + [1407] = {.lex_state = 63, .external_lex_state = 4}, + [1408] = {.lex_state = 269, .external_lex_state = 5}, + [1409] = {.lex_state = 63, .external_lex_state = 4}, + [1410] = {.lex_state = 63, .external_lex_state = 4}, + [1411] = {.lex_state = 70, .external_lex_state = 3}, + [1412] = {.lex_state = 71, .external_lex_state = 3}, + [1413] = {.lex_state = 70, .external_lex_state = 3}, + [1414] = {.lex_state = 71, .external_lex_state = 3}, + [1415] = {.lex_state = 269, .external_lex_state = 5}, + [1416] = {.lex_state = 269, .external_lex_state = 5}, + [1417] = {.lex_state = 71, .external_lex_state = 3}, + [1418] = {.lex_state = 71, .external_lex_state = 3}, + [1419] = {.lex_state = 64, .external_lex_state = 3}, + [1420] = {.lex_state = 70, .external_lex_state = 3}, + [1421] = {.lex_state = 269, .external_lex_state = 5}, + [1422] = {.lex_state = 63, .external_lex_state = 3}, + [1423] = {.lex_state = 63, .external_lex_state = 4}, + [1424] = {.lex_state = 63, .external_lex_state = 3}, + [1425] = {.lex_state = 269, .external_lex_state = 5}, + [1426] = {.lex_state = 272, .external_lex_state = 7}, + [1427] = {.lex_state = 56, .external_lex_state = 3}, + [1428] = {.lex_state = 269, .external_lex_state = 5}, + [1429] = {.lex_state = 279, .external_lex_state = 2}, + [1430] = {.lex_state = 269, .external_lex_state = 5}, + [1431] = {.lex_state = 63, .external_lex_state = 4}, + [1432] = {.lex_state = 63, .external_lex_state = 4}, + [1433] = {.lex_state = 279, .external_lex_state = 2}, + [1434] = {.lex_state = 269, .external_lex_state = 5}, + [1435] = {.lex_state = 269, .external_lex_state = 5}, + [1436] = {.lex_state = 279, .external_lex_state = 2}, + [1437] = {.lex_state = 63, .external_lex_state = 4}, + [1438] = {.lex_state = 269, .external_lex_state = 4}, + [1439] = {.lex_state = 70, .external_lex_state = 3}, + [1440] = {.lex_state = 269, .external_lex_state = 5}, + [1441] = {.lex_state = 269, .external_lex_state = 5}, + [1442] = {.lex_state = 270, .external_lex_state = 6}, + [1443] = {.lex_state = 269, .external_lex_state = 5}, + [1444] = {.lex_state = 63, .external_lex_state = 4}, + [1445] = {.lex_state = 63, .external_lex_state = 4}, + [1446] = {.lex_state = 269, .external_lex_state = 6}, + [1447] = {.lex_state = 56, .external_lex_state = 3}, + [1448] = {.lex_state = 63, .external_lex_state = 4}, + [1449] = {.lex_state = 63, .external_lex_state = 4}, + [1450] = {.lex_state = 64, .external_lex_state = 3}, + [1451] = {.lex_state = 63, .external_lex_state = 3}, + [1452] = {.lex_state = 63, .external_lex_state = 4}, + [1453] = {.lex_state = 270, .external_lex_state = 7}, + [1454] = {.lex_state = 63, .external_lex_state = 4}, + [1455] = {.lex_state = 63, .external_lex_state = 4}, + [1456] = {.lex_state = 270, .external_lex_state = 7}, + [1457] = {.lex_state = 269, .external_lex_state = 5}, + [1458] = {.lex_state = 63, .external_lex_state = 4}, + [1459] = {.lex_state = 63, .external_lex_state = 3}, + [1460] = {.lex_state = 269, .external_lex_state = 5}, + [1461] = {.lex_state = 269, .external_lex_state = 5}, + [1462] = {.lex_state = 269, .external_lex_state = 5}, + [1463] = {.lex_state = 63, .external_lex_state = 4}, + [1464] = {.lex_state = 63, .external_lex_state = 4}, + [1465] = {.lex_state = 279, .external_lex_state = 2}, + [1466] = {.lex_state = 269, .external_lex_state = 5}, + [1467] = {.lex_state = 63, .external_lex_state = 4}, + [1468] = {.lex_state = 63, .external_lex_state = 4}, + [1469] = {.lex_state = 269, .external_lex_state = 3}, + [1470] = {.lex_state = 63, .external_lex_state = 4}, + [1471] = {.lex_state = 269, .external_lex_state = 6}, + [1472] = {.lex_state = 63, .external_lex_state = 4}, + [1473] = {.lex_state = 63, .external_lex_state = 4}, + [1474] = {.lex_state = 63, .external_lex_state = 4}, + [1475] = {.lex_state = 63, .external_lex_state = 4}, + [1476] = {.lex_state = 63, .external_lex_state = 4}, + [1477] = {.lex_state = 70, .external_lex_state = 3}, + [1478] = {.lex_state = 269, .external_lex_state = 5}, + [1479] = {.lex_state = 63, .external_lex_state = 4}, + [1480] = {.lex_state = 269, .external_lex_state = 5}, + [1481] = {.lex_state = 63, .external_lex_state = 4}, + [1482] = {.lex_state = 269, .external_lex_state = 5}, + [1483] = {.lex_state = 63, .external_lex_state = 4}, + [1484] = {.lex_state = 269, .external_lex_state = 6}, + [1485] = {.lex_state = 269, .external_lex_state = 5}, + [1486] = {.lex_state = 269, .external_lex_state = 6}, + [1487] = {.lex_state = 269, .external_lex_state = 5}, + [1488] = {.lex_state = 63, .external_lex_state = 4}, + [1489] = {.lex_state = 63, .external_lex_state = 4}, + [1490] = {.lex_state = 56, .external_lex_state = 4}, + [1491] = {.lex_state = 62, .external_lex_state = 3}, + [1492] = {.lex_state = 63, .external_lex_state = 4}, + [1493] = {.lex_state = 269, .external_lex_state = 5}, + [1494] = {.lex_state = 63, .external_lex_state = 4}, + [1495] = {.lex_state = 269, .external_lex_state = 5}, + [1496] = {.lex_state = 269, .external_lex_state = 5}, + [1497] = {.lex_state = 269, .external_lex_state = 5}, + [1498] = {.lex_state = 272, .external_lex_state = 7}, + [1499] = {.lex_state = 63, .external_lex_state = 4}, + [1500] = {.lex_state = 269, .external_lex_state = 5}, + [1501] = {.lex_state = 269, .external_lex_state = 5}, + [1502] = {.lex_state = 269, .external_lex_state = 5}, + [1503] = {.lex_state = 269, .external_lex_state = 5}, + [1504] = {.lex_state = 269, .external_lex_state = 5}, + [1505] = {.lex_state = 62, .external_lex_state = 3}, + [1506] = {.lex_state = 270, .external_lex_state = 7}, + [1507] = {.lex_state = 70, .external_lex_state = 3}, + [1508] = {.lex_state = 63, .external_lex_state = 4}, + [1509] = {.lex_state = 63, .external_lex_state = 4}, + [1510] = {.lex_state = 70, .external_lex_state = 3}, + [1511] = {.lex_state = 63, .external_lex_state = 4}, + [1512] = {.lex_state = 269, .external_lex_state = 5}, + [1513] = {.lex_state = 63, .external_lex_state = 4}, + [1514] = {.lex_state = 269, .external_lex_state = 5}, + [1515] = {.lex_state = 63, .external_lex_state = 4}, + [1516] = {.lex_state = 269, .external_lex_state = 6}, + [1517] = {.lex_state = 269, .external_lex_state = 5}, + [1518] = {.lex_state = 59, .external_lex_state = 3}, + [1519] = {.lex_state = 63, .external_lex_state = 4}, + [1520] = {.lex_state = 62, .external_lex_state = 3}, + [1521] = {.lex_state = 63, .external_lex_state = 4}, + [1522] = {.lex_state = 63, .external_lex_state = 4}, + [1523] = {.lex_state = 269, .external_lex_state = 5}, + [1524] = {.lex_state = 269, .external_lex_state = 5}, + [1525] = {.lex_state = 63, .external_lex_state = 4}, + [1526] = {.lex_state = 270, .external_lex_state = 6}, + [1527] = {.lex_state = 269, .external_lex_state = 5}, + [1528] = {.lex_state = 63, .external_lex_state = 4}, + [1529] = {.lex_state = 269, .external_lex_state = 5}, + [1530] = {.lex_state = 63, .external_lex_state = 4}, + [1531] = {.lex_state = 269, .external_lex_state = 5}, + [1532] = {.lex_state = 269, .external_lex_state = 6}, + [1533] = {.lex_state = 269, .external_lex_state = 5}, + [1534] = {.lex_state = 269, .external_lex_state = 5}, + [1535] = {.lex_state = 63, .external_lex_state = 4}, + [1536] = {.lex_state = 63, .external_lex_state = 4}, + [1537] = {.lex_state = 269, .external_lex_state = 5}, + [1538] = {.lex_state = 63, .external_lex_state = 4}, + [1539] = {.lex_state = 269, .external_lex_state = 5}, + [1540] = {.lex_state = 63, .external_lex_state = 3}, + [1541] = {.lex_state = 269, .external_lex_state = 5}, + [1542] = {.lex_state = 269, .external_lex_state = 5}, + [1543] = {.lex_state = 70, .external_lex_state = 3}, + [1544] = {.lex_state = 268, .external_lex_state = 7}, + [1545] = {.lex_state = 64, .external_lex_state = 3}, + [1546] = {.lex_state = 63, .external_lex_state = 4}, + [1547] = {.lex_state = 269, .external_lex_state = 5}, + [1548] = {.lex_state = 269, .external_lex_state = 4}, + [1549] = {.lex_state = 269, .external_lex_state = 5}, + [1550] = {.lex_state = 270, .external_lex_state = 6}, + [1551] = {.lex_state = 269, .external_lex_state = 5}, + [1552] = {.lex_state = 64, .external_lex_state = 3}, + [1553] = {.lex_state = 64, .external_lex_state = 3}, + [1554] = {.lex_state = 268, .external_lex_state = 7}, + [1555] = {.lex_state = 269, .external_lex_state = 5}, + [1556] = {.lex_state = 269, .external_lex_state = 5}, + [1557] = {.lex_state = 269, .external_lex_state = 5}, + [1558] = {.lex_state = 269, .external_lex_state = 5}, + [1559] = {.lex_state = 269, .external_lex_state = 5}, + [1560] = {.lex_state = 269, .external_lex_state = 5}, + [1561] = {.lex_state = 269, .external_lex_state = 5}, + [1562] = {.lex_state = 269, .external_lex_state = 5}, + [1563] = {.lex_state = 269, .external_lex_state = 5}, + [1564] = {.lex_state = 269, .external_lex_state = 5}, + [1565] = {.lex_state = 269, .external_lex_state = 5}, + [1566] = {.lex_state = 56, .external_lex_state = 3}, + [1567] = {.lex_state = 269, .external_lex_state = 5}, + [1568] = {.lex_state = 269, .external_lex_state = 5}, + [1569] = {.lex_state = 269, .external_lex_state = 5}, + [1570] = {.lex_state = 269, .external_lex_state = 5}, + [1571] = {.lex_state = 269, .external_lex_state = 5}, + [1572] = {.lex_state = 63, .external_lex_state = 3}, + [1573] = {.lex_state = 269, .external_lex_state = 6}, + [1574] = {.lex_state = 63, .external_lex_state = 3}, + [1575] = {.lex_state = 269, .external_lex_state = 5}, + [1576] = {.lex_state = 63, .external_lex_state = 4}, + [1577] = {.lex_state = 56, .external_lex_state = 4}, + [1578] = {.lex_state = 59, .external_lex_state = 3}, + [1579] = {.lex_state = 268, .external_lex_state = 7}, [1580] = {.lex_state = 59, .external_lex_state = 3}, - [1581] = {.lex_state = 55, .external_lex_state = 3}, - [1582] = {.lex_state = 59, .external_lex_state = 3}, - [1583] = {.lex_state = 55, .external_lex_state = 3}, - [1584] = {.lex_state = 55, .external_lex_state = 3}, - [1585] = {.lex_state = 242, .external_lex_state = 3}, - [1586] = {.lex_state = 240, .external_lex_state = 7}, - [1587] = {.lex_state = 242, .external_lex_state = 3}, - [1588] = {.lex_state = 55, .external_lex_state = 3}, - [1589] = {.lex_state = 240, .external_lex_state = 7}, - [1590] = {.lex_state = 55, .external_lex_state = 3}, - [1591] = {.lex_state = 55, .external_lex_state = 3}, - [1592] = {.lex_state = 55, .external_lex_state = 3}, - [1593] = {.lex_state = 55, .external_lex_state = 3}, - [1594] = {.lex_state = 59, .external_lex_state = 3}, - [1595] = {.lex_state = 55, .external_lex_state = 3}, - [1596] = {.lex_state = 55, .external_lex_state = 3}, - [1597] = {.lex_state = 55, .external_lex_state = 3}, - [1598] = {.lex_state = 55, .external_lex_state = 3}, - [1599] = {.lex_state = 55, .external_lex_state = 3}, - [1600] = {.lex_state = 59, .external_lex_state = 3}, - [1601] = {.lex_state = 55, .external_lex_state = 3}, - [1602] = {.lex_state = 55, .external_lex_state = 3}, - [1603] = {.lex_state = 55, .external_lex_state = 3}, - [1604] = {.lex_state = 55, .external_lex_state = 3}, - [1605] = {.lex_state = 248, .external_lex_state = 2}, - [1606] = {.lex_state = 241, .external_lex_state = 7}, - [1607] = {.lex_state = 55, .external_lex_state = 3}, - [1608] = {.lex_state = 55, .external_lex_state = 3}, - [1609] = {.lex_state = 55, .external_lex_state = 3}, - [1610] = {.lex_state = 240, .external_lex_state = 7}, - [1611] = {.lex_state = 55, .external_lex_state = 3}, - [1612] = {.lex_state = 59, .external_lex_state = 3}, - [1613] = {.lex_state = 55, .external_lex_state = 3}, - [1614] = {.lex_state = 59, .external_lex_state = 3}, - [1615] = {.lex_state = 55, .external_lex_state = 3}, - [1616] = {.lex_state = 248, .external_lex_state = 2}, - [1617] = {.lex_state = 55, .external_lex_state = 3}, - [1618] = {.lex_state = 241, .external_lex_state = 7}, - [1619] = {.lex_state = 55, .external_lex_state = 3}, - [1620] = {.lex_state = 59, .external_lex_state = 3}, - [1621] = {.lex_state = 56, .external_lex_state = 3}, - [1622] = {.lex_state = 55, .external_lex_state = 3}, - [1623] = {.lex_state = 55, .external_lex_state = 3}, - [1624] = {.lex_state = 242, .external_lex_state = 3}, - [1625] = {.lex_state = 242, .external_lex_state = 3}, - [1626] = {.lex_state = 56, .external_lex_state = 3}, - [1627] = {.lex_state = 242, .external_lex_state = 3}, - [1628] = {.lex_state = 56, .external_lex_state = 3}, - [1629] = {.lex_state = 56, .external_lex_state = 3}, - [1630] = {.lex_state = 56, .external_lex_state = 3}, - [1631] = {.lex_state = 241, .external_lex_state = 7}, - [1632] = {.lex_state = 241, .external_lex_state = 7}, - [1633] = {.lex_state = 240, .external_lex_state = 6}, - [1634] = {.lex_state = 240, .external_lex_state = 7}, - [1635] = {.lex_state = 240, .external_lex_state = 6}, - [1636] = {.lex_state = 240, .external_lex_state = 6}, - [1637] = {.lex_state = 240, .external_lex_state = 6}, - [1638] = {.lex_state = 55, .external_lex_state = 3}, - [1639] = {.lex_state = 59, .external_lex_state = 3}, - [1640] = {.lex_state = 240, .external_lex_state = 6}, - [1641] = {.lex_state = 242, .external_lex_state = 3}, - [1642] = {.lex_state = 240, .external_lex_state = 6}, - [1643] = {.lex_state = 55, .external_lex_state = 3}, - [1644] = {.lex_state = 59, .external_lex_state = 3}, - [1645] = {.lex_state = 55, .external_lex_state = 3}, - [1646] = {.lex_state = 240, .external_lex_state = 6}, - [1647] = {.lex_state = 55, .external_lex_state = 3}, - [1648] = {.lex_state = 59, .external_lex_state = 3}, - [1649] = {.lex_state = 55, .external_lex_state = 3}, - [1650] = {.lex_state = 240, .external_lex_state = 6}, - [1651] = {.lex_state = 240, .external_lex_state = 6}, - [1652] = {.lex_state = 59, .external_lex_state = 3}, - [1653] = {.lex_state = 240, .external_lex_state = 6}, - [1654] = {.lex_state = 55, .external_lex_state = 3}, - [1655] = {.lex_state = 240, .external_lex_state = 6}, - [1656] = {.lex_state = 59, .external_lex_state = 3}, - [1657] = {.lex_state = 59, .external_lex_state = 3}, - [1658] = {.lex_state = 240, .external_lex_state = 6}, - [1659] = {.lex_state = 59, .external_lex_state = 3}, - [1660] = {.lex_state = 240, .external_lex_state = 6}, - [1661] = {.lex_state = 240, .external_lex_state = 6}, - [1662] = {.lex_state = 242, .external_lex_state = 3}, - [1663] = {.lex_state = 59, .external_lex_state = 3}, - [1664] = {.lex_state = 55, .external_lex_state = 3}, - [1665] = {.lex_state = 55, .external_lex_state = 3}, - [1666] = {.lex_state = 59, .external_lex_state = 3}, - [1667] = {.lex_state = 55, .external_lex_state = 3}, - [1668] = {.lex_state = 55, .external_lex_state = 3}, - [1669] = {.lex_state = 59, .external_lex_state = 3}, - [1670] = {.lex_state = 240, .external_lex_state = 6}, - [1671] = {.lex_state = 59, .external_lex_state = 3}, - [1672] = {.lex_state = 59, .external_lex_state = 3}, - [1673] = {.lex_state = 55, .external_lex_state = 3}, - [1674] = {.lex_state = 55, .external_lex_state = 3}, - [1675] = {.lex_state = 240, .external_lex_state = 7}, - [1676] = {.lex_state = 240, .external_lex_state = 6}, - [1677] = {.lex_state = 240, .external_lex_state = 6}, - [1678] = {.lex_state = 240, .external_lex_state = 6}, - [1679] = {.lex_state = 240, .external_lex_state = 6}, - [1680] = {.lex_state = 240, .external_lex_state = 6}, - [1681] = {.lex_state = 55, .external_lex_state = 3}, - [1682] = {.lex_state = 240, .external_lex_state = 6}, - [1683] = {.lex_state = 240, .external_lex_state = 6}, - [1684] = {.lex_state = 240, .external_lex_state = 6}, - [1685] = {.lex_state = 55, .external_lex_state = 3}, - [1686] = {.lex_state = 55, .external_lex_state = 3}, - [1687] = {.lex_state = 55, .external_lex_state = 3}, - [1688] = {.lex_state = 55, .external_lex_state = 3}, - [1689] = {.lex_state = 55, .external_lex_state = 3}, - [1690] = {.lex_state = 55, .external_lex_state = 3}, - [1691] = {.lex_state = 55, .external_lex_state = 3}, - [1692] = {.lex_state = 55, .external_lex_state = 3}, - [1693] = {.lex_state = 55, .external_lex_state = 3}, - [1694] = {.lex_state = 240, .external_lex_state = 6}, - [1695] = {.lex_state = 248, .external_lex_state = 2}, - [1696] = {.lex_state = 59, .external_lex_state = 3}, - [1697] = {.lex_state = 240, .external_lex_state = 6}, - [1698] = {.lex_state = 240, .external_lex_state = 6}, - [1699] = {.lex_state = 240, .external_lex_state = 6}, - [1700] = {.lex_state = 240, .external_lex_state = 6}, - [1701] = {.lex_state = 240, .external_lex_state = 6}, - [1702] = {.lex_state = 240, .external_lex_state = 6}, - [1703] = {.lex_state = 240, .external_lex_state = 6}, - [1704] = {.lex_state = 52, .external_lex_state = 3}, - [1705] = {.lex_state = 55, .external_lex_state = 3}, - [1706] = {.lex_state = 55, .external_lex_state = 3}, - [1707] = {.lex_state = 55, .external_lex_state = 3}, - [1708] = {.lex_state = 240, .external_lex_state = 6}, - [1709] = {.lex_state = 240, .external_lex_state = 6}, - [1710] = {.lex_state = 248, .external_lex_state = 8}, - [1711] = {.lex_state = 240, .external_lex_state = 6}, - [1712] = {.lex_state = 55, .external_lex_state = 3}, - [1713] = {.lex_state = 242, .external_lex_state = 3}, - [1714] = {.lex_state = 55, .external_lex_state = 3}, - [1715] = {.lex_state = 55, .external_lex_state = 3}, - [1716] = {.lex_state = 55, .external_lex_state = 3}, - [1717] = {.lex_state = 240, .external_lex_state = 6}, - [1718] = {.lex_state = 240, .external_lex_state = 6}, - [1719] = {.lex_state = 240, .external_lex_state = 6}, - [1720] = {.lex_state = 240, .external_lex_state = 6}, - [1721] = {.lex_state = 240, .external_lex_state = 6}, - [1722] = {.lex_state = 240, .external_lex_state = 6}, - [1723] = {.lex_state = 240, .external_lex_state = 6}, - [1724] = {.lex_state = 240, .external_lex_state = 6}, - [1725] = {.lex_state = 240, .external_lex_state = 6}, - [1726] = {.lex_state = 55, .external_lex_state = 3}, - [1727] = {.lex_state = 240, .external_lex_state = 6}, - [1728] = {.lex_state = 59, .external_lex_state = 3}, - [1729] = {.lex_state = 240, .external_lex_state = 6}, - [1730] = {.lex_state = 240, .external_lex_state = 6}, - [1731] = {.lex_state = 55, .external_lex_state = 3}, - [1732] = {.lex_state = 55, .external_lex_state = 3}, - [1733] = {.lex_state = 59, .external_lex_state = 3}, - [1734] = {.lex_state = 59, .external_lex_state = 3}, - [1735] = {.lex_state = 55, .external_lex_state = 3}, - [1736] = {.lex_state = 59, .external_lex_state = 3}, - [1737] = {.lex_state = 59, .external_lex_state = 3}, - [1738] = {.lex_state = 59, .external_lex_state = 3}, - [1739] = {.lex_state = 55, .external_lex_state = 3}, - [1740] = {.lex_state = 240, .external_lex_state = 6}, - [1741] = {.lex_state = 240, .external_lex_state = 6}, - [1742] = {.lex_state = 240, .external_lex_state = 6}, - [1743] = {.lex_state = 240, .external_lex_state = 6}, - [1744] = {.lex_state = 240, .external_lex_state = 6}, - [1745] = {.lex_state = 240, .external_lex_state = 6}, - [1746] = {.lex_state = 240, .external_lex_state = 6}, - [1747] = {.lex_state = 59, .external_lex_state = 3}, - [1748] = {.lex_state = 59, .external_lex_state = 3}, - [1749] = {.lex_state = 240, .external_lex_state = 6}, - [1750] = {.lex_state = 242, .external_lex_state = 3}, - [1751] = {.lex_state = 59, .external_lex_state = 3}, - [1752] = {.lex_state = 59, .external_lex_state = 3}, - [1753] = {.lex_state = 240, .external_lex_state = 6}, - [1754] = {.lex_state = 240, .external_lex_state = 6}, - [1755] = {.lex_state = 240, .external_lex_state = 6}, - [1756] = {.lex_state = 240, .external_lex_state = 6}, - [1757] = {.lex_state = 240, .external_lex_state = 6}, - [1758] = {.lex_state = 240, .external_lex_state = 6}, - [1759] = {.lex_state = 240, .external_lex_state = 6}, - [1760] = {.lex_state = 240, .external_lex_state = 6}, - [1761] = {.lex_state = 240, .external_lex_state = 6}, - [1762] = {.lex_state = 248, .external_lex_state = 2}, - [1763] = {.lex_state = 55, .external_lex_state = 3}, - [1764] = {.lex_state = 55, .external_lex_state = 3}, - [1765] = {.lex_state = 240, .external_lex_state = 6}, - [1766] = {.lex_state = 55, .external_lex_state = 3}, - [1767] = {.lex_state = 55, .external_lex_state = 3}, - [1768] = {.lex_state = 55, .external_lex_state = 3}, - [1769] = {.lex_state = 240, .external_lex_state = 6}, - [1770] = {.lex_state = 240, .external_lex_state = 6}, - [1771] = {.lex_state = 55, .external_lex_state = 3}, - [1772] = {.lex_state = 55, .external_lex_state = 3}, - [1773] = {.lex_state = 240, .external_lex_state = 6}, - [1774] = {.lex_state = 59, .external_lex_state = 3}, - [1775] = {.lex_state = 248, .external_lex_state = 2}, - [1776] = {.lex_state = 240, .external_lex_state = 6}, - [1777] = {.lex_state = 55, .external_lex_state = 3}, - [1778] = {.lex_state = 52, .external_lex_state = 3}, - [1779] = {.lex_state = 59, .external_lex_state = 3}, - [1780] = {.lex_state = 240, .external_lex_state = 6}, - [1781] = {.lex_state = 240, .external_lex_state = 6}, - [1782] = {.lex_state = 59, .external_lex_state = 3}, - [1783] = {.lex_state = 240, .external_lex_state = 6}, - [1784] = {.lex_state = 59, .external_lex_state = 3}, - [1785] = {.lex_state = 59, .external_lex_state = 3}, - [1786] = {.lex_state = 59, .external_lex_state = 3}, - [1787] = {.lex_state = 59, .external_lex_state = 3}, - [1788] = {.lex_state = 240, .external_lex_state = 6}, - [1789] = {.lex_state = 240, .external_lex_state = 6}, - [1790] = {.lex_state = 59, .external_lex_state = 3}, - [1791] = {.lex_state = 248, .external_lex_state = 8}, - [1792] = {.lex_state = 59, .external_lex_state = 3}, - [1793] = {.lex_state = 59, .external_lex_state = 3}, - [1794] = {.lex_state = 59, .external_lex_state = 3}, - [1795] = {.lex_state = 59, .external_lex_state = 3}, - [1796] = {.lex_state = 59, .external_lex_state = 3}, - [1797] = {.lex_state = 59, .external_lex_state = 3}, - [1798] = {.lex_state = 59, .external_lex_state = 3}, - [1799] = {.lex_state = 59, .external_lex_state = 3}, - [1800] = {.lex_state = 59, .external_lex_state = 3}, - [1801] = {.lex_state = 240, .external_lex_state = 6}, - [1802] = {.lex_state = 59, .external_lex_state = 3}, - [1803] = {.lex_state = 59, .external_lex_state = 3}, - [1804] = {.lex_state = 59, .external_lex_state = 3}, - [1805] = {.lex_state = 59, .external_lex_state = 3}, - [1806] = {.lex_state = 59, .external_lex_state = 3}, - [1807] = {.lex_state = 248, .external_lex_state = 2}, - [1808] = {.lex_state = 240, .external_lex_state = 7}, - [1809] = {.lex_state = 59, .external_lex_state = 3}, - [1810] = {.lex_state = 248, .external_lex_state = 8}, - [1811] = {.lex_state = 59, .external_lex_state = 3}, - [1812] = {.lex_state = 59, .external_lex_state = 3}, - [1813] = {.lex_state = 59, .external_lex_state = 3}, - [1814] = {.lex_state = 59, .external_lex_state = 3}, - [1815] = {.lex_state = 59, .external_lex_state = 3}, - [1816] = {.lex_state = 59, .external_lex_state = 3}, - [1817] = {.lex_state = 59, .external_lex_state = 3}, - [1818] = {.lex_state = 59, .external_lex_state = 3}, - [1819] = {.lex_state = 59, .external_lex_state = 3}, - [1820] = {.lex_state = 59, .external_lex_state = 3}, - [1821] = {.lex_state = 59, .external_lex_state = 3}, - [1822] = {.lex_state = 59, .external_lex_state = 3}, - [1823] = {.lex_state = 59, .external_lex_state = 3}, - [1824] = {.lex_state = 248, .external_lex_state = 8}, - [1825] = {.lex_state = 59, .external_lex_state = 3}, - [1826] = {.lex_state = 59, .external_lex_state = 3}, - [1827] = {.lex_state = 59, .external_lex_state = 3}, - [1828] = {.lex_state = 59, .external_lex_state = 3}, - [1829] = {.lex_state = 59, .external_lex_state = 3}, - [1830] = {.lex_state = 59, .external_lex_state = 3}, - [1831] = {.lex_state = 59, .external_lex_state = 3}, - [1832] = {.lex_state = 59, .external_lex_state = 3}, - [1833] = {.lex_state = 59, .external_lex_state = 3}, - [1834] = {.lex_state = 59, .external_lex_state = 3}, - [1835] = {.lex_state = 242, .external_lex_state = 3}, - [1836] = {.lex_state = 240, .external_lex_state = 7}, - [1837] = {.lex_state = 240, .external_lex_state = 7}, - [1838] = {.lex_state = 240, .external_lex_state = 7}, - [1839] = {.lex_state = 240, .external_lex_state = 7}, - [1840] = {.lex_state = 240, .external_lex_state = 7}, - [1841] = {.lex_state = 240, .external_lex_state = 7}, - [1842] = {.lex_state = 248, .external_lex_state = 2}, - [1843] = {.lex_state = 240, .external_lex_state = 7}, - [1844] = {.lex_state = 240, .external_lex_state = 7}, - [1845] = {.lex_state = 240, .external_lex_state = 7}, - [1846] = {.lex_state = 242, .external_lex_state = 3}, - [1847] = {.lex_state = 242, .external_lex_state = 3}, - [1848] = {.lex_state = 240, .external_lex_state = 7}, - [1849] = {.lex_state = 240, .external_lex_state = 7}, - [1850] = {.lex_state = 240, .external_lex_state = 7}, - [1851] = {.lex_state = 240, .external_lex_state = 7}, - [1852] = {.lex_state = 240, .external_lex_state = 7}, - [1853] = {.lex_state = 242, .external_lex_state = 3}, - [1854] = {.lex_state = 242, .external_lex_state = 3}, - [1855] = {.lex_state = 248, .external_lex_state = 2}, - [1856] = {.lex_state = 242, .external_lex_state = 3}, - [1857] = {.lex_state = 248, .external_lex_state = 2}, - [1858] = {.lex_state = 242, .external_lex_state = 3}, - [1859] = {.lex_state = 248, .external_lex_state = 8}, - [1860] = {.lex_state = 242, .external_lex_state = 3}, - [1861] = {.lex_state = 242, .external_lex_state = 3}, - [1862] = {.lex_state = 242, .external_lex_state = 3}, - [1863] = {.lex_state = 240, .external_lex_state = 7}, - [1864] = {.lex_state = 240, .external_lex_state = 7}, - [1865] = {.lex_state = 242, .external_lex_state = 3}, - [1866] = {.lex_state = 242, .external_lex_state = 3}, - [1867] = {.lex_state = 240, .external_lex_state = 7}, - [1868] = {.lex_state = 247, .external_lex_state = 2}, - [1869] = {.lex_state = 240, .external_lex_state = 7}, - [1870] = {.lex_state = 242, .external_lex_state = 3}, - [1871] = {.lex_state = 240, .external_lex_state = 7}, - [1872] = {.lex_state = 242, .external_lex_state = 3}, - [1873] = {.lex_state = 242, .external_lex_state = 3}, - [1874] = {.lex_state = 240, .external_lex_state = 7}, - [1875] = {.lex_state = 242, .external_lex_state = 3}, - [1876] = {.lex_state = 242, .external_lex_state = 3}, - [1877] = {.lex_state = 240, .external_lex_state = 7}, - [1878] = {.lex_state = 240, .external_lex_state = 7}, - [1879] = {.lex_state = 240, .external_lex_state = 7}, - [1880] = {.lex_state = 242, .external_lex_state = 3}, - [1881] = {.lex_state = 240, .external_lex_state = 7}, - [1882] = {.lex_state = 242, .external_lex_state = 3}, - [1883] = {.lex_state = 242, .external_lex_state = 3}, - [1884] = {.lex_state = 240, .external_lex_state = 7}, - [1885] = {.lex_state = 240, .external_lex_state = 7}, - [1886] = {.lex_state = 248, .external_lex_state = 2}, - [1887] = {.lex_state = 242, .external_lex_state = 3}, - [1888] = {.lex_state = 242, .external_lex_state = 3}, - [1889] = {.lex_state = 242, .external_lex_state = 3}, - [1890] = {.lex_state = 240, .external_lex_state = 7}, - [1891] = {.lex_state = 242, .external_lex_state = 3}, - [1892] = {.lex_state = 242, .external_lex_state = 3}, - [1893] = {.lex_state = 242, .external_lex_state = 3}, - [1894] = {.lex_state = 240, .external_lex_state = 7}, - [1895] = {.lex_state = 240, .external_lex_state = 7}, - [1896] = {.lex_state = 242, .external_lex_state = 3}, - [1897] = {.lex_state = 240, .external_lex_state = 7}, - [1898] = {.lex_state = 240, .external_lex_state = 7}, - [1899] = {.lex_state = 240, .external_lex_state = 7}, - [1900] = {.lex_state = 248, .external_lex_state = 2}, - [1901] = {.lex_state = 248, .external_lex_state = 2}, - [1902] = {.lex_state = 240, .external_lex_state = 7}, - [1903] = {.lex_state = 242, .external_lex_state = 3}, - [1904] = {.lex_state = 240, .external_lex_state = 7}, - [1905] = {.lex_state = 240, .external_lex_state = 7}, - [1906] = {.lex_state = 240, .external_lex_state = 7}, - [1907] = {.lex_state = 242, .external_lex_state = 3}, - [1908] = {.lex_state = 240, .external_lex_state = 7}, - [1909] = {.lex_state = 240, .external_lex_state = 7}, - [1910] = {.lex_state = 240, .external_lex_state = 7}, - [1911] = {.lex_state = 240, .external_lex_state = 7}, - [1912] = {.lex_state = 240, .external_lex_state = 7}, - [1913] = {.lex_state = 242, .external_lex_state = 3}, - [1914] = {.lex_state = 240, .external_lex_state = 7}, - [1915] = {.lex_state = 240, .external_lex_state = 7}, - [1916] = {.lex_state = 240, .external_lex_state = 7}, - [1917] = {.lex_state = 242, .external_lex_state = 3}, - [1918] = {.lex_state = 240, .external_lex_state = 7}, - [1919] = {.lex_state = 240, .external_lex_state = 7}, - [1920] = {.lex_state = 242, .external_lex_state = 3}, - [1921] = {.lex_state = 240, .external_lex_state = 7}, - [1922] = {.lex_state = 248, .external_lex_state = 2}, - [1923] = {.lex_state = 242, .external_lex_state = 3}, - [1924] = {.lex_state = 248, .external_lex_state = 2}, - [1925] = {.lex_state = 242, .external_lex_state = 3}, - [1926] = {.lex_state = 248, .external_lex_state = 2}, - [1927] = {.lex_state = 242, .external_lex_state = 3}, - [1928] = {.lex_state = 242, .external_lex_state = 3}, - [1929] = {.lex_state = 242, .external_lex_state = 3}, - [1930] = {.lex_state = 242, .external_lex_state = 3}, - [1931] = {.lex_state = 242, .external_lex_state = 3}, - [1932] = {.lex_state = 242, .external_lex_state = 3}, - [1933] = {.lex_state = 242, .external_lex_state = 3}, - [1934] = {.lex_state = 242, .external_lex_state = 3}, - [1935] = {.lex_state = 240, .external_lex_state = 7}, - [1936] = {.lex_state = 242, .external_lex_state = 3}, - [1937] = {.lex_state = 242, .external_lex_state = 3}, - [1938] = {.lex_state = 242, .external_lex_state = 3}, - [1939] = {.lex_state = 242, .external_lex_state = 3}, - [1940] = {.lex_state = 240, .external_lex_state = 7}, - [1941] = {.lex_state = 242, .external_lex_state = 3}, - [1942] = {.lex_state = 240, .external_lex_state = 7}, - [1943] = {.lex_state = 242, .external_lex_state = 3}, - [1944] = {.lex_state = 242, .external_lex_state = 3}, - [1945] = {.lex_state = 240, .external_lex_state = 7}, - [1946] = {.lex_state = 242, .external_lex_state = 3}, - [1947] = {.lex_state = 242, .external_lex_state = 3}, - [1948] = {.lex_state = 242, .external_lex_state = 3}, - [1949] = {.lex_state = 242, .external_lex_state = 3}, - [1950] = {.lex_state = 242, .external_lex_state = 3}, - [1951] = {.lex_state = 242, .external_lex_state = 3}, - [1952] = {.lex_state = 240, .external_lex_state = 7}, - [1953] = {.lex_state = 242, .external_lex_state = 3}, - [1954] = {.lex_state = 242, .external_lex_state = 3}, - [1955] = {.lex_state = 247, .external_lex_state = 2}, - [1956] = {.lex_state = 242, .external_lex_state = 3}, - [1957] = {.lex_state = 242, .external_lex_state = 3}, - [1958] = {.lex_state = 240, .external_lex_state = 7}, - [1959] = {.lex_state = 242, .external_lex_state = 3}, - [1960] = {.lex_state = 240, .external_lex_state = 7}, - [1961] = {.lex_state = 242, .external_lex_state = 3}, - [1962] = {.lex_state = 242, .external_lex_state = 3}, - [1963] = {.lex_state = 242, .external_lex_state = 3}, - [1964] = {.lex_state = 242, .external_lex_state = 3}, - [1965] = {.lex_state = 240, .external_lex_state = 7}, - [1966] = {.lex_state = 242, .external_lex_state = 3}, - [1967] = {.lex_state = 242, .external_lex_state = 3}, - [1968] = {.lex_state = 242, .external_lex_state = 3}, - [1969] = {.lex_state = 240, .external_lex_state = 7}, - [1970] = {.lex_state = 240, .external_lex_state = 7}, - [1971] = {.lex_state = 240, .external_lex_state = 7}, - [1972] = {.lex_state = 240, .external_lex_state = 7}, - [1973] = {.lex_state = 242, .external_lex_state = 3}, - [1974] = {.lex_state = 240, .external_lex_state = 7}, - [1975] = {.lex_state = 242, .external_lex_state = 3}, - [1976] = {.lex_state = 248, .external_lex_state = 8}, - [1977] = {.lex_state = 240, .external_lex_state = 7}, - [1978] = {.lex_state = 248, .external_lex_state = 8}, - [1979] = {.lex_state = 240, .external_lex_state = 7}, - [1980] = {.lex_state = 248, .external_lex_state = 8}, - [1981] = {.lex_state = 240, .external_lex_state = 7}, - [1982] = {.lex_state = 240, .external_lex_state = 7}, - [1983] = {.lex_state = 242, .external_lex_state = 3}, - [1984] = {.lex_state = 248, .external_lex_state = 8}, - [1985] = {.lex_state = 240, .external_lex_state = 7}, - [1986] = {.lex_state = 248, .external_lex_state = 2}, - [1987] = {.lex_state = 240, .external_lex_state = 7}, - [1988] = {.lex_state = 240, .external_lex_state = 7}, - [1989] = {.lex_state = 242, .external_lex_state = 3}, - [1990] = {.lex_state = 240, .external_lex_state = 7}, - [1991] = {.lex_state = 240, .external_lex_state = 7}, - [1992] = {.lex_state = 240, .external_lex_state = 7}, - [1993] = {.lex_state = 240, .external_lex_state = 7}, - [1994] = {.lex_state = 240, .external_lex_state = 7}, - [1995] = {.lex_state = 240, .external_lex_state = 7}, - [1996] = {.lex_state = 242, .external_lex_state = 3}, - [1997] = {.lex_state = 242, .external_lex_state = 3}, - [1998] = {.lex_state = 240, .external_lex_state = 7}, - [1999] = {.lex_state = 248, .external_lex_state = 2}, - [2000] = {.lex_state = 242, .external_lex_state = 3}, - [2001] = {.lex_state = 240, .external_lex_state = 7}, - [2002] = {.lex_state = 242, .external_lex_state = 3}, - [2003] = {.lex_state = 248, .external_lex_state = 8}, - [2004] = {.lex_state = 247, .external_lex_state = 2}, - [2005] = {.lex_state = 248, .external_lex_state = 8}, - [2006] = {.lex_state = 248, .external_lex_state = 8}, - [2007] = {.lex_state = 250, .external_lex_state = 2}, - [2008] = {.lex_state = 248, .external_lex_state = 8}, - [2009] = {.lex_state = 248, .external_lex_state = 2}, - [2010] = {.lex_state = 248, .external_lex_state = 2}, - [2011] = {.lex_state = 247, .external_lex_state = 8}, - [2012] = {.lex_state = 248, .external_lex_state = 2}, - [2013] = {.lex_state = 248, .external_lex_state = 2}, - [2014] = {.lex_state = 248, .external_lex_state = 2}, - [2015] = {.lex_state = 248, .external_lex_state = 8}, - [2016] = {.lex_state = 248, .external_lex_state = 8}, - [2017] = {.lex_state = 247, .external_lex_state = 8}, - [2018] = {.lex_state = 248, .external_lex_state = 2}, - [2019] = {.lex_state = 248, .external_lex_state = 8}, - [2020] = {.lex_state = 248, .external_lex_state = 2}, - [2021] = {.lex_state = 247, .external_lex_state = 8}, - [2022] = {.lex_state = 248, .external_lex_state = 2}, - [2023] = {.lex_state = 248, .external_lex_state = 2}, - [2024] = {.lex_state = 248, .external_lex_state = 8}, - [2025] = {.lex_state = 248, .external_lex_state = 2}, - [2026] = {.lex_state = 248, .external_lex_state = 8}, - [2027] = {.lex_state = 248, .external_lex_state = 2}, - [2028] = {.lex_state = 248, .external_lex_state = 8}, - [2029] = {.lex_state = 248, .external_lex_state = 8}, - [2030] = {.lex_state = 248, .external_lex_state = 8}, - [2031] = {.lex_state = 250, .external_lex_state = 2}, - [2032] = {.lex_state = 248, .external_lex_state = 8}, - [2033] = {.lex_state = 248, .external_lex_state = 8}, - [2034] = {.lex_state = 248, .external_lex_state = 8}, - [2035] = {.lex_state = 248, .external_lex_state = 8}, - [2036] = {.lex_state = 250, .external_lex_state = 2}, - [2037] = {.lex_state = 248, .external_lex_state = 8}, - [2038] = {.lex_state = 248, .external_lex_state = 8}, - [2039] = {.lex_state = 248, .external_lex_state = 8}, - [2040] = {.lex_state = 248, .external_lex_state = 8}, - [2041] = {.lex_state = 248, .external_lex_state = 8}, - [2042] = {.lex_state = 248, .external_lex_state = 8}, - [2043] = {.lex_state = 248, .external_lex_state = 8}, - [2044] = {.lex_state = 98, .external_lex_state = 2}, - [2045] = {.lex_state = 98, .external_lex_state = 2}, - [2046] = {.lex_state = 98, .external_lex_state = 2}, - [2047] = {.lex_state = 98, .external_lex_state = 2}, - [2048] = {.lex_state = 98, .external_lex_state = 2}, - [2049] = {.lex_state = 98, .external_lex_state = 2}, - [2050] = {.lex_state = 98, .external_lex_state = 2}, - [2051] = {.lex_state = 98, .external_lex_state = 2}, - [2052] = {.lex_state = 98, .external_lex_state = 2}, - [2053] = {.lex_state = 98, .external_lex_state = 2}, - [2054] = {.lex_state = 98, .external_lex_state = 2}, - [2055] = {.lex_state = 98, .external_lex_state = 2}, - [2056] = {.lex_state = 98, .external_lex_state = 2}, - [2057] = {.lex_state = 98, .external_lex_state = 2}, - [2058] = {.lex_state = 98, .external_lex_state = 2}, - [2059] = {.lex_state = 87, .external_lex_state = 2}, - [2060] = {.lex_state = 87, .external_lex_state = 2}, - [2061] = {.lex_state = 98, .external_lex_state = 2}, - [2062] = {.lex_state = 250, .external_lex_state = 2}, - [2063] = {.lex_state = 98, .external_lex_state = 2}, - [2064] = {.lex_state = 248, .external_lex_state = 2}, - [2065] = {.lex_state = 250, .external_lex_state = 2}, - [2066] = {.lex_state = 87, .external_lex_state = 2}, - [2067] = {.lex_state = 250, .external_lex_state = 2}, - [2068] = {.lex_state = 94, .external_lex_state = 2}, - [2069] = {.lex_state = 94, .external_lex_state = 2}, - [2070] = {.lex_state = 250, .external_lex_state = 2}, - [2071] = {.lex_state = 250, .external_lex_state = 2}, - [2072] = {.lex_state = 248, .external_lex_state = 8}, - [2073] = {.lex_state = 250, .external_lex_state = 2}, - [2074] = {.lex_state = 250, .external_lex_state = 2}, - [2075] = {.lex_state = 250, .external_lex_state = 2}, - [2076] = {.lex_state = 87, .external_lex_state = 2}, - [2077] = {.lex_state = 87, .external_lex_state = 2}, - [2078] = {.lex_state = 250, .external_lex_state = 2}, - [2079] = {.lex_state = 247, .external_lex_state = 2}, - [2080] = {.lex_state = 247, .external_lex_state = 2}, - [2081] = {.lex_state = 94, .external_lex_state = 2}, - [2082] = {.lex_state = 247, .external_lex_state = 2}, - [2083] = {.lex_state = 247, .external_lex_state = 2}, - [2084] = {.lex_state = 250, .external_lex_state = 2}, - [2085] = {.lex_state = 250, .external_lex_state = 2}, - [2086] = {.lex_state = 94, .external_lex_state = 2}, - [2087] = {.lex_state = 94, .external_lex_state = 2}, - [2088] = {.lex_state = 247, .external_lex_state = 2}, - [2089] = {.lex_state = 250, .external_lex_state = 2}, - [2090] = {.lex_state = 247, .external_lex_state = 2}, - [2091] = {.lex_state = 87, .external_lex_state = 2}, - [2092] = {.lex_state = 250, .external_lex_state = 2}, - [2093] = {.lex_state = 247, .external_lex_state = 2}, - [2094] = {.lex_state = 247, .external_lex_state = 2}, - [2095] = {.lex_state = 250, .external_lex_state = 2}, - [2096] = {.lex_state = 247, .external_lex_state = 2}, - [2097] = {.lex_state = 247, .external_lex_state = 2}, - [2098] = {.lex_state = 247, .external_lex_state = 2}, - [2099] = {.lex_state = 247, .external_lex_state = 8}, - [2100] = {.lex_state = 247, .external_lex_state = 2}, - [2101] = {.lex_state = 247, .external_lex_state = 2}, - [2102] = {.lex_state = 247, .external_lex_state = 8}, - [2103] = {.lex_state = 247, .external_lex_state = 8}, - [2104] = {.lex_state = 247, .external_lex_state = 2}, - [2105] = {.lex_state = 247, .external_lex_state = 8}, - [2106] = {.lex_state = 247, .external_lex_state = 8}, - [2107] = {.lex_state = 247, .external_lex_state = 2}, - [2108] = {.lex_state = 247, .external_lex_state = 2}, - [2109] = {.lex_state = 250, .external_lex_state = 2}, - [2110] = {.lex_state = 247, .external_lex_state = 2}, - [2111] = {.lex_state = 247, .external_lex_state = 2}, - [2112] = {.lex_state = 247, .external_lex_state = 2}, - [2113] = {.lex_state = 247, .external_lex_state = 8}, - [2114] = {.lex_state = 247, .external_lex_state = 2}, - [2115] = {.lex_state = 247, .external_lex_state = 2}, - [2116] = {.lex_state = 94, .external_lex_state = 2}, - [2117] = {.lex_state = 247, .external_lex_state = 2}, - [2118] = {.lex_state = 247, .external_lex_state = 2}, - [2119] = {.lex_state = 247, .external_lex_state = 8}, - [2120] = {.lex_state = 247, .external_lex_state = 2}, - [2121] = {.lex_state = 247, .external_lex_state = 2}, - [2122] = {.lex_state = 247, .external_lex_state = 8}, - [2123] = {.lex_state = 247, .external_lex_state = 8}, - [2124] = {.lex_state = 247, .external_lex_state = 8}, - [2125] = {.lex_state = 247, .external_lex_state = 2}, - [2126] = {.lex_state = 247, .external_lex_state = 8}, - [2127] = {.lex_state = 247, .external_lex_state = 8}, - [2128] = {.lex_state = 247, .external_lex_state = 8}, - [2129] = {.lex_state = 247, .external_lex_state = 8}, - [2130] = {.lex_state = 247, .external_lex_state = 8}, - [2131] = {.lex_state = 247, .external_lex_state = 8}, - [2132] = {.lex_state = 247, .external_lex_state = 8}, - [2133] = {.lex_state = 247, .external_lex_state = 8}, - [2134] = {.lex_state = 247, .external_lex_state = 8}, - [2135] = {.lex_state = 247, .external_lex_state = 8}, - [2136] = {.lex_state = 247, .external_lex_state = 8}, - [2137] = {.lex_state = 247, .external_lex_state = 8}, - [2138] = {.lex_state = 247, .external_lex_state = 8}, - [2139] = {.lex_state = 247, .external_lex_state = 8}, - [2140] = {.lex_state = 247, .external_lex_state = 8}, - [2141] = {.lex_state = 247, .external_lex_state = 8}, - [2142] = {.lex_state = 251, .external_lex_state = 2}, - [2143] = {.lex_state = 251, .external_lex_state = 2}, - [2144] = {.lex_state = 251, .external_lex_state = 2}, - [2145] = {.lex_state = 251, .external_lex_state = 2}, - [2146] = {.lex_state = 247, .external_lex_state = 2}, - [2147] = {.lex_state = 247, .external_lex_state = 2}, - [2148] = {.lex_state = 247, .external_lex_state = 2}, - [2149] = {.lex_state = 247, .external_lex_state = 2}, - [2150] = {.lex_state = 247, .external_lex_state = 2}, - [2151] = {.lex_state = 247, .external_lex_state = 8}, - [2152] = {.lex_state = 251, .external_lex_state = 2}, - [2153] = {.lex_state = 251, .external_lex_state = 2}, - [2154] = {.lex_state = 98, .external_lex_state = 2}, - [2155] = {.lex_state = 251, .external_lex_state = 2}, - [2156] = {.lex_state = 251, .external_lex_state = 2}, - [2157] = {.lex_state = 251, .external_lex_state = 2}, - [2158] = {.lex_state = 251, .external_lex_state = 2}, - [2159] = {.lex_state = 251, .external_lex_state = 2}, - [2160] = {.lex_state = 251, .external_lex_state = 2}, - [2161] = {.lex_state = 251, .external_lex_state = 2}, - [2162] = {.lex_state = 251, .external_lex_state = 2}, - [2163] = {.lex_state = 251, .external_lex_state = 2}, - [2164] = {.lex_state = 251, .external_lex_state = 2}, - [2165] = {.lex_state = 247, .external_lex_state = 8}, - [2166] = {.lex_state = 251, .external_lex_state = 2}, - [2167] = {.lex_state = 247, .external_lex_state = 2}, - [2168] = {.lex_state = 251, .external_lex_state = 2}, - [2169] = {.lex_state = 251, .external_lex_state = 2}, - [2170] = {.lex_state = 247, .external_lex_state = 8}, - [2171] = {.lex_state = 251, .external_lex_state = 2}, - [2172] = {.lex_state = 251, .external_lex_state = 2}, - [2173] = {.lex_state = 251, .external_lex_state = 2}, - [2174] = {.lex_state = 251, .external_lex_state = 2}, - [2175] = {.lex_state = 251, .external_lex_state = 2}, - [2176] = {.lex_state = 251, .external_lex_state = 2}, - [2177] = {.lex_state = 251, .external_lex_state = 2}, - [2178] = {.lex_state = 251, .external_lex_state = 2}, - [2179] = {.lex_state = 251, .external_lex_state = 2}, - [2180] = {.lex_state = 247, .external_lex_state = 8}, - [2181] = {.lex_state = 251, .external_lex_state = 2}, - [2182] = {.lex_state = 251, .external_lex_state = 2}, - [2183] = {.lex_state = 251, .external_lex_state = 2}, - [2184] = {.lex_state = 251, .external_lex_state = 2}, - [2185] = {.lex_state = 251, .external_lex_state = 2}, - [2186] = {.lex_state = 247, .external_lex_state = 8}, - [2187] = {.lex_state = 251, .external_lex_state = 2}, - [2188] = {.lex_state = 251, .external_lex_state = 2}, - [2189] = {.lex_state = 251, .external_lex_state = 2}, - [2190] = {.lex_state = 251, .external_lex_state = 2}, - [2191] = {.lex_state = 251, .external_lex_state = 2}, - [2192] = {.lex_state = 247, .external_lex_state = 2}, - [2193] = {.lex_state = 251, .external_lex_state = 2}, - [2194] = {.lex_state = 251, .external_lex_state = 2}, - [2195] = {.lex_state = 251, .external_lex_state = 2}, - [2196] = {.lex_state = 251, .external_lex_state = 2}, - [2197] = {.lex_state = 251, .external_lex_state = 2}, - [2198] = {.lex_state = 251, .external_lex_state = 2}, - [2199] = {.lex_state = 251, .external_lex_state = 2}, - [2200] = {.lex_state = 251, .external_lex_state = 2}, - [2201] = {.lex_state = 251, .external_lex_state = 2}, - [2202] = {.lex_state = 251, .external_lex_state = 2}, - [2203] = {.lex_state = 251, .external_lex_state = 2}, - [2204] = {.lex_state = 251, .external_lex_state = 2}, - [2205] = {.lex_state = 251, .external_lex_state = 2}, - [2206] = {.lex_state = 251, .external_lex_state = 2}, - [2207] = {.lex_state = 251, .external_lex_state = 2}, - [2208] = {.lex_state = 251, .external_lex_state = 2}, - [2209] = {.lex_state = 251, .external_lex_state = 2}, - [2210] = {.lex_state = 251, .external_lex_state = 2}, - [2211] = {.lex_state = 251, .external_lex_state = 2}, - [2212] = {.lex_state = 247, .external_lex_state = 8}, - [2213] = {.lex_state = 251, .external_lex_state = 2}, - [2214] = {.lex_state = 251, .external_lex_state = 2}, - [2215] = {.lex_state = 251, .external_lex_state = 2}, - [2216] = {.lex_state = 251, .external_lex_state = 2}, - [2217] = {.lex_state = 251, .external_lex_state = 2}, - [2218] = {.lex_state = 247, .external_lex_state = 8}, - [2219] = {.lex_state = 251, .external_lex_state = 2}, - [2220] = {.lex_state = 251, .external_lex_state = 2}, - [2221] = {.lex_state = 251, .external_lex_state = 2}, - [2222] = {.lex_state = 251, .external_lex_state = 2}, - [2223] = {.lex_state = 251, .external_lex_state = 2}, - [2224] = {.lex_state = 251, .external_lex_state = 2}, - [2225] = {.lex_state = 251, .external_lex_state = 2}, - [2226] = {.lex_state = 247, .external_lex_state = 2}, - [2227] = {.lex_state = 251, .external_lex_state = 2}, - [2228] = {.lex_state = 249, .external_lex_state = 2}, - [2229] = {.lex_state = 251, .external_lex_state = 2}, - [2230] = {.lex_state = 251, .external_lex_state = 2}, - [2231] = {.lex_state = 251, .external_lex_state = 2}, - [2232] = {.lex_state = 251, .external_lex_state = 2}, - [2233] = {.lex_state = 251, .external_lex_state = 2}, - [2234] = {.lex_state = 247, .external_lex_state = 2}, - [2235] = {.lex_state = 251, .external_lex_state = 2}, - [2236] = {.lex_state = 251, .external_lex_state = 2}, - [2237] = {.lex_state = 251, .external_lex_state = 2}, - [2238] = {.lex_state = 251, .external_lex_state = 2}, - [2239] = {.lex_state = 247, .external_lex_state = 2}, - [2240] = {.lex_state = 247, .external_lex_state = 2}, - [2241] = {.lex_state = 251, .external_lex_state = 2}, - [2242] = {.lex_state = 251, .external_lex_state = 2}, - [2243] = {.lex_state = 247, .external_lex_state = 2}, - [2244] = {.lex_state = 251, .external_lex_state = 2}, - [2245] = {.lex_state = 251, .external_lex_state = 2}, - [2246] = {.lex_state = 251, .external_lex_state = 2}, - [2247] = {.lex_state = 251, .external_lex_state = 2}, - [2248] = {.lex_state = 251, .external_lex_state = 2}, - [2249] = {.lex_state = 247, .external_lex_state = 2}, - [2250] = {.lex_state = 251, .external_lex_state = 2}, - [2251] = {.lex_state = 251, .external_lex_state = 2}, - [2252] = {.lex_state = 251, .external_lex_state = 2}, - [2253] = {.lex_state = 251, .external_lex_state = 2}, - [2254] = {.lex_state = 251, .external_lex_state = 2}, - [2255] = {.lex_state = 249, .external_lex_state = 2}, - [2256] = {.lex_state = 249, .external_lex_state = 2}, - [2257] = {.lex_state = 251, .external_lex_state = 2}, - [2258] = {.lex_state = 251, .external_lex_state = 2}, - [2259] = {.lex_state = 251, .external_lex_state = 2}, - [2260] = {.lex_state = 251, .external_lex_state = 2}, - [2261] = {.lex_state = 249, .external_lex_state = 2}, - [2262] = {.lex_state = 251, .external_lex_state = 2}, - [2263] = {.lex_state = 251, .external_lex_state = 2}, - [2264] = {.lex_state = 251, .external_lex_state = 2}, - [2265] = {.lex_state = 251, .external_lex_state = 2}, - [2266] = {.lex_state = 251, .external_lex_state = 2}, - [2267] = {.lex_state = 251, .external_lex_state = 2}, - [2268] = {.lex_state = 251, .external_lex_state = 2}, - [2269] = {.lex_state = 251, .external_lex_state = 2}, - [2270] = {.lex_state = 251, .external_lex_state = 2}, - [2271] = {.lex_state = 251, .external_lex_state = 2}, - [2272] = {.lex_state = 247, .external_lex_state = 2}, - [2273] = {.lex_state = 251, .external_lex_state = 2}, - [2274] = {.lex_state = 249, .external_lex_state = 2}, - [2275] = {.lex_state = 251, .external_lex_state = 2}, - [2276] = {.lex_state = 251, .external_lex_state = 2}, - [2277] = {.lex_state = 251, .external_lex_state = 2}, - [2278] = {.lex_state = 251, .external_lex_state = 2}, - [2279] = {.lex_state = 247, .external_lex_state = 2}, - [2280] = {.lex_state = 251, .external_lex_state = 2}, - [2281] = {.lex_state = 251, .external_lex_state = 2}, - [2282] = {.lex_state = 251, .external_lex_state = 2}, - [2283] = {.lex_state = 251, .external_lex_state = 2}, - [2284] = {.lex_state = 247, .external_lex_state = 8}, - [2285] = {.lex_state = 251, .external_lex_state = 2}, - [2286] = {.lex_state = 251, .external_lex_state = 2}, - [2287] = {.lex_state = 251, .external_lex_state = 2}, - [2288] = {.lex_state = 251, .external_lex_state = 2}, - [2289] = {.lex_state = 249, .external_lex_state = 8}, - [2290] = {.lex_state = 251, .external_lex_state = 2}, - [2291] = {.lex_state = 251, .external_lex_state = 2}, - [2292] = {.lex_state = 251, .external_lex_state = 2}, - [2293] = {.lex_state = 249, .external_lex_state = 8}, - [2294] = {.lex_state = 251, .external_lex_state = 2}, - [2295] = {.lex_state = 251, .external_lex_state = 2}, - [2296] = {.lex_state = 251, .external_lex_state = 2}, - [2297] = {.lex_state = 247, .external_lex_state = 8}, - [2298] = {.lex_state = 251, .external_lex_state = 2}, - [2299] = {.lex_state = 251, .external_lex_state = 2}, - [2300] = {.lex_state = 251, .external_lex_state = 2}, - [2301] = {.lex_state = 249, .external_lex_state = 8}, - [2302] = {.lex_state = 247, .external_lex_state = 2}, - [2303] = {.lex_state = 249, .external_lex_state = 2}, - [2304] = {.lex_state = 251, .external_lex_state = 2}, - [2305] = {.lex_state = 251, .external_lex_state = 2}, - [2306] = {.lex_state = 251, .external_lex_state = 2}, - [2307] = {.lex_state = 251, .external_lex_state = 2}, - [2308] = {.lex_state = 247, .external_lex_state = 2}, - [2309] = {.lex_state = 251, .external_lex_state = 2}, - [2310] = {.lex_state = 251, .external_lex_state = 2}, - [2311] = {.lex_state = 251, .external_lex_state = 2}, - [2312] = {.lex_state = 251, .external_lex_state = 2}, - [2313] = {.lex_state = 251, .external_lex_state = 2}, - [2314] = {.lex_state = 247, .external_lex_state = 2}, - [2315] = {.lex_state = 247, .external_lex_state = 2}, - [2316] = {.lex_state = 247, .external_lex_state = 2}, - [2317] = {.lex_state = 251, .external_lex_state = 2}, - [2318] = {.lex_state = 247, .external_lex_state = 2}, - [2319] = {.lex_state = 251, .external_lex_state = 2}, - [2320] = {.lex_state = 251, .external_lex_state = 2}, - [2321] = {.lex_state = 247, .external_lex_state = 2}, - [2322] = {.lex_state = 247, .external_lex_state = 2}, - [2323] = {.lex_state = 251, .external_lex_state = 2}, - [2324] = {.lex_state = 251, .external_lex_state = 2}, - [2325] = {.lex_state = 251, .external_lex_state = 2}, - [2326] = {.lex_state = 251, .external_lex_state = 2}, - [2327] = {.lex_state = 251, .external_lex_state = 2}, - [2328] = {.lex_state = 251, .external_lex_state = 2}, - [2329] = {.lex_state = 247, .external_lex_state = 2}, - [2330] = {.lex_state = 251, .external_lex_state = 2}, - [2331] = {.lex_state = 251, .external_lex_state = 2}, - [2332] = {.lex_state = 251, .external_lex_state = 2}, - [2333] = {.lex_state = 247, .external_lex_state = 8}, - [2334] = {.lex_state = 251, .external_lex_state = 2}, - [2335] = {.lex_state = 251, .external_lex_state = 2}, - [2336] = {.lex_state = 251, .external_lex_state = 2}, - [2337] = {.lex_state = 247, .external_lex_state = 2}, - [2338] = {.lex_state = 251, .external_lex_state = 2}, - [2339] = {.lex_state = 247, .external_lex_state = 8}, - [2340] = {.lex_state = 251, .external_lex_state = 2}, - [2341] = {.lex_state = 251, .external_lex_state = 2}, - [2342] = {.lex_state = 251, .external_lex_state = 2}, - [2343] = {.lex_state = 251, .external_lex_state = 2}, - [2344] = {.lex_state = 251, .external_lex_state = 2}, - [2345] = {.lex_state = 251, .external_lex_state = 2}, - [2346] = {.lex_state = 247, .external_lex_state = 2}, - [2347] = {.lex_state = 251, .external_lex_state = 2}, - [2348] = {.lex_state = 247, .external_lex_state = 2}, - [2349] = {.lex_state = 251, .external_lex_state = 2}, - [2350] = {.lex_state = 251, .external_lex_state = 2}, - [2351] = {.lex_state = 251, .external_lex_state = 2}, - [2352] = {.lex_state = 251, .external_lex_state = 2}, - [2353] = {.lex_state = 247, .external_lex_state = 2}, - [2354] = {.lex_state = 251, .external_lex_state = 2}, - [2355] = {.lex_state = 251, .external_lex_state = 2}, - [2356] = {.lex_state = 247, .external_lex_state = 2}, - [2357] = {.lex_state = 251, .external_lex_state = 2}, - [2358] = {.lex_state = 251, .external_lex_state = 2}, - [2359] = {.lex_state = 251, .external_lex_state = 2}, - [2360] = {.lex_state = 251, .external_lex_state = 2}, - [2361] = {.lex_state = 251, .external_lex_state = 2}, - [2362] = {.lex_state = 251, .external_lex_state = 2}, - [2363] = {.lex_state = 251, .external_lex_state = 2}, - [2364] = {.lex_state = 251, .external_lex_state = 2}, - [2365] = {.lex_state = 251, .external_lex_state = 2}, - [2366] = {.lex_state = 251, .external_lex_state = 2}, - [2367] = {.lex_state = 251, .external_lex_state = 2}, - [2368] = {.lex_state = 251, .external_lex_state = 2}, - [2369] = {.lex_state = 251, .external_lex_state = 2}, - [2370] = {.lex_state = 251, .external_lex_state = 2}, - [2371] = {.lex_state = 251, .external_lex_state = 2}, - [2372] = {.lex_state = 251, .external_lex_state = 2}, - [2373] = {.lex_state = 251, .external_lex_state = 2}, - [2374] = {.lex_state = 251, .external_lex_state = 2}, - [2375] = {.lex_state = 251, .external_lex_state = 2}, - [2376] = {.lex_state = 251, .external_lex_state = 2}, - [2377] = {.lex_state = 251, .external_lex_state = 2}, - [2378] = {.lex_state = 247, .external_lex_state = 2}, - [2379] = {.lex_state = 251, .external_lex_state = 2}, - [2380] = {.lex_state = 251, .external_lex_state = 2}, - [2381] = {.lex_state = 251, .external_lex_state = 2}, - [2382] = {.lex_state = 251, .external_lex_state = 2}, - [2383] = {.lex_state = 251, .external_lex_state = 2}, - [2384] = {.lex_state = 251, .external_lex_state = 2}, - [2385] = {.lex_state = 251, .external_lex_state = 2}, - [2386] = {.lex_state = 251, .external_lex_state = 2}, - [2387] = {.lex_state = 251, .external_lex_state = 2}, - [2388] = {.lex_state = 251, .external_lex_state = 2}, - [2389] = {.lex_state = 251, .external_lex_state = 2}, - [2390] = {.lex_state = 251, .external_lex_state = 2}, - [2391] = {.lex_state = 251, .external_lex_state = 2}, - [2392] = {.lex_state = 247, .external_lex_state = 2}, - [2393] = {.lex_state = 247, .external_lex_state = 2}, - [2394] = {.lex_state = 251, .external_lex_state = 2}, - [2395] = {.lex_state = 247, .external_lex_state = 8}, - [2396] = {.lex_state = 247, .external_lex_state = 2}, - [2397] = {.lex_state = 251, .external_lex_state = 2}, - [2398] = {.lex_state = 251, .external_lex_state = 2}, - [2399] = {.lex_state = 251, .external_lex_state = 2}, - [2400] = {.lex_state = 251, .external_lex_state = 2}, - [2401] = {.lex_state = 247, .external_lex_state = 8}, - [2402] = {.lex_state = 247, .external_lex_state = 8}, - [2403] = {.lex_state = 247, .external_lex_state = 2}, - [2404] = {.lex_state = 72, .external_lex_state = 2}, - [2405] = {.lex_state = 247, .external_lex_state = 2}, - [2406] = {.lex_state = 247, .external_lex_state = 2}, - [2407] = {.lex_state = 247, .external_lex_state = 8}, - [2408] = {.lex_state = 247, .external_lex_state = 8}, - [2409] = {.lex_state = 247, .external_lex_state = 8}, - [2410] = {.lex_state = 247, .external_lex_state = 2}, - [2411] = {.lex_state = 247, .external_lex_state = 8}, - [2412] = {.lex_state = 247, .external_lex_state = 8}, - [2413] = {.lex_state = 247, .external_lex_state = 2}, - [2414] = {.lex_state = 247, .external_lex_state = 2}, - [2415] = {.lex_state = 247, .external_lex_state = 8}, - [2416] = {.lex_state = 247, .external_lex_state = 2}, - [2417] = {.lex_state = 247, .external_lex_state = 2}, - [2418] = {.lex_state = 247, .external_lex_state = 2}, - [2419] = {.lex_state = 72, .external_lex_state = 2}, - [2420] = {.lex_state = 247, .external_lex_state = 2}, - [2421] = {.lex_state = 247, .external_lex_state = 8}, - [2422] = {.lex_state = 72, .external_lex_state = 2}, - [2423] = {.lex_state = 247, .external_lex_state = 2}, - [2424] = {.lex_state = 248, .external_lex_state = 3}, - [2425] = {.lex_state = 247, .external_lex_state = 8}, - [2426] = {.lex_state = 247, .external_lex_state = 2}, - [2427] = {.lex_state = 247, .external_lex_state = 8}, - [2428] = {.lex_state = 247, .external_lex_state = 8}, - [2429] = {.lex_state = 247, .external_lex_state = 8}, - [2430] = {.lex_state = 247, .external_lex_state = 8}, - [2431] = {.lex_state = 247, .external_lex_state = 2}, - [2432] = {.lex_state = 247, .external_lex_state = 8}, - [2433] = {.lex_state = 247, .external_lex_state = 2}, - [2434] = {.lex_state = 247, .external_lex_state = 2}, - [2435] = {.lex_state = 247, .external_lex_state = 8}, - [2436] = {.lex_state = 247, .external_lex_state = 2}, - [2437] = {.lex_state = 247, .external_lex_state = 2}, - [2438] = {.lex_state = 247, .external_lex_state = 8}, - [2439] = {.lex_state = 247, .external_lex_state = 2}, - [2440] = {.lex_state = 248, .external_lex_state = 3}, - [2441] = {.lex_state = 247, .external_lex_state = 8}, - [2442] = {.lex_state = 249, .external_lex_state = 8}, - [2443] = {.lex_state = 248, .external_lex_state = 3}, - [2444] = {.lex_state = 248, .external_lex_state = 3}, - [2445] = {.lex_state = 247, .external_lex_state = 2}, - [2446] = {.lex_state = 247, .external_lex_state = 8}, - [2447] = {.lex_state = 247, .external_lex_state = 2}, - [2448] = {.lex_state = 72, .external_lex_state = 2}, - [2449] = {.lex_state = 247, .external_lex_state = 8}, - [2450] = {.lex_state = 247, .external_lex_state = 2}, - [2451] = {.lex_state = 248, .external_lex_state = 3}, - [2452] = {.lex_state = 72, .external_lex_state = 2}, - [2453] = {.lex_state = 247, .external_lex_state = 8}, - [2454] = {.lex_state = 72, .external_lex_state = 2}, - [2455] = {.lex_state = 72, .external_lex_state = 2}, - [2456] = {.lex_state = 247, .external_lex_state = 8}, - [2457] = {.lex_state = 247, .external_lex_state = 8}, - [2458] = {.lex_state = 248, .external_lex_state = 3}, - [2459] = {.lex_state = 247, .external_lex_state = 8}, - [2460] = {.lex_state = 247, .external_lex_state = 8}, - [2461] = {.lex_state = 247, .external_lex_state = 8}, - [2462] = {.lex_state = 247, .external_lex_state = 8}, - [2463] = {.lex_state = 247, .external_lex_state = 8}, - [2464] = {.lex_state = 247, .external_lex_state = 8}, - [2465] = {.lex_state = 247, .external_lex_state = 8}, - [2466] = {.lex_state = 247, .external_lex_state = 8}, - [2467] = {.lex_state = 247, .external_lex_state = 8}, - [2468] = {.lex_state = 247, .external_lex_state = 8}, - [2469] = {.lex_state = 247, .external_lex_state = 8}, - [2470] = {.lex_state = 247, .external_lex_state = 8}, - [2471] = {.lex_state = 247, .external_lex_state = 8}, - [2472] = {.lex_state = 248, .external_lex_state = 3}, - [2473] = {.lex_state = 247, .external_lex_state = 8}, - [2474] = {.lex_state = 247, .external_lex_state = 8}, - [2475] = {.lex_state = 247, .external_lex_state = 8}, - [2476] = {.lex_state = 248, .external_lex_state = 2}, - [2477] = {.lex_state = 248, .external_lex_state = 3}, - [2478] = {.lex_state = 248, .external_lex_state = 3}, - [2479] = {.lex_state = 72, .external_lex_state = 2}, - [2480] = {.lex_state = 72, .external_lex_state = 2}, - [2481] = {.lex_state = 248, .external_lex_state = 3}, - [2482] = {.lex_state = 72, .external_lex_state = 2}, - [2483] = {.lex_state = 72, .external_lex_state = 2}, - [2484] = {.lex_state = 72, .external_lex_state = 2}, - [2485] = {.lex_state = 248, .external_lex_state = 3}, - [2486] = {.lex_state = 248, .external_lex_state = 3}, - [2487] = {.lex_state = 248, .external_lex_state = 2}, - [2488] = {.lex_state = 72, .external_lex_state = 2}, - [2489] = {.lex_state = 248, .external_lex_state = 2}, - [2490] = {.lex_state = 248, .external_lex_state = 3}, - [2491] = {.lex_state = 248, .external_lex_state = 2}, - [2492] = {.lex_state = 72, .external_lex_state = 2}, - [2493] = {.lex_state = 248, .external_lex_state = 3}, - [2494] = {.lex_state = 248, .external_lex_state = 2}, - [2495] = {.lex_state = 248, .external_lex_state = 3}, - [2496] = {.lex_state = 248, .external_lex_state = 3}, - [2497] = {.lex_state = 72, .external_lex_state = 2}, - [2498] = {.lex_state = 248, .external_lex_state = 3}, - [2499] = {.lex_state = 72, .external_lex_state = 2}, - [2500] = {.lex_state = 248, .external_lex_state = 3}, - [2501] = {.lex_state = 72, .external_lex_state = 2}, - [2502] = {.lex_state = 248, .external_lex_state = 3}, - [2503] = {.lex_state = 72, .external_lex_state = 2}, - [2504] = {.lex_state = 72, .external_lex_state = 2}, - [2505] = {.lex_state = 248, .external_lex_state = 2}, - [2506] = {.lex_state = 248, .external_lex_state = 3}, - [2507] = {.lex_state = 72, .external_lex_state = 2}, - [2508] = {.lex_state = 248, .external_lex_state = 3}, - [2509] = {.lex_state = 72, .external_lex_state = 2}, - [2510] = {.lex_state = 72, .external_lex_state = 2}, - [2511] = {.lex_state = 248, .external_lex_state = 2}, - [2512] = {.lex_state = 72, .external_lex_state = 2}, - [2513] = {.lex_state = 248, .external_lex_state = 3}, - [2514] = {.lex_state = 248, .external_lex_state = 3}, - [2515] = {.lex_state = 248, .external_lex_state = 3}, - [2516] = {.lex_state = 72, .external_lex_state = 2}, - [2517] = {.lex_state = 248, .external_lex_state = 2}, - [2518] = {.lex_state = 248, .external_lex_state = 2}, - [2519] = {.lex_state = 248, .external_lex_state = 2}, - [2520] = {.lex_state = 248, .external_lex_state = 2}, - [2521] = {.lex_state = 248, .external_lex_state = 2}, - [2522] = {.lex_state = 248, .external_lex_state = 2}, - [2523] = {.lex_state = 248, .external_lex_state = 2}, - [2524] = {.lex_state = 248, .external_lex_state = 2}, - [2525] = {.lex_state = 248, .external_lex_state = 2}, - [2526] = {.lex_state = 248, .external_lex_state = 2}, - [2527] = {.lex_state = 248, .external_lex_state = 2}, - [2528] = {.lex_state = 248, .external_lex_state = 2}, - [2529] = {.lex_state = 248, .external_lex_state = 2}, - [2530] = {.lex_state = 248, .external_lex_state = 2}, - [2531] = {.lex_state = 248, .external_lex_state = 2}, - [2532] = {.lex_state = 248, .external_lex_state = 2}, - [2533] = {.lex_state = 248, .external_lex_state = 2}, - [2534] = {.lex_state = 247, .external_lex_state = 2}, - [2535] = {.lex_state = 247, .external_lex_state = 2}, - [2536] = {.lex_state = 247, .external_lex_state = 2}, - [2537] = {.lex_state = 247, .external_lex_state = 2}, - [2538] = {.lex_state = 247, .external_lex_state = 2}, - [2539] = {.lex_state = 77, .external_lex_state = 2}, - [2540] = {.lex_state = 247, .external_lex_state = 2}, - [2541] = {.lex_state = 247, .external_lex_state = 2}, - [2542] = {.lex_state = 247, .external_lex_state = 2}, - [2543] = {.lex_state = 247, .external_lex_state = 2}, - [2544] = {.lex_state = 77, .external_lex_state = 2}, - [2545] = {.lex_state = 247, .external_lex_state = 2}, - [2546] = {.lex_state = 247, .external_lex_state = 2}, - [2547] = {.lex_state = 247, .external_lex_state = 2}, - [2548] = {.lex_state = 247, .external_lex_state = 2}, - [2549] = {.lex_state = 247, .external_lex_state = 2}, - [2550] = {.lex_state = 247, .external_lex_state = 2}, - [2551] = {.lex_state = 251, .external_lex_state = 2}, - [2552] = {.lex_state = 251, .external_lex_state = 2}, - [2553] = {.lex_state = 251, .external_lex_state = 2}, - [2554] = {.lex_state = 99, .external_lex_state = 2}, - [2555] = {.lex_state = 99, .external_lex_state = 2}, - [2556] = {.lex_state = 251, .external_lex_state = 2}, - [2557] = {.lex_state = 251, .external_lex_state = 2}, - [2558] = {.lex_state = 251, .external_lex_state = 2}, - [2559] = {.lex_state = 251, .external_lex_state = 2}, - [2560] = {.lex_state = 251, .external_lex_state = 2}, - [2561] = {.lex_state = 251, .external_lex_state = 2}, - [2562] = {.lex_state = 251, .external_lex_state = 2}, - [2563] = {.lex_state = 251, .external_lex_state = 2}, - [2564] = {.lex_state = 251, .external_lex_state = 2}, - [2565] = {.lex_state = 251, .external_lex_state = 2}, - [2566] = {.lex_state = 251, .external_lex_state = 2}, - [2567] = {.lex_state = 251, .external_lex_state = 2}, - [2568] = {.lex_state = 251, .external_lex_state = 2}, - [2569] = {.lex_state = 251, .external_lex_state = 2}, - [2570] = {.lex_state = 251, .external_lex_state = 2}, - [2571] = {.lex_state = 84, .external_lex_state = 2}, - [2572] = {.lex_state = 90, .external_lex_state = 2}, - [2573] = {.lex_state = 96, .external_lex_state = 2}, - [2574] = {.lex_state = 91, .external_lex_state = 2}, - [2575] = {.lex_state = 251, .external_lex_state = 2}, - [2576] = {.lex_state = 86, .external_lex_state = 2}, - [2577] = {.lex_state = 86, .external_lex_state = 2}, - [2578] = {.lex_state = 83, .external_lex_state = 2}, - [2579] = {.lex_state = 83, .external_lex_state = 2}, - [2580] = {.lex_state = 83, .external_lex_state = 2}, - [2581] = {.lex_state = 86, .external_lex_state = 2}, - [2582] = {.lex_state = 83, .external_lex_state = 2}, - [2583] = {.lex_state = 86, .external_lex_state = 2}, - [2584] = {.lex_state = 250, .external_lex_state = 2}, - [2585] = {.lex_state = 250, .external_lex_state = 2}, - [2586] = {.lex_state = 83, .external_lex_state = 2}, - [2587] = {.lex_state = 250, .external_lex_state = 2}, - [2588] = {.lex_state = 83, .external_lex_state = 2}, - [2589] = {.lex_state = 86, .external_lex_state = 2}, - [2590] = {.lex_state = 86, .external_lex_state = 2}, - [2591] = {.lex_state = 83, .external_lex_state = 2}, - [2592] = {.lex_state = 86, .external_lex_state = 2}, - [2593] = {.lex_state = 86, .external_lex_state = 2}, - [2594] = {.lex_state = 100, .external_lex_state = 2}, - [2595] = {.lex_state = 83, .external_lex_state = 2}, - [2596] = {.lex_state = 83, .external_lex_state = 2}, - [2597] = {.lex_state = 250, .external_lex_state = 2}, - [2598] = {.lex_state = 86, .external_lex_state = 2}, - [2599] = {.lex_state = 250, .external_lex_state = 2}, - [2600] = {.lex_state = 83, .external_lex_state = 2}, - [2601] = {.lex_state = 250, .external_lex_state = 2}, - [2602] = {.lex_state = 83, .external_lex_state = 2}, - [2603] = {.lex_state = 250, .external_lex_state = 2}, - [2604] = {.lex_state = 250, .external_lex_state = 2}, - [2605] = {.lex_state = 250, .external_lex_state = 2}, - [2606] = {.lex_state = 250, .external_lex_state = 2}, - [2607] = {.lex_state = 250, .external_lex_state = 2}, - [2608] = {.lex_state = 86, .external_lex_state = 2}, - [2609] = {.lex_state = 250, .external_lex_state = 2}, - [2610] = {.lex_state = 83, .external_lex_state = 2}, - [2611] = {.lex_state = 250, .external_lex_state = 2}, - [2612] = {.lex_state = 250, .external_lex_state = 2}, - [2613] = {.lex_state = 250, .external_lex_state = 2}, - [2614] = {.lex_state = 250, .external_lex_state = 2}, - [2615] = {.lex_state = 83, .external_lex_state = 2}, - [2616] = {.lex_state = 83, .external_lex_state = 2}, - [2617] = {.lex_state = 250, .external_lex_state = 2}, - [2618] = {.lex_state = 250, .external_lex_state = 2}, - [2619] = {.lex_state = 86, .external_lex_state = 2}, - [2620] = {.lex_state = 83, .external_lex_state = 2}, - [2621] = {.lex_state = 250, .external_lex_state = 2}, - [2622] = {.lex_state = 250, .external_lex_state = 2}, - [2623] = {.lex_state = 86, .external_lex_state = 2}, - [2624] = {.lex_state = 250, .external_lex_state = 2}, - [2625] = {.lex_state = 86, .external_lex_state = 2}, - [2626] = {.lex_state = 250, .external_lex_state = 2}, - [2627] = {.lex_state = 250, .external_lex_state = 2}, - [2628] = {.lex_state = 250, .external_lex_state = 2}, - [2629] = {.lex_state = 250, .external_lex_state = 2}, - [2630] = {.lex_state = 250, .external_lex_state = 2}, - [2631] = {.lex_state = 250, .external_lex_state = 2}, - [2632] = {.lex_state = 250, .external_lex_state = 2}, - [2633] = {.lex_state = 250, .external_lex_state = 2}, - [2634] = {.lex_state = 86, .external_lex_state = 2}, - [2635] = {.lex_state = 250, .external_lex_state = 2}, - [2636] = {.lex_state = 250, .external_lex_state = 2}, - [2637] = {.lex_state = 250, .external_lex_state = 2}, - [2638] = {.lex_state = 250, .external_lex_state = 2}, - [2639] = {.lex_state = 250, .external_lex_state = 2}, - [2640] = {.lex_state = 250, .external_lex_state = 2}, - [2641] = {.lex_state = 250, .external_lex_state = 2}, - [2642] = {.lex_state = 250, .external_lex_state = 2}, - [2643] = {.lex_state = 86, .external_lex_state = 2}, - [2644] = {.lex_state = 86, .external_lex_state = 2}, - [2645] = {.lex_state = 86, .external_lex_state = 2}, - [2646] = {.lex_state = 83, .external_lex_state = 2}, - [2647] = {.lex_state = 83, .external_lex_state = 2}, - [2648] = {.lex_state = 83, .external_lex_state = 2}, - [2649] = {.lex_state = 86, .external_lex_state = 2}, - [2650] = {.lex_state = 86, .external_lex_state = 2}, - [2651] = {.lex_state = 83, .external_lex_state = 2}, - [2652] = {.lex_state = 83, .external_lex_state = 2}, - [2653] = {.lex_state = 86, .external_lex_state = 2}, - [2654] = {.lex_state = 83, .external_lex_state = 2}, - [2655] = {.lex_state = 86, .external_lex_state = 2}, - [2656] = {.lex_state = 83, .external_lex_state = 2}, - [2657] = {.lex_state = 86, .external_lex_state = 2}, - [2658] = {.lex_state = 83, .external_lex_state = 2}, - [2659] = {.lex_state = 83, .external_lex_state = 2}, - [2660] = {.lex_state = 83, .external_lex_state = 2}, - [2661] = {.lex_state = 86, .external_lex_state = 2}, - [2662] = {.lex_state = 86, .external_lex_state = 2}, - [2663] = {.lex_state = 83, .external_lex_state = 2}, - [2664] = {.lex_state = 86, .external_lex_state = 2}, - [2665] = {.lex_state = 86, .external_lex_state = 2}, - [2666] = {.lex_state = 87, .external_lex_state = 2}, - [2667] = {.lex_state = 106, .external_lex_state = 2}, - [2668] = {.lex_state = 94, .external_lex_state = 2}, - [2669] = {.lex_state = 83, .external_lex_state = 2}, - [2670] = {.lex_state = 87, .external_lex_state = 2}, - [2671] = {.lex_state = 106, .external_lex_state = 2}, - [2672] = {.lex_state = 106, .external_lex_state = 2}, - [2673] = {.lex_state = 106, .external_lex_state = 2}, - [2674] = {.lex_state = 94, .external_lex_state = 2}, - [2675] = {.lex_state = 87, .external_lex_state = 2}, - [2676] = {.lex_state = 106, .external_lex_state = 2}, - [2677] = {.lex_state = 95, .external_lex_state = 2}, - [2678] = {.lex_state = 95, .external_lex_state = 2}, - [2679] = {.lex_state = 250, .external_lex_state = 2}, - [2680] = {.lex_state = 95, .external_lex_state = 2}, - [2681] = {.lex_state = 95, .external_lex_state = 2}, - [2682] = {.lex_state = 94, .external_lex_state = 2}, - [2683] = {.lex_state = 95, .external_lex_state = 2}, - [2684] = {.lex_state = 95, .external_lex_state = 2}, - [2685] = {.lex_state = 95, .external_lex_state = 2}, - [2686] = {.lex_state = 95, .external_lex_state = 2}, - [2687] = {.lex_state = 95, .external_lex_state = 2}, - [2688] = {.lex_state = 87, .external_lex_state = 2}, - [2689] = {.lex_state = 95, .external_lex_state = 2}, - [2690] = {.lex_state = 94, .external_lex_state = 2}, - [2691] = {.lex_state = 89, .external_lex_state = 2}, - [2692] = {.lex_state = 87, .external_lex_state = 2}, - [2693] = {.lex_state = 250, .external_lex_state = 2}, - [2694] = {.lex_state = 87, .external_lex_state = 2}, - [2695] = {.lex_state = 106, .external_lex_state = 2}, - [2696] = {.lex_state = 87, .external_lex_state = 2}, - [2697] = {.lex_state = 87, .external_lex_state = 2}, - [2698] = {.lex_state = 87, .external_lex_state = 2}, - [2699] = {.lex_state = 87, .external_lex_state = 2}, - [2700] = {.lex_state = 87, .external_lex_state = 2}, - [2701] = {.lex_state = 250, .external_lex_state = 2}, - [2702] = {.lex_state = 87, .external_lex_state = 2}, - [2703] = {.lex_state = 106, .external_lex_state = 2}, - [2704] = {.lex_state = 87, .external_lex_state = 2}, - [2705] = {.lex_state = 87, .external_lex_state = 2}, - [2706] = {.lex_state = 87, .external_lex_state = 2}, - [2707] = {.lex_state = 87, .external_lex_state = 2}, - [2708] = {.lex_state = 87, .external_lex_state = 2}, - [2709] = {.lex_state = 89, .external_lex_state = 2}, - [2710] = {.lex_state = 87, .external_lex_state = 2}, - [2711] = {.lex_state = 87, .external_lex_state = 2}, - [2712] = {.lex_state = 87, .external_lex_state = 2}, - [2713] = {.lex_state = 87, .external_lex_state = 2}, - [2714] = {.lex_state = 87, .external_lex_state = 2}, - [2715] = {.lex_state = 87, .external_lex_state = 2}, - [2716] = {.lex_state = 250, .external_lex_state = 2}, - [2717] = {.lex_state = 89, .external_lex_state = 2}, - [2718] = {.lex_state = 87, .external_lex_state = 2}, - [2719] = {.lex_state = 87, .external_lex_state = 2}, - [2720] = {.lex_state = 87, .external_lex_state = 2}, - [2721] = {.lex_state = 87, .external_lex_state = 2}, - [2722] = {.lex_state = 250, .external_lex_state = 2}, - [2723] = {.lex_state = 250, .external_lex_state = 2}, - [2724] = {.lex_state = 87, .external_lex_state = 2}, - [2725] = {.lex_state = 106, .external_lex_state = 2}, - [2726] = {.lex_state = 87, .external_lex_state = 2}, - [2727] = {.lex_state = 87, .external_lex_state = 2}, - [2728] = {.lex_state = 250, .external_lex_state = 2}, - [2729] = {.lex_state = 250, .external_lex_state = 2}, - [2730] = {.lex_state = 250, .external_lex_state = 2}, - [2731] = {.lex_state = 250, .external_lex_state = 2}, - [2732] = {.lex_state = 250, .external_lex_state = 2}, - [2733] = {.lex_state = 250, .external_lex_state = 2}, - [2734] = {.lex_state = 250, .external_lex_state = 2}, - [2735] = {.lex_state = 106, .external_lex_state = 2}, - [2736] = {.lex_state = 87, .external_lex_state = 2}, - [2737] = {.lex_state = 106, .external_lex_state = 2}, - [2738] = {.lex_state = 106, .external_lex_state = 2}, - [2739] = {.lex_state = 77, .external_lex_state = 2}, - [2740] = {.lex_state = 250, .external_lex_state = 2}, - [2741] = {.lex_state = 250, .external_lex_state = 2}, - [2742] = {.lex_state = 87, .external_lex_state = 2}, - [2743] = {.lex_state = 87, .external_lex_state = 2}, - [2744] = {.lex_state = 250, .external_lex_state = 2}, - [2745] = {.lex_state = 77, .external_lex_state = 2}, - [2746] = {.lex_state = 87, .external_lex_state = 2}, - [2747] = {.lex_state = 87, .external_lex_state = 2}, - [2748] = {.lex_state = 108, .external_lex_state = 2}, - [2749] = {.lex_state = 87, .external_lex_state = 2}, - [2750] = {.lex_state = 106, .external_lex_state = 2}, - [2751] = {.lex_state = 250, .external_lex_state = 2}, - [2752] = {.lex_state = 106, .external_lex_state = 2}, - [2753] = {.lex_state = 250, .external_lex_state = 2}, - [2754] = {.lex_state = 87, .external_lex_state = 2}, - [2755] = {.lex_state = 250, .external_lex_state = 2}, - [2756] = {.lex_state = 94, .external_lex_state = 2}, - [2757] = {.lex_state = 250, .external_lex_state = 2}, - [2758] = {.lex_state = 106, .external_lex_state = 2}, - [2759] = {.lex_state = 250, .external_lex_state = 2}, - [2760] = {.lex_state = 94, .external_lex_state = 2}, - [2761] = {.lex_state = 94, .external_lex_state = 2}, - [2762] = {.lex_state = 250, .external_lex_state = 2}, - [2763] = {.lex_state = 250, .external_lex_state = 2}, - [2764] = {.lex_state = 250, .external_lex_state = 2}, - [2765] = {.lex_state = 250, .external_lex_state = 2}, - [2766] = {.lex_state = 250, .external_lex_state = 2}, - [2767] = {.lex_state = 94, .external_lex_state = 2}, - [2768] = {.lex_state = 94, .external_lex_state = 2}, - [2769] = {.lex_state = 94, .external_lex_state = 2}, - [2770] = {.lex_state = 94, .external_lex_state = 2}, - [2771] = {.lex_state = 94, .external_lex_state = 2}, - [2772] = {.lex_state = 94, .external_lex_state = 2}, - [2773] = {.lex_state = 94, .external_lex_state = 2}, - [2774] = {.lex_state = 94, .external_lex_state = 2}, - [2775] = {.lex_state = 94, .external_lex_state = 2}, - [2776] = {.lex_state = 94, .external_lex_state = 2}, - [2777] = {.lex_state = 94, .external_lex_state = 2}, - [2778] = {.lex_state = 94, .external_lex_state = 2}, - [2779] = {.lex_state = 94, .external_lex_state = 2}, - [2780] = {.lex_state = 94, .external_lex_state = 2}, - [2781] = {.lex_state = 94, .external_lex_state = 2}, - [2782] = {.lex_state = 94, .external_lex_state = 2}, - [2783] = {.lex_state = 94, .external_lex_state = 2}, - [2784] = {.lex_state = 94, .external_lex_state = 2}, - [2785] = {.lex_state = 94, .external_lex_state = 2}, - [2786] = {.lex_state = 94, .external_lex_state = 2}, - [2787] = {.lex_state = 250, .external_lex_state = 2}, - [2788] = {.lex_state = 77, .external_lex_state = 2}, - [2789] = {.lex_state = 94, .external_lex_state = 2}, - [2790] = {.lex_state = 250, .external_lex_state = 2}, - [2791] = {.lex_state = 250, .external_lex_state = 2}, - [2792] = {.lex_state = 94, .external_lex_state = 2}, - [2793] = {.lex_state = 94, .external_lex_state = 2}, - [2794] = {.lex_state = 250, .external_lex_state = 2}, - [2795] = {.lex_state = 250, .external_lex_state = 2}, - [2796] = {.lex_state = 250, .external_lex_state = 2}, - [2797] = {.lex_state = 94, .external_lex_state = 2}, - [2798] = {.lex_state = 250, .external_lex_state = 2}, - [2799] = {.lex_state = 94, .external_lex_state = 2}, - [2800] = {.lex_state = 94, .external_lex_state = 2}, - [2801] = {.lex_state = 250, .external_lex_state = 2}, - [2802] = {.lex_state = 94, .external_lex_state = 2}, - [2803] = {.lex_state = 94, .external_lex_state = 2}, - [2804] = {.lex_state = 94, .external_lex_state = 2}, - [2805] = {.lex_state = 94, .external_lex_state = 2}, - [2806] = {.lex_state = 106, .external_lex_state = 2}, - [2807] = {.lex_state = 250, .external_lex_state = 2}, - [2808] = {.lex_state = 106, .external_lex_state = 2}, - [2809] = {.lex_state = 106, .external_lex_state = 2}, - [2810] = {.lex_state = 250, .external_lex_state = 2}, - [2811] = {.lex_state = 250, .external_lex_state = 2}, - [2812] = {.lex_state = 250, .external_lex_state = 2}, - [2813] = {.lex_state = 250, .external_lex_state = 2}, - [2814] = {.lex_state = 250, .external_lex_state = 2}, - [2815] = {.lex_state = 89, .external_lex_state = 2}, - [2816] = {.lex_state = 250, .external_lex_state = 2}, - [2817] = {.lex_state = 250, .external_lex_state = 2}, - [2818] = {.lex_state = 250, .external_lex_state = 2}, - [2819] = {.lex_state = 250, .external_lex_state = 2}, - [2820] = {.lex_state = 250, .external_lex_state = 2}, - [2821] = {.lex_state = 250, .external_lex_state = 2}, - [2822] = {.lex_state = 250, .external_lex_state = 2}, - [2823] = {.lex_state = 250, .external_lex_state = 2}, - [2824] = {.lex_state = 250, .external_lex_state = 2}, - [2825] = {.lex_state = 106, .external_lex_state = 2}, - [2826] = {.lex_state = 89, .external_lex_state = 2}, - [2827] = {.lex_state = 89, .external_lex_state = 2}, - [2828] = {.lex_state = 89, .external_lex_state = 2}, - [2829] = {.lex_state = 89, .external_lex_state = 2}, - [2830] = {.lex_state = 89, .external_lex_state = 2}, - [2831] = {.lex_state = 89, .external_lex_state = 2}, - [2832] = {.lex_state = 89, .external_lex_state = 2}, - [2833] = {.lex_state = 89, .external_lex_state = 2}, - [2834] = {.lex_state = 89, .external_lex_state = 2}, - [2835] = {.lex_state = 89, .external_lex_state = 2}, - [2836] = {.lex_state = 89, .external_lex_state = 2}, - [2837] = {.lex_state = 89, .external_lex_state = 2}, - [2838] = {.lex_state = 89, .external_lex_state = 2}, - [2839] = {.lex_state = 89, .external_lex_state = 2}, - [2840] = {.lex_state = 89, .external_lex_state = 2}, - [2841] = {.lex_state = 89, .external_lex_state = 2}, - [2842] = {.lex_state = 89, .external_lex_state = 2}, - [2843] = {.lex_state = 89, .external_lex_state = 2}, - [2844] = {.lex_state = 89, .external_lex_state = 2}, - [2845] = {.lex_state = 89, .external_lex_state = 2}, - [2846] = {.lex_state = 89, .external_lex_state = 2}, - [2847] = {.lex_state = 106, .external_lex_state = 2}, - [2848] = {.lex_state = 89, .external_lex_state = 2}, - [2849] = {.lex_state = 89, .external_lex_state = 2}, - [2850] = {.lex_state = 89, .external_lex_state = 2}, - [2851] = {.lex_state = 89, .external_lex_state = 2}, - [2852] = {.lex_state = 89, .external_lex_state = 2}, - [2853] = {.lex_state = 89, .external_lex_state = 2}, - [2854] = {.lex_state = 89, .external_lex_state = 2}, - [2855] = {.lex_state = 89, .external_lex_state = 2}, - [2856] = {.lex_state = 89, .external_lex_state = 2}, - [2857] = {.lex_state = 89, .external_lex_state = 2}, - [2858] = {.lex_state = 89, .external_lex_state = 2}, - [2859] = {.lex_state = 89, .external_lex_state = 2}, - [2860] = {.lex_state = 89, .external_lex_state = 2}, - [2861] = {.lex_state = 89, .external_lex_state = 2}, - [2862] = {.lex_state = 89, .external_lex_state = 2}, - [2863] = {.lex_state = 89, .external_lex_state = 2}, - [2864] = {.lex_state = 89, .external_lex_state = 2}, - [2865] = {.lex_state = 89, .external_lex_state = 2}, - [2866] = {.lex_state = 89, .external_lex_state = 2}, - [2867] = {.lex_state = 89, .external_lex_state = 2}, - [2868] = {.lex_state = 89, .external_lex_state = 2}, - [2869] = {.lex_state = 89, .external_lex_state = 2}, - [2870] = {.lex_state = 89, .external_lex_state = 2}, - [2871] = {.lex_state = 89, .external_lex_state = 2}, - [2872] = {.lex_state = 89, .external_lex_state = 2}, - [2873] = {.lex_state = 89, .external_lex_state = 2}, - [2874] = {.lex_state = 89, .external_lex_state = 2}, - [2875] = {.lex_state = 89, .external_lex_state = 2}, - [2876] = {.lex_state = 89, .external_lex_state = 2}, - [2877] = {.lex_state = 89, .external_lex_state = 2}, - [2878] = {.lex_state = 89, .external_lex_state = 2}, - [2879] = {.lex_state = 89, .external_lex_state = 2}, - [2880] = {.lex_state = 89, .external_lex_state = 2}, - [2881] = {.lex_state = 89, .external_lex_state = 2}, - [2882] = {.lex_state = 89, .external_lex_state = 2}, - [2883] = {.lex_state = 89, .external_lex_state = 2}, - [2884] = {.lex_state = 89, .external_lex_state = 2}, - [2885] = {.lex_state = 89, .external_lex_state = 2}, - [2886] = {.lex_state = 89, .external_lex_state = 2}, - [2887] = {.lex_state = 89, .external_lex_state = 2}, - [2888] = {.lex_state = 89, .external_lex_state = 2}, - [2889] = {.lex_state = 89, .external_lex_state = 2}, - [2890] = {.lex_state = 89, .external_lex_state = 2}, - [2891] = {.lex_state = 89, .external_lex_state = 2}, - [2892] = {.lex_state = 89, .external_lex_state = 2}, - [2893] = {.lex_state = 89, .external_lex_state = 2}, - [2894] = {.lex_state = 89, .external_lex_state = 2}, - [2895] = {.lex_state = 89, .external_lex_state = 2}, - [2896] = {.lex_state = 89, .external_lex_state = 2}, - [2897] = {.lex_state = 89, .external_lex_state = 2}, - [2898] = {.lex_state = 89, .external_lex_state = 2}, - [2899] = {.lex_state = 89, .external_lex_state = 2}, - [2900] = {.lex_state = 89, .external_lex_state = 2}, - [2901] = {.lex_state = 89, .external_lex_state = 2}, - [2902] = {.lex_state = 89, .external_lex_state = 2}, - [2903] = {.lex_state = 89, .external_lex_state = 2}, - [2904] = {.lex_state = 89, .external_lex_state = 2}, - [2905] = {.lex_state = 89, .external_lex_state = 2}, - [2906] = {.lex_state = 89, .external_lex_state = 2}, - [2907] = {.lex_state = 89, .external_lex_state = 2}, - [2908] = {.lex_state = 89, .external_lex_state = 2}, - [2909] = {.lex_state = 251, .external_lex_state = 2}, - [2910] = {.lex_state = 106, .external_lex_state = 2}, - [2911] = {.lex_state = 106, .external_lex_state = 2}, - [2912] = {.lex_state = 251, .external_lex_state = 2}, - [2913] = {.lex_state = 251, .external_lex_state = 8}, - [2914] = {.lex_state = 106, .external_lex_state = 2}, - [2915] = {.lex_state = 251, .external_lex_state = 8}, - [2916] = {.lex_state = 106, .external_lex_state = 2}, - [2917] = {.lex_state = 251, .external_lex_state = 2}, - [2918] = {.lex_state = 106, .external_lex_state = 8}, - [2919] = {.lex_state = 106, .external_lex_state = 2}, - [2920] = {.lex_state = 251, .external_lex_state = 8}, - [2921] = {.lex_state = 251, .external_lex_state = 2}, - [2922] = {.lex_state = 251, .external_lex_state = 8}, - [2923] = {.lex_state = 251, .external_lex_state = 2}, - [2924] = {.lex_state = 251, .external_lex_state = 2}, - [2925] = {.lex_state = 106, .external_lex_state = 2}, - [2926] = {.lex_state = 106, .external_lex_state = 2}, - [2927] = {.lex_state = 106, .external_lex_state = 2}, - [2928] = {.lex_state = 106, .external_lex_state = 2}, - [2929] = {.lex_state = 106, .external_lex_state = 2}, - [2930] = {.lex_state = 106, .external_lex_state = 2}, - [2931] = {.lex_state = 106, .external_lex_state = 2}, - [2932] = {.lex_state = 106, .external_lex_state = 2}, - [2933] = {.lex_state = 106, .external_lex_state = 2}, - [2934] = {.lex_state = 106, .external_lex_state = 2}, - [2935] = {.lex_state = 251, .external_lex_state = 2}, - [2936] = {.lex_state = 106, .external_lex_state = 2}, - [2937] = {.lex_state = 106, .external_lex_state = 2}, - [2938] = {.lex_state = 106, .external_lex_state = 2}, - [2939] = {.lex_state = 99, .external_lex_state = 2}, - [2940] = {.lex_state = 106, .external_lex_state = 2}, - [2941] = {.lex_state = 98, .external_lex_state = 2}, - [2942] = {.lex_state = 99, .external_lex_state = 2}, - [2943] = {.lex_state = 106, .external_lex_state = 2}, - [2944] = {.lex_state = 106, .external_lex_state = 2}, - [2945] = {.lex_state = 106, .external_lex_state = 2}, - [2946] = {.lex_state = 99, .external_lex_state = 2}, - [2947] = {.lex_state = 106, .external_lex_state = 2}, - [2948] = {.lex_state = 106, .external_lex_state = 2}, - [2949] = {.lex_state = 106, .external_lex_state = 2}, - [2950] = {.lex_state = 106, .external_lex_state = 2}, - [2951] = {.lex_state = 106, .external_lex_state = 2}, - [2952] = {.lex_state = 106, .external_lex_state = 2}, - [2953] = {.lex_state = 106, .external_lex_state = 2}, - [2954] = {.lex_state = 99, .external_lex_state = 2}, - [2955] = {.lex_state = 106, .external_lex_state = 8}, - [2956] = {.lex_state = 106, .external_lex_state = 8}, - [2957] = {.lex_state = 106, .external_lex_state = 4}, - [2958] = {.lex_state = 106, .external_lex_state = 4}, - [2959] = {.lex_state = 106, .external_lex_state = 2}, - [2960] = {.lex_state = 106, .external_lex_state = 4}, - [2961] = {.lex_state = 106, .external_lex_state = 4}, - [2962] = {.lex_state = 106, .external_lex_state = 2}, - [2963] = {.lex_state = 99, .external_lex_state = 2}, - [2964] = {.lex_state = 106, .external_lex_state = 2}, - [2965] = {.lex_state = 106, .external_lex_state = 8}, - [2966] = {.lex_state = 106, .external_lex_state = 8}, - [2967] = {.lex_state = 106, .external_lex_state = 2}, - [2968] = {.lex_state = 77, .external_lex_state = 2}, - [2969] = {.lex_state = 99, .external_lex_state = 2}, - [2970] = {.lex_state = 106, .external_lex_state = 2}, - [2971] = {.lex_state = 106, .external_lex_state = 2}, - [2972] = {.lex_state = 106, .external_lex_state = 2}, - [2973] = {.lex_state = 106, .external_lex_state = 8}, - [2974] = {.lex_state = 106, .external_lex_state = 8}, - [2975] = {.lex_state = 106, .external_lex_state = 8}, - [2976] = {.lex_state = 106, .external_lex_state = 2}, - [2977] = {.lex_state = 106, .external_lex_state = 8}, - [2978] = {.lex_state = 106, .external_lex_state = 2}, - [2979] = {.lex_state = 106, .external_lex_state = 2}, - [2980] = {.lex_state = 106, .external_lex_state = 2}, - [2981] = {.lex_state = 77, .external_lex_state = 2}, - [2982] = {.lex_state = 106, .external_lex_state = 8}, - [2983] = {.lex_state = 106, .external_lex_state = 2}, - [2984] = {.lex_state = 99, .external_lex_state = 2}, - [2985] = {.lex_state = 99, .external_lex_state = 2}, - [2986] = {.lex_state = 106, .external_lex_state = 2}, - [2987] = {.lex_state = 106, .external_lex_state = 2}, - [2988] = {.lex_state = 251, .external_lex_state = 2}, - [2989] = {.lex_state = 99, .external_lex_state = 2}, - [2990] = {.lex_state = 99, .external_lex_state = 2}, - [2991] = {.lex_state = 99, .external_lex_state = 2}, - [2992] = {.lex_state = 106, .external_lex_state = 2}, - [2993] = {.lex_state = 99, .external_lex_state = 2}, - [2994] = {.lex_state = 251, .external_lex_state = 2}, - [2995] = {.lex_state = 251, .external_lex_state = 2}, - [2996] = {.lex_state = 99, .external_lex_state = 2}, - [2997] = {.lex_state = 251, .external_lex_state = 2}, - [2998] = {.lex_state = 251, .external_lex_state = 2}, - [2999] = {.lex_state = 106, .external_lex_state = 4}, - [3000] = {.lex_state = 99, .external_lex_state = 2}, - [3001] = {.lex_state = 251, .external_lex_state = 2}, - [3002] = {.lex_state = 106, .external_lex_state = 4}, - [3003] = {.lex_state = 251, .external_lex_state = 2}, - [3004] = {.lex_state = 99, .external_lex_state = 2}, - [3005] = {.lex_state = 99, .external_lex_state = 2}, - [3006] = {.lex_state = 99, .external_lex_state = 2}, - [3007] = {.lex_state = 99, .external_lex_state = 2}, - [3008] = {.lex_state = 99, .external_lex_state = 2}, - [3009] = {.lex_state = 99, .external_lex_state = 2}, - [3010] = {.lex_state = 99, .external_lex_state = 2}, - [3011] = {.lex_state = 251, .external_lex_state = 2}, - [3012] = {.lex_state = 99, .external_lex_state = 2}, - [3013] = {.lex_state = 99, .external_lex_state = 2}, - [3014] = {.lex_state = 251, .external_lex_state = 2}, - [3015] = {.lex_state = 251, .external_lex_state = 2}, - [3016] = {.lex_state = 99, .external_lex_state = 2}, - [3017] = {.lex_state = 251, .external_lex_state = 2}, - [3018] = {.lex_state = 106, .external_lex_state = 8}, - [3019] = {.lex_state = 99, .external_lex_state = 2}, - [3020] = {.lex_state = 251, .external_lex_state = 2}, - [3021] = {.lex_state = 99, .external_lex_state = 2}, - [3022] = {.lex_state = 99, .external_lex_state = 2}, - [3023] = {.lex_state = 99, .external_lex_state = 2}, - [3024] = {.lex_state = 99, .external_lex_state = 2}, - [3025] = {.lex_state = 99, .external_lex_state = 2}, - [3026] = {.lex_state = 106, .external_lex_state = 4}, - [3027] = {.lex_state = 99, .external_lex_state = 2}, - [3028] = {.lex_state = 99, .external_lex_state = 2}, - [3029] = {.lex_state = 99, .external_lex_state = 2}, - [3030] = {.lex_state = 99, .external_lex_state = 2}, - [3031] = {.lex_state = 99, .external_lex_state = 2}, - [3032] = {.lex_state = 99, .external_lex_state = 2}, - [3033] = {.lex_state = 99, .external_lex_state = 2}, - [3034] = {.lex_state = 99, .external_lex_state = 2}, - [3035] = {.lex_state = 106, .external_lex_state = 2}, - [3036] = {.lex_state = 99, .external_lex_state = 2}, - [3037] = {.lex_state = 99, .external_lex_state = 2}, - [3038] = {.lex_state = 251, .external_lex_state = 2}, - [3039] = {.lex_state = 99, .external_lex_state = 2}, - [3040] = {.lex_state = 106, .external_lex_state = 8}, - [3041] = {.lex_state = 99, .external_lex_state = 2}, - [3042] = {.lex_state = 106, .external_lex_state = 4}, - [3043] = {.lex_state = 106, .external_lex_state = 8}, - [3044] = {.lex_state = 99, .external_lex_state = 2}, - [3045] = {.lex_state = 106, .external_lex_state = 2}, - [3046] = {.lex_state = 99, .external_lex_state = 2}, - [3047] = {.lex_state = 251, .external_lex_state = 2}, - [3048] = {.lex_state = 106, .external_lex_state = 4}, - [3049] = {.lex_state = 106, .external_lex_state = 4}, - [3050] = {.lex_state = 251, .external_lex_state = 2}, - [3051] = {.lex_state = 99, .external_lex_state = 2}, - [3052] = {.lex_state = 251, .external_lex_state = 2}, - [3053] = {.lex_state = 99, .external_lex_state = 2}, - [3054] = {.lex_state = 251, .external_lex_state = 2}, - [3055] = {.lex_state = 251, .external_lex_state = 2}, - [3056] = {.lex_state = 106, .external_lex_state = 2}, - [3057] = {.lex_state = 106, .external_lex_state = 2}, - [3058] = {.lex_state = 99, .external_lex_state = 2}, - [3059] = {.lex_state = 99, .external_lex_state = 2}, - [3060] = {.lex_state = 106, .external_lex_state = 2}, - [3061] = {.lex_state = 106, .external_lex_state = 2}, - [3062] = {.lex_state = 106, .external_lex_state = 2}, - [3063] = {.lex_state = 106, .external_lex_state = 2}, - [3064] = {.lex_state = 106, .external_lex_state = 2}, - [3065] = {.lex_state = 106, .external_lex_state = 2}, - [3066] = {.lex_state = 106, .external_lex_state = 2}, - [3067] = {.lex_state = 106, .external_lex_state = 2}, - [3068] = {.lex_state = 106, .external_lex_state = 2}, - [3069] = {.lex_state = 106, .external_lex_state = 2}, - [3070] = {.lex_state = 106, .external_lex_state = 2}, - [3071] = {.lex_state = 106, .external_lex_state = 2}, - [3072] = {.lex_state = 106, .external_lex_state = 2}, - [3073] = {.lex_state = 106, .external_lex_state = 2}, - [3074] = {.lex_state = 106, .external_lex_state = 2}, - [3075] = {.lex_state = 106, .external_lex_state = 2}, - [3076] = {.lex_state = 106, .external_lex_state = 2}, - [3077] = {.lex_state = 106, .external_lex_state = 2}, - [3078] = {.lex_state = 106, .external_lex_state = 2}, - [3079] = {.lex_state = 106, .external_lex_state = 2}, - [3080] = {.lex_state = 106, .external_lex_state = 2}, - [3081] = {.lex_state = 106, .external_lex_state = 2}, - [3082] = {.lex_state = 106, .external_lex_state = 2}, - [3083] = {.lex_state = 106, .external_lex_state = 2}, - [3084] = {.lex_state = 106, .external_lex_state = 2}, - [3085] = {.lex_state = 106, .external_lex_state = 2}, - [3086] = {.lex_state = 106, .external_lex_state = 4}, - [3087] = {.lex_state = 106, .external_lex_state = 2}, - [3088] = {.lex_state = 106, .external_lex_state = 2}, - [3089] = {.lex_state = 106, .external_lex_state = 2}, - [3090] = {.lex_state = 106, .external_lex_state = 2}, - [3091] = {.lex_state = 106, .external_lex_state = 8}, - [3092] = {.lex_state = 106, .external_lex_state = 2}, - [3093] = {.lex_state = 106, .external_lex_state = 4}, - [3094] = {.lex_state = 106, .external_lex_state = 2}, - [3095] = {.lex_state = 106, .external_lex_state = 2}, - [3096] = {.lex_state = 106, .external_lex_state = 2}, - [3097] = {.lex_state = 106, .external_lex_state = 2}, - [3098] = {.lex_state = 106, .external_lex_state = 2}, - [3099] = {.lex_state = 106, .external_lex_state = 2}, - [3100] = {.lex_state = 106, .external_lex_state = 2}, - [3101] = {.lex_state = 106, .external_lex_state = 4}, - [3102] = {.lex_state = 106, .external_lex_state = 2}, - [3103] = {.lex_state = 106, .external_lex_state = 2}, - [3104] = {.lex_state = 106, .external_lex_state = 2}, - [3105] = {.lex_state = 106, .external_lex_state = 4}, - [3106] = {.lex_state = 106, .external_lex_state = 2}, - [3107] = {.lex_state = 106, .external_lex_state = 2}, - [3108] = {.lex_state = 106, .external_lex_state = 2}, - [3109] = {.lex_state = 106, .external_lex_state = 2}, - [3110] = {.lex_state = 106, .external_lex_state = 2}, - [3111] = {.lex_state = 106, .external_lex_state = 2}, - [3112] = {.lex_state = 106, .external_lex_state = 2}, - [3113] = {.lex_state = 106, .external_lex_state = 2}, - [3114] = {.lex_state = 77, .external_lex_state = 2}, - [3115] = {.lex_state = 106, .external_lex_state = 2}, - [3116] = {.lex_state = 106, .external_lex_state = 2}, - [3117] = {.lex_state = 106, .external_lex_state = 2}, - [3118] = {.lex_state = 106, .external_lex_state = 2}, - [3119] = {.lex_state = 106, .external_lex_state = 2}, - [3120] = {.lex_state = 77, .external_lex_state = 2}, - [3121] = {.lex_state = 106, .external_lex_state = 8}, - [3122] = {.lex_state = 106, .external_lex_state = 2}, - [3123] = {.lex_state = 106, .external_lex_state = 4}, - [3124] = {.lex_state = 106, .external_lex_state = 2}, - [3125] = {.lex_state = 106, .external_lex_state = 2}, - [3126] = {.lex_state = 106, .external_lex_state = 2}, - [3127] = {.lex_state = 106, .external_lex_state = 2}, - [3128] = {.lex_state = 106, .external_lex_state = 2}, - [3129] = {.lex_state = 106, .external_lex_state = 2}, - [3130] = {.lex_state = 106, .external_lex_state = 2}, - [3131] = {.lex_state = 106, .external_lex_state = 2}, - [3132] = {.lex_state = 106, .external_lex_state = 4}, - [3133] = {.lex_state = 106, .external_lex_state = 2}, - [3134] = {.lex_state = 106, .external_lex_state = 2}, - [3135] = {.lex_state = 106, .external_lex_state = 2}, - [3136] = {.lex_state = 106, .external_lex_state = 2}, - [3137] = {.lex_state = 106, .external_lex_state = 4}, - [3138] = {.lex_state = 106, .external_lex_state = 2}, - [3139] = {.lex_state = 106, .external_lex_state = 2}, - [3140] = {.lex_state = 106, .external_lex_state = 2}, - [3141] = {.lex_state = 106, .external_lex_state = 2}, - [3142] = {.lex_state = 106, .external_lex_state = 4}, - [3143] = {.lex_state = 106, .external_lex_state = 2}, - [3144] = {.lex_state = 106, .external_lex_state = 2}, - [3145] = {.lex_state = 106, .external_lex_state = 2}, - [3146] = {.lex_state = 106, .external_lex_state = 4}, - [3147] = {.lex_state = 106, .external_lex_state = 2}, - [3148] = {.lex_state = 106, .external_lex_state = 2}, - [3149] = {.lex_state = 106, .external_lex_state = 2}, - [3150] = {.lex_state = 106, .external_lex_state = 2}, - [3151] = {.lex_state = 106, .external_lex_state = 2}, - [3152] = {.lex_state = 106, .external_lex_state = 2}, - [3153] = {.lex_state = 106, .external_lex_state = 8}, - [3154] = {.lex_state = 106, .external_lex_state = 2}, - [3155] = {.lex_state = 106, .external_lex_state = 2}, - [3156] = {.lex_state = 106, .external_lex_state = 8}, - [3157] = {.lex_state = 106, .external_lex_state = 2}, - [3158] = {.lex_state = 106, .external_lex_state = 8}, - [3159] = {.lex_state = 106, .external_lex_state = 2}, - [3160] = {.lex_state = 106, .external_lex_state = 2}, - [3161] = {.lex_state = 106, .external_lex_state = 2}, - [3162] = {.lex_state = 106, .external_lex_state = 2}, - [3163] = {.lex_state = 106, .external_lex_state = 8}, - [3164] = {.lex_state = 106, .external_lex_state = 2}, - [3165] = {.lex_state = 106, .external_lex_state = 2}, - [3166] = {.lex_state = 106, .external_lex_state = 2}, - [3167] = {.lex_state = 106, .external_lex_state = 2}, - [3168] = {.lex_state = 106, .external_lex_state = 2}, - [3169] = {.lex_state = 106, .external_lex_state = 2}, - [3170] = {.lex_state = 106, .external_lex_state = 4}, - [3171] = {.lex_state = 106, .external_lex_state = 2}, - [3172] = {.lex_state = 106, .external_lex_state = 2}, - [3173] = {.lex_state = 106, .external_lex_state = 2}, - [3174] = {.lex_state = 106, .external_lex_state = 2}, - [3175] = {.lex_state = 106, .external_lex_state = 2}, - [3176] = {.lex_state = 106, .external_lex_state = 4}, - [3177] = {.lex_state = 106, .external_lex_state = 2}, - [3178] = {.lex_state = 106, .external_lex_state = 2}, - [3179] = {.lex_state = 106, .external_lex_state = 2}, - [3180] = {.lex_state = 106, .external_lex_state = 2}, - [3181] = {.lex_state = 106, .external_lex_state = 2}, - [3182] = {.lex_state = 106, .external_lex_state = 2}, - [3183] = {.lex_state = 106, .external_lex_state = 2}, - [3184] = {.lex_state = 106, .external_lex_state = 2}, - [3185] = {.lex_state = 106, .external_lex_state = 2}, - [3186] = {.lex_state = 106, .external_lex_state = 2}, - [3187] = {.lex_state = 106, .external_lex_state = 2}, - [3188] = {.lex_state = 106, .external_lex_state = 2}, - [3189] = {.lex_state = 106, .external_lex_state = 2}, - [3190] = {.lex_state = 106, .external_lex_state = 2}, - [3191] = {.lex_state = 106, .external_lex_state = 2}, - [3192] = {.lex_state = 106, .external_lex_state = 2}, - [3193] = {.lex_state = 106, .external_lex_state = 2}, - [3194] = {.lex_state = 106, .external_lex_state = 2}, - [3195] = {.lex_state = 106, .external_lex_state = 2}, - [3196] = {.lex_state = 106, .external_lex_state = 2}, - [3197] = {.lex_state = 106, .external_lex_state = 2}, - [3198] = {.lex_state = 106, .external_lex_state = 2}, - [3199] = {.lex_state = 106, .external_lex_state = 2}, - [3200] = {.lex_state = 106, .external_lex_state = 2}, - [3201] = {.lex_state = 106, .external_lex_state = 2}, - [3202] = {.lex_state = 77, .external_lex_state = 2}, - [3203] = {.lex_state = 106, .external_lex_state = 2}, - [3204] = {.lex_state = 106, .external_lex_state = 2}, - [3205] = {.lex_state = 106, .external_lex_state = 2}, - [3206] = {.lex_state = 106, .external_lex_state = 2}, - [3207] = {.lex_state = 106, .external_lex_state = 2}, - [3208] = {.lex_state = 106, .external_lex_state = 2}, - [3209] = {.lex_state = 106, .external_lex_state = 2}, - [3210] = {.lex_state = 106, .external_lex_state = 2}, - [3211] = {.lex_state = 106, .external_lex_state = 2}, - [3212] = {.lex_state = 106, .external_lex_state = 2}, - [3213] = {.lex_state = 106, .external_lex_state = 2}, - [3214] = {.lex_state = 106, .external_lex_state = 2}, - [3215] = {.lex_state = 106, .external_lex_state = 2}, - [3216] = {.lex_state = 106, .external_lex_state = 2}, - [3217] = {.lex_state = 106, .external_lex_state = 2}, - [3218] = {.lex_state = 106, .external_lex_state = 2}, - [3219] = {.lex_state = 106, .external_lex_state = 2}, - [3220] = {.lex_state = 106, .external_lex_state = 2}, - [3221] = {.lex_state = 106, .external_lex_state = 2}, - [3222] = {.lex_state = 106, .external_lex_state = 2}, - [3223] = {.lex_state = 106, .external_lex_state = 2}, - [3224] = {.lex_state = 106, .external_lex_state = 2}, - [3225] = {.lex_state = 106, .external_lex_state = 2}, - [3226] = {.lex_state = 106, .external_lex_state = 2}, - [3227] = {.lex_state = 106, .external_lex_state = 2}, - [3228] = {.lex_state = 106, .external_lex_state = 2}, - [3229] = {.lex_state = 106, .external_lex_state = 8}, - [3230] = {.lex_state = 106, .external_lex_state = 8}, - [3231] = {.lex_state = 106, .external_lex_state = 2}, - [3232] = {.lex_state = 106, .external_lex_state = 2}, - [3233] = {.lex_state = 106, .external_lex_state = 2}, - [3234] = {.lex_state = 106, .external_lex_state = 8}, - [3235] = {.lex_state = 106, .external_lex_state = 2}, - [3236] = {.lex_state = 106, .external_lex_state = 2}, - [3237] = {.lex_state = 106, .external_lex_state = 2}, - [3238] = {.lex_state = 106, .external_lex_state = 2}, - [3239] = {.lex_state = 106, .external_lex_state = 2}, - [3240] = {.lex_state = 106, .external_lex_state = 2}, - [3241] = {.lex_state = 106, .external_lex_state = 2}, - [3242] = {.lex_state = 106, .external_lex_state = 2}, - [3243] = {.lex_state = 106, .external_lex_state = 2}, - [3244] = {.lex_state = 106, .external_lex_state = 2}, - [3245] = {.lex_state = 106, .external_lex_state = 2}, - [3246] = {.lex_state = 106, .external_lex_state = 2}, - [3247] = {.lex_state = 106, .external_lex_state = 2}, - [3248] = {.lex_state = 106, .external_lex_state = 2}, - [3249] = {.lex_state = 106, .external_lex_state = 2}, - [3250] = {.lex_state = 106, .external_lex_state = 2}, - [3251] = {.lex_state = 106, .external_lex_state = 2}, - [3252] = {.lex_state = 106, .external_lex_state = 2}, - [3253] = {.lex_state = 106, .external_lex_state = 2}, - [3254] = {.lex_state = 106, .external_lex_state = 2}, - [3255] = {.lex_state = 106, .external_lex_state = 2}, - [3256] = {.lex_state = 106, .external_lex_state = 2}, - [3257] = {.lex_state = 106, .external_lex_state = 2}, - [3258] = {.lex_state = 106, .external_lex_state = 2}, - [3259] = {.lex_state = 106, .external_lex_state = 2}, - [3260] = {.lex_state = 106, .external_lex_state = 2}, - [3261] = {.lex_state = 106, .external_lex_state = 2}, - [3262] = {.lex_state = 106, .external_lex_state = 2}, - [3263] = {.lex_state = 106, .external_lex_state = 2}, - [3264] = {.lex_state = 106, .external_lex_state = 2}, - [3265] = {.lex_state = 106, .external_lex_state = 2}, - [3266] = {.lex_state = 106, .external_lex_state = 2}, - [3267] = {.lex_state = 106, .external_lex_state = 2}, - [3268] = {.lex_state = 106, .external_lex_state = 2}, - [3269] = {.lex_state = 106, .external_lex_state = 2}, - [3270] = {.lex_state = 106, .external_lex_state = 4}, - [3271] = {.lex_state = 106, .external_lex_state = 8}, - [3272] = {.lex_state = 106, .external_lex_state = 8}, - [3273] = {.lex_state = 251, .external_lex_state = 4}, - [3274] = {.lex_state = 106, .external_lex_state = 4}, - [3275] = {.lex_state = 251, .external_lex_state = 2}, - [3276] = {.lex_state = 106, .external_lex_state = 8}, - [3277] = {.lex_state = 106, .external_lex_state = 8}, - [3278] = {.lex_state = 106, .external_lex_state = 8}, - [3279] = {.lex_state = 106, .external_lex_state = 4}, - [3280] = {.lex_state = 251, .external_lex_state = 2}, - [3281] = {.lex_state = 251, .external_lex_state = 4}, - [3282] = {.lex_state = 106, .external_lex_state = 4}, - [3283] = {.lex_state = 106, .external_lex_state = 4}, - [3284] = {.lex_state = 106, .external_lex_state = 8}, - [3285] = {.lex_state = 106, .external_lex_state = 4}, - [3286] = {.lex_state = 106, .external_lex_state = 4}, - [3287] = {.lex_state = 106, .external_lex_state = 4}, - [3288] = {.lex_state = 106, .external_lex_state = 4}, - [3289] = {.lex_state = 106, .external_lex_state = 4}, - [3290] = {.lex_state = 106, .external_lex_state = 8}, - [3291] = {.lex_state = 106, .external_lex_state = 8}, - [3292] = {.lex_state = 106, .external_lex_state = 8}, - [3293] = {.lex_state = 251, .external_lex_state = 4}, - [3294] = {.lex_state = 106, .external_lex_state = 4}, - [3295] = {.lex_state = 106, .external_lex_state = 8}, - [3296] = {.lex_state = 106, .external_lex_state = 8}, - [3297] = {.lex_state = 106, .external_lex_state = 8}, - [3298] = {.lex_state = 106, .external_lex_state = 8}, - [3299] = {.lex_state = 106, .external_lex_state = 8}, - [3300] = {.lex_state = 106, .external_lex_state = 8}, - [3301] = {.lex_state = 106, .external_lex_state = 8}, - [3302] = {.lex_state = 109, .external_lex_state = 2}, - [3303] = {.lex_state = 109, .external_lex_state = 2}, - [3304] = {.lex_state = 251, .external_lex_state = 8}, - [3305] = {.lex_state = 251, .external_lex_state = 8}, - [3306] = {.lex_state = 251, .external_lex_state = 8}, - [3307] = {.lex_state = 109, .external_lex_state = 2}, - [3308] = {.lex_state = 111, .external_lex_state = 2}, - [3309] = {.lex_state = 108, .external_lex_state = 2}, - [3310] = {.lex_state = 251, .external_lex_state = 2}, - [3311] = {.lex_state = 99, .external_lex_state = 8}, - [3312] = {.lex_state = 112, .external_lex_state = 2}, - [3313] = {.lex_state = 112, .external_lex_state = 2}, - [3314] = {.lex_state = 109, .external_lex_state = 2}, - [3315] = {.lex_state = 112, .external_lex_state = 2}, - [3316] = {.lex_state = 112, .external_lex_state = 2}, - [3317] = {.lex_state = 108, .external_lex_state = 2}, - [3318] = {.lex_state = 251, .external_lex_state = 2}, - [3319] = {.lex_state = 251, .external_lex_state = 2}, - [3320] = {.lex_state = 111, .external_lex_state = 2}, - [3321] = {.lex_state = 111, .external_lex_state = 2}, - [3322] = {.lex_state = 111, .external_lex_state = 2}, - [3323] = {.lex_state = 251, .external_lex_state = 2}, - [3324] = {.lex_state = 112, .external_lex_state = 2}, - [3325] = {.lex_state = 111, .external_lex_state = 2}, - [3326] = {.lex_state = 112, .external_lex_state = 2}, - [3327] = {.lex_state = 111, .external_lex_state = 2}, - [3328] = {.lex_state = 108, .external_lex_state = 8}, - [3329] = {.lex_state = 108, .external_lex_state = 2}, - [3330] = {.lex_state = 108, .external_lex_state = 2}, - [3331] = {.lex_state = 111, .external_lex_state = 2}, - [3332] = {.lex_state = 108, .external_lex_state = 2}, - [3333] = {.lex_state = 77, .external_lex_state = 2}, - [3334] = {.lex_state = 108, .external_lex_state = 2}, - [3335] = {.lex_state = 108, .external_lex_state = 2}, - [3336] = {.lex_state = 112, .external_lex_state = 2}, - [3337] = {.lex_state = 108, .external_lex_state = 2}, - [3338] = {.lex_state = 99, .external_lex_state = 8}, - [3339] = {.lex_state = 106, .external_lex_state = 2}, - [3340] = {.lex_state = 112, .external_lex_state = 2}, - [3341] = {.lex_state = 108, .external_lex_state = 2}, - [3342] = {.lex_state = 108, .external_lex_state = 2}, - [3343] = {.lex_state = 112, .external_lex_state = 2}, - [3344] = {.lex_state = 108, .external_lex_state = 2}, - [3345] = {.lex_state = 251, .external_lex_state = 8}, - [3346] = {.lex_state = 108, .external_lex_state = 2}, - [3347] = {.lex_state = 111, .external_lex_state = 2}, - [3348] = {.lex_state = 108, .external_lex_state = 2}, - [3349] = {.lex_state = 108, .external_lex_state = 2}, - [3350] = {.lex_state = 108, .external_lex_state = 2}, - [3351] = {.lex_state = 108, .external_lex_state = 2}, - [3352] = {.lex_state = 108, .external_lex_state = 2}, - [3353] = {.lex_state = 108, .external_lex_state = 2}, - [3354] = {.lex_state = 108, .external_lex_state = 2}, - [3355] = {.lex_state = 99, .external_lex_state = 8}, - [3356] = {.lex_state = 108, .external_lex_state = 2}, - [3357] = {.lex_state = 108, .external_lex_state = 2}, - [3358] = {.lex_state = 251, .external_lex_state = 8}, - [3359] = {.lex_state = 77, .external_lex_state = 2}, - [3360] = {.lex_state = 108, .external_lex_state = 2}, - [3361] = {.lex_state = 106, .external_lex_state = 2}, - [3362] = {.lex_state = 108, .external_lex_state = 2}, - [3363] = {.lex_state = 111, .external_lex_state = 2}, - [3364] = {.lex_state = 108, .external_lex_state = 2}, - [3365] = {.lex_state = 108, .external_lex_state = 2}, - [3366] = {.lex_state = 108, .external_lex_state = 2}, - [3367] = {.lex_state = 108, .external_lex_state = 2}, - [3368] = {.lex_state = 108, .external_lex_state = 2}, - [3369] = {.lex_state = 108, .external_lex_state = 2}, - [3370] = {.lex_state = 108, .external_lex_state = 2}, - [3371] = {.lex_state = 108, .external_lex_state = 2}, - [3372] = {.lex_state = 108, .external_lex_state = 2}, - [3373] = {.lex_state = 251, .external_lex_state = 8}, - [3374] = {.lex_state = 108, .external_lex_state = 2}, - [3375] = {.lex_state = 108, .external_lex_state = 2}, - [3376] = {.lex_state = 108, .external_lex_state = 2}, - [3377] = {.lex_state = 108, .external_lex_state = 2}, - [3378] = {.lex_state = 108, .external_lex_state = 2}, - [3379] = {.lex_state = 106, .external_lex_state = 2}, - [3380] = {.lex_state = 108, .external_lex_state = 2}, - [3381] = {.lex_state = 108, .external_lex_state = 2}, - [3382] = {.lex_state = 108, .external_lex_state = 2}, - [3383] = {.lex_state = 108, .external_lex_state = 2}, - [3384] = {.lex_state = 77, .external_lex_state = 2}, - [3385] = {.lex_state = 108, .external_lex_state = 2}, - [3386] = {.lex_state = 108, .external_lex_state = 2}, - [3387] = {.lex_state = 108, .external_lex_state = 2}, - [3388] = {.lex_state = 108, .external_lex_state = 2}, - [3389] = {.lex_state = 108, .external_lex_state = 2}, - [3390] = {.lex_state = 108, .external_lex_state = 2}, - [3391] = {.lex_state = 108, .external_lex_state = 2}, - [3392] = {.lex_state = 108, .external_lex_state = 2}, - [3393] = {.lex_state = 108, .external_lex_state = 2}, - [3394] = {.lex_state = 108, .external_lex_state = 2}, - [3395] = {.lex_state = 108, .external_lex_state = 2}, - [3396] = {.lex_state = 77, .external_lex_state = 2}, - [3397] = {.lex_state = 111, .external_lex_state = 2}, - [3398] = {.lex_state = 111, .external_lex_state = 2}, - [3399] = {.lex_state = 112, .external_lex_state = 2}, - [3400] = {.lex_state = 106, .external_lex_state = 2}, - [3401] = {.lex_state = 106, .external_lex_state = 2}, - [3402] = {.lex_state = 106, .external_lex_state = 2}, - [3403] = {.lex_state = 106, .external_lex_state = 2}, - [3404] = {.lex_state = 111, .external_lex_state = 2}, - [3405] = {.lex_state = 112, .external_lex_state = 2}, - [3406] = {.lex_state = 112, .external_lex_state = 2}, - [3407] = {.lex_state = 251, .external_lex_state = 8}, - [3408] = {.lex_state = 251, .external_lex_state = 8}, - [3409] = {.lex_state = 112, .external_lex_state = 2}, - [3410] = {.lex_state = 112, .external_lex_state = 2}, - [3411] = {.lex_state = 251, .external_lex_state = 8}, - [3412] = {.lex_state = 111, .external_lex_state = 2}, - [3413] = {.lex_state = 251, .external_lex_state = 8}, - [3414] = {.lex_state = 111, .external_lex_state = 2}, - [3415] = {.lex_state = 111, .external_lex_state = 2}, - [3416] = {.lex_state = 112, .external_lex_state = 2}, - [3417] = {.lex_state = 251, .external_lex_state = 8}, - [3418] = {.lex_state = 251, .external_lex_state = 8}, - [3419] = {.lex_state = 111, .external_lex_state = 2}, - [3420] = {.lex_state = 108, .external_lex_state = 2}, - [3421] = {.lex_state = 251, .external_lex_state = 8}, - [3422] = {.lex_state = 108, .external_lex_state = 2}, - [3423] = {.lex_state = 108, .external_lex_state = 2}, - [3424] = {.lex_state = 108, .external_lex_state = 2}, - [3425] = {.lex_state = 77, .external_lex_state = 2}, - [3426] = {.lex_state = 108, .external_lex_state = 2}, - [3427] = {.lex_state = 108, .external_lex_state = 2}, - [3428] = {.lex_state = 112, .external_lex_state = 2}, - [3429] = {.lex_state = 112, .external_lex_state = 2}, - [3430] = {.lex_state = 108, .external_lex_state = 2}, - [3431] = {.lex_state = 108, .external_lex_state = 2}, - [3432] = {.lex_state = 112, .external_lex_state = 2}, - [3433] = {.lex_state = 106, .external_lex_state = 2}, - [3434] = {.lex_state = 111, .external_lex_state = 2}, - [3435] = {.lex_state = 108, .external_lex_state = 2}, - [3436] = {.lex_state = 251, .external_lex_state = 8}, - [3437] = {.lex_state = 108, .external_lex_state = 2}, - [3438] = {.lex_state = 106, .external_lex_state = 2}, - [3439] = {.lex_state = 106, .external_lex_state = 2}, - [3440] = {.lex_state = 106, .external_lex_state = 2}, - [3441] = {.lex_state = 106, .external_lex_state = 2}, - [3442] = {.lex_state = 108, .external_lex_state = 2}, - [3443] = {.lex_state = 251, .external_lex_state = 8}, - [3444] = {.lex_state = 111, .external_lex_state = 2}, - [3445] = {.lex_state = 251, .external_lex_state = 4}, - [3446] = {.lex_state = 111, .external_lex_state = 2}, - [3447] = {.lex_state = 106, .external_lex_state = 2}, - [3448] = {.lex_state = 111, .external_lex_state = 2}, - [3449] = {.lex_state = 111, .external_lex_state = 2}, - [3450] = {.lex_state = 106, .external_lex_state = 2}, - [3451] = {.lex_state = 112, .external_lex_state = 2}, - [3452] = {.lex_state = 112, .external_lex_state = 2}, - [3453] = {.lex_state = 112, .external_lex_state = 2}, - [3454] = {.lex_state = 112, .external_lex_state = 2}, - [3455] = {.lex_state = 106, .external_lex_state = 2}, - [3456] = {.lex_state = 111, .external_lex_state = 2}, - [3457] = {.lex_state = 77, .external_lex_state = 2}, - [3458] = {.lex_state = 108, .external_lex_state = 2}, - [3459] = {.lex_state = 108, .external_lex_state = 2}, - [3460] = {.lex_state = 112, .external_lex_state = 2}, - [3461] = {.lex_state = 112, .external_lex_state = 2}, - [3462] = {.lex_state = 111, .external_lex_state = 2}, - [3463] = {.lex_state = 106, .external_lex_state = 4}, - [3464] = {.lex_state = 111, .external_lex_state = 2}, - [3465] = {.lex_state = 111, .external_lex_state = 2}, - [3466] = {.lex_state = 112, .external_lex_state = 2}, - [3467] = {.lex_state = 106, .external_lex_state = 2}, - [3468] = {.lex_state = 108, .external_lex_state = 2}, - [3469] = {.lex_state = 111, .external_lex_state = 2}, - [3470] = {.lex_state = 77, .external_lex_state = 2}, - [3471] = {.lex_state = 112, .external_lex_state = 2}, - [3472] = {.lex_state = 114, .external_lex_state = 2}, - [3473] = {.lex_state = 114, .external_lex_state = 2}, - [3474] = {.lex_state = 251, .external_lex_state = 8}, - [3475] = {.lex_state = 114, .external_lex_state = 2}, - [3476] = {.lex_state = 114, .external_lex_state = 2}, - [3477] = {.lex_state = 114, .external_lex_state = 2}, - [3478] = {.lex_state = 114, .external_lex_state = 2}, - [3479] = {.lex_state = 114, .external_lex_state = 2}, - [3480] = {.lex_state = 251, .external_lex_state = 4}, - [3481] = {.lex_state = 251, .external_lex_state = 4}, - [3482] = {.lex_state = 251, .external_lex_state = 4}, - [3483] = {.lex_state = 114, .external_lex_state = 2}, - [3484] = {.lex_state = 114, .external_lex_state = 2}, - [3485] = {.lex_state = 114, .external_lex_state = 2}, - [3486] = {.lex_state = 106, .external_lex_state = 2}, - [3487] = {.lex_state = 106, .external_lex_state = 8}, - [3488] = {.lex_state = 106, .external_lex_state = 2}, - [3489] = {.lex_state = 106, .external_lex_state = 2}, - [3490] = {.lex_state = 114, .external_lex_state = 2}, - [3491] = {.lex_state = 251, .external_lex_state = 4}, - [3492] = {.lex_state = 251, .external_lex_state = 4}, - [3493] = {.lex_state = 106, .external_lex_state = 9}, - [3494] = {.lex_state = 114, .external_lex_state = 2}, - [3495] = {.lex_state = 106, .external_lex_state = 2}, - [3496] = {.lex_state = 106, .external_lex_state = 2}, - [3497] = {.lex_state = 251, .external_lex_state = 4}, - [3498] = {.lex_state = 114, .external_lex_state = 2}, - [3499] = {.lex_state = 114, .external_lex_state = 2}, - [3500] = {.lex_state = 114, .external_lex_state = 2}, - [3501] = {.lex_state = 106, .external_lex_state = 2}, - [3502] = {.lex_state = 114, .external_lex_state = 2}, - [3503] = {.lex_state = 251, .external_lex_state = 4}, - [3504] = {.lex_state = 251, .external_lex_state = 4}, - [3505] = {.lex_state = 114, .external_lex_state = 2}, - [3506] = {.lex_state = 251, .external_lex_state = 4}, - [3507] = {.lex_state = 251, .external_lex_state = 4}, - [3508] = {.lex_state = 80, .external_lex_state = 2}, - [3509] = {.lex_state = 251, .external_lex_state = 4}, - [3510] = {.lex_state = 251, .external_lex_state = 4}, - [3511] = {.lex_state = 251, .external_lex_state = 4}, - [3512] = {.lex_state = 251, .external_lex_state = 4}, - [3513] = {.lex_state = 251, .external_lex_state = 8}, - [3514] = {.lex_state = 106, .external_lex_state = 2}, - [3515] = {.lex_state = 251, .external_lex_state = 8}, - [3516] = {.lex_state = 80, .external_lex_state = 2}, - [3517] = {.lex_state = 106, .external_lex_state = 2}, - [3518] = {.lex_state = 80, .external_lex_state = 2}, - [3519] = {.lex_state = 80, .external_lex_state = 2}, - [3520] = {.lex_state = 106, .external_lex_state = 2}, - [3521] = {.lex_state = 80, .external_lex_state = 2}, - [3522] = {.lex_state = 80, .external_lex_state = 2}, - [3523] = {.lex_state = 80, .external_lex_state = 2}, - [3524] = {.lex_state = 80, .external_lex_state = 2}, - [3525] = {.lex_state = 251, .external_lex_state = 8}, - [3526] = {.lex_state = 251, .external_lex_state = 8}, - [3527] = {.lex_state = 80, .external_lex_state = 2}, - [3528] = {.lex_state = 80, .external_lex_state = 2}, - [3529] = {.lex_state = 80, .external_lex_state = 2}, - [3530] = {.lex_state = 80, .external_lex_state = 2}, - [3531] = {.lex_state = 80, .external_lex_state = 2}, - [3532] = {.lex_state = 106, .external_lex_state = 2}, - [3533] = {.lex_state = 251, .external_lex_state = 4}, - [3534] = {.lex_state = 106, .external_lex_state = 2}, - [3535] = {.lex_state = 106, .external_lex_state = 2}, - [3536] = {.lex_state = 251, .external_lex_state = 4}, - [3537] = {.lex_state = 251, .external_lex_state = 4}, - [3538] = {.lex_state = 80, .external_lex_state = 2}, - [3539] = {.lex_state = 251, .external_lex_state = 4}, - [3540] = {.lex_state = 108, .external_lex_state = 2}, - [3541] = {.lex_state = 80, .external_lex_state = 2}, - [3542] = {.lex_state = 251, .external_lex_state = 4}, - [3543] = {.lex_state = 106, .external_lex_state = 2}, - [3544] = {.lex_state = 80, .external_lex_state = 2}, - [3545] = {.lex_state = 251, .external_lex_state = 8}, - [3546] = {.lex_state = 80, .external_lex_state = 2}, - [3547] = {.lex_state = 80, .external_lex_state = 2}, - [3548] = {.lex_state = 251, .external_lex_state = 4}, - [3549] = {.lex_state = 106, .external_lex_state = 2}, - [3550] = {.lex_state = 80, .external_lex_state = 2}, - [3551] = {.lex_state = 80, .external_lex_state = 2}, - [3552] = {.lex_state = 80, .external_lex_state = 2}, - [3553] = {.lex_state = 106, .external_lex_state = 9}, - [3554] = {.lex_state = 80, .external_lex_state = 2}, - [3555] = {.lex_state = 251, .external_lex_state = 4}, - [3556] = {.lex_state = 251, .external_lex_state = 4}, - [3557] = {.lex_state = 106, .external_lex_state = 2}, - [3558] = {.lex_state = 251, .external_lex_state = 4}, - [3559] = {.lex_state = 251, .external_lex_state = 8}, - [3560] = {.lex_state = 251, .external_lex_state = 4}, - [3561] = {.lex_state = 251, .external_lex_state = 8}, - [3562] = {.lex_state = 80, .external_lex_state = 2}, - [3563] = {.lex_state = 80, .external_lex_state = 2}, - [3564] = {.lex_state = 80, .external_lex_state = 2}, - [3565] = {.lex_state = 80, .external_lex_state = 2}, - [3566] = {.lex_state = 80, .external_lex_state = 2}, - [3567] = {.lex_state = 251, .external_lex_state = 4}, - [3568] = {.lex_state = 80, .external_lex_state = 2}, - [3569] = {.lex_state = 80, .external_lex_state = 2}, - [3570] = {.lex_state = 251, .external_lex_state = 8}, - [3571] = {.lex_state = 80, .external_lex_state = 2}, - [3572] = {.lex_state = 80, .external_lex_state = 2}, - [3573] = {.lex_state = 80, .external_lex_state = 2}, - [3574] = {.lex_state = 106, .external_lex_state = 9}, - [3575] = {.lex_state = 106, .external_lex_state = 9}, - [3576] = {.lex_state = 106, .external_lex_state = 9}, - [3577] = {.lex_state = 80, .external_lex_state = 2}, - [3578] = {.lex_state = 106, .external_lex_state = 2}, - [3579] = {.lex_state = 80, .external_lex_state = 2}, - [3580] = {.lex_state = 106, .external_lex_state = 2}, - [3581] = {.lex_state = 80, .external_lex_state = 2}, - [3582] = {.lex_state = 80, .external_lex_state = 2}, - [3583] = {.lex_state = 106, .external_lex_state = 2}, - [3584] = {.lex_state = 80, .external_lex_state = 2}, - [3585] = {.lex_state = 251, .external_lex_state = 8}, - [3586] = {.lex_state = 80, .external_lex_state = 2}, - [3587] = {.lex_state = 108, .external_lex_state = 2}, - [3588] = {.lex_state = 80, .external_lex_state = 2}, - [3589] = {.lex_state = 106, .external_lex_state = 2}, - [3590] = {.lex_state = 108, .external_lex_state = 2}, - [3591] = {.lex_state = 106, .external_lex_state = 4}, - [3592] = {.lex_state = 108, .external_lex_state = 2}, - [3593] = {.lex_state = 106, .external_lex_state = 4}, - [3594] = {.lex_state = 106, .external_lex_state = 9}, - [3595] = {.lex_state = 104, .external_lex_state = 2}, - [3596] = {.lex_state = 251, .external_lex_state = 2}, - [3597] = {.lex_state = 104, .external_lex_state = 2}, - [3598] = {.lex_state = 108, .external_lex_state = 2}, - [3599] = {.lex_state = 104, .external_lex_state = 2}, - [3600] = {.lex_state = 108, .external_lex_state = 2}, - [3601] = {.lex_state = 108, .external_lex_state = 2}, - [3602] = {.lex_state = 108, .external_lex_state = 2}, - [3603] = {.lex_state = 108, .external_lex_state = 2}, - [3604] = {.lex_state = 108, .external_lex_state = 2}, - [3605] = {.lex_state = 108, .external_lex_state = 2}, - [3606] = {.lex_state = 104, .external_lex_state = 2}, - [3607] = {.lex_state = 106, .external_lex_state = 2}, - [3608] = {.lex_state = 251, .external_lex_state = 2}, - [3609] = {.lex_state = 106, .external_lex_state = 4}, - [3610] = {.lex_state = 104, .external_lex_state = 2}, - [3611] = {.lex_state = 108, .external_lex_state = 2}, - [3612] = {.lex_state = 104, .external_lex_state = 2}, - [3613] = {.lex_state = 104, .external_lex_state = 2}, - [3614] = {.lex_state = 108, .external_lex_state = 2}, - [3615] = {.lex_state = 108, .external_lex_state = 2}, - [3616] = {.lex_state = 108, .external_lex_state = 2}, - [3617] = {.lex_state = 108, .external_lex_state = 2}, - [3618] = {.lex_state = 104, .external_lex_state = 2}, - [3619] = {.lex_state = 108, .external_lex_state = 2}, - [3620] = {.lex_state = 108, .external_lex_state = 2}, - [3621] = {.lex_state = 108, .external_lex_state = 2}, - [3622] = {.lex_state = 108, .external_lex_state = 2}, - [3623] = {.lex_state = 108, .external_lex_state = 2}, - [3624] = {.lex_state = 104, .external_lex_state = 2}, - [3625] = {.lex_state = 108, .external_lex_state = 2}, - [3626] = {.lex_state = 106, .external_lex_state = 9}, - [3627] = {.lex_state = 251, .external_lex_state = 2}, - [3628] = {.lex_state = 106, .external_lex_state = 9}, - [3629] = {.lex_state = 108, .external_lex_state = 2}, - [3630] = {.lex_state = 104, .external_lex_state = 2}, - [3631] = {.lex_state = 104, .external_lex_state = 2}, - [3632] = {.lex_state = 104, .external_lex_state = 2}, - [3633] = {.lex_state = 251, .external_lex_state = 2}, - [3634] = {.lex_state = 104, .external_lex_state = 2}, - [3635] = {.lex_state = 104, .external_lex_state = 2}, - [3636] = {.lex_state = 108, .external_lex_state = 2}, - [3637] = {.lex_state = 104, .external_lex_state = 2}, - [3638] = {.lex_state = 104, .external_lex_state = 2}, - [3639] = {.lex_state = 104, .external_lex_state = 2}, - [3640] = {.lex_state = 104, .external_lex_state = 2}, - [3641] = {.lex_state = 108, .external_lex_state = 2}, - [3642] = {.lex_state = 108, .external_lex_state = 2}, - [3643] = {.lex_state = 106, .external_lex_state = 4}, - [3644] = {.lex_state = 104, .external_lex_state = 2}, - [3645] = {.lex_state = 104, .external_lex_state = 2}, - [3646] = {.lex_state = 251, .external_lex_state = 2}, - [3647] = {.lex_state = 108, .external_lex_state = 2}, - [3648] = {.lex_state = 104, .external_lex_state = 2}, - [3649] = {.lex_state = 108, .external_lex_state = 2}, - [3650] = {.lex_state = 108, .external_lex_state = 2}, - [3651] = {.lex_state = 108, .external_lex_state = 2}, - [3652] = {.lex_state = 108, .external_lex_state = 2}, - [3653] = {.lex_state = 108, .external_lex_state = 2}, - [3654] = {.lex_state = 108, .external_lex_state = 2}, - [3655] = {.lex_state = 104, .external_lex_state = 2}, - [3656] = {.lex_state = 106, .external_lex_state = 2}, - [3657] = {.lex_state = 108, .external_lex_state = 2}, - [3658] = {.lex_state = 104, .external_lex_state = 2}, - [3659] = {.lex_state = 104, .external_lex_state = 2}, - [3660] = {.lex_state = 104, .external_lex_state = 2}, - [3661] = {.lex_state = 104, .external_lex_state = 2}, - [3662] = {.lex_state = 108, .external_lex_state = 2}, - [3663] = {.lex_state = 251, .external_lex_state = 8}, - [3664] = {.lex_state = 108, .external_lex_state = 2}, - [3665] = {.lex_state = 104, .external_lex_state = 2}, - [3666] = {.lex_state = 251, .external_lex_state = 8}, - [3667] = {.lex_state = 104, .external_lex_state = 2}, - [3668] = {.lex_state = 251, .external_lex_state = 8}, - [3669] = {.lex_state = 251, .external_lex_state = 8}, - [3670] = {.lex_state = 251, .external_lex_state = 8}, - [3671] = {.lex_state = 108, .external_lex_state = 2}, - [3672] = {.lex_state = 251, .external_lex_state = 8}, - [3673] = {.lex_state = 251, .external_lex_state = 8}, - [3674] = {.lex_state = 251, .external_lex_state = 8}, - [3675] = {.lex_state = 104, .external_lex_state = 2}, - [3676] = {.lex_state = 108, .external_lex_state = 2}, - [3677] = {.lex_state = 108, .external_lex_state = 2}, - [3678] = {.lex_state = 104, .external_lex_state = 2}, - [3679] = {.lex_state = 104, .external_lex_state = 2}, - [3680] = {.lex_state = 106, .external_lex_state = 2}, - [3681] = {.lex_state = 104, .external_lex_state = 2}, - [3682] = {.lex_state = 251, .external_lex_state = 8}, - [3683] = {.lex_state = 251, .external_lex_state = 8}, - [3684] = {.lex_state = 251, .external_lex_state = 8}, - [3685] = {.lex_state = 251, .external_lex_state = 2}, - [3686] = {.lex_state = 251, .external_lex_state = 8}, - [3687] = {.lex_state = 251, .external_lex_state = 8}, - [3688] = {.lex_state = 106, .external_lex_state = 2}, - [3689] = {.lex_state = 104, .external_lex_state = 2}, - [3690] = {.lex_state = 251, .external_lex_state = 8}, - [3691] = {.lex_state = 104, .external_lex_state = 2}, - [3692] = {.lex_state = 104, .external_lex_state = 2}, - [3693] = {.lex_state = 251, .external_lex_state = 8}, - [3694] = {.lex_state = 108, .external_lex_state = 2}, - [3695] = {.lex_state = 251, .external_lex_state = 8}, - [3696] = {.lex_state = 108, .external_lex_state = 2}, - [3697] = {.lex_state = 251, .external_lex_state = 2}, - [3698] = {.lex_state = 107, .external_lex_state = 2}, - [3699] = {.lex_state = 106, .external_lex_state = 8}, - [3700] = {.lex_state = 106, .external_lex_state = 2}, - [3701] = {.lex_state = 81, .external_lex_state = 2}, - [3702] = {.lex_state = 251, .external_lex_state = 2}, - [3703] = {.lex_state = 251, .external_lex_state = 2}, - [3704] = {.lex_state = 81, .external_lex_state = 2}, - [3705] = {.lex_state = 106, .external_lex_state = 2}, - [3706] = {.lex_state = 251, .external_lex_state = 2}, - [3707] = {.lex_state = 251, .external_lex_state = 2}, - [3708] = {.lex_state = 251, .external_lex_state = 2}, - [3709] = {.lex_state = 108, .external_lex_state = 2}, - [3710] = {.lex_state = 106, .external_lex_state = 2}, - [3711] = {.lex_state = 107, .external_lex_state = 2}, - [3712] = {.lex_state = 251, .external_lex_state = 2}, - [3713] = {.lex_state = 251, .external_lex_state = 2}, - [3714] = {.lex_state = 106, .external_lex_state = 2}, - [3715] = {.lex_state = 106, .external_lex_state = 2}, - [3716] = {.lex_state = 251, .external_lex_state = 2}, - [3717] = {.lex_state = 251, .external_lex_state = 2}, - [3718] = {.lex_state = 81, .external_lex_state = 2}, - [3719] = {.lex_state = 251, .external_lex_state = 2}, - [3720] = {.lex_state = 251, .external_lex_state = 2}, - [3721] = {.lex_state = 106, .external_lex_state = 2}, - [3722] = {.lex_state = 251, .external_lex_state = 2}, - [3723] = {.lex_state = 251, .external_lex_state = 2}, - [3724] = {.lex_state = 108, .external_lex_state = 2}, - [3725] = {.lex_state = 108, .external_lex_state = 2}, - [3726] = {.lex_state = 108, .external_lex_state = 2}, - [3727] = {.lex_state = 108, .external_lex_state = 2}, - [3728] = {.lex_state = 106, .external_lex_state = 2}, - [3729] = {.lex_state = 106, .external_lex_state = 2}, - [3730] = {.lex_state = 106, .external_lex_state = 2}, - [3731] = {.lex_state = 108, .external_lex_state = 2}, - [3732] = {.lex_state = 106, .external_lex_state = 2}, - [3733] = {.lex_state = 106, .external_lex_state = 9}, - [3734] = {.lex_state = 251, .external_lex_state = 2}, - [3735] = {.lex_state = 108, .external_lex_state = 2}, - [3736] = {.lex_state = 108, .external_lex_state = 2}, - [3737] = {.lex_state = 81, .external_lex_state = 2}, - [3738] = {.lex_state = 106, .external_lex_state = 9}, - [3739] = {.lex_state = 106, .external_lex_state = 9}, - [3740] = {.lex_state = 106, .external_lex_state = 2}, - [3741] = {.lex_state = 251, .external_lex_state = 2}, - [3742] = {.lex_state = 251, .external_lex_state = 2}, - [3743] = {.lex_state = 108, .external_lex_state = 2}, - [3744] = {.lex_state = 251, .external_lex_state = 2}, - [3745] = {.lex_state = 106, .external_lex_state = 2}, - [3746] = {.lex_state = 106, .external_lex_state = 2}, - [3747] = {.lex_state = 107, .external_lex_state = 2}, - [3748] = {.lex_state = 106, .external_lex_state = 2}, - [3749] = {.lex_state = 251, .external_lex_state = 2}, - [3750] = {.lex_state = 106, .external_lex_state = 9}, - [3751] = {.lex_state = 106, .external_lex_state = 2}, - [3752] = {.lex_state = 106, .external_lex_state = 2}, - [3753] = {.lex_state = 106, .external_lex_state = 2}, - [3754] = {.lex_state = 251, .external_lex_state = 2}, - [3755] = {.lex_state = 251, .external_lex_state = 2}, - [3756] = {.lex_state = 108, .external_lex_state = 2}, - [3757] = {.lex_state = 106, .external_lex_state = 2}, - [3758] = {.lex_state = 106, .external_lex_state = 2}, - [3759] = {.lex_state = 106, .external_lex_state = 2}, - [3760] = {.lex_state = 106, .external_lex_state = 2}, - [3761] = {.lex_state = 108, .external_lex_state = 2}, - [3762] = {.lex_state = 106, .external_lex_state = 2}, - [3763] = {.lex_state = 106, .external_lex_state = 2}, - [3764] = {.lex_state = 108, .external_lex_state = 2}, - [3765] = {.lex_state = 108, .external_lex_state = 2}, - [3766] = {.lex_state = 108, .external_lex_state = 2}, - [3767] = {.lex_state = 108, .external_lex_state = 2}, - [3768] = {.lex_state = 251, .external_lex_state = 2}, - [3769] = {.lex_state = 108, .external_lex_state = 2}, - [3770] = {.lex_state = 106, .external_lex_state = 2}, - [3771] = {.lex_state = 106, .external_lex_state = 2}, - [3772] = {.lex_state = 106, .external_lex_state = 8}, - [3773] = {.lex_state = 106, .external_lex_state = 2}, - [3774] = {.lex_state = 106, .external_lex_state = 9}, - [3775] = {.lex_state = 108, .external_lex_state = 2}, - [3776] = {.lex_state = 81, .external_lex_state = 2}, - [3777] = {.lex_state = 251, .external_lex_state = 2}, - [3778] = {.lex_state = 108, .external_lex_state = 2}, - [3779] = {.lex_state = 108, .external_lex_state = 2}, - [3780] = {.lex_state = 106, .external_lex_state = 2}, - [3781] = {.lex_state = 108, .external_lex_state = 2}, - [3782] = {.lex_state = 106, .external_lex_state = 2}, - [3783] = {.lex_state = 106, .external_lex_state = 2}, - [3784] = {.lex_state = 81, .external_lex_state = 2}, - [3785] = {.lex_state = 108, .external_lex_state = 2}, - [3786] = {.lex_state = 107, .external_lex_state = 2}, - [3787] = {.lex_state = 108, .external_lex_state = 2}, - [3788] = {.lex_state = 108, .external_lex_state = 2}, - [3789] = {.lex_state = 251, .external_lex_state = 2}, - [3790] = {.lex_state = 251, .external_lex_state = 2}, - [3791] = {.lex_state = 108, .external_lex_state = 2}, - [3792] = {.lex_state = 108, .external_lex_state = 2}, - [3793] = {.lex_state = 108, .external_lex_state = 2}, - [3794] = {.lex_state = 108, .external_lex_state = 2}, - [3795] = {.lex_state = 106, .external_lex_state = 2}, - [3796] = {.lex_state = 107, .external_lex_state = 2}, - [3797] = {.lex_state = 106, .external_lex_state = 8}, - [3798] = {.lex_state = 106, .external_lex_state = 2}, - [3799] = {.lex_state = 81, .external_lex_state = 2}, - [3800] = {.lex_state = 108, .external_lex_state = 2}, - [3801] = {.lex_state = 106, .external_lex_state = 2}, - [3802] = {.lex_state = 106, .external_lex_state = 2}, - [3803] = {.lex_state = 106, .external_lex_state = 2}, - [3804] = {.lex_state = 251, .external_lex_state = 2}, - [3805] = {.lex_state = 108, .external_lex_state = 2}, - [3806] = {.lex_state = 108, .external_lex_state = 2}, - [3807] = {.lex_state = 108, .external_lex_state = 2}, - [3808] = {.lex_state = 108, .external_lex_state = 2}, - [3809] = {.lex_state = 108, .external_lex_state = 2}, - [3810] = {.lex_state = 108, .external_lex_state = 2}, - [3811] = {.lex_state = 106, .external_lex_state = 9}, - [3812] = {.lex_state = 106, .external_lex_state = 2}, - [3813] = {.lex_state = 106, .external_lex_state = 2}, - [3814] = {.lex_state = 108, .external_lex_state = 2}, - [3815] = {.lex_state = 108, .external_lex_state = 2}, - [3816] = {.lex_state = 106, .external_lex_state = 2}, - [3817] = {.lex_state = 106, .external_lex_state = 9}, - [3818] = {.lex_state = 108, .external_lex_state = 2}, - [3819] = {.lex_state = 108, .external_lex_state = 2}, - [3820] = {.lex_state = 106, .external_lex_state = 9}, - [3821] = {.lex_state = 108, .external_lex_state = 2}, - [3822] = {.lex_state = 108, .external_lex_state = 2}, - [3823] = {.lex_state = 106, .external_lex_state = 9}, - [3824] = {.lex_state = 108, .external_lex_state = 2}, - [3825] = {.lex_state = 108, .external_lex_state = 2}, - [3826] = {.lex_state = 108, .external_lex_state = 2}, - [3827] = {.lex_state = 108, .external_lex_state = 2}, - [3828] = {.lex_state = 104, .external_lex_state = 2}, - [3829] = {.lex_state = 80, .external_lex_state = 2}, - [3830] = {.lex_state = 108, .external_lex_state = 2}, - [3831] = {.lex_state = 108, .external_lex_state = 2}, - [3832] = {.lex_state = 106, .external_lex_state = 9}, - [3833] = {.lex_state = 108, .external_lex_state = 2}, - [3834] = {.lex_state = 108, .external_lex_state = 2}, - [3835] = {.lex_state = 108, .external_lex_state = 2}, - [3836] = {.lex_state = 106, .external_lex_state = 9}, - [3837] = {.lex_state = 106, .external_lex_state = 2}, - [3838] = {.lex_state = 108, .external_lex_state = 2}, - [3839] = {.lex_state = 108, .external_lex_state = 2}, - [3840] = {.lex_state = 108, .external_lex_state = 2}, - [3841] = {.lex_state = 77, .external_lex_state = 2}, - [3842] = {.lex_state = 77, .external_lex_state = 2}, - [3843] = {.lex_state = 108, .external_lex_state = 2}, - [3844] = {.lex_state = 108, .external_lex_state = 2}, - [3845] = {.lex_state = 104, .external_lex_state = 2}, - [3846] = {.lex_state = 108, .external_lex_state = 2}, - [3847] = {.lex_state = 108, .external_lex_state = 2}, - [3848] = {.lex_state = 106, .external_lex_state = 9}, - [3849] = {.lex_state = 80, .external_lex_state = 2}, - [3850] = {.lex_state = 106, .external_lex_state = 9}, - [3851] = {.lex_state = 108, .external_lex_state = 2}, - [3852] = {.lex_state = 108, .external_lex_state = 2}, - [3853] = {.lex_state = 108, .external_lex_state = 2}, - [3854] = {.lex_state = 106, .external_lex_state = 2}, - [3855] = {.lex_state = 108, .external_lex_state = 2}, - [3856] = {.lex_state = 108, .external_lex_state = 2}, - [3857] = {.lex_state = 106, .external_lex_state = 9}, - [3858] = {.lex_state = 108, .external_lex_state = 2}, - [3859] = {.lex_state = 106, .external_lex_state = 9}, - [3860] = {.lex_state = 108, .external_lex_state = 2}, - [3861] = {.lex_state = 108, .external_lex_state = 2}, - [3862] = {.lex_state = 108, .external_lex_state = 2}, - [3863] = {.lex_state = 106, .external_lex_state = 9}, - [3864] = {.lex_state = 106, .external_lex_state = 2}, - [3865] = {.lex_state = 106, .external_lex_state = 2}, - [3866] = {.lex_state = 106, .external_lex_state = 2}, - [3867] = {.lex_state = 108, .external_lex_state = 2}, - [3868] = {.lex_state = 108, .external_lex_state = 2}, - [3869] = {.lex_state = 80, .external_lex_state = 2}, - [3870] = {.lex_state = 106, .external_lex_state = 2}, - [3871] = {.lex_state = 106, .external_lex_state = 2}, - [3872] = {.lex_state = 106, .external_lex_state = 9}, - [3873] = {.lex_state = 108, .external_lex_state = 2}, - [3874] = {.lex_state = 108, .external_lex_state = 2}, - [3875] = {.lex_state = 108, .external_lex_state = 2}, - [3876] = {.lex_state = 108, .external_lex_state = 2}, - [3877] = {.lex_state = 108, .external_lex_state = 2}, - [3878] = {.lex_state = 73, .external_lex_state = 2}, - [3879] = {.lex_state = 118, .external_lex_state = 2}, - [3880] = {.lex_state = 77, .external_lex_state = 2}, - [3881] = {.lex_state = 73, .external_lex_state = 2}, - [3882] = {.lex_state = 118, .external_lex_state = 2}, - [3883] = {.lex_state = 73, .external_lex_state = 2}, - [3884] = {.lex_state = 251, .external_lex_state = 2}, - [3885] = {.lex_state = 73, .external_lex_state = 2}, - [3886] = {.lex_state = 251, .external_lex_state = 2}, - [3887] = {.lex_state = 73, .external_lex_state = 2}, - [3888] = {.lex_state = 106, .external_lex_state = 2}, - [3889] = {.lex_state = 251, .external_lex_state = 2}, - [3890] = {.lex_state = 251, .external_lex_state = 2}, - [3891] = {.lex_state = 118, .external_lex_state = 2}, - [3892] = {.lex_state = 73, .external_lex_state = 2}, - [3893] = {.lex_state = 118, .external_lex_state = 2}, - [3894] = {.lex_state = 73, .external_lex_state = 2}, - [3895] = {.lex_state = 251, .external_lex_state = 2}, - [3896] = {.lex_state = 73, .external_lex_state = 2}, - [3897] = {.lex_state = 73, .external_lex_state = 2}, - [3898] = {.lex_state = 73, .external_lex_state = 2}, - [3899] = {.lex_state = 73, .external_lex_state = 2}, - [3900] = {.lex_state = 73, .external_lex_state = 2}, - [3901] = {.lex_state = 73, .external_lex_state = 2}, - [3902] = {.lex_state = 73, .external_lex_state = 2}, - [3903] = {.lex_state = 73, .external_lex_state = 2}, - [3904] = {.lex_state = 73, .external_lex_state = 2}, - [3905] = {.lex_state = 73, .external_lex_state = 2}, - [3906] = {.lex_state = 118, .external_lex_state = 2}, - [3907] = {.lex_state = 118, .external_lex_state = 2}, - [3908] = {.lex_state = 73, .external_lex_state = 2}, - [3909] = {.lex_state = 251, .external_lex_state = 2}, - [3910] = {.lex_state = 73, .external_lex_state = 2}, - [3911] = {.lex_state = 73, .external_lex_state = 2}, - [3912] = {.lex_state = 251, .external_lex_state = 2}, - [3913] = {.lex_state = 73, .external_lex_state = 2}, - [3914] = {.lex_state = 118, .external_lex_state = 2}, - [3915] = {.lex_state = 118, .external_lex_state = 2}, - [3916] = {.lex_state = 73, .external_lex_state = 2}, - [3917] = {.lex_state = 251, .external_lex_state = 2}, - [3918] = {.lex_state = 73, .external_lex_state = 2}, - [3919] = {.lex_state = 118, .external_lex_state = 2}, - [3920] = {.lex_state = 251, .external_lex_state = 2}, - [3921] = {.lex_state = 73, .external_lex_state = 2}, - [3922] = {.lex_state = 73, .external_lex_state = 2}, - [3923] = {.lex_state = 118, .external_lex_state = 2}, - [3924] = {.lex_state = 73, .external_lex_state = 2}, - [3925] = {.lex_state = 251, .external_lex_state = 2}, - [3926] = {.lex_state = 73, .external_lex_state = 2}, - [3927] = {.lex_state = 73, .external_lex_state = 2}, - [3928] = {.lex_state = 73, .external_lex_state = 2}, - [3929] = {.lex_state = 73, .external_lex_state = 2}, - [3930] = {.lex_state = 73, .external_lex_state = 2}, - [3931] = {.lex_state = 73, .external_lex_state = 2}, - [3932] = {.lex_state = 73, .external_lex_state = 2}, - [3933] = {.lex_state = 77, .external_lex_state = 2}, - [3934] = {.lex_state = 81, .external_lex_state = 2}, - [3935] = {.lex_state = 118, .external_lex_state = 2}, - [3936] = {.lex_state = 81, .external_lex_state = 2}, - [3937] = {.lex_state = 73, .external_lex_state = 2}, - [3938] = {.lex_state = 73, .external_lex_state = 2}, - [3939] = {.lex_state = 251, .external_lex_state = 2}, - [3940] = {.lex_state = 251, .external_lex_state = 2}, - [3941] = {.lex_state = 105, .external_lex_state = 2}, - [3942] = {.lex_state = 106, .external_lex_state = 2}, - [3943] = {.lex_state = 105, .external_lex_state = 2}, - [3944] = {.lex_state = 106, .external_lex_state = 2}, - [3945] = {.lex_state = 251, .external_lex_state = 2}, - [3946] = {.lex_state = 105, .external_lex_state = 2}, - [3947] = {.lex_state = 108, .external_lex_state = 2}, - [3948] = {.lex_state = 108, .external_lex_state = 2}, - [3949] = {.lex_state = 108, .external_lex_state = 2}, - [3950] = {.lex_state = 108, .external_lex_state = 2}, - [3951] = {.lex_state = 77, .external_lex_state = 2}, - [3952] = {.lex_state = 108, .external_lex_state = 2}, - [3953] = {.lex_state = 119, .external_lex_state = 2}, - [3954] = {.lex_state = 250, .external_lex_state = 10}, - [3955] = {.lex_state = 251, .external_lex_state = 2}, - [3956] = {.lex_state = 118, .external_lex_state = 2}, - [3957] = {.lex_state = 108, .external_lex_state = 2}, - [3958] = {.lex_state = 118, .external_lex_state = 2}, - [3959] = {.lex_state = 1, .external_lex_state = 2}, - [3960] = {.lex_state = 251, .external_lex_state = 2}, - [3961] = {.lex_state = 108, .external_lex_state = 2}, - [3962] = {.lex_state = 251, .external_lex_state = 2}, - [3963] = {.lex_state = 250, .external_lex_state = 10}, - [3964] = {.lex_state = 108, .external_lex_state = 2}, - [3965] = {.lex_state = 119, .external_lex_state = 2}, - [3966] = {.lex_state = 108, .external_lex_state = 2}, - [3967] = {.lex_state = 108, .external_lex_state = 2}, - [3968] = {.lex_state = 108, .external_lex_state = 2}, - [3969] = {.lex_state = 108, .external_lex_state = 2}, - [3970] = {.lex_state = 108, .external_lex_state = 2}, - [3971] = {.lex_state = 251, .external_lex_state = 2}, - [3972] = {.lex_state = 118, .external_lex_state = 2}, - [3973] = {.lex_state = 119, .external_lex_state = 2}, - [3974] = {.lex_state = 119, .external_lex_state = 2}, - [3975] = {.lex_state = 77, .external_lex_state = 2}, - [3976] = {.lex_state = 251, .external_lex_state = 2}, - [3977] = {.lex_state = 119, .external_lex_state = 2}, - [3978] = {.lex_state = 251, .external_lex_state = 2}, - [3979] = {.lex_state = 108, .external_lex_state = 2}, - [3980] = {.lex_state = 251, .external_lex_state = 2}, - [3981] = {.lex_state = 251, .external_lex_state = 2}, - [3982] = {.lex_state = 119, .external_lex_state = 2}, - [3983] = {.lex_state = 77, .external_lex_state = 2}, - [3984] = {.lex_state = 108, .external_lex_state = 2}, - [3985] = {.lex_state = 119, .external_lex_state = 2}, - [3986] = {.lex_state = 118, .external_lex_state = 2}, - [3987] = {.lex_state = 251, .external_lex_state = 2}, - [3988] = {.lex_state = 251, .external_lex_state = 2}, - [3989] = {.lex_state = 251, .external_lex_state = 2}, - [3990] = {.lex_state = 108, .external_lex_state = 2}, - [3991] = {.lex_state = 108, .external_lex_state = 2}, - [3992] = {.lex_state = 73, .external_lex_state = 2}, - [3993] = {.lex_state = 251, .external_lex_state = 2}, - [3994] = {.lex_state = 118, .external_lex_state = 2}, - [3995] = {.lex_state = 251, .external_lex_state = 2}, - [3996] = {.lex_state = 108, .external_lex_state = 2}, - [3997] = {.lex_state = 251, .external_lex_state = 4}, - [3998] = {.lex_state = 108, .external_lex_state = 2}, - [3999] = {.lex_state = 251, .external_lex_state = 2}, - [4000] = {.lex_state = 108, .external_lex_state = 2}, - [4001] = {.lex_state = 119, .external_lex_state = 2}, - [4002] = {.lex_state = 251, .external_lex_state = 2}, - [4003] = {.lex_state = 251, .external_lex_state = 2}, - [4004] = {.lex_state = 108, .external_lex_state = 2}, - [4005] = {.lex_state = 108, .external_lex_state = 2}, - [4006] = {.lex_state = 119, .external_lex_state = 2}, - [4007] = {.lex_state = 108, .external_lex_state = 2}, - [4008] = {.lex_state = 108, .external_lex_state = 2}, - [4009] = {.lex_state = 251, .external_lex_state = 2}, - [4010] = {.lex_state = 119, .external_lex_state = 2}, - [4011] = {.lex_state = 251, .external_lex_state = 2}, - [4012] = {.lex_state = 251, .external_lex_state = 2}, - [4013] = {.lex_state = 118, .external_lex_state = 2}, - [4014] = {.lex_state = 118, .external_lex_state = 2}, - [4015] = {.lex_state = 251, .external_lex_state = 2}, - [4016] = {.lex_state = 250, .external_lex_state = 10}, - [4017] = {.lex_state = 250, .external_lex_state = 10}, - [4018] = {.lex_state = 108, .external_lex_state = 2}, - [4019] = {.lex_state = 251, .external_lex_state = 2}, - [4020] = {.lex_state = 118, .external_lex_state = 2}, - [4021] = {.lex_state = 118, .external_lex_state = 2}, - [4022] = {.lex_state = 250, .external_lex_state = 10}, - [4023] = {.lex_state = 77, .external_lex_state = 2}, - [4024] = {.lex_state = 108, .external_lex_state = 2}, - [4025] = {.lex_state = 108, .external_lex_state = 2}, - [4026] = {.lex_state = 119, .external_lex_state = 2}, - [4027] = {.lex_state = 251, .external_lex_state = 2}, - [4028] = {.lex_state = 250, .external_lex_state = 10}, - [4029] = {.lex_state = 108, .external_lex_state = 2}, - [4030] = {.lex_state = 108, .external_lex_state = 2}, - [4031] = {.lex_state = 108, .external_lex_state = 2}, - [4032] = {.lex_state = 108, .external_lex_state = 2}, - [4033] = {.lex_state = 73, .external_lex_state = 2}, - [4034] = {.lex_state = 108, .external_lex_state = 2}, - [4035] = {.lex_state = 108, .external_lex_state = 2}, - [4036] = {.lex_state = 250, .external_lex_state = 10}, - [4037] = {.lex_state = 108, .external_lex_state = 2}, - [4038] = {.lex_state = 119, .external_lex_state = 2}, - [4039] = {.lex_state = 251, .external_lex_state = 2}, - [4040] = {.lex_state = 119, .external_lex_state = 2}, - [4041] = {.lex_state = 119, .external_lex_state = 2}, - [4042] = {.lex_state = 108, .external_lex_state = 2}, - [4043] = {.lex_state = 108, .external_lex_state = 2}, - [4044] = {.lex_state = 118, .external_lex_state = 2}, - [4045] = {.lex_state = 251, .external_lex_state = 2}, - [4046] = {.lex_state = 250, .external_lex_state = 10}, - [4047] = {.lex_state = 251, .external_lex_state = 2}, - [4048] = {.lex_state = 251, .external_lex_state = 4}, - [4049] = {.lex_state = 108, .external_lex_state = 2}, - [4050] = {.lex_state = 108, .external_lex_state = 2}, - [4051] = {.lex_state = 108, .external_lex_state = 2}, - [4052] = {.lex_state = 108, .external_lex_state = 2}, - [4053] = {.lex_state = 108, .external_lex_state = 2}, - [4054] = {.lex_state = 250, .external_lex_state = 10}, - [4055] = {.lex_state = 251, .external_lex_state = 2}, - [4056] = {.lex_state = 119, .external_lex_state = 2}, - [4057] = {.lex_state = 108, .external_lex_state = 2}, - [4058] = {.lex_state = 108, .external_lex_state = 2}, - [4059] = {.lex_state = 108, .external_lex_state = 2}, - [4060] = {.lex_state = 118, .external_lex_state = 2}, - [4061] = {.lex_state = 108, .external_lex_state = 2}, - [4062] = {.lex_state = 250, .external_lex_state = 10}, - [4063] = {.lex_state = 119, .external_lex_state = 2}, - [4064] = {.lex_state = 119, .external_lex_state = 2}, - [4065] = {.lex_state = 108, .external_lex_state = 2}, - [4066] = {.lex_state = 251, .external_lex_state = 2}, - [4067] = {.lex_state = 250, .external_lex_state = 11}, - [4068] = {.lex_state = 251, .external_lex_state = 4}, - [4069] = {.lex_state = 250, .external_lex_state = 11}, - [4070] = {.lex_state = 251, .external_lex_state = 2}, - [4071] = {.lex_state = 251, .external_lex_state = 2}, - [4072] = {.lex_state = 251, .external_lex_state = 8}, - [4073] = {.lex_state = 251, .external_lex_state = 8}, - [4074] = {.lex_state = 251, .external_lex_state = 2}, - [4075] = {.lex_state = 251, .external_lex_state = 2}, - [4076] = {.lex_state = 251, .external_lex_state = 2}, - [4077] = {.lex_state = 251, .external_lex_state = 2}, - [4078] = {.lex_state = 251, .external_lex_state = 8}, - [4079] = {.lex_state = 251, .external_lex_state = 2}, - [4080] = {.lex_state = 250, .external_lex_state = 11}, - [4081] = {.lex_state = 251, .external_lex_state = 2}, - [4082] = {.lex_state = 250, .external_lex_state = 2}, - [4083] = {.lex_state = 251, .external_lex_state = 2}, - [4084] = {.lex_state = 251, .external_lex_state = 2}, - [4085] = {.lex_state = 251, .external_lex_state = 2}, - [4086] = {.lex_state = 77, .external_lex_state = 2}, - [4087] = {.lex_state = 251, .external_lex_state = 2}, - [4088] = {.lex_state = 251, .external_lex_state = 2}, - [4089] = {.lex_state = 251, .external_lex_state = 2}, - [4090] = {.lex_state = 251, .external_lex_state = 2}, - [4091] = {.lex_state = 250, .external_lex_state = 11}, - [4092] = {.lex_state = 105, .external_lex_state = 2}, - [4093] = {.lex_state = 251, .external_lex_state = 4}, - [4094] = {.lex_state = 251, .external_lex_state = 8}, - [4095] = {.lex_state = 251, .external_lex_state = 2}, - [4096] = {.lex_state = 250, .external_lex_state = 11}, - [4097] = {.lex_state = 251, .external_lex_state = 2}, - [4098] = {.lex_state = 250, .external_lex_state = 11}, - [4099] = {.lex_state = 251, .external_lex_state = 2}, - [4100] = {.lex_state = 251, .external_lex_state = 2}, - [4101] = {.lex_state = 251, .external_lex_state = 2}, - [4102] = {.lex_state = 250, .external_lex_state = 10}, - [4103] = {.lex_state = 77, .external_lex_state = 2}, - [4104] = {.lex_state = 118, .external_lex_state = 2}, - [4105] = {.lex_state = 251, .external_lex_state = 2}, - [4106] = {.lex_state = 250, .external_lex_state = 11}, - [4107] = {.lex_state = 251, .external_lex_state = 2}, - [4108] = {.lex_state = 251, .external_lex_state = 2}, - [4109] = {.lex_state = 108, .external_lex_state = 2}, - [4110] = {.lex_state = 251, .external_lex_state = 2}, - [4111] = {.lex_state = 251, .external_lex_state = 2}, - [4112] = {.lex_state = 251, .external_lex_state = 2}, - [4113] = {.lex_state = 251, .external_lex_state = 2}, - [4114] = {.lex_state = 251, .external_lex_state = 2}, - [4115] = {.lex_state = 251, .external_lex_state = 2}, - [4116] = {.lex_state = 250, .external_lex_state = 11}, - [4117] = {.lex_state = 99, .external_lex_state = 2}, - [4118] = {.lex_state = 250, .external_lex_state = 11}, - [4119] = {.lex_state = 251, .external_lex_state = 4}, - [4120] = {.lex_state = 251, .external_lex_state = 8}, - [4121] = {.lex_state = 251, .external_lex_state = 2}, - [4122] = {.lex_state = 251, .external_lex_state = 8}, - [4123] = {.lex_state = 251, .external_lex_state = 2}, - [4124] = {.lex_state = 251, .external_lex_state = 2}, - [4125] = {.lex_state = 251, .external_lex_state = 2}, - [4126] = {.lex_state = 251, .external_lex_state = 2}, - [4127] = {.lex_state = 251, .external_lex_state = 2}, - [4128] = {.lex_state = 250, .external_lex_state = 11}, - [4129] = {.lex_state = 105, .external_lex_state = 2}, - [4130] = {.lex_state = 77, .external_lex_state = 2}, - [4131] = {.lex_state = 251, .external_lex_state = 2}, - [4132] = {.lex_state = 251, .external_lex_state = 2}, - [4133] = {.lex_state = 106, .external_lex_state = 2}, - [4134] = {.lex_state = 251, .external_lex_state = 2}, - [4135] = {.lex_state = 250, .external_lex_state = 2}, - [4136] = {.lex_state = 250, .external_lex_state = 11}, - [4137] = {.lex_state = 108, .external_lex_state = 2}, - [4138] = {.lex_state = 250, .external_lex_state = 11}, - [4139] = {.lex_state = 250, .external_lex_state = 2}, - [4140] = {.lex_state = 250, .external_lex_state = 8}, - [4141] = {.lex_state = 250, .external_lex_state = 11}, - [4142] = {.lex_state = 251, .external_lex_state = 2}, - [4143] = {.lex_state = 251, .external_lex_state = 2}, - [4144] = {.lex_state = 251, .external_lex_state = 2}, - [4145] = {.lex_state = 250, .external_lex_state = 8}, - [4146] = {.lex_state = 251, .external_lex_state = 2}, - [4147] = {.lex_state = 250, .external_lex_state = 2}, - [4148] = {.lex_state = 250, .external_lex_state = 2}, - [4149] = {.lex_state = 250, .external_lex_state = 2}, - [4150] = {.lex_state = 251, .external_lex_state = 2}, - [4151] = {.lex_state = 99, .external_lex_state = 2}, - [4152] = {.lex_state = 250, .external_lex_state = 2}, - [4153] = {.lex_state = 87, .external_lex_state = 3}, - [4154] = {.lex_state = 250, .external_lex_state = 2}, - [4155] = {.lex_state = 251, .external_lex_state = 2}, - [4156] = {.lex_state = 251, .external_lex_state = 3}, - [4157] = {.lex_state = 250, .external_lex_state = 11}, - [4158] = {.lex_state = 250, .external_lex_state = 11}, - [4159] = {.lex_state = 251, .external_lex_state = 2}, - [4160] = {.lex_state = 251, .external_lex_state = 2}, - [4161] = {.lex_state = 87, .external_lex_state = 3}, - [4162] = {.lex_state = 250, .external_lex_state = 4}, - [4163] = {.lex_state = 77, .external_lex_state = 2}, - [4164] = {.lex_state = 251, .external_lex_state = 2}, - [4165] = {.lex_state = 251, .external_lex_state = 3}, - [4166] = {.lex_state = 251, .external_lex_state = 2}, - [4167] = {.lex_state = 108, .external_lex_state = 2}, - [4168] = {.lex_state = 251, .external_lex_state = 4}, - [4169] = {.lex_state = 250, .external_lex_state = 11}, - [4170] = {.lex_state = 250, .external_lex_state = 4}, - [4171] = {.lex_state = 251, .external_lex_state = 2}, - [4172] = {.lex_state = 250, .external_lex_state = 2}, - [4173] = {.lex_state = 251, .external_lex_state = 2}, - [4174] = {.lex_state = 87, .external_lex_state = 3}, - [4175] = {.lex_state = 251, .external_lex_state = 4}, - [4176] = {.lex_state = 250, .external_lex_state = 11}, - [4177] = {.lex_state = 250, .external_lex_state = 11}, - [4178] = {.lex_state = 251, .external_lex_state = 8}, - [4179] = {.lex_state = 251, .external_lex_state = 4}, - [4180] = {.lex_state = 250, .external_lex_state = 8}, - [4181] = {.lex_state = 251, .external_lex_state = 2}, - [4182] = {.lex_state = 250, .external_lex_state = 2}, - [4183] = {.lex_state = 251, .external_lex_state = 3}, - [4184] = {.lex_state = 251, .external_lex_state = 8}, - [4185] = {.lex_state = 87, .external_lex_state = 3}, - [4186] = {.lex_state = 250, .external_lex_state = 4}, - [4187] = {.lex_state = 251, .external_lex_state = 4}, - [4188] = {.lex_state = 251, .external_lex_state = 2}, - [4189] = {.lex_state = 251, .external_lex_state = 2}, - [4190] = {.lex_state = 250, .external_lex_state = 2}, - [4191] = {.lex_state = 250, .external_lex_state = 2}, - [4192] = {.lex_state = 251, .external_lex_state = 8}, - [4193] = {.lex_state = 250, .external_lex_state = 11}, - [4194] = {.lex_state = 251, .external_lex_state = 4}, - [4195] = {.lex_state = 251, .external_lex_state = 2}, - [4196] = {.lex_state = 87, .external_lex_state = 3}, - [4197] = {.lex_state = 250, .external_lex_state = 2}, - [4198] = {.lex_state = 250, .external_lex_state = 2}, - [4199] = {.lex_state = 251, .external_lex_state = 2}, - [4200] = {.lex_state = 77, .external_lex_state = 2}, - [4201] = {.lex_state = 251, .external_lex_state = 2}, - [4202] = {.lex_state = 99, .external_lex_state = 2}, - [4203] = {.lex_state = 250, .external_lex_state = 2}, - [4204] = {.lex_state = 250, .external_lex_state = 11}, - [4205] = {.lex_state = 250, .external_lex_state = 11}, - [4206] = {.lex_state = 250, .external_lex_state = 11}, - [4207] = {.lex_state = 250, .external_lex_state = 4}, - [4208] = {.lex_state = 250, .external_lex_state = 11}, - [4209] = {.lex_state = 251, .external_lex_state = 2}, - [4210] = {.lex_state = 77, .external_lex_state = 2}, - [4211] = {.lex_state = 250, .external_lex_state = 11}, - [4212] = {.lex_state = 251, .external_lex_state = 2}, - [4213] = {.lex_state = 87, .external_lex_state = 3}, - [4214] = {.lex_state = 108, .external_lex_state = 2}, - [4215] = {.lex_state = 251, .external_lex_state = 2}, - [4216] = {.lex_state = 250, .external_lex_state = 11}, - [4217] = {.lex_state = 251, .external_lex_state = 2}, - [4218] = {.lex_state = 250, .external_lex_state = 11}, - [4219] = {.lex_state = 250, .external_lex_state = 11}, - [4220] = {.lex_state = 250, .external_lex_state = 11}, - [4221] = {.lex_state = 250, .external_lex_state = 2}, - [4222] = {.lex_state = 251, .external_lex_state = 3}, - [4223] = {.lex_state = 250, .external_lex_state = 11}, - [4224] = {.lex_state = 251, .external_lex_state = 3}, - [4225] = {.lex_state = 251, .external_lex_state = 2}, - [4226] = {.lex_state = 251, .external_lex_state = 2}, - [4227] = {.lex_state = 251, .external_lex_state = 2}, - [4228] = {.lex_state = 250, .external_lex_state = 2}, - [4229] = {.lex_state = 251, .external_lex_state = 2}, - [4230] = {.lex_state = 250, .external_lex_state = 11}, - [4231] = {.lex_state = 251, .external_lex_state = 3}, - [4232] = {.lex_state = 250, .external_lex_state = 4}, - [4233] = {.lex_state = 250, .external_lex_state = 2}, - [4234] = {.lex_state = 250, .external_lex_state = 4}, - [4235] = {.lex_state = 250, .external_lex_state = 11}, - [4236] = {.lex_state = 251, .external_lex_state = 2}, - [4237] = {.lex_state = 106, .external_lex_state = 2}, - [4238] = {.lex_state = 251, .external_lex_state = 4}, - [4239] = {.lex_state = 250, .external_lex_state = 2}, - [4240] = {.lex_state = 106, .external_lex_state = 2}, - [4241] = {.lex_state = 250, .external_lex_state = 4}, - [4242] = {.lex_state = 251, .external_lex_state = 2}, - [4243] = {.lex_state = 87, .external_lex_state = 3}, - [4244] = {.lex_state = 250, .external_lex_state = 2}, - [4245] = {.lex_state = 251, .external_lex_state = 3}, - [4246] = {.lex_state = 87, .external_lex_state = 2}, - [4247] = {.lex_state = 250, .external_lex_state = 11}, - [4248] = {.lex_state = 251, .external_lex_state = 3}, - [4249] = {.lex_state = 250, .external_lex_state = 4}, - [4250] = {.lex_state = 250, .external_lex_state = 8}, - [4251] = {.lex_state = 251, .external_lex_state = 2}, - [4252] = {.lex_state = 251, .external_lex_state = 2}, - [4253] = {.lex_state = 77, .external_lex_state = 2}, - [4254] = {.lex_state = 251, .external_lex_state = 2}, - [4255] = {.lex_state = 106, .external_lex_state = 2}, - [4256] = {.lex_state = 250, .external_lex_state = 11}, - [4257] = {.lex_state = 250, .external_lex_state = 11}, - [4258] = {.lex_state = 251, .external_lex_state = 2}, - [4259] = {.lex_state = 250, .external_lex_state = 11}, - [4260] = {.lex_state = 250, .external_lex_state = 11}, - [4261] = {.lex_state = 251, .external_lex_state = 2}, - [4262] = {.lex_state = 251, .external_lex_state = 2}, - [4263] = {.lex_state = 250, .external_lex_state = 2}, - [4264] = {.lex_state = 251, .external_lex_state = 2}, - [4265] = {.lex_state = 250, .external_lex_state = 11}, - [4266] = {.lex_state = 108, .external_lex_state = 2}, - [4267] = {.lex_state = 77, .external_lex_state = 2}, - [4268] = {.lex_state = 251, .external_lex_state = 2}, - [4269] = {.lex_state = 251, .external_lex_state = 3}, - [4270] = {.lex_state = 251, .external_lex_state = 2}, - [4271] = {.lex_state = 250, .external_lex_state = 11}, - [4272] = {.lex_state = 250, .external_lex_state = 4}, - [4273] = {.lex_state = 251, .external_lex_state = 2}, - [4274] = {.lex_state = 87, .external_lex_state = 3}, - [4275] = {.lex_state = 250, .external_lex_state = 8}, - [4276] = {.lex_state = 251, .external_lex_state = 2}, - [4277] = {.lex_state = 250, .external_lex_state = 2}, - [4278] = {.lex_state = 251, .external_lex_state = 2}, - [4279] = {.lex_state = 108, .external_lex_state = 2}, - [4280] = {.lex_state = 251, .external_lex_state = 2}, - [4281] = {.lex_state = 251, .external_lex_state = 2}, - [4282] = {.lex_state = 250, .external_lex_state = 2}, - [4283] = {.lex_state = 250, .external_lex_state = 4}, - [4284] = {.lex_state = 250, .external_lex_state = 8}, - [4285] = {.lex_state = 250, .external_lex_state = 4}, - [4286] = {.lex_state = 250, .external_lex_state = 2}, - [4287] = {.lex_state = 250, .external_lex_state = 4}, - [4288] = {.lex_state = 251, .external_lex_state = 2}, - [4289] = {.lex_state = 251, .external_lex_state = 2}, - [4290] = {.lex_state = 251, .external_lex_state = 2}, - [4291] = {.lex_state = 87, .external_lex_state = 3}, - [4292] = {.lex_state = 251, .external_lex_state = 3}, - [4293] = {.lex_state = 251, .external_lex_state = 2}, - [4294] = {.lex_state = 251, .external_lex_state = 2}, - [4295] = {.lex_state = 251, .external_lex_state = 2}, - [4296] = {.lex_state = 251, .external_lex_state = 2}, - [4297] = {.lex_state = 250, .external_lex_state = 2}, - [4298] = {.lex_state = 250, .external_lex_state = 2}, - [4299] = {.lex_state = 251, .external_lex_state = 2}, - [4300] = {.lex_state = 250, .external_lex_state = 11}, - [4301] = {.lex_state = 251, .external_lex_state = 2}, - [4302] = {.lex_state = 251, .external_lex_state = 2}, - [4303] = {.lex_state = 251, .external_lex_state = 3}, - [4304] = {.lex_state = 251, .external_lex_state = 2}, - [4305] = {.lex_state = 251, .external_lex_state = 2}, - [4306] = {.lex_state = 77, .external_lex_state = 2}, - [4307] = {.lex_state = 250, .external_lex_state = 11}, - [4308] = {.lex_state = 250, .external_lex_state = 11}, - [4309] = {.lex_state = 251, .external_lex_state = 2}, - [4310] = {.lex_state = 251, .external_lex_state = 2}, - [4311] = {.lex_state = 250, .external_lex_state = 11}, - [4312] = {.lex_state = 251, .external_lex_state = 8}, - [4313] = {.lex_state = 108, .external_lex_state = 2}, - [4314] = {.lex_state = 250, .external_lex_state = 11}, - [4315] = {.lex_state = 108, .external_lex_state = 2}, - [4316] = {.lex_state = 250, .external_lex_state = 11}, - [4317] = {.lex_state = 250, .external_lex_state = 11}, - [4318] = {.lex_state = 250, .external_lex_state = 11}, - [4319] = {.lex_state = 250, .external_lex_state = 11}, - [4320] = {.lex_state = 108, .external_lex_state = 2}, - [4321] = {.lex_state = 250, .external_lex_state = 11}, - [4322] = {.lex_state = 250, .external_lex_state = 11}, - [4323] = {.lex_state = 250, .external_lex_state = 8}, - [4324] = {.lex_state = 250, .external_lex_state = 4}, - [4325] = {.lex_state = 108, .external_lex_state = 2}, - [4326] = {.lex_state = 250, .external_lex_state = 11}, - [4327] = {.lex_state = 250, .external_lex_state = 11}, - [4328] = {.lex_state = 251, .external_lex_state = 2}, - [4329] = {.lex_state = 250, .external_lex_state = 11}, - [4330] = {.lex_state = 250, .external_lex_state = 11}, - [4331] = {.lex_state = 108, .external_lex_state = 2}, - [4332] = {.lex_state = 250, .external_lex_state = 11}, - [4333] = {.lex_state = 251, .external_lex_state = 2}, - [4334] = {.lex_state = 250, .external_lex_state = 11}, - [4335] = {.lex_state = 250, .external_lex_state = 11}, - [4336] = {.lex_state = 250, .external_lex_state = 11}, - [4337] = {.lex_state = 250, .external_lex_state = 11}, - [4338] = {.lex_state = 250, .external_lex_state = 2}, - [4339] = {.lex_state = 108, .external_lex_state = 2}, - [4340] = {.lex_state = 108, .external_lex_state = 2}, - [4341] = {.lex_state = 108, .external_lex_state = 2}, - [4342] = {.lex_state = 251, .external_lex_state = 2}, - [4343] = {.lex_state = 250, .external_lex_state = 11}, - [4344] = {.lex_state = 250, .external_lex_state = 11}, - [4345] = {.lex_state = 108, .external_lex_state = 2}, - [4346] = {.lex_state = 250, .external_lex_state = 4}, - [4347] = {.lex_state = 251, .external_lex_state = 2}, - [4348] = {.lex_state = 108, .external_lex_state = 2}, - [4349] = {.lex_state = 250, .external_lex_state = 4}, - [4350] = {.lex_state = 77, .external_lex_state = 2}, - [4351] = {.lex_state = 77, .external_lex_state = 2}, - [4352] = {.lex_state = 250, .external_lex_state = 2}, - [4353] = {.lex_state = 250, .external_lex_state = 11}, - [4354] = {.lex_state = 251, .external_lex_state = 2}, - [4355] = {.lex_state = 250, .external_lex_state = 11}, - [4356] = {.lex_state = 108, .external_lex_state = 2}, - [4357] = {.lex_state = 250, .external_lex_state = 11}, - [4358] = {.lex_state = 250, .external_lex_state = 11}, - [4359] = {.lex_state = 108, .external_lex_state = 2}, - [4360] = {.lex_state = 251, .external_lex_state = 2}, - [4361] = {.lex_state = 251, .external_lex_state = 8}, - [4362] = {.lex_state = 250, .external_lex_state = 11}, - [4363] = {.lex_state = 77, .external_lex_state = 2}, - [4364] = {.lex_state = 108, .external_lex_state = 2}, - [4365] = {.lex_state = 108, .external_lex_state = 2}, - [4366] = {.lex_state = 108, .external_lex_state = 2}, - [4367] = {.lex_state = 251, .external_lex_state = 2}, - [4368] = {.lex_state = 250, .external_lex_state = 11}, - [4369] = {.lex_state = 250, .external_lex_state = 11}, - [4370] = {.lex_state = 251, .external_lex_state = 2}, - [4371] = {.lex_state = 250, .external_lex_state = 11}, - [4372] = {.lex_state = 251, .external_lex_state = 8}, - [4373] = {.lex_state = 251, .external_lex_state = 2}, - [4374] = {.lex_state = 250, .external_lex_state = 11}, - [4375] = {.lex_state = 250, .external_lex_state = 11}, - [4376] = {.lex_state = 250, .external_lex_state = 11}, - [4377] = {.lex_state = 250, .external_lex_state = 11}, - [4378] = {.lex_state = 250, .external_lex_state = 11}, - [4379] = {.lex_state = 250, .external_lex_state = 11}, - [4380] = {.lex_state = 250, .external_lex_state = 11}, - [4381] = {.lex_state = 251, .external_lex_state = 2}, - [4382] = {.lex_state = 251, .external_lex_state = 2}, - [4383] = {.lex_state = 250, .external_lex_state = 2}, - [4384] = {.lex_state = 250, .external_lex_state = 11}, - [4385] = {.lex_state = 250, .external_lex_state = 11}, - [4386] = {.lex_state = 250, .external_lex_state = 11}, - [4387] = {.lex_state = 251, .external_lex_state = 2}, - [4388] = {.lex_state = 251, .external_lex_state = 2}, - [4389] = {.lex_state = 250, .external_lex_state = 11}, - [4390] = {.lex_state = 108, .external_lex_state = 2}, - [4391] = {.lex_state = 250, .external_lex_state = 2}, - [4392] = {.lex_state = 108, .external_lex_state = 2}, - [4393] = {.lex_state = 251, .external_lex_state = 2}, - [4394] = {.lex_state = 250, .external_lex_state = 11}, - [4395] = {.lex_state = 250, .external_lex_state = 11}, - [4396] = {.lex_state = 87, .external_lex_state = 3}, - [4397] = {.lex_state = 250, .external_lex_state = 11}, - [4398] = {.lex_state = 250, .external_lex_state = 11}, - [4399] = {.lex_state = 251, .external_lex_state = 2}, - [4400] = {.lex_state = 250, .external_lex_state = 2}, - [4401] = {.lex_state = 250, .external_lex_state = 2}, - [4402] = {.lex_state = 250, .external_lex_state = 11}, - [4403] = {.lex_state = 251, .external_lex_state = 2}, - [4404] = {.lex_state = 251, .external_lex_state = 2}, - [4405] = {.lex_state = 108, .external_lex_state = 2}, - [4406] = {.lex_state = 251, .external_lex_state = 2}, - [4407] = {.lex_state = 250, .external_lex_state = 11}, - [4408] = {.lex_state = 108, .external_lex_state = 2}, - [4409] = {.lex_state = 250, .external_lex_state = 11}, - [4410] = {.lex_state = 251, .external_lex_state = 2}, - [4411] = {.lex_state = 108, .external_lex_state = 2}, - [4412] = {.lex_state = 250, .external_lex_state = 11}, - [4413] = {.lex_state = 250, .external_lex_state = 11}, - [4414] = {.lex_state = 108, .external_lex_state = 2}, - [4415] = {.lex_state = 250, .external_lex_state = 2}, - [4416] = {.lex_state = 108, .external_lex_state = 2}, - [4417] = {.lex_state = 251, .external_lex_state = 2}, - [4418] = {.lex_state = 250, .external_lex_state = 11}, - [4419] = {.lex_state = 250, .external_lex_state = 11}, - [4420] = {.lex_state = 250, .external_lex_state = 11}, - [4421] = {.lex_state = 250, .external_lex_state = 11}, - [4422] = {.lex_state = 250, .external_lex_state = 11}, - [4423] = {.lex_state = 250, .external_lex_state = 11}, - [4424] = {.lex_state = 250, .external_lex_state = 11}, - [4425] = {.lex_state = 250, .external_lex_state = 11}, - [4426] = {.lex_state = 250, .external_lex_state = 11}, - [4427] = {.lex_state = 250, .external_lex_state = 11}, - [4428] = {.lex_state = 250, .external_lex_state = 11}, - [4429] = {.lex_state = 250, .external_lex_state = 2}, - [4430] = {.lex_state = 250, .external_lex_state = 11}, - [4431] = {.lex_state = 251, .external_lex_state = 2}, - [4432] = {.lex_state = 250, .external_lex_state = 11}, - [4433] = {.lex_state = 251, .external_lex_state = 2}, - [4434] = {.lex_state = 251, .external_lex_state = 2}, - [4435] = {.lex_state = 250, .external_lex_state = 11}, - [4436] = {.lex_state = 250, .external_lex_state = 11}, - [4437] = {.lex_state = 250, .external_lex_state = 11}, - [4438] = {.lex_state = 250, .external_lex_state = 11}, - [4439] = {.lex_state = 251, .external_lex_state = 2}, - [4440] = {.lex_state = 250, .external_lex_state = 11}, - [4441] = {.lex_state = 251, .external_lex_state = 2}, - [4442] = {.lex_state = 250, .external_lex_state = 11}, - [4443] = {.lex_state = 250, .external_lex_state = 11}, - [4444] = {.lex_state = 250, .external_lex_state = 11}, - [4445] = {.lex_state = 250, .external_lex_state = 11}, - [4446] = {.lex_state = 108, .external_lex_state = 2}, - [4447] = {.lex_state = 250, .external_lex_state = 11}, - [4448] = {.lex_state = 250, .external_lex_state = 11}, - [4449] = {.lex_state = 251, .external_lex_state = 2}, - [4450] = {.lex_state = 250, .external_lex_state = 11}, - [4451] = {.lex_state = 250, .external_lex_state = 11}, - [4452] = {.lex_state = 250, .external_lex_state = 11}, - [4453] = {.lex_state = 251, .external_lex_state = 2}, - [4454] = {.lex_state = 250, .external_lex_state = 4}, - [4455] = {.lex_state = 251, .external_lex_state = 2}, - [4456] = {.lex_state = 251, .external_lex_state = 2}, - [4457] = {.lex_state = 108, .external_lex_state = 2}, - [4458] = {.lex_state = 250, .external_lex_state = 8}, - [4459] = {.lex_state = 250, .external_lex_state = 2}, - [4460] = {.lex_state = 251, .external_lex_state = 2}, - [4461] = {.lex_state = 250, .external_lex_state = 2}, - [4462] = {.lex_state = 108, .external_lex_state = 2}, - [4463] = {.lex_state = 251, .external_lex_state = 2}, - [4464] = {.lex_state = 250, .external_lex_state = 2}, - [4465] = {.lex_state = 250, .external_lex_state = 11}, - [4466] = {.lex_state = 250, .external_lex_state = 11}, - [4467] = {.lex_state = 251, .external_lex_state = 2}, - [4468] = {.lex_state = 250, .external_lex_state = 11}, - [4469] = {.lex_state = 250, .external_lex_state = 11}, - [4470] = {.lex_state = 250, .external_lex_state = 11}, - [4471] = {.lex_state = 250, .external_lex_state = 11}, - [4472] = {.lex_state = 250, .external_lex_state = 11}, - [4473] = {.lex_state = 251, .external_lex_state = 2}, - [4474] = {.lex_state = 250, .external_lex_state = 11}, - [4475] = {.lex_state = 250, .external_lex_state = 11}, - [4476] = {.lex_state = 250, .external_lex_state = 11}, - [4477] = {.lex_state = 251, .external_lex_state = 2}, - [4478] = {.lex_state = 250, .external_lex_state = 11}, - [4479] = {.lex_state = 250, .external_lex_state = 11}, - [4480] = {.lex_state = 250, .external_lex_state = 11}, - [4481] = {.lex_state = 250, .external_lex_state = 11}, - [4482] = {.lex_state = 250, .external_lex_state = 11}, - [4483] = {.lex_state = 250, .external_lex_state = 11}, - [4484] = {.lex_state = 250, .external_lex_state = 4}, - [4485] = {.lex_state = 250, .external_lex_state = 4}, - [4486] = {.lex_state = 250, .external_lex_state = 11}, - [4487] = {.lex_state = 87, .external_lex_state = 3}, - [4488] = {.lex_state = 250, .external_lex_state = 4}, - [4489] = {.lex_state = 250, .external_lex_state = 11}, - [4490] = {.lex_state = 250, .external_lex_state = 11}, - [4491] = {.lex_state = 250, .external_lex_state = 11}, - [4492] = {.lex_state = 250, .external_lex_state = 11}, - [4493] = {.lex_state = 250, .external_lex_state = 11}, - [4494] = {.lex_state = 250, .external_lex_state = 11}, - [4495] = {.lex_state = 250, .external_lex_state = 11}, - [4496] = {.lex_state = 251, .external_lex_state = 2}, - [4497] = {.lex_state = 250, .external_lex_state = 11}, - [4498] = {.lex_state = 251, .external_lex_state = 2}, - [4499] = {.lex_state = 250, .external_lex_state = 11}, - [4500] = {.lex_state = 250, .external_lex_state = 10}, - [4501] = {.lex_state = 250, .external_lex_state = 11}, - [4502] = {.lex_state = 250, .external_lex_state = 11}, - [4503] = {.lex_state = 250, .external_lex_state = 2}, - [4504] = {.lex_state = 250, .external_lex_state = 2}, - [4505] = {.lex_state = 250, .external_lex_state = 11}, - [4506] = {.lex_state = 250, .external_lex_state = 11}, - [4507] = {.lex_state = 250, .external_lex_state = 11}, - [4508] = {.lex_state = 251, .external_lex_state = 8}, - [4509] = {.lex_state = 250, .external_lex_state = 4}, - [4510] = {.lex_state = 251, .external_lex_state = 8}, - [4511] = {.lex_state = 250, .external_lex_state = 11}, - [4512] = {.lex_state = 87, .external_lex_state = 3}, - [4513] = {.lex_state = 251, .external_lex_state = 2}, - [4514] = {.lex_state = 251, .external_lex_state = 2}, - [4515] = {.lex_state = 77, .external_lex_state = 2}, - [4516] = {.lex_state = 251, .external_lex_state = 2}, - [4517] = {.lex_state = 251, .external_lex_state = 8}, - [4518] = {.lex_state = 250, .external_lex_state = 11}, - [4519] = {.lex_state = 250, .external_lex_state = 11}, - [4520] = {.lex_state = 250, .external_lex_state = 11}, - [4521] = {.lex_state = 108, .external_lex_state = 2}, - [4522] = {.lex_state = 250, .external_lex_state = 11}, - [4523] = {.lex_state = 250, .external_lex_state = 4}, - [4524] = {.lex_state = 250, .external_lex_state = 11}, - [4525] = {.lex_state = 251, .external_lex_state = 2}, - [4526] = {.lex_state = 251, .external_lex_state = 2}, - [4527] = {.lex_state = 250, .external_lex_state = 11}, - [4528] = {.lex_state = 250, .external_lex_state = 2}, - [4529] = {.lex_state = 108, .external_lex_state = 2}, - [4530] = {.lex_state = 250, .external_lex_state = 11}, - [4531] = {.lex_state = 250, .external_lex_state = 11}, - [4532] = {.lex_state = 250, .external_lex_state = 11}, - [4533] = {.lex_state = 250, .external_lex_state = 11}, - [4534] = {.lex_state = 250, .external_lex_state = 11}, - [4535] = {.lex_state = 108, .external_lex_state = 2}, - [4536] = {.lex_state = 77, .external_lex_state = 2}, - [4537] = {.lex_state = 251, .external_lex_state = 2}, - [4538] = {.lex_state = 250, .external_lex_state = 11}, - [4539] = {.lex_state = 251, .external_lex_state = 2}, - [4540] = {.lex_state = 250, .external_lex_state = 11}, - [4541] = {.lex_state = 250, .external_lex_state = 11}, - [4542] = {.lex_state = 250, .external_lex_state = 11}, - [4543] = {.lex_state = 250, .external_lex_state = 11}, - [4544] = {.lex_state = 250, .external_lex_state = 11}, - [4545] = {.lex_state = 77, .external_lex_state = 2}, - [4546] = {.lex_state = 250, .external_lex_state = 11}, - [4547] = {.lex_state = 251, .external_lex_state = 2}, - [4548] = {.lex_state = 250, .external_lex_state = 2}, - [4549] = {.lex_state = 250, .external_lex_state = 11}, - [4550] = {.lex_state = 250, .external_lex_state = 11}, - [4551] = {.lex_state = 250, .external_lex_state = 11}, - [4552] = {.lex_state = 250, .external_lex_state = 11}, - [4553] = {.lex_state = 251, .external_lex_state = 2}, - [4554] = {.lex_state = 250, .external_lex_state = 11}, - [4555] = {.lex_state = 250, .external_lex_state = 11}, - [4556] = {.lex_state = 108, .external_lex_state = 2}, - [4557] = {.lex_state = 250, .external_lex_state = 11}, - [4558] = {.lex_state = 250, .external_lex_state = 11}, - [4559] = {.lex_state = 250, .external_lex_state = 2}, - [4560] = {.lex_state = 108, .external_lex_state = 2}, - [4561] = {.lex_state = 251, .external_lex_state = 2}, - [4562] = {.lex_state = 250, .external_lex_state = 11}, - [4563] = {.lex_state = 250, .external_lex_state = 11}, - [4564] = {.lex_state = 250, .external_lex_state = 11}, - [4565] = {.lex_state = 250, .external_lex_state = 4}, - [4566] = {.lex_state = 77, .external_lex_state = 2}, - [4567] = {.lex_state = 251, .external_lex_state = 2}, - [4568] = {.lex_state = 251, .external_lex_state = 2}, - [4569] = {.lex_state = 108, .external_lex_state = 2}, - [4570] = {.lex_state = 250, .external_lex_state = 11}, - [4571] = {.lex_state = 250, .external_lex_state = 11}, - [4572] = {.lex_state = 250, .external_lex_state = 11}, - [4573] = {.lex_state = 108, .external_lex_state = 2}, - [4574] = {.lex_state = 250, .external_lex_state = 11}, - [4575] = {.lex_state = 250, .external_lex_state = 2}, - [4576] = {.lex_state = 250, .external_lex_state = 11}, - [4577] = {.lex_state = 250, .external_lex_state = 8}, - [4578] = {.lex_state = 108, .external_lex_state = 2}, - [4579] = {.lex_state = 250, .external_lex_state = 11}, - [4580] = {.lex_state = 250, .external_lex_state = 11}, - [4581] = {.lex_state = 250, .external_lex_state = 11}, - [4582] = {.lex_state = 99, .external_lex_state = 2}, - [4583] = {.lex_state = 108, .external_lex_state = 2}, - [4584] = {.lex_state = 250, .external_lex_state = 11}, - [4585] = {.lex_state = 250, .external_lex_state = 11}, - [4586] = {.lex_state = 251, .external_lex_state = 2}, - [4587] = {.lex_state = 250, .external_lex_state = 11}, - [4588] = {.lex_state = 250, .external_lex_state = 11}, - [4589] = {.lex_state = 250, .external_lex_state = 11}, - [4590] = {.lex_state = 250, .external_lex_state = 8}, - [4591] = {.lex_state = 250, .external_lex_state = 8}, - [4592] = {.lex_state = 250, .external_lex_state = 11}, - [4593] = {.lex_state = 250, .external_lex_state = 11}, - [4594] = {.lex_state = 251, .external_lex_state = 2}, - [4595] = {.lex_state = 250, .external_lex_state = 11}, - [4596] = {.lex_state = 250, .external_lex_state = 11}, - [4597] = {.lex_state = 250, .external_lex_state = 11}, - [4598] = {.lex_state = 250, .external_lex_state = 8}, - [4599] = {.lex_state = 250, .external_lex_state = 11}, - [4600] = {.lex_state = 250, .external_lex_state = 8}, - [4601] = {.lex_state = 250, .external_lex_state = 2}, - [4602] = {.lex_state = 77, .external_lex_state = 2}, - [4603] = {.lex_state = 250, .external_lex_state = 8}, - [4604] = {.lex_state = 250, .external_lex_state = 11}, - [4605] = {.lex_state = 250, .external_lex_state = 8}, - [4606] = {.lex_state = 250, .external_lex_state = 8}, - [4607] = {.lex_state = 250, .external_lex_state = 8}, - [4608] = {.lex_state = 250, .external_lex_state = 8}, - [4609] = {.lex_state = 250, .external_lex_state = 8}, - [4610] = {.lex_state = 250, .external_lex_state = 11}, - [4611] = {.lex_state = 250, .external_lex_state = 8}, - [4612] = {.lex_state = 250, .external_lex_state = 8}, - [4613] = {.lex_state = 250, .external_lex_state = 8}, - [4614] = {.lex_state = 251, .external_lex_state = 2}, - [4615] = {.lex_state = 250, .external_lex_state = 4}, - [4616] = {.lex_state = 250, .external_lex_state = 11}, - [4617] = {.lex_state = 250, .external_lex_state = 2}, - [4618] = {.lex_state = 251, .external_lex_state = 2}, - [4619] = {.lex_state = 77, .external_lex_state = 2}, - [4620] = {.lex_state = 250, .external_lex_state = 11}, - [4621] = {.lex_state = 250, .external_lex_state = 11}, - [4622] = {.lex_state = 250, .external_lex_state = 11}, - [4623] = {.lex_state = 250, .external_lex_state = 8}, - [4624] = {.lex_state = 250, .external_lex_state = 8}, - [4625] = {.lex_state = 108, .external_lex_state = 2}, - [4626] = {.lex_state = 250, .external_lex_state = 11}, - [4627] = {.lex_state = 250, .external_lex_state = 11}, - [4628] = {.lex_state = 250, .external_lex_state = 11}, - [4629] = {.lex_state = 250, .external_lex_state = 11}, - [4630] = {.lex_state = 250, .external_lex_state = 4}, - [4631] = {.lex_state = 77, .external_lex_state = 2}, - [4632] = {.lex_state = 251, .external_lex_state = 2}, - [4633] = {.lex_state = 250, .external_lex_state = 11}, - [4634] = {.lex_state = 250, .external_lex_state = 8}, - [4635] = {.lex_state = 250, .external_lex_state = 11}, - [4636] = {.lex_state = 250, .external_lex_state = 11}, - [4637] = {.lex_state = 250, .external_lex_state = 2}, - [4638] = {.lex_state = 250, .external_lex_state = 11}, - [4639] = {.lex_state = 250, .external_lex_state = 11}, - [4640] = {.lex_state = 250, .external_lex_state = 11}, - [4641] = {.lex_state = 250, .external_lex_state = 11}, - [4642] = {.lex_state = 250, .external_lex_state = 11}, - [4643] = {.lex_state = 250, .external_lex_state = 11}, - [4644] = {.lex_state = 250, .external_lex_state = 8}, - [4645] = {.lex_state = 251, .external_lex_state = 2}, - [4646] = {.lex_state = 250, .external_lex_state = 8}, - [4647] = {.lex_state = 250, .external_lex_state = 8}, - [4648] = {.lex_state = 250, .external_lex_state = 8}, - [4649] = {.lex_state = 250, .external_lex_state = 11}, - [4650] = {.lex_state = 250, .external_lex_state = 8}, - [4651] = {.lex_state = 108, .external_lex_state = 2}, - [4652] = {.lex_state = 250, .external_lex_state = 8}, - [4653] = {.lex_state = 77, .external_lex_state = 2}, - [4654] = {.lex_state = 250, .external_lex_state = 8}, - [4655] = {.lex_state = 250, .external_lex_state = 8}, - [4656] = {.lex_state = 250, .external_lex_state = 11}, - [4657] = {.lex_state = 250, .external_lex_state = 8}, - [4658] = {.lex_state = 250, .external_lex_state = 8}, - [4659] = {.lex_state = 250, .external_lex_state = 8}, - [4660] = {.lex_state = 108, .external_lex_state = 2}, - [4661] = {.lex_state = 250, .external_lex_state = 2}, - [4662] = {.lex_state = 250, .external_lex_state = 8}, - [4663] = {.lex_state = 250, .external_lex_state = 8}, - [4664] = {.lex_state = 250, .external_lex_state = 8}, - [4665] = {.lex_state = 251, .external_lex_state = 2}, - [4666] = {.lex_state = 250, .external_lex_state = 8}, - [4667] = {.lex_state = 77, .external_lex_state = 2}, - [4668] = {.lex_state = 77, .external_lex_state = 2}, - [4669] = {.lex_state = 250, .external_lex_state = 8}, - [4670] = {.lex_state = 251, .external_lex_state = 2}, - [4671] = {.lex_state = 250, .external_lex_state = 11}, - [4672] = {.lex_state = 251, .external_lex_state = 2}, - [4673] = {.lex_state = 250, .external_lex_state = 8}, - [4674] = {.lex_state = 250, .external_lex_state = 2}, - [4675] = {.lex_state = 250, .external_lex_state = 2}, - [4676] = {.lex_state = 250, .external_lex_state = 2}, - [4677] = {.lex_state = 250, .external_lex_state = 2}, - [4678] = {.lex_state = 250, .external_lex_state = 12}, - [4679] = {.lex_state = 250, .external_lex_state = 12}, - [4680] = {.lex_state = 250, .external_lex_state = 11}, - [4681] = {.lex_state = 250, .external_lex_state = 2}, - [4682] = {.lex_state = 250, .external_lex_state = 2}, - [4683] = {.lex_state = 250, .external_lex_state = 8}, - [4684] = {.lex_state = 250, .external_lex_state = 8}, - [4685] = {.lex_state = 251, .external_lex_state = 2}, - [4686] = {.lex_state = 251, .external_lex_state = 2}, - [4687] = {.lex_state = 250, .external_lex_state = 2}, - [4688] = {.lex_state = 250, .external_lex_state = 2}, - [4689] = {.lex_state = 77, .external_lex_state = 2}, - [4690] = {.lex_state = 250, .external_lex_state = 2}, - [4691] = {.lex_state = 251, .external_lex_state = 2}, - [4692] = {.lex_state = 251, .external_lex_state = 2}, - [4693] = {.lex_state = 250, .external_lex_state = 2}, - [4694] = {.lex_state = 77, .external_lex_state = 2}, - [4695] = {.lex_state = 250, .external_lex_state = 2}, - [4696] = {.lex_state = 250, .external_lex_state = 2}, - [4697] = {.lex_state = 1, .external_lex_state = 2}, - [4698] = {.lex_state = 250, .external_lex_state = 12}, - [4699] = {.lex_state = 77, .external_lex_state = 2}, - [4700] = {.lex_state = 250, .external_lex_state = 2}, - [4701] = {.lex_state = 251, .external_lex_state = 2}, - [4702] = {.lex_state = 77, .external_lex_state = 2}, - [4703] = {.lex_state = 251, .external_lex_state = 2}, - [4704] = {.lex_state = 250, .external_lex_state = 8}, - [4705] = {.lex_state = 77, .external_lex_state = 2}, - [4706] = {.lex_state = 250, .external_lex_state = 8}, - [4707] = {.lex_state = 251, .external_lex_state = 2}, - [4708] = {.lex_state = 77, .external_lex_state = 2}, - [4709] = {.lex_state = 251, .external_lex_state = 2}, - [4710] = {.lex_state = 77, .external_lex_state = 2}, - [4711] = {.lex_state = 77, .external_lex_state = 2}, - [4712] = {.lex_state = 250, .external_lex_state = 2}, - [4713] = {.lex_state = 250, .external_lex_state = 8}, - [4714] = {.lex_state = 77, .external_lex_state = 2}, - [4715] = {.lex_state = 77, .external_lex_state = 2}, - [4716] = {.lex_state = 77, .external_lex_state = 2}, - [4717] = {.lex_state = 251, .external_lex_state = 2}, - [4718] = {.lex_state = 251, .external_lex_state = 2}, - [4719] = {.lex_state = 77, .external_lex_state = 2}, - [4720] = {.lex_state = 77, .external_lex_state = 2}, - [4721] = {.lex_state = 250, .external_lex_state = 11}, - [4722] = {.lex_state = 250, .external_lex_state = 11}, - [4723] = {.lex_state = 251, .external_lex_state = 2}, - [4724] = {.lex_state = 251, .external_lex_state = 2}, - [4725] = {.lex_state = 250, .external_lex_state = 12}, - [4726] = {.lex_state = 250, .external_lex_state = 12}, - [4727] = {.lex_state = 250, .external_lex_state = 2}, - [4728] = {.lex_state = 251, .external_lex_state = 2}, - [4729] = {.lex_state = 250, .external_lex_state = 2}, - [4730] = {.lex_state = 250, .external_lex_state = 8}, - [4731] = {.lex_state = 250, .external_lex_state = 2}, - [4732] = {.lex_state = 250, .external_lex_state = 8}, - [4733] = {.lex_state = 251, .external_lex_state = 2}, - [4734] = {.lex_state = 250, .external_lex_state = 2}, - [4735] = {.lex_state = 250, .external_lex_state = 2}, - [4736] = {.lex_state = 1, .external_lex_state = 2}, - [4737] = {.lex_state = 77, .external_lex_state = 2}, - [4738] = {.lex_state = 251, .external_lex_state = 2}, - [4739] = {.lex_state = 1, .external_lex_state = 2}, - [4740] = {.lex_state = 250, .external_lex_state = 2}, - [4741] = {.lex_state = 250, .external_lex_state = 2}, - [4742] = {.lex_state = 250, .external_lex_state = 2}, - [4743] = {.lex_state = 250, .external_lex_state = 8}, - [4744] = {.lex_state = 250, .external_lex_state = 8}, - [4745] = {.lex_state = 250, .external_lex_state = 12}, - [4746] = {.lex_state = 250, .external_lex_state = 8}, - [4747] = {.lex_state = 250, .external_lex_state = 2}, - [4748] = {.lex_state = 250, .external_lex_state = 2}, - [4749] = {.lex_state = 251, .external_lex_state = 2}, - [4750] = {.lex_state = 251, .external_lex_state = 2}, - [4751] = {.lex_state = 250, .external_lex_state = 8}, - [4752] = {.lex_state = 251, .external_lex_state = 2}, - [4753] = {.lex_state = 77, .external_lex_state = 2}, - [4754] = {.lex_state = 251, .external_lex_state = 2}, - [4755] = {.lex_state = 251, .external_lex_state = 2}, - [4756] = {.lex_state = 251, .external_lex_state = 2}, - [4757] = {.lex_state = 251, .external_lex_state = 2}, - [4758] = {.lex_state = 251, .external_lex_state = 2}, - [4759] = {.lex_state = 250, .external_lex_state = 2}, - [4760] = {.lex_state = 250, .external_lex_state = 8}, - [4761] = {.lex_state = 77, .external_lex_state = 2}, - [4762] = {.lex_state = 251, .external_lex_state = 2}, - [4763] = {.lex_state = 251, .external_lex_state = 2}, - [4764] = {.lex_state = 251, .external_lex_state = 2}, - [4765] = {.lex_state = 77, .external_lex_state = 2}, - [4766] = {.lex_state = 251, .external_lex_state = 2}, - [4767] = {.lex_state = 251, .external_lex_state = 2}, - [4768] = {.lex_state = 251, .external_lex_state = 2}, - [4769] = {.lex_state = 250, .external_lex_state = 8}, - [4770] = {.lex_state = 77, .external_lex_state = 2}, - [4771] = {.lex_state = 77, .external_lex_state = 2}, - [4772] = {.lex_state = 251, .external_lex_state = 2}, - [4773] = {.lex_state = 250, .external_lex_state = 8}, - [4774] = {.lex_state = 250, .external_lex_state = 8}, - [4775] = {.lex_state = 250, .external_lex_state = 2}, - [4776] = {.lex_state = 251, .external_lex_state = 2}, - [4777] = {.lex_state = 250, .external_lex_state = 12}, - [4778] = {.lex_state = 250, .external_lex_state = 12}, - [4779] = {.lex_state = 251, .external_lex_state = 2}, - [4780] = {.lex_state = 250, .external_lex_state = 8}, - [4781] = {.lex_state = 251, .external_lex_state = 2}, - [4782] = {.lex_state = 251, .external_lex_state = 2}, - [4783] = {.lex_state = 250, .external_lex_state = 2}, - [4784] = {.lex_state = 251, .external_lex_state = 2}, - [4785] = {.lex_state = 251, .external_lex_state = 2}, - [4786] = {.lex_state = 251, .external_lex_state = 2}, - [4787] = {.lex_state = 250, .external_lex_state = 2}, - [4788] = {.lex_state = 1, .external_lex_state = 2}, - [4789] = {.lex_state = 251, .external_lex_state = 2}, - [4790] = {.lex_state = 251, .external_lex_state = 2}, - [4791] = {.lex_state = 251, .external_lex_state = 2}, - [4792] = {.lex_state = 250, .external_lex_state = 2}, - [4793] = {.lex_state = 250, .external_lex_state = 2}, - [4794] = {.lex_state = 250, .external_lex_state = 8}, - [4795] = {.lex_state = 250, .external_lex_state = 8}, - [4796] = {.lex_state = 251, .external_lex_state = 2}, - [4797] = {.lex_state = 251, .external_lex_state = 2}, - [4798] = {.lex_state = 250, .external_lex_state = 2}, - [4799] = {.lex_state = 250, .external_lex_state = 2}, - [4800] = {.lex_state = 250, .external_lex_state = 2}, - [4801] = {.lex_state = 251, .external_lex_state = 2}, - [4802] = {.lex_state = 251, .external_lex_state = 2}, - [4803] = {.lex_state = 250, .external_lex_state = 11}, - [4804] = {.lex_state = 250, .external_lex_state = 2}, - [4805] = {.lex_state = 250, .external_lex_state = 8}, - [4806] = {.lex_state = 250, .external_lex_state = 8}, - [4807] = {.lex_state = 251, .external_lex_state = 2}, - [4808] = {.lex_state = 251, .external_lex_state = 2}, - [4809] = {.lex_state = 250, .external_lex_state = 2}, - [4810] = {.lex_state = 251, .external_lex_state = 2}, - [4811] = {.lex_state = 250, .external_lex_state = 2}, - [4812] = {.lex_state = 250, .external_lex_state = 12}, - [4813] = {.lex_state = 250, .external_lex_state = 12}, - [4814] = {.lex_state = 251, .external_lex_state = 2}, - [4815] = {.lex_state = 251, .external_lex_state = 2}, - [4816] = {.lex_state = 250, .external_lex_state = 2}, - [4817] = {.lex_state = 250, .external_lex_state = 2}, - [4818] = {.lex_state = 250, .external_lex_state = 2}, - [4819] = {.lex_state = 250, .external_lex_state = 2}, - [4820] = {.lex_state = 250, .external_lex_state = 2}, - [4821] = {.lex_state = 250, .external_lex_state = 2}, - [4822] = {.lex_state = 1, .external_lex_state = 2}, - [4823] = {.lex_state = 251, .external_lex_state = 2}, - [4824] = {.lex_state = 251, .external_lex_state = 2}, - [4825] = {.lex_state = 250, .external_lex_state = 2}, - [4826] = {.lex_state = 250, .external_lex_state = 2}, - [4827] = {.lex_state = 250, .external_lex_state = 2}, - [4828] = {.lex_state = 250, .external_lex_state = 8}, - [4829] = {.lex_state = 250, .external_lex_state = 8}, - [4830] = {.lex_state = 77, .external_lex_state = 2}, - [4831] = {.lex_state = 251, .external_lex_state = 2}, - [4832] = {.lex_state = 250, .external_lex_state = 2}, - [4833] = {.lex_state = 251, .external_lex_state = 2}, - [4834] = {.lex_state = 250, .external_lex_state = 2}, - [4835] = {.lex_state = 251, .external_lex_state = 2}, - [4836] = {.lex_state = 250, .external_lex_state = 8}, - [4837] = {.lex_state = 250, .external_lex_state = 2}, - [4838] = {.lex_state = 250, .external_lex_state = 8}, - [4839] = {.lex_state = 250, .external_lex_state = 2}, - [4840] = {.lex_state = 250, .external_lex_state = 2}, - [4841] = {.lex_state = 77, .external_lex_state = 2}, - [4842] = {.lex_state = 250, .external_lex_state = 2}, - [4843] = {.lex_state = 251, .external_lex_state = 2}, - [4844] = {.lex_state = 251, .external_lex_state = 2}, - [4845] = {.lex_state = 250, .external_lex_state = 12}, - [4846] = {.lex_state = 250, .external_lex_state = 12}, - [4847] = {.lex_state = 250, .external_lex_state = 2}, - [4848] = {.lex_state = 251, .external_lex_state = 2}, - [4849] = {.lex_state = 100, .external_lex_state = 2}, - [4850] = {.lex_state = 250, .external_lex_state = 2}, - [4851] = {.lex_state = 250, .external_lex_state = 2}, - [4852] = {.lex_state = 250, .external_lex_state = 2}, - [4853] = {.lex_state = 77, .external_lex_state = 2}, - [4854] = {.lex_state = 250, .external_lex_state = 2}, - [4855] = {.lex_state = 1, .external_lex_state = 2}, - [4856] = {.lex_state = 251, .external_lex_state = 2}, - [4857] = {.lex_state = 250, .external_lex_state = 2}, - [4858] = {.lex_state = 250, .external_lex_state = 2}, - [4859] = {.lex_state = 250, .external_lex_state = 8}, - [4860] = {.lex_state = 250, .external_lex_state = 8}, - [4861] = {.lex_state = 251, .external_lex_state = 2}, - [4862] = {.lex_state = 250, .external_lex_state = 2}, - [4863] = {.lex_state = 250, .external_lex_state = 2}, - [4864] = {.lex_state = 250, .external_lex_state = 11}, - [4865] = {.lex_state = 250, .external_lex_state = 2}, - [4866] = {.lex_state = 251, .external_lex_state = 2}, - [4867] = {.lex_state = 250, .external_lex_state = 2}, - [4868] = {.lex_state = 250, .external_lex_state = 2}, - [4869] = {.lex_state = 250, .external_lex_state = 8}, - [4870] = {.lex_state = 251, .external_lex_state = 2}, - [4871] = {.lex_state = 251, .external_lex_state = 2}, - [4872] = {.lex_state = 250, .external_lex_state = 2}, - [4873] = {.lex_state = 250, .external_lex_state = 2}, - [4874] = {.lex_state = 251, .external_lex_state = 2}, - [4875] = {.lex_state = 250, .external_lex_state = 2}, - [4876] = {.lex_state = 250, .external_lex_state = 12}, - [4877] = {.lex_state = 250, .external_lex_state = 12}, - [4878] = {.lex_state = 250, .external_lex_state = 2}, - [4879] = {.lex_state = 250, .external_lex_state = 2}, - [4880] = {.lex_state = 250, .external_lex_state = 8}, - [4881] = {.lex_state = 250, .external_lex_state = 2}, - [4882] = {.lex_state = 251, .external_lex_state = 2}, - [4883] = {.lex_state = 250, .external_lex_state = 2}, - [4884] = {.lex_state = 250, .external_lex_state = 2}, - [4885] = {.lex_state = 250, .external_lex_state = 2}, - [4886] = {.lex_state = 1, .external_lex_state = 2}, - [4887] = {.lex_state = 250, .external_lex_state = 2}, - [4888] = {.lex_state = 250, .external_lex_state = 2}, - [4889] = {.lex_state = 250, .external_lex_state = 2}, - [4890] = {.lex_state = 250, .external_lex_state = 8}, - [4891] = {.lex_state = 250, .external_lex_state = 8}, - [4892] = {.lex_state = 250, .external_lex_state = 2}, - [4893] = {.lex_state = 251, .external_lex_state = 2}, - [4894] = {.lex_state = 250, .external_lex_state = 2}, - [4895] = {.lex_state = 250, .external_lex_state = 2}, - [4896] = {.lex_state = 250, .external_lex_state = 2}, - [4897] = {.lex_state = 251, .external_lex_state = 2}, - [4898] = {.lex_state = 251, .external_lex_state = 2}, - [4899] = {.lex_state = 250, .external_lex_state = 2}, - [4900] = {.lex_state = 250, .external_lex_state = 8}, - [4901] = {.lex_state = 250, .external_lex_state = 2}, - [4902] = {.lex_state = 250, .external_lex_state = 2}, - [4903] = {.lex_state = 251, .external_lex_state = 2}, - [4904] = {.lex_state = 250, .external_lex_state = 2}, - [4905] = {.lex_state = 250, .external_lex_state = 2}, - [4906] = {.lex_state = 251, .external_lex_state = 2}, - [4907] = {.lex_state = 250, .external_lex_state = 12}, - [4908] = {.lex_state = 250, .external_lex_state = 12}, - [4909] = {.lex_state = 250, .external_lex_state = 2}, - [4910] = {.lex_state = 250, .external_lex_state = 2}, - [4911] = {.lex_state = 250, .external_lex_state = 2}, - [4912] = {.lex_state = 250, .external_lex_state = 2}, - [4913] = {.lex_state = 251, .external_lex_state = 2}, - [4914] = {.lex_state = 251, .external_lex_state = 2}, - [4915] = {.lex_state = 250, .external_lex_state = 2}, - [4916] = {.lex_state = 250, .external_lex_state = 2}, - [4917] = {.lex_state = 1, .external_lex_state = 2}, - [4918] = {.lex_state = 250, .external_lex_state = 2}, - [4919] = {.lex_state = 251, .external_lex_state = 2}, - [4920] = {.lex_state = 250, .external_lex_state = 2}, - [4921] = {.lex_state = 250, .external_lex_state = 8}, - [4922] = {.lex_state = 250, .external_lex_state = 8}, - [4923] = {.lex_state = 250, .external_lex_state = 2}, - [4924] = {.lex_state = 250, .external_lex_state = 2}, - [4925] = {.lex_state = 250, .external_lex_state = 2}, - [4926] = {.lex_state = 251, .external_lex_state = 2}, - [4927] = {.lex_state = 250, .external_lex_state = 2}, - [4928] = {.lex_state = 251, .external_lex_state = 2}, - [4929] = {.lex_state = 250, .external_lex_state = 2}, - [4930] = {.lex_state = 250, .external_lex_state = 2}, - [4931] = {.lex_state = 250, .external_lex_state = 8}, - [4932] = {.lex_state = 250, .external_lex_state = 11}, - [4933] = {.lex_state = 251, .external_lex_state = 2}, - [4934] = {.lex_state = 250, .external_lex_state = 2}, - [4935] = {.lex_state = 250, .external_lex_state = 2}, - [4936] = {.lex_state = 250, .external_lex_state = 2}, - [4937] = {.lex_state = 250, .external_lex_state = 2}, - [4938] = {.lex_state = 250, .external_lex_state = 12}, - [4939] = {.lex_state = 250, .external_lex_state = 12}, - [4940] = {.lex_state = 250, .external_lex_state = 2}, - [4941] = {.lex_state = 77, .external_lex_state = 2}, - [4942] = {.lex_state = 100, .external_lex_state = 2}, - [4943] = {.lex_state = 250, .external_lex_state = 2}, - [4944] = {.lex_state = 250, .external_lex_state = 2}, - [4945] = {.lex_state = 251, .external_lex_state = 2}, - [4946] = {.lex_state = 250, .external_lex_state = 2}, - [4947] = {.lex_state = 250, .external_lex_state = 2}, - [4948] = {.lex_state = 1, .external_lex_state = 2}, - [4949] = {.lex_state = 77, .external_lex_state = 2}, - [4950] = {.lex_state = 250, .external_lex_state = 2}, - [4951] = {.lex_state = 250, .external_lex_state = 2}, - [4952] = {.lex_state = 250, .external_lex_state = 8}, - [4953] = {.lex_state = 250, .external_lex_state = 8}, - [4954] = {.lex_state = 250, .external_lex_state = 8}, - [4955] = {.lex_state = 250, .external_lex_state = 8}, - [4956] = {.lex_state = 250, .external_lex_state = 2}, - [4957] = {.lex_state = 77, .external_lex_state = 2}, - [4958] = {.lex_state = 251, .external_lex_state = 2}, - [4959] = {.lex_state = 251, .external_lex_state = 2}, - [4960] = {.lex_state = 250, .external_lex_state = 2}, - [4961] = {.lex_state = 251, .external_lex_state = 2}, - [4962] = {.lex_state = 250, .external_lex_state = 8}, - [4963] = {.lex_state = 250, .external_lex_state = 2}, - [4964] = {.lex_state = 250, .external_lex_state = 2}, - [4965] = {.lex_state = 250, .external_lex_state = 12}, - [4966] = {.lex_state = 250, .external_lex_state = 12}, - [4967] = {.lex_state = 251, .external_lex_state = 2}, - [4968] = {.lex_state = 250, .external_lex_state = 2}, - [4969] = {.lex_state = 250, .external_lex_state = 2}, - [4970] = {.lex_state = 250, .external_lex_state = 2}, - [4971] = {.lex_state = 250, .external_lex_state = 2}, - [4972] = {.lex_state = 250, .external_lex_state = 2}, - [4973] = {.lex_state = 250, .external_lex_state = 12}, - [4974] = {.lex_state = 250, .external_lex_state = 12}, - [4975] = {.lex_state = 251, .external_lex_state = 2}, - [4976] = {.lex_state = 250, .external_lex_state = 2}, - [4977] = {.lex_state = 250, .external_lex_state = 2}, - [4978] = {.lex_state = 250, .external_lex_state = 2}, - [4979] = {.lex_state = 250, .external_lex_state = 2}, - [4980] = {.lex_state = 250, .external_lex_state = 2}, - [4981] = {.lex_state = 250, .external_lex_state = 12}, - [4982] = {.lex_state = 250, .external_lex_state = 12}, - [4983] = {.lex_state = 250, .external_lex_state = 8}, - [4984] = {.lex_state = 250, .external_lex_state = 2}, - [4985] = {.lex_state = 250, .external_lex_state = 2}, - [4986] = {.lex_state = 250, .external_lex_state = 2}, - [4987] = {.lex_state = 250, .external_lex_state = 2}, - [4988] = {.lex_state = 100, .external_lex_state = 2}, - [4989] = {.lex_state = 250, .external_lex_state = 12}, - [4990] = {.lex_state = 250, .external_lex_state = 12}, - [4991] = {.lex_state = 250, .external_lex_state = 2}, - [4992] = {.lex_state = 251, .external_lex_state = 2}, - [4993] = {.lex_state = 250, .external_lex_state = 2}, - [4994] = {.lex_state = 250, .external_lex_state = 2}, - [4995] = {.lex_state = 250, .external_lex_state = 12}, - [4996] = {.lex_state = 250, .external_lex_state = 12}, - [4997] = {.lex_state = 250, .external_lex_state = 2}, - [4998] = {.lex_state = 251, .external_lex_state = 2}, - [4999] = {.lex_state = 251, .external_lex_state = 2}, - [5000] = {.lex_state = 251, .external_lex_state = 2}, - [5001] = {.lex_state = 250, .external_lex_state = 12}, - [5002] = {.lex_state = 250, .external_lex_state = 12}, - [5003] = {.lex_state = 250, .external_lex_state = 2}, - [5004] = {.lex_state = 250, .external_lex_state = 2}, - [5005] = {.lex_state = 250, .external_lex_state = 2}, - [5006] = {.lex_state = 250, .external_lex_state = 2}, - [5007] = {.lex_state = 250, .external_lex_state = 12}, - [5008] = {.lex_state = 250, .external_lex_state = 12}, - [5009] = {.lex_state = 251, .external_lex_state = 2}, - [5010] = {.lex_state = 250, .external_lex_state = 2}, - [5011] = {.lex_state = 250, .external_lex_state = 2}, - [5012] = {.lex_state = 250, .external_lex_state = 2}, - [5013] = {.lex_state = 77, .external_lex_state = 2}, - [5014] = {.lex_state = 250, .external_lex_state = 2}, - [5015] = {.lex_state = 250, .external_lex_state = 2}, - [5016] = {.lex_state = 250, .external_lex_state = 2}, - [5017] = {.lex_state = 250, .external_lex_state = 2}, - [5018] = {.lex_state = 250, .external_lex_state = 2}, - [5019] = {.lex_state = 250, .external_lex_state = 2}, - [5020] = {.lex_state = 250, .external_lex_state = 2}, - [5021] = {.lex_state = 250, .external_lex_state = 2}, - [5022] = {.lex_state = 250, .external_lex_state = 2}, - [5023] = {.lex_state = 250, .external_lex_state = 2}, - [5024] = {.lex_state = 250, .external_lex_state = 2}, - [5025] = {.lex_state = 100, .external_lex_state = 2}, - [5026] = {.lex_state = 250, .external_lex_state = 2}, - [5027] = {.lex_state = 250, .external_lex_state = 2}, - [5028] = {.lex_state = 250, .external_lex_state = 2}, - [5029] = {.lex_state = 250, .external_lex_state = 2}, - [5030] = {.lex_state = 250, .external_lex_state = 2}, - [5031] = {.lex_state = 251, .external_lex_state = 2}, - [5032] = {.lex_state = 77, .external_lex_state = 2}, - [5033] = {.lex_state = 250, .external_lex_state = 11}, - [5034] = {.lex_state = 251, .external_lex_state = 2}, - [5035] = {.lex_state = 251, .external_lex_state = 2}, - [5036] = {.lex_state = 250, .external_lex_state = 2}, - [5037] = {.lex_state = 250, .external_lex_state = 2}, - [5038] = {.lex_state = 251, .external_lex_state = 2}, - [5039] = {.lex_state = 250, .external_lex_state = 13}, - [5040] = {.lex_state = 77, .external_lex_state = 2}, - [5041] = {.lex_state = 251, .external_lex_state = 2}, - [5042] = {.lex_state = 250, .external_lex_state = 2}, - [5043] = {.lex_state = 250, .external_lex_state = 2}, - [5044] = {.lex_state = 250, .external_lex_state = 2}, - [5045] = {.lex_state = 250, .external_lex_state = 11}, - [5046] = {.lex_state = 250, .external_lex_state = 11}, - [5047] = {.lex_state = 250, .external_lex_state = 11}, - [5048] = {.lex_state = 250, .external_lex_state = 11}, - [5049] = {.lex_state = 250, .external_lex_state = 2}, - [5050] = {.lex_state = 250, .external_lex_state = 11}, - [5051] = {.lex_state = 251, .external_lex_state = 2}, - [5052] = {.lex_state = 250, .external_lex_state = 2}, - [5053] = {.lex_state = 250, .external_lex_state = 2}, - [5054] = {.lex_state = 250, .external_lex_state = 11}, - [5055] = {.lex_state = 250, .external_lex_state = 2}, - [5056] = {.lex_state = 250, .external_lex_state = 2}, - [5057] = {.lex_state = 250, .external_lex_state = 11}, - [5058] = {.lex_state = 250, .external_lex_state = 2}, - [5059] = {.lex_state = 250, .external_lex_state = 2}, - [5060] = {.lex_state = 251, .external_lex_state = 2}, - [5061] = {.lex_state = 251, .external_lex_state = 2}, - [5062] = {.lex_state = 250, .external_lex_state = 11}, - [5063] = {.lex_state = 251, .external_lex_state = 2}, - [5064] = {.lex_state = 251, .external_lex_state = 2}, - [5065] = {.lex_state = 250, .external_lex_state = 11}, - [5066] = {.lex_state = 77, .external_lex_state = 2}, - [5067] = {.lex_state = 250, .external_lex_state = 11}, - [5068] = {.lex_state = 250, .external_lex_state = 2}, - [5069] = {.lex_state = 250, .external_lex_state = 2}, - [5070] = {.lex_state = 250, .external_lex_state = 2}, - [5071] = {.lex_state = 250, .external_lex_state = 11}, - [5072] = {.lex_state = 251, .external_lex_state = 2}, - [5073] = {.lex_state = 250, .external_lex_state = 2}, - [5074] = {.lex_state = 250, .external_lex_state = 8}, - [5075] = {.lex_state = 251, .external_lex_state = 2}, - [5076] = {.lex_state = 250, .external_lex_state = 2}, - [5077] = {.lex_state = 251, .external_lex_state = 2}, - [5078] = {.lex_state = 251, .external_lex_state = 2}, - [5079] = {.lex_state = 100, .external_lex_state = 2}, - [5080] = {.lex_state = 250, .external_lex_state = 2}, - [5081] = {.lex_state = 250, .external_lex_state = 2}, - [5082] = {.lex_state = 250, .external_lex_state = 2}, - [5083] = {.lex_state = 250, .external_lex_state = 2}, - [5084] = {.lex_state = 250, .external_lex_state = 2}, - [5085] = {.lex_state = 250, .external_lex_state = 2}, - [5086] = {.lex_state = 250, .external_lex_state = 2}, - [5087] = {.lex_state = 250, .external_lex_state = 11}, - [5088] = {.lex_state = 77, .external_lex_state = 2}, - [5089] = {.lex_state = 251, .external_lex_state = 2}, - [5090] = {.lex_state = 87, .external_lex_state = 2}, - [5091] = {.lex_state = 251, .external_lex_state = 2}, - [5092] = {.lex_state = 250, .external_lex_state = 8}, - [5093] = {.lex_state = 251, .external_lex_state = 2}, - [5094] = {.lex_state = 251, .external_lex_state = 2}, - [5095] = {.lex_state = 250, .external_lex_state = 2}, - [5096] = {.lex_state = 250, .external_lex_state = 2}, - [5097] = {.lex_state = 251, .external_lex_state = 2}, - [5098] = {.lex_state = 250, .external_lex_state = 11}, - [5099] = {.lex_state = 250, .external_lex_state = 11}, - [5100] = {.lex_state = 250, .external_lex_state = 8}, - [5101] = {.lex_state = 251, .external_lex_state = 2}, - [5102] = {.lex_state = 251, .external_lex_state = 2}, - [5103] = {.lex_state = 250, .external_lex_state = 2}, - [5104] = {.lex_state = 250, .external_lex_state = 2}, - [5105] = {.lex_state = 250, .external_lex_state = 11}, - [5106] = {.lex_state = 250, .external_lex_state = 2}, - [5107] = {.lex_state = 250, .external_lex_state = 2}, - [5108] = {.lex_state = 251, .external_lex_state = 2}, - [5109] = {.lex_state = 251, .external_lex_state = 2}, - [5110] = {.lex_state = 250, .external_lex_state = 8}, - [5111] = {.lex_state = 251, .external_lex_state = 2}, - [5112] = {.lex_state = 251, .external_lex_state = 2}, - [5113] = {.lex_state = 250, .external_lex_state = 11}, - [5114] = {.lex_state = 250, .external_lex_state = 8}, - [5115] = {.lex_state = 250, .external_lex_state = 11}, - [5116] = {.lex_state = 250, .external_lex_state = 2}, - [5117] = {.lex_state = 250, .external_lex_state = 2}, - [5118] = {.lex_state = 251, .external_lex_state = 2}, - [5119] = {.lex_state = 250, .external_lex_state = 2}, - [5120] = {.lex_state = 251, .external_lex_state = 2}, - [5121] = {.lex_state = 250, .external_lex_state = 2}, - [5122] = {.lex_state = 250, .external_lex_state = 2}, - [5123] = {.lex_state = 251, .external_lex_state = 2}, - [5124] = {.lex_state = 77, .external_lex_state = 2}, - [5125] = {.lex_state = 100, .external_lex_state = 2}, - [5126] = {.lex_state = 251, .external_lex_state = 2}, - [5127] = {.lex_state = 251, .external_lex_state = 2}, - [5128] = {.lex_state = 250, .external_lex_state = 2}, - [5129] = {.lex_state = 250, .external_lex_state = 2}, - [5130] = {.lex_state = 250, .external_lex_state = 11}, - [5131] = {.lex_state = 250, .external_lex_state = 2}, - [5132] = {.lex_state = 250, .external_lex_state = 2}, - [5133] = {.lex_state = 250, .external_lex_state = 2}, - [5134] = {.lex_state = 251, .external_lex_state = 2}, - [5135] = {.lex_state = 250, .external_lex_state = 11}, - [5136] = {.lex_state = 77, .external_lex_state = 2}, - [5137] = {.lex_state = 250, .external_lex_state = 8}, - [5138] = {.lex_state = 251, .external_lex_state = 2}, - [5139] = {.lex_state = 251, .external_lex_state = 2}, - [5140] = {.lex_state = 251, .external_lex_state = 2}, - [5141] = {.lex_state = 250, .external_lex_state = 2}, - [5142] = {.lex_state = 251, .external_lex_state = 2}, - [5143] = {.lex_state = 250, .external_lex_state = 11}, - [5144] = {.lex_state = 77, .external_lex_state = 2}, - [5145] = {.lex_state = 250, .external_lex_state = 11}, - [5146] = {.lex_state = 109, .external_lex_state = 2}, - [5147] = {.lex_state = 251, .external_lex_state = 2}, - [5148] = {.lex_state = 251, .external_lex_state = 2}, - [5149] = {.lex_state = 250, .external_lex_state = 2}, - [5150] = {.lex_state = 251, .external_lex_state = 2}, - [5151] = {.lex_state = 250, .external_lex_state = 2}, - [5152] = {.lex_state = 250, .external_lex_state = 2}, - [5153] = {.lex_state = 250, .external_lex_state = 2}, - [5154] = {.lex_state = 250, .external_lex_state = 2}, - [5155] = {.lex_state = 251, .external_lex_state = 2}, - [5156] = {.lex_state = 251, .external_lex_state = 2}, - [5157] = {.lex_state = 250, .external_lex_state = 2}, - [5158] = {.lex_state = 250, .external_lex_state = 2}, - [5159] = {.lex_state = 250, .external_lex_state = 11}, - [5160] = {.lex_state = 250, .external_lex_state = 2}, - [5161] = {.lex_state = 251, .external_lex_state = 2}, - [5162] = {.lex_state = 250, .external_lex_state = 11}, - [5163] = {.lex_state = 251, .external_lex_state = 2}, - [5164] = {.lex_state = 250, .external_lex_state = 2}, - [5165] = {.lex_state = 250, .external_lex_state = 2}, - [5166] = {.lex_state = 250, .external_lex_state = 2}, - [5167] = {.lex_state = 250, .external_lex_state = 2}, - [5168] = {.lex_state = 250, .external_lex_state = 2}, - [5169] = {.lex_state = 251, .external_lex_state = 2}, - [5170] = {.lex_state = 251, .external_lex_state = 2}, - [5171] = {.lex_state = 100, .external_lex_state = 2}, - [5172] = {.lex_state = 250, .external_lex_state = 2}, - [5173] = {.lex_state = 250, .external_lex_state = 11}, - [5174] = {.lex_state = 250, .external_lex_state = 2}, - [5175] = {.lex_state = 250, .external_lex_state = 11}, - [5176] = {.lex_state = 250, .external_lex_state = 2}, - [5177] = {.lex_state = 250, .external_lex_state = 2}, - [5178] = {.lex_state = 250, .external_lex_state = 2}, - [5179] = {.lex_state = 250, .external_lex_state = 2}, - [5180] = {.lex_state = 251, .external_lex_state = 2}, - [5181] = {.lex_state = 250, .external_lex_state = 2}, - [5182] = {.lex_state = 251, .external_lex_state = 2}, - [5183] = {.lex_state = 251, .external_lex_state = 2}, - [5184] = {.lex_state = 250, .external_lex_state = 2}, - [5185] = {.lex_state = 250, .external_lex_state = 2}, - [5186] = {.lex_state = 250, .external_lex_state = 11}, - [5187] = {.lex_state = 250, .external_lex_state = 2}, - [5188] = {.lex_state = 250, .external_lex_state = 11}, - [5189] = {.lex_state = 250, .external_lex_state = 2}, - [5190] = {.lex_state = 250, .external_lex_state = 2}, - [5191] = {.lex_state = 250, .external_lex_state = 2}, - [5192] = {.lex_state = 251, .external_lex_state = 2}, - [5193] = {.lex_state = 250, .external_lex_state = 8}, - [5194] = {.lex_state = 251, .external_lex_state = 2}, - [5195] = {.lex_state = 251, .external_lex_state = 2}, - [5196] = {.lex_state = 251, .external_lex_state = 2}, - [5197] = {.lex_state = 251, .external_lex_state = 2}, - [5198] = {.lex_state = 251, .external_lex_state = 2}, - [5199] = {.lex_state = 250, .external_lex_state = 11}, - [5200] = {.lex_state = 250, .external_lex_state = 11}, - [5201] = {.lex_state = 250, .external_lex_state = 11}, - [5202] = {.lex_state = 251, .external_lex_state = 2}, - [5203] = {.lex_state = 250, .external_lex_state = 11}, - [5204] = {.lex_state = 251, .external_lex_state = 2}, - [5205] = {.lex_state = 251, .external_lex_state = 2}, - [5206] = {.lex_state = 251, .external_lex_state = 2}, - [5207] = {.lex_state = 251, .external_lex_state = 2}, - [5208] = {.lex_state = 251, .external_lex_state = 2}, - [5209] = {.lex_state = 251, .external_lex_state = 2}, - [5210] = {.lex_state = 250, .external_lex_state = 8}, - [5211] = {.lex_state = 250, .external_lex_state = 8}, - [5212] = {.lex_state = 250, .external_lex_state = 11}, - [5213] = {.lex_state = 250, .external_lex_state = 2}, - [5214] = {.lex_state = 250, .external_lex_state = 11}, - [5215] = {.lex_state = 250, .external_lex_state = 2}, - [5216] = {.lex_state = 250, .external_lex_state = 2}, - [5217] = {.lex_state = 250, .external_lex_state = 2}, - [5218] = {.lex_state = 77, .external_lex_state = 2}, - [5219] = {.lex_state = 250, .external_lex_state = 2}, - [5220] = {.lex_state = 250, .external_lex_state = 2}, - [5221] = {.lex_state = 251, .external_lex_state = 2}, - [5222] = {.lex_state = 251, .external_lex_state = 2}, - [5223] = {.lex_state = 100, .external_lex_state = 2}, - [5224] = {.lex_state = 250, .external_lex_state = 2}, - [5225] = {.lex_state = 250, .external_lex_state = 11}, - [5226] = {.lex_state = 250, .external_lex_state = 2}, - [5227] = {.lex_state = 250, .external_lex_state = 11}, - [5228] = {.lex_state = 250, .external_lex_state = 2}, - [5229] = {.lex_state = 250, .external_lex_state = 2}, - [5230] = {.lex_state = 251, .external_lex_state = 2}, - [5231] = {.lex_state = 250, .external_lex_state = 11}, - [5232] = {.lex_state = 251, .external_lex_state = 2}, - [5233] = {.lex_state = 1, .external_lex_state = 2}, - [5234] = {.lex_state = 251, .external_lex_state = 2}, - [5235] = {.lex_state = 1, .external_lex_state = 2}, - [5236] = {.lex_state = 250, .external_lex_state = 11}, - [5237] = {.lex_state = 250, .external_lex_state = 11}, - [5238] = {.lex_state = 250, .external_lex_state = 2}, - [5239] = {.lex_state = 250, .external_lex_state = 2}, - [5240] = {.lex_state = 250, .external_lex_state = 2}, - [5241] = {.lex_state = 251, .external_lex_state = 2}, - [5242] = {.lex_state = 250, .external_lex_state = 2}, - [5243] = {.lex_state = 250, .external_lex_state = 2}, - [5244] = {.lex_state = 250, .external_lex_state = 2}, - [5245] = {.lex_state = 251, .external_lex_state = 2}, - [5246] = {.lex_state = 250, .external_lex_state = 2}, - [5247] = {.lex_state = 250, .external_lex_state = 2}, - [5248] = {.lex_state = 250, .external_lex_state = 2}, - [5249] = {.lex_state = 250, .external_lex_state = 2}, - [5250] = {.lex_state = 250, .external_lex_state = 11}, - [5251] = {.lex_state = 250, .external_lex_state = 11}, - [5252] = {.lex_state = 250, .external_lex_state = 2}, - [5253] = {.lex_state = 250, .external_lex_state = 2}, - [5254] = {.lex_state = 250, .external_lex_state = 8}, - [5255] = {.lex_state = 250, .external_lex_state = 11}, - [5256] = {.lex_state = 250, .external_lex_state = 11}, - [5257] = {.lex_state = 250, .external_lex_state = 2}, - [5258] = {.lex_state = 250, .external_lex_state = 2}, - [5259] = {.lex_state = 251, .external_lex_state = 2}, - [5260] = {.lex_state = 250, .external_lex_state = 11}, - [5261] = {.lex_state = 250, .external_lex_state = 11}, - [5262] = {.lex_state = 250, .external_lex_state = 2}, - [5263] = {.lex_state = 251, .external_lex_state = 2}, - [5264] = {.lex_state = 251, .external_lex_state = 2}, - [5265] = {.lex_state = 250, .external_lex_state = 11}, - [5266] = {.lex_state = 250, .external_lex_state = 11}, - [5267] = {.lex_state = 251, .external_lex_state = 2}, - [5268] = {.lex_state = 250, .external_lex_state = 11}, - [5269] = {.lex_state = 251, .external_lex_state = 2}, - [5270] = {.lex_state = 250, .external_lex_state = 11}, - [5271] = {.lex_state = 250, .external_lex_state = 11}, - [5272] = {.lex_state = 251, .external_lex_state = 2}, - [5273] = {.lex_state = 251, .external_lex_state = 2}, - [5274] = {.lex_state = 250, .external_lex_state = 8}, - [5275] = {.lex_state = 250, .external_lex_state = 11}, - [5276] = {.lex_state = 250, .external_lex_state = 11}, - [5277] = {.lex_state = 250, .external_lex_state = 8}, - [5278] = {.lex_state = 1, .external_lex_state = 2}, - [5279] = {.lex_state = 251, .external_lex_state = 2}, - [5280] = {.lex_state = 250, .external_lex_state = 11}, - [5281] = {.lex_state = 250, .external_lex_state = 11}, - [5282] = {.lex_state = 250, .external_lex_state = 2}, - [5283] = {.lex_state = 77, .external_lex_state = 2}, - [5284] = {.lex_state = 250, .external_lex_state = 2}, - [5285] = {.lex_state = 250, .external_lex_state = 11}, - [5286] = {.lex_state = 250, .external_lex_state = 11}, - [5287] = {.lex_state = 250, .external_lex_state = 2}, - [5288] = {.lex_state = 250, .external_lex_state = 2}, - [5289] = {.lex_state = 250, .external_lex_state = 2}, - [5290] = {.lex_state = 250, .external_lex_state = 2}, - [5291] = {.lex_state = 77, .external_lex_state = 2}, - [5292] = {.lex_state = 250, .external_lex_state = 8}, - [5293] = {.lex_state = 250, .external_lex_state = 2}, - [5294] = {.lex_state = 250, .external_lex_state = 2}, - [5295] = {.lex_state = 100, .external_lex_state = 2}, - [5296] = {.lex_state = 250, .external_lex_state = 2}, - [5297] = {.lex_state = 251, .external_lex_state = 2}, - [5298] = {.lex_state = 251, .external_lex_state = 2}, - [5299] = {.lex_state = 250, .external_lex_state = 11}, - [5300] = {.lex_state = 250, .external_lex_state = 2}, - [5301] = {.lex_state = 250, .external_lex_state = 2}, - [5302] = {.lex_state = 250, .external_lex_state = 2}, - [5303] = {.lex_state = 250, .external_lex_state = 2}, - [5304] = {.lex_state = 251, .external_lex_state = 2}, - [5305] = {.lex_state = 250, .external_lex_state = 2}, - [5306] = {.lex_state = 250, .external_lex_state = 2}, - [5307] = {.lex_state = 251, .external_lex_state = 2}, - [5308] = {.lex_state = 250, .external_lex_state = 2}, - [5309] = {.lex_state = 250, .external_lex_state = 2}, - [5310] = {.lex_state = 250, .external_lex_state = 2}, - [5311] = {.lex_state = 250, .external_lex_state = 2}, - [5312] = {.lex_state = 250, .external_lex_state = 2}, - [5313] = {.lex_state = 250, .external_lex_state = 2}, - [5314] = {.lex_state = 120, .external_lex_state = 2}, - [5315] = {.lex_state = 250, .external_lex_state = 2}, - [5316] = {.lex_state = 251, .external_lex_state = 2}, - [5317] = {.lex_state = 250, .external_lex_state = 2}, - [5318] = {.lex_state = 250, .external_lex_state = 2}, - [5319] = {.lex_state = 250, .external_lex_state = 2}, - [5320] = {.lex_state = 251, .external_lex_state = 2}, - [5321] = {.lex_state = 250, .external_lex_state = 8}, - [5322] = {.lex_state = 251, .external_lex_state = 2}, - [5323] = {.lex_state = 251, .external_lex_state = 2}, - [5324] = {.lex_state = 250, .external_lex_state = 8}, - [5325] = {.lex_state = 251, .external_lex_state = 2}, - [5326] = {.lex_state = 251, .external_lex_state = 2}, - [5327] = {.lex_state = 251, .external_lex_state = 2}, - [5328] = {.lex_state = 251, .external_lex_state = 2}, - [5329] = {.lex_state = 251, .external_lex_state = 2}, - [5330] = {.lex_state = 250, .external_lex_state = 8}, - [5331] = {.lex_state = 77, .external_lex_state = 2}, - [5332] = {.lex_state = 250, .external_lex_state = 8}, - [5333] = {.lex_state = 251, .external_lex_state = 2}, - [5334] = {.lex_state = 250, .external_lex_state = 8}, - [5335] = {.lex_state = 250, .external_lex_state = 8}, - [5336] = {.lex_state = 77, .external_lex_state = 2}, - [5337] = {.lex_state = 250, .external_lex_state = 2}, - [5338] = {.lex_state = 250, .external_lex_state = 2}, - [5339] = {.lex_state = 250, .external_lex_state = 2}, - [5340] = {.lex_state = 251, .external_lex_state = 2}, - [5341] = {.lex_state = 77, .external_lex_state = 2}, - [5342] = {.lex_state = 87, .external_lex_state = 2}, - [5343] = {.lex_state = 250, .external_lex_state = 2}, - [5344] = {.lex_state = 250, .external_lex_state = 8}, - [5345] = {.lex_state = 250, .external_lex_state = 8}, - [5346] = {.lex_state = 250, .external_lex_state = 8}, - [5347] = {.lex_state = 250, .external_lex_state = 8}, - [5348] = {.lex_state = 250, .external_lex_state = 2}, - [5349] = {.lex_state = 250, .external_lex_state = 2}, - [5350] = {.lex_state = 250, .external_lex_state = 2}, - [5351] = {.lex_state = 251, .external_lex_state = 2}, - [5352] = {.lex_state = 250, .external_lex_state = 2}, - [5353] = {.lex_state = 250, .external_lex_state = 12}, - [5354] = {.lex_state = 250, .external_lex_state = 12}, - [5355] = {.lex_state = 100, .external_lex_state = 2}, - [5356] = {.lex_state = 250, .external_lex_state = 2}, - [5357] = {.lex_state = 251, .external_lex_state = 2}, - [5358] = {.lex_state = 250, .external_lex_state = 2}, - [5359] = {.lex_state = 250, .external_lex_state = 2}, - [5360] = {.lex_state = 251, .external_lex_state = 2}, - [5361] = {.lex_state = 250, .external_lex_state = 2}, - [5362] = {.lex_state = 250, .external_lex_state = 2}, - [5363] = {.lex_state = 250, .external_lex_state = 11}, - [5364] = {.lex_state = 250, .external_lex_state = 11}, - [5365] = {.lex_state = 1, .external_lex_state = 2}, - [5366] = {.lex_state = 1, .external_lex_state = 2}, - [5367] = {.lex_state = 251, .external_lex_state = 2}, - [5368] = {.lex_state = 250, .external_lex_state = 2}, - [5369] = {.lex_state = 1, .external_lex_state = 2}, - [5370] = {.lex_state = 250, .external_lex_state = 2}, - [5371] = {.lex_state = 250, .external_lex_state = 2}, - [5372] = {.lex_state = 251, .external_lex_state = 2}, - [5373] = {.lex_state = 251, .external_lex_state = 2}, - [5374] = {.lex_state = 1, .external_lex_state = 2}, - [5375] = {.lex_state = 251, .external_lex_state = 2}, - [5376] = {.lex_state = 250, .external_lex_state = 2}, - [5377] = {.lex_state = 250, .external_lex_state = 2}, - [5378] = {.lex_state = 250, .external_lex_state = 2}, - [5379] = {(TSStateId)(-1)}, - [5380] = {(TSStateId)(-1)}, - [5381] = {(TSStateId)(-1)}, - [5382] = {(TSStateId)(-1)}, - [5383] = {(TSStateId)(-1)}, + [1581] = {.lex_state = 59, .external_lex_state = 3}, + [1582] = {.lex_state = 63, .external_lex_state = 3}, + [1583] = {.lex_state = 269, .external_lex_state = 5}, + [1584] = {.lex_state = 270, .external_lex_state = 6}, + [1585] = {.lex_state = 63, .external_lex_state = 4}, + [1586] = {.lex_state = 63, .external_lex_state = 4}, + [1587] = {.lex_state = 270, .external_lex_state = 6}, + [1588] = {.lex_state = 70, .external_lex_state = 3}, + [1589] = {.lex_state = 269, .external_lex_state = 4}, + [1590] = {.lex_state = 63, .external_lex_state = 4}, + [1591] = {.lex_state = 63, .external_lex_state = 4}, + [1592] = {.lex_state = 63, .external_lex_state = 4}, + [1593] = {.lex_state = 269, .external_lex_state = 6}, + [1594] = {.lex_state = 63, .external_lex_state = 4}, + [1595] = {.lex_state = 269, .external_lex_state = 5}, + [1596] = {.lex_state = 269, .external_lex_state = 5}, + [1597] = {.lex_state = 63, .external_lex_state = 4}, + [1598] = {.lex_state = 269, .external_lex_state = 4}, + [1599] = {.lex_state = 63, .external_lex_state = 4}, + [1600] = {.lex_state = 70, .external_lex_state = 3}, + [1601] = {.lex_state = 71, .external_lex_state = 3}, + [1602] = {.lex_state = 269, .external_lex_state = 3}, + [1603] = {.lex_state = 62, .external_lex_state = 3}, + [1604] = {.lex_state = 63, .external_lex_state = 4}, + [1605] = {.lex_state = 63, .external_lex_state = 4}, + [1606] = {.lex_state = 63, .external_lex_state = 4}, + [1607] = {.lex_state = 63, .external_lex_state = 4}, + [1608] = {.lex_state = 269, .external_lex_state = 5}, + [1609] = {.lex_state = 63, .external_lex_state = 4}, + [1610] = {.lex_state = 269, .external_lex_state = 5}, + [1611] = {.lex_state = 63, .external_lex_state = 4}, + [1612] = {.lex_state = 268, .external_lex_state = 7}, + [1613] = {.lex_state = 63, .external_lex_state = 4}, + [1614] = {.lex_state = 63, .external_lex_state = 4}, + [1615] = {.lex_state = 63, .external_lex_state = 4}, + [1616] = {.lex_state = 63, .external_lex_state = 4}, + [1617] = {.lex_state = 63, .external_lex_state = 4}, + [1618] = {.lex_state = 269, .external_lex_state = 5}, + [1619] = {.lex_state = 59, .external_lex_state = 3}, + [1620] = {.lex_state = 63, .external_lex_state = 4}, + [1621] = {.lex_state = 63, .external_lex_state = 4}, + [1622] = {.lex_state = 63, .external_lex_state = 4}, + [1623] = {.lex_state = 63, .external_lex_state = 4}, + [1624] = {.lex_state = 63, .external_lex_state = 4}, + [1625] = {.lex_state = 269, .external_lex_state = 5}, + [1626] = {.lex_state = 70, .external_lex_state = 3}, + [1627] = {.lex_state = 269, .external_lex_state = 7}, + [1628] = {.lex_state = 270, .external_lex_state = 7}, + [1629] = {.lex_state = 269, .external_lex_state = 6}, + [1630] = {.lex_state = 63, .external_lex_state = 3}, + [1631] = {.lex_state = 63, .external_lex_state = 3}, + [1632] = {.lex_state = 63, .external_lex_state = 3}, + [1633] = {.lex_state = 63, .external_lex_state = 3}, + [1634] = {.lex_state = 63, .external_lex_state = 3}, + [1635] = {.lex_state = 269, .external_lex_state = 6}, + [1636] = {.lex_state = 63, .external_lex_state = 3}, + [1637] = {.lex_state = 269, .external_lex_state = 6}, + [1638] = {.lex_state = 269, .external_lex_state = 6}, + [1639] = {.lex_state = 70, .external_lex_state = 3}, + [1640] = {.lex_state = 70, .external_lex_state = 3}, + [1641] = {.lex_state = 269, .external_lex_state = 6}, + [1642] = {.lex_state = 63, .external_lex_state = 3}, + [1643] = {.lex_state = 63, .external_lex_state = 3}, + [1644] = {.lex_state = 70, .external_lex_state = 3}, + [1645] = {.lex_state = 63, .external_lex_state = 3}, + [1646] = {.lex_state = 63, .external_lex_state = 3}, + [1647] = {.lex_state = 70, .external_lex_state = 3}, + [1648] = {.lex_state = 63, .external_lex_state = 3}, + [1649] = {.lex_state = 70, .external_lex_state = 3}, + [1650] = {.lex_state = 70, .external_lex_state = 3}, + [1651] = {.lex_state = 70, .external_lex_state = 3}, + [1652] = {.lex_state = 70, .external_lex_state = 3}, + [1653] = {.lex_state = 70, .external_lex_state = 3}, + [1654] = {.lex_state = 63, .external_lex_state = 3}, + [1655] = {.lex_state = 70, .external_lex_state = 3}, + [1656] = {.lex_state = 70, .external_lex_state = 3}, + [1657] = {.lex_state = 269, .external_lex_state = 6}, + [1658] = {.lex_state = 63, .external_lex_state = 3}, + [1659] = {.lex_state = 70, .external_lex_state = 3}, + [1660] = {.lex_state = 70, .external_lex_state = 3}, + [1661] = {.lex_state = 269, .external_lex_state = 6}, + [1662] = {.lex_state = 269, .external_lex_state = 6}, + [1663] = {.lex_state = 269, .external_lex_state = 6}, + [1664] = {.lex_state = 269, .external_lex_state = 6}, + [1665] = {.lex_state = 63, .external_lex_state = 3}, + [1666] = {.lex_state = 269, .external_lex_state = 6}, + [1667] = {.lex_state = 70, .external_lex_state = 3}, + [1668] = {.lex_state = 269, .external_lex_state = 6}, + [1669] = {.lex_state = 63, .external_lex_state = 3}, + [1670] = {.lex_state = 269, .external_lex_state = 6}, + [1671] = {.lex_state = 63, .external_lex_state = 3}, + [1672] = {.lex_state = 63, .external_lex_state = 3}, + [1673] = {.lex_state = 269, .external_lex_state = 6}, + [1674] = {.lex_state = 63, .external_lex_state = 3}, + [1675] = {.lex_state = 70, .external_lex_state = 3}, + [1676] = {.lex_state = 63, .external_lex_state = 3}, + [1677] = {.lex_state = 63, .external_lex_state = 3}, + [1678] = {.lex_state = 63, .external_lex_state = 3}, + [1679] = {.lex_state = 63, .external_lex_state = 3}, + [1680] = {.lex_state = 63, .external_lex_state = 3}, + [1681] = {.lex_state = 63, .external_lex_state = 3}, + [1682] = {.lex_state = 63, .external_lex_state = 3}, + [1683] = {.lex_state = 272, .external_lex_state = 3}, + [1684] = {.lex_state = 63, .external_lex_state = 3}, + [1685] = {.lex_state = 63, .external_lex_state = 3}, + [1686] = {.lex_state = 269, .external_lex_state = 6}, + [1687] = {.lex_state = 63, .external_lex_state = 3}, + [1688] = {.lex_state = 269, .external_lex_state = 6}, + [1689] = {.lex_state = 269, .external_lex_state = 6}, + [1690] = {.lex_state = 63, .external_lex_state = 3}, + [1691] = {.lex_state = 269, .external_lex_state = 6}, + [1692] = {.lex_state = 269, .external_lex_state = 6}, + [1693] = {.lex_state = 269, .external_lex_state = 6}, + [1694] = {.lex_state = 269, .external_lex_state = 6}, + [1695] = {.lex_state = 63, .external_lex_state = 3}, + [1696] = {.lex_state = 272, .external_lex_state = 3}, + [1697] = {.lex_state = 269, .external_lex_state = 6}, + [1698] = {.lex_state = 272, .external_lex_state = 3}, + [1699] = {.lex_state = 63, .external_lex_state = 3}, + [1700] = {.lex_state = 269, .external_lex_state = 6}, + [1701] = {.lex_state = 70, .external_lex_state = 3}, + [1702] = {.lex_state = 70, .external_lex_state = 3}, + [1703] = {.lex_state = 70, .external_lex_state = 3}, + [1704] = {.lex_state = 70, .external_lex_state = 3}, + [1705] = {.lex_state = 63, .external_lex_state = 3}, + [1706] = {.lex_state = 269, .external_lex_state = 6}, + [1707] = {.lex_state = 63, .external_lex_state = 3}, + [1708] = {.lex_state = 269, .external_lex_state = 6}, + [1709] = {.lex_state = 63, .external_lex_state = 3}, + [1710] = {.lex_state = 70, .external_lex_state = 3}, + [1711] = {.lex_state = 279, .external_lex_state = 2}, + [1712] = {.lex_state = 269, .external_lex_state = 6}, + [1713] = {.lex_state = 269, .external_lex_state = 6}, + [1714] = {.lex_state = 269, .external_lex_state = 6}, + [1715] = {.lex_state = 269, .external_lex_state = 6}, + [1716] = {.lex_state = 63, .external_lex_state = 3}, + [1717] = {.lex_state = 269, .external_lex_state = 6}, + [1718] = {.lex_state = 63, .external_lex_state = 3}, + [1719] = {.lex_state = 70, .external_lex_state = 3}, + [1720] = {.lex_state = 269, .external_lex_state = 6}, + [1721] = {.lex_state = 70, .external_lex_state = 3}, + [1722] = {.lex_state = 70, .external_lex_state = 3}, + [1723] = {.lex_state = 63, .external_lex_state = 3}, + [1724] = {.lex_state = 269, .external_lex_state = 6}, + [1725] = {.lex_state = 269, .external_lex_state = 6}, + [1726] = {.lex_state = 63, .external_lex_state = 3}, + [1727] = {.lex_state = 269, .external_lex_state = 6}, + [1728] = {.lex_state = 269, .external_lex_state = 6}, + [1729] = {.lex_state = 63, .external_lex_state = 3}, + [1730] = {.lex_state = 70, .external_lex_state = 3}, + [1731] = {.lex_state = 269, .external_lex_state = 6}, + [1732] = {.lex_state = 269, .external_lex_state = 7}, + [1733] = {.lex_state = 270, .external_lex_state = 7}, + [1734] = {.lex_state = 269, .external_lex_state = 6}, + [1735] = {.lex_state = 269, .external_lex_state = 6}, + [1736] = {.lex_state = 269, .external_lex_state = 6}, + [1737] = {.lex_state = 269, .external_lex_state = 6}, + [1738] = {.lex_state = 269, .external_lex_state = 6}, + [1739] = {.lex_state = 269, .external_lex_state = 6}, + [1740] = {.lex_state = 269, .external_lex_state = 6}, + [1741] = {.lex_state = 279, .external_lex_state = 8}, + [1742] = {.lex_state = 269, .external_lex_state = 6}, + [1743] = {.lex_state = 70, .external_lex_state = 3}, + [1744] = {.lex_state = 63, .external_lex_state = 3}, + [1745] = {.lex_state = 279, .external_lex_state = 2}, + [1746] = {.lex_state = 269, .external_lex_state = 6}, + [1747] = {.lex_state = 63, .external_lex_state = 3}, + [1748] = {.lex_state = 70, .external_lex_state = 3}, + [1749] = {.lex_state = 70, .external_lex_state = 3}, + [1750] = {.lex_state = 63, .external_lex_state = 3}, + [1751] = {.lex_state = 63, .external_lex_state = 3}, + [1752] = {.lex_state = 70, .external_lex_state = 3}, + [1753] = {.lex_state = 70, .external_lex_state = 3}, + [1754] = {.lex_state = 272, .external_lex_state = 3}, + [1755] = {.lex_state = 269, .external_lex_state = 6}, + [1756] = {.lex_state = 279, .external_lex_state = 2}, + [1757] = {.lex_state = 63, .external_lex_state = 3}, + [1758] = {.lex_state = 70, .external_lex_state = 3}, + [1759] = {.lex_state = 63, .external_lex_state = 3}, + [1760] = {.lex_state = 70, .external_lex_state = 3}, + [1761] = {.lex_state = 70, .external_lex_state = 3}, + [1762] = {.lex_state = 63, .external_lex_state = 3}, + [1763] = {.lex_state = 70, .external_lex_state = 3}, + [1764] = {.lex_state = 70, .external_lex_state = 3}, + [1765] = {.lex_state = 63, .external_lex_state = 3}, + [1766] = {.lex_state = 63, .external_lex_state = 3}, + [1767] = {.lex_state = 70, .external_lex_state = 3}, + [1768] = {.lex_state = 70, .external_lex_state = 3}, + [1769] = {.lex_state = 269, .external_lex_state = 7}, + [1770] = {.lex_state = 269, .external_lex_state = 6}, + [1771] = {.lex_state = 269, .external_lex_state = 6}, + [1772] = {.lex_state = 269, .external_lex_state = 6}, + [1773] = {.lex_state = 269, .external_lex_state = 6}, + [1774] = {.lex_state = 269, .external_lex_state = 7}, + [1775] = {.lex_state = 272, .external_lex_state = 3}, + [1776] = {.lex_state = 272, .external_lex_state = 3}, + [1777] = {.lex_state = 269, .external_lex_state = 6}, + [1778] = {.lex_state = 279, .external_lex_state = 8}, + [1779] = {.lex_state = 270, .external_lex_state = 7}, + [1780] = {.lex_state = 279, .external_lex_state = 8}, + [1781] = {.lex_state = 279, .external_lex_state = 8}, + [1782] = {.lex_state = 63, .external_lex_state = 3}, + [1783] = {.lex_state = 63, .external_lex_state = 3}, + [1784] = {.lex_state = 63, .external_lex_state = 3}, + [1785] = {.lex_state = 70, .external_lex_state = 3}, + [1786] = {.lex_state = 279, .external_lex_state = 2}, + [1787] = {.lex_state = 63, .external_lex_state = 3}, + [1788] = {.lex_state = 269, .external_lex_state = 6}, + [1789] = {.lex_state = 269, .external_lex_state = 6}, + [1790] = {.lex_state = 269, .external_lex_state = 6}, + [1791] = {.lex_state = 269, .external_lex_state = 6}, + [1792] = {.lex_state = 269, .external_lex_state = 6}, + [1793] = {.lex_state = 269, .external_lex_state = 6}, + [1794] = {.lex_state = 269, .external_lex_state = 6}, + [1795] = {.lex_state = 269, .external_lex_state = 6}, + [1796] = {.lex_state = 70, .external_lex_state = 3}, + [1797] = {.lex_state = 70, .external_lex_state = 3}, + [1798] = {.lex_state = 63, .external_lex_state = 3}, + [1799] = {.lex_state = 269, .external_lex_state = 6}, + [1800] = {.lex_state = 63, .external_lex_state = 3}, + [1801] = {.lex_state = 63, .external_lex_state = 3}, + [1802] = {.lex_state = 270, .external_lex_state = 7}, + [1803] = {.lex_state = 272, .external_lex_state = 3}, + [1804] = {.lex_state = 63, .external_lex_state = 3}, + [1805] = {.lex_state = 70, .external_lex_state = 3}, + [1806] = {.lex_state = 70, .external_lex_state = 3}, + [1807] = {.lex_state = 63, .external_lex_state = 3}, + [1808] = {.lex_state = 70, .external_lex_state = 3}, + [1809] = {.lex_state = 70, .external_lex_state = 3}, + [1810] = {.lex_state = 272, .external_lex_state = 3}, + [1811] = {.lex_state = 70, .external_lex_state = 3}, + [1812] = {.lex_state = 270, .external_lex_state = 7}, + [1813] = {.lex_state = 269, .external_lex_state = 6}, + [1814] = {.lex_state = 70, .external_lex_state = 3}, + [1815] = {.lex_state = 63, .external_lex_state = 3}, + [1816] = {.lex_state = 63, .external_lex_state = 3}, + [1817] = {.lex_state = 64, .external_lex_state = 3}, + [1818] = {.lex_state = 272, .external_lex_state = 3}, + [1819] = {.lex_state = 269, .external_lex_state = 7}, + [1820] = {.lex_state = 56, .external_lex_state = 3}, + [1821] = {.lex_state = 269, .external_lex_state = 6}, + [1822] = {.lex_state = 279, .external_lex_state = 2}, + [1823] = {.lex_state = 269, .external_lex_state = 7}, + [1824] = {.lex_state = 269, .external_lex_state = 6}, + [1825] = {.lex_state = 64, .external_lex_state = 3}, + [1826] = {.lex_state = 269, .external_lex_state = 6}, + [1827] = {.lex_state = 70, .external_lex_state = 3}, + [1828] = {.lex_state = 64, .external_lex_state = 3}, + [1829] = {.lex_state = 269, .external_lex_state = 7}, + [1830] = {.lex_state = 63, .external_lex_state = 3}, + [1831] = {.lex_state = 64, .external_lex_state = 3}, + [1832] = {.lex_state = 70, .external_lex_state = 3}, + [1833] = {.lex_state = 70, .external_lex_state = 3}, + [1834] = {.lex_state = 70, .external_lex_state = 3}, + [1835] = {.lex_state = 269, .external_lex_state = 6}, + [1836] = {.lex_state = 269, .external_lex_state = 6}, + [1837] = {.lex_state = 70, .external_lex_state = 3}, + [1838] = {.lex_state = 63, .external_lex_state = 3}, + [1839] = {.lex_state = 279, .external_lex_state = 2}, + [1840] = {.lex_state = 269, .external_lex_state = 6}, + [1841] = {.lex_state = 269, .external_lex_state = 6}, + [1842] = {.lex_state = 63, .external_lex_state = 3}, + [1843] = {.lex_state = 70, .external_lex_state = 3}, + [1844] = {.lex_state = 63, .external_lex_state = 3}, + [1845] = {.lex_state = 56, .external_lex_state = 3}, + [1846] = {.lex_state = 70, .external_lex_state = 3}, + [1847] = {.lex_state = 63, .external_lex_state = 3}, + [1848] = {.lex_state = 64, .external_lex_state = 3}, + [1849] = {.lex_state = 63, .external_lex_state = 3}, + [1850] = {.lex_state = 269, .external_lex_state = 6}, + [1851] = {.lex_state = 70, .external_lex_state = 3}, + [1852] = {.lex_state = 70, .external_lex_state = 3}, + [1853] = {.lex_state = 70, .external_lex_state = 3}, + [1854] = {.lex_state = 269, .external_lex_state = 6}, + [1855] = {.lex_state = 269, .external_lex_state = 6}, + [1856] = {.lex_state = 269, .external_lex_state = 6}, + [1857] = {.lex_state = 269, .external_lex_state = 6}, + [1858] = {.lex_state = 70, .external_lex_state = 3}, + [1859] = {.lex_state = 70, .external_lex_state = 3}, + [1860] = {.lex_state = 70, .external_lex_state = 3}, + [1861] = {.lex_state = 70, .external_lex_state = 3}, + [1862] = {.lex_state = 70, .external_lex_state = 3}, + [1863] = {.lex_state = 70, .external_lex_state = 3}, + [1864] = {.lex_state = 70, .external_lex_state = 3}, + [1865] = {.lex_state = 70, .external_lex_state = 3}, + [1866] = {.lex_state = 70, .external_lex_state = 3}, + [1867] = {.lex_state = 70, .external_lex_state = 3}, + [1868] = {.lex_state = 269, .external_lex_state = 7}, + [1869] = {.lex_state = 70, .external_lex_state = 3}, + [1870] = {.lex_state = 70, .external_lex_state = 3}, + [1871] = {.lex_state = 70, .external_lex_state = 3}, + [1872] = {.lex_state = 63, .external_lex_state = 3}, + [1873] = {.lex_state = 70, .external_lex_state = 3}, + [1874] = {.lex_state = 70, .external_lex_state = 3}, + [1875] = {.lex_state = 63, .external_lex_state = 3}, + [1876] = {.lex_state = 70, .external_lex_state = 3}, + [1877] = {.lex_state = 70, .external_lex_state = 3}, + [1878] = {.lex_state = 70, .external_lex_state = 3}, + [1879] = {.lex_state = 70, .external_lex_state = 3}, + [1880] = {.lex_state = 70, .external_lex_state = 3}, + [1881] = {.lex_state = 63, .external_lex_state = 3}, + [1882] = {.lex_state = 70, .external_lex_state = 3}, + [1883] = {.lex_state = 63, .external_lex_state = 3}, + [1884] = {.lex_state = 70, .external_lex_state = 3}, + [1885] = {.lex_state = 63, .external_lex_state = 3}, + [1886] = {.lex_state = 63, .external_lex_state = 3}, + [1887] = {.lex_state = 63, .external_lex_state = 3}, + [1888] = {.lex_state = 63, .external_lex_state = 3}, + [1889] = {.lex_state = 269, .external_lex_state = 6}, + [1890] = {.lex_state = 63, .external_lex_state = 3}, + [1891] = {.lex_state = 269, .external_lex_state = 6}, + [1892] = {.lex_state = 63, .external_lex_state = 3}, + [1893] = {.lex_state = 279, .external_lex_state = 2}, + [1894] = {.lex_state = 272, .external_lex_state = 3}, + [1895] = {.lex_state = 272, .external_lex_state = 3}, + [1896] = {.lex_state = 272, .external_lex_state = 3}, + [1897] = {.lex_state = 278, .external_lex_state = 2}, + [1898] = {.lex_state = 272, .external_lex_state = 3}, + [1899] = {.lex_state = 269, .external_lex_state = 7}, + [1900] = {.lex_state = 269, .external_lex_state = 7}, + [1901] = {.lex_state = 269, .external_lex_state = 7}, + [1902] = {.lex_state = 269, .external_lex_state = 7}, + [1903] = {.lex_state = 272, .external_lex_state = 3}, + [1904] = {.lex_state = 279, .external_lex_state = 8}, + [1905] = {.lex_state = 272, .external_lex_state = 3}, + [1906] = {.lex_state = 269, .external_lex_state = 7}, + [1907] = {.lex_state = 279, .external_lex_state = 2}, + [1908] = {.lex_state = 272, .external_lex_state = 3}, + [1909] = {.lex_state = 269, .external_lex_state = 7}, + [1910] = {.lex_state = 269, .external_lex_state = 7}, + [1911] = {.lex_state = 272, .external_lex_state = 3}, + [1912] = {.lex_state = 272, .external_lex_state = 3}, + [1913] = {.lex_state = 269, .external_lex_state = 7}, + [1914] = {.lex_state = 272, .external_lex_state = 3}, + [1915] = {.lex_state = 279, .external_lex_state = 2}, + [1916] = {.lex_state = 272, .external_lex_state = 3}, + [1917] = {.lex_state = 272, .external_lex_state = 3}, + [1918] = {.lex_state = 272, .external_lex_state = 3}, + [1919] = {.lex_state = 272, .external_lex_state = 3}, + [1920] = {.lex_state = 272, .external_lex_state = 3}, + [1921] = {.lex_state = 269, .external_lex_state = 7}, + [1922] = {.lex_state = 272, .external_lex_state = 3}, + [1923] = {.lex_state = 272, .external_lex_state = 3}, + [1924] = {.lex_state = 279, .external_lex_state = 2}, + [1925] = {.lex_state = 279, .external_lex_state = 8}, + [1926] = {.lex_state = 272, .external_lex_state = 3}, + [1927] = {.lex_state = 269, .external_lex_state = 7}, + [1928] = {.lex_state = 279, .external_lex_state = 2}, + [1929] = {.lex_state = 272, .external_lex_state = 3}, + [1930] = {.lex_state = 272, .external_lex_state = 3}, + [1931] = {.lex_state = 269, .external_lex_state = 7}, + [1932] = {.lex_state = 272, .external_lex_state = 3}, + [1933] = {.lex_state = 272, .external_lex_state = 3}, + [1934] = {.lex_state = 272, .external_lex_state = 3}, + [1935] = {.lex_state = 272, .external_lex_state = 3}, + [1936] = {.lex_state = 272, .external_lex_state = 3}, + [1937] = {.lex_state = 269, .external_lex_state = 7}, + [1938] = {.lex_state = 272, .external_lex_state = 3}, + [1939] = {.lex_state = 272, .external_lex_state = 3}, + [1940] = {.lex_state = 272, .external_lex_state = 3}, + [1941] = {.lex_state = 272, .external_lex_state = 3}, + [1942] = {.lex_state = 272, .external_lex_state = 3}, + [1943] = {.lex_state = 272, .external_lex_state = 3}, + [1944] = {.lex_state = 279, .external_lex_state = 2}, + [1945] = {.lex_state = 269, .external_lex_state = 7}, + [1946] = {.lex_state = 269, .external_lex_state = 7}, + [1947] = {.lex_state = 272, .external_lex_state = 3}, + [1948] = {.lex_state = 279, .external_lex_state = 2}, + [1949] = {.lex_state = 272, .external_lex_state = 3}, + [1950] = {.lex_state = 279, .external_lex_state = 2}, + [1951] = {.lex_state = 272, .external_lex_state = 3}, + [1952] = {.lex_state = 269, .external_lex_state = 7}, + [1953] = {.lex_state = 269, .external_lex_state = 7}, + [1954] = {.lex_state = 269, .external_lex_state = 7}, + [1955] = {.lex_state = 272, .external_lex_state = 3}, + [1956] = {.lex_state = 272, .external_lex_state = 3}, + [1957] = {.lex_state = 272, .external_lex_state = 3}, + [1958] = {.lex_state = 272, .external_lex_state = 3}, + [1959] = {.lex_state = 272, .external_lex_state = 3}, + [1960] = {.lex_state = 269, .external_lex_state = 7}, + [1961] = {.lex_state = 272, .external_lex_state = 3}, + [1962] = {.lex_state = 272, .external_lex_state = 3}, + [1963] = {.lex_state = 272, .external_lex_state = 3}, + [1964] = {.lex_state = 272, .external_lex_state = 3}, + [1965] = {.lex_state = 272, .external_lex_state = 3}, + [1966] = {.lex_state = 269, .external_lex_state = 7}, + [1967] = {.lex_state = 272, .external_lex_state = 3}, + [1968] = {.lex_state = 269, .external_lex_state = 7}, + [1969] = {.lex_state = 269, .external_lex_state = 7}, + [1970] = {.lex_state = 272, .external_lex_state = 3}, + [1971] = {.lex_state = 272, .external_lex_state = 3}, + [1972] = {.lex_state = 269, .external_lex_state = 7}, + [1973] = {.lex_state = 279, .external_lex_state = 2}, + [1974] = {.lex_state = 279, .external_lex_state = 2}, + [1975] = {.lex_state = 279, .external_lex_state = 8}, + [1976] = {.lex_state = 272, .external_lex_state = 3}, + [1977] = {.lex_state = 269, .external_lex_state = 7}, + [1978] = {.lex_state = 279, .external_lex_state = 8}, + [1979] = {.lex_state = 279, .external_lex_state = 8}, + [1980] = {.lex_state = 272, .external_lex_state = 3}, + [1981] = {.lex_state = 272, .external_lex_state = 3}, + [1982] = {.lex_state = 269, .external_lex_state = 7}, + [1983] = {.lex_state = 279, .external_lex_state = 8}, + [1984] = {.lex_state = 272, .external_lex_state = 3}, + [1985] = {.lex_state = 272, .external_lex_state = 3}, + [1986] = {.lex_state = 272, .external_lex_state = 3}, + [1987] = {.lex_state = 272, .external_lex_state = 3}, + [1988] = {.lex_state = 272, .external_lex_state = 3}, + [1989] = {.lex_state = 272, .external_lex_state = 3}, + [1990] = {.lex_state = 272, .external_lex_state = 3}, + [1991] = {.lex_state = 272, .external_lex_state = 3}, + [1992] = {.lex_state = 272, .external_lex_state = 3}, + [1993] = {.lex_state = 278, .external_lex_state = 2}, + [1994] = {.lex_state = 269, .external_lex_state = 7}, + [1995] = {.lex_state = 269, .external_lex_state = 7}, + [1996] = {.lex_state = 272, .external_lex_state = 3}, + [1997] = {.lex_state = 272, .external_lex_state = 3}, + [1998] = {.lex_state = 269, .external_lex_state = 7}, + [1999] = {.lex_state = 269, .external_lex_state = 7}, + [2000] = {.lex_state = 272, .external_lex_state = 3}, + [2001] = {.lex_state = 272, .external_lex_state = 3}, + [2002] = {.lex_state = 272, .external_lex_state = 3}, + [2003] = {.lex_state = 272, .external_lex_state = 3}, + [2004] = {.lex_state = 279, .external_lex_state = 2}, + [2005] = {.lex_state = 269, .external_lex_state = 7}, + [2006] = {.lex_state = 278, .external_lex_state = 2}, + [2007] = {.lex_state = 272, .external_lex_state = 3}, + [2008] = {.lex_state = 272, .external_lex_state = 3}, + [2009] = {.lex_state = 269, .external_lex_state = 7}, + [2010] = {.lex_state = 272, .external_lex_state = 3}, + [2011] = {.lex_state = 272, .external_lex_state = 3}, + [2012] = {.lex_state = 269, .external_lex_state = 7}, + [2013] = {.lex_state = 269, .external_lex_state = 7}, + [2014] = {.lex_state = 269, .external_lex_state = 7}, + [2015] = {.lex_state = 269, .external_lex_state = 7}, + [2016] = {.lex_state = 269, .external_lex_state = 7}, + [2017] = {.lex_state = 269, .external_lex_state = 7}, + [2018] = {.lex_state = 269, .external_lex_state = 7}, + [2019] = {.lex_state = 269, .external_lex_state = 7}, + [2020] = {.lex_state = 272, .external_lex_state = 3}, + [2021] = {.lex_state = 269, .external_lex_state = 7}, + [2022] = {.lex_state = 272, .external_lex_state = 3}, + [2023] = {.lex_state = 272, .external_lex_state = 3}, + [2024] = {.lex_state = 272, .external_lex_state = 3}, + [2025] = {.lex_state = 269, .external_lex_state = 7}, + [2026] = {.lex_state = 269, .external_lex_state = 7}, + [2027] = {.lex_state = 269, .external_lex_state = 7}, + [2028] = {.lex_state = 269, .external_lex_state = 7}, + [2029] = {.lex_state = 272, .external_lex_state = 3}, + [2030] = {.lex_state = 269, .external_lex_state = 7}, + [2031] = {.lex_state = 269, .external_lex_state = 7}, + [2032] = {.lex_state = 269, .external_lex_state = 7}, + [2033] = {.lex_state = 269, .external_lex_state = 7}, + [2034] = {.lex_state = 269, .external_lex_state = 7}, + [2035] = {.lex_state = 269, .external_lex_state = 7}, + [2036] = {.lex_state = 269, .external_lex_state = 7}, + [2037] = {.lex_state = 269, .external_lex_state = 7}, + [2038] = {.lex_state = 269, .external_lex_state = 7}, + [2039] = {.lex_state = 269, .external_lex_state = 7}, + [2040] = {.lex_state = 269, .external_lex_state = 7}, + [2041] = {.lex_state = 269, .external_lex_state = 7}, + [2042] = {.lex_state = 269, .external_lex_state = 7}, + [2043] = {.lex_state = 269, .external_lex_state = 7}, + [2044] = {.lex_state = 269, .external_lex_state = 7}, + [2045] = {.lex_state = 269, .external_lex_state = 7}, + [2046] = {.lex_state = 272, .external_lex_state = 3}, + [2047] = {.lex_state = 269, .external_lex_state = 7}, + [2048] = {.lex_state = 269, .external_lex_state = 7}, + [2049] = {.lex_state = 269, .external_lex_state = 7}, + [2050] = {.lex_state = 269, .external_lex_state = 7}, + [2051] = {.lex_state = 269, .external_lex_state = 7}, + [2052] = {.lex_state = 269, .external_lex_state = 7}, + [2053] = {.lex_state = 269, .external_lex_state = 7}, + [2054] = {.lex_state = 269, .external_lex_state = 7}, + [2055] = {.lex_state = 269, .external_lex_state = 7}, + [2056] = {.lex_state = 269, .external_lex_state = 7}, + [2057] = {.lex_state = 269, .external_lex_state = 7}, + [2058] = {.lex_state = 269, .external_lex_state = 7}, + [2059] = {.lex_state = 269, .external_lex_state = 7}, + [2060] = {.lex_state = 269, .external_lex_state = 7}, + [2061] = {.lex_state = 269, .external_lex_state = 7}, + [2062] = {.lex_state = 269, .external_lex_state = 7}, + [2063] = {.lex_state = 279, .external_lex_state = 2}, + [2064] = {.lex_state = 279, .external_lex_state = 8}, + [2065] = {.lex_state = 279, .external_lex_state = 8}, + [2066] = {.lex_state = 279, .external_lex_state = 2}, + [2067] = {.lex_state = 281, .external_lex_state = 2}, + [2068] = {.lex_state = 279, .external_lex_state = 8}, + [2069] = {.lex_state = 279, .external_lex_state = 2}, + [2070] = {.lex_state = 281, .external_lex_state = 2}, + [2071] = {.lex_state = 279, .external_lex_state = 2}, + [2072] = {.lex_state = 279, .external_lex_state = 2}, + [2073] = {.lex_state = 279, .external_lex_state = 2}, + [2074] = {.lex_state = 279, .external_lex_state = 8}, + [2075] = {.lex_state = 279, .external_lex_state = 2}, + [2076] = {.lex_state = 279, .external_lex_state = 8}, + [2077] = {.lex_state = 278, .external_lex_state = 8}, + [2078] = {.lex_state = 279, .external_lex_state = 2}, + [2079] = {.lex_state = 279, .external_lex_state = 2}, + [2080] = {.lex_state = 279, .external_lex_state = 2}, + [2081] = {.lex_state = 279, .external_lex_state = 8}, + [2082] = {.lex_state = 278, .external_lex_state = 8}, + [2083] = {.lex_state = 279, .external_lex_state = 8}, + [2084] = {.lex_state = 279, .external_lex_state = 2}, + [2085] = {.lex_state = 279, .external_lex_state = 8}, + [2086] = {.lex_state = 279, .external_lex_state = 8}, + [2087] = {.lex_state = 278, .external_lex_state = 8}, + [2088] = {.lex_state = 279, .external_lex_state = 8}, + [2089] = {.lex_state = 279, .external_lex_state = 8}, + [2090] = {.lex_state = 279, .external_lex_state = 8}, + [2091] = {.lex_state = 279, .external_lex_state = 8}, + [2092] = {.lex_state = 279, .external_lex_state = 8}, + [2093] = {.lex_state = 279, .external_lex_state = 8}, + [2094] = {.lex_state = 279, .external_lex_state = 8}, + [2095] = {.lex_state = 281, .external_lex_state = 2}, + [2096] = {.lex_state = 279, .external_lex_state = 8}, + [2097] = {.lex_state = 279, .external_lex_state = 8}, + [2098] = {.lex_state = 279, .external_lex_state = 8}, + [2099] = {.lex_state = 279, .external_lex_state = 8}, + [2100] = {.lex_state = 279, .external_lex_state = 8}, + [2101] = {.lex_state = 279, .external_lex_state = 8}, + [2102] = {.lex_state = 119, .external_lex_state = 2}, + [2103] = {.lex_state = 119, .external_lex_state = 2}, + [2104] = {.lex_state = 119, .external_lex_state = 2}, + [2105] = {.lex_state = 119, .external_lex_state = 2}, + [2106] = {.lex_state = 119, .external_lex_state = 2}, + [2107] = {.lex_state = 119, .external_lex_state = 2}, + [2108] = {.lex_state = 119, .external_lex_state = 2}, + [2109] = {.lex_state = 119, .external_lex_state = 2}, + [2110] = {.lex_state = 119, .external_lex_state = 2}, + [2111] = {.lex_state = 119, .external_lex_state = 2}, + [2112] = {.lex_state = 119, .external_lex_state = 2}, + [2113] = {.lex_state = 119, .external_lex_state = 2}, + [2114] = {.lex_state = 102, .external_lex_state = 2}, + [2115] = {.lex_state = 102, .external_lex_state = 2}, + [2116] = {.lex_state = 119, .external_lex_state = 2}, + [2117] = {.lex_state = 279, .external_lex_state = 2}, + [2118] = {.lex_state = 281, .external_lex_state = 2}, + [2119] = {.lex_state = 119, .external_lex_state = 2}, + [2120] = {.lex_state = 119, .external_lex_state = 2}, + [2121] = {.lex_state = 119, .external_lex_state = 2}, + [2122] = {.lex_state = 281, .external_lex_state = 2}, + [2123] = {.lex_state = 119, .external_lex_state = 2}, + [2124] = {.lex_state = 279, .external_lex_state = 8}, + [2125] = {.lex_state = 281, .external_lex_state = 2}, + [2126] = {.lex_state = 113, .external_lex_state = 2}, + [2127] = {.lex_state = 281, .external_lex_state = 2}, + [2128] = {.lex_state = 102, .external_lex_state = 2}, + [2129] = {.lex_state = 281, .external_lex_state = 2}, + [2130] = {.lex_state = 281, .external_lex_state = 2}, + [2131] = {.lex_state = 281, .external_lex_state = 2}, + [2132] = {.lex_state = 102, .external_lex_state = 2}, + [2133] = {.lex_state = 281, .external_lex_state = 2}, + [2134] = {.lex_state = 281, .external_lex_state = 2}, + [2135] = {.lex_state = 102, .external_lex_state = 2}, + [2136] = {.lex_state = 113, .external_lex_state = 2}, + [2137] = {.lex_state = 278, .external_lex_state = 2}, + [2138] = {.lex_state = 281, .external_lex_state = 2}, + [2139] = {.lex_state = 281, .external_lex_state = 2}, + [2140] = {.lex_state = 113, .external_lex_state = 2}, + [2141] = {.lex_state = 102, .external_lex_state = 2}, + [2142] = {.lex_state = 278, .external_lex_state = 2}, + [2143] = {.lex_state = 278, .external_lex_state = 2}, + [2144] = {.lex_state = 278, .external_lex_state = 2}, + [2145] = {.lex_state = 278, .external_lex_state = 2}, + [2146] = {.lex_state = 278, .external_lex_state = 2}, + [2147] = {.lex_state = 278, .external_lex_state = 2}, + [2148] = {.lex_state = 278, .external_lex_state = 2}, + [2149] = {.lex_state = 278, .external_lex_state = 2}, + [2150] = {.lex_state = 113, .external_lex_state = 2}, + [2151] = {.lex_state = 278, .external_lex_state = 2}, + [2152] = {.lex_state = 281, .external_lex_state = 2}, + [2153] = {.lex_state = 281, .external_lex_state = 2}, + [2154] = {.lex_state = 281, .external_lex_state = 2}, + [2155] = {.lex_state = 113, .external_lex_state = 2}, + [2156] = {.lex_state = 278, .external_lex_state = 8}, + [2157] = {.lex_state = 278, .external_lex_state = 8}, + [2158] = {.lex_state = 278, .external_lex_state = 8}, + [2159] = {.lex_state = 278, .external_lex_state = 8}, + [2160] = {.lex_state = 278, .external_lex_state = 2}, + [2161] = {.lex_state = 278, .external_lex_state = 2}, + [2162] = {.lex_state = 278, .external_lex_state = 2}, + [2163] = {.lex_state = 278, .external_lex_state = 8}, + [2164] = {.lex_state = 278, .external_lex_state = 2}, + [2165] = {.lex_state = 113, .external_lex_state = 2}, + [2166] = {.lex_state = 278, .external_lex_state = 2}, + [2167] = {.lex_state = 278, .external_lex_state = 2}, + [2168] = {.lex_state = 278, .external_lex_state = 2}, + [2169] = {.lex_state = 278, .external_lex_state = 8}, + [2170] = {.lex_state = 278, .external_lex_state = 2}, + [2171] = {.lex_state = 278, .external_lex_state = 8}, + [2172] = {.lex_state = 278, .external_lex_state = 2}, + [2173] = {.lex_state = 278, .external_lex_state = 2}, + [2174] = {.lex_state = 278, .external_lex_state = 2}, + [2175] = {.lex_state = 278, .external_lex_state = 2}, + [2176] = {.lex_state = 278, .external_lex_state = 2}, + [2177] = {.lex_state = 278, .external_lex_state = 2}, + [2178] = {.lex_state = 278, .external_lex_state = 8}, + [2179] = {.lex_state = 281, .external_lex_state = 2}, + [2180] = {.lex_state = 278, .external_lex_state = 8}, + [2181] = {.lex_state = 278, .external_lex_state = 2}, + [2182] = {.lex_state = 278, .external_lex_state = 2}, + [2183] = {.lex_state = 278, .external_lex_state = 8}, + [2184] = {.lex_state = 278, .external_lex_state = 8}, + [2185] = {.lex_state = 278, .external_lex_state = 8}, + [2186] = {.lex_state = 278, .external_lex_state = 8}, + [2187] = {.lex_state = 278, .external_lex_state = 8}, + [2188] = {.lex_state = 278, .external_lex_state = 8}, + [2189] = {.lex_state = 278, .external_lex_state = 8}, + [2190] = {.lex_state = 278, .external_lex_state = 8}, + [2191] = {.lex_state = 278, .external_lex_state = 8}, + [2192] = {.lex_state = 278, .external_lex_state = 8}, + [2193] = {.lex_state = 278, .external_lex_state = 8}, + [2194] = {.lex_state = 278, .external_lex_state = 8}, + [2195] = {.lex_state = 278, .external_lex_state = 8}, + [2196] = {.lex_state = 278, .external_lex_state = 8}, + [2197] = {.lex_state = 278, .external_lex_state = 8}, + [2198] = {.lex_state = 278, .external_lex_state = 8}, + [2199] = {.lex_state = 278, .external_lex_state = 8}, + [2200] = {.lex_state = 282, .external_lex_state = 2}, + [2201] = {.lex_state = 282, .external_lex_state = 2}, + [2202] = {.lex_state = 282, .external_lex_state = 2}, + [2203] = {.lex_state = 282, .external_lex_state = 2}, + [2204] = {.lex_state = 278, .external_lex_state = 2}, + [2205] = {.lex_state = 278, .external_lex_state = 2}, + [2206] = {.lex_state = 278, .external_lex_state = 2}, + [2207] = {.lex_state = 278, .external_lex_state = 2}, + [2208] = {.lex_state = 278, .external_lex_state = 2}, + [2209] = {.lex_state = 282, .external_lex_state = 2}, + [2210] = {.lex_state = 282, .external_lex_state = 2}, + [2211] = {.lex_state = 282, .external_lex_state = 2}, + [2212] = {.lex_state = 282, .external_lex_state = 2}, + [2213] = {.lex_state = 278, .external_lex_state = 8}, + [2214] = {.lex_state = 282, .external_lex_state = 2}, + [2215] = {.lex_state = 119, .external_lex_state = 2}, + [2216] = {.lex_state = 282, .external_lex_state = 2}, + [2217] = {.lex_state = 282, .external_lex_state = 2}, + [2218] = {.lex_state = 282, .external_lex_state = 2}, + [2219] = {.lex_state = 282, .external_lex_state = 2}, + [2220] = {.lex_state = 282, .external_lex_state = 2}, + [2221] = {.lex_state = 282, .external_lex_state = 2}, + [2222] = {.lex_state = 282, .external_lex_state = 2}, + [2223] = {.lex_state = 282, .external_lex_state = 2}, + [2224] = {.lex_state = 282, .external_lex_state = 2}, + [2225] = {.lex_state = 282, .external_lex_state = 2}, + [2226] = {.lex_state = 278, .external_lex_state = 2}, + [2227] = {.lex_state = 282, .external_lex_state = 2}, + [2228] = {.lex_state = 278, .external_lex_state = 8}, + [2229] = {.lex_state = 282, .external_lex_state = 2}, + [2230] = {.lex_state = 278, .external_lex_state = 2}, + [2231] = {.lex_state = 282, .external_lex_state = 2}, + [2232] = {.lex_state = 282, .external_lex_state = 2}, + [2233] = {.lex_state = 282, .external_lex_state = 2}, + [2234] = {.lex_state = 282, .external_lex_state = 2}, + [2235] = {.lex_state = 282, .external_lex_state = 2}, + [2236] = {.lex_state = 282, .external_lex_state = 2}, + [2237] = {.lex_state = 282, .external_lex_state = 2}, + [2238] = {.lex_state = 282, .external_lex_state = 2}, + [2239] = {.lex_state = 282, .external_lex_state = 2}, + [2240] = {.lex_state = 282, .external_lex_state = 2}, + [2241] = {.lex_state = 282, .external_lex_state = 2}, + [2242] = {.lex_state = 282, .external_lex_state = 2}, + [2243] = {.lex_state = 282, .external_lex_state = 2}, + [2244] = {.lex_state = 282, .external_lex_state = 2}, + [2245] = {.lex_state = 282, .external_lex_state = 2}, + [2246] = {.lex_state = 282, .external_lex_state = 2}, + [2247] = {.lex_state = 282, .external_lex_state = 2}, + [2248] = {.lex_state = 282, .external_lex_state = 2}, + [2249] = {.lex_state = 282, .external_lex_state = 2}, + [2250] = {.lex_state = 282, .external_lex_state = 2}, + [2251] = {.lex_state = 282, .external_lex_state = 2}, + [2252] = {.lex_state = 282, .external_lex_state = 2}, + [2253] = {.lex_state = 282, .external_lex_state = 2}, + [2254] = {.lex_state = 278, .external_lex_state = 8}, + [2255] = {.lex_state = 282, .external_lex_state = 2}, + [2256] = {.lex_state = 282, .external_lex_state = 2}, + [2257] = {.lex_state = 282, .external_lex_state = 2}, + [2258] = {.lex_state = 282, .external_lex_state = 2}, + [2259] = {.lex_state = 282, .external_lex_state = 2}, + [2260] = {.lex_state = 278, .external_lex_state = 8}, + [2261] = {.lex_state = 282, .external_lex_state = 2}, + [2262] = {.lex_state = 282, .external_lex_state = 2}, + [2263] = {.lex_state = 282, .external_lex_state = 2}, + [2264] = {.lex_state = 278, .external_lex_state = 8}, + [2265] = {.lex_state = 282, .external_lex_state = 2}, + [2266] = {.lex_state = 282, .external_lex_state = 2}, + [2267] = {.lex_state = 278, .external_lex_state = 8}, + [2268] = {.lex_state = 282, .external_lex_state = 2}, + [2269] = {.lex_state = 282, .external_lex_state = 2}, + [2270] = {.lex_state = 282, .external_lex_state = 2}, + [2271] = {.lex_state = 278, .external_lex_state = 8}, + [2272] = {.lex_state = 282, .external_lex_state = 2}, + [2273] = {.lex_state = 282, .external_lex_state = 2}, + [2274] = {.lex_state = 282, .external_lex_state = 2}, + [2275] = {.lex_state = 282, .external_lex_state = 2}, + [2276] = {.lex_state = 282, .external_lex_state = 2}, + [2277] = {.lex_state = 282, .external_lex_state = 2}, + [2278] = {.lex_state = 282, .external_lex_state = 2}, + [2279] = {.lex_state = 282, .external_lex_state = 2}, + [2280] = {.lex_state = 282, .external_lex_state = 2}, + [2281] = {.lex_state = 282, .external_lex_state = 2}, + [2282] = {.lex_state = 282, .external_lex_state = 2}, + [2283] = {.lex_state = 282, .external_lex_state = 2}, + [2284] = {.lex_state = 278, .external_lex_state = 2}, + [2285] = {.lex_state = 280, .external_lex_state = 2}, + [2286] = {.lex_state = 282, .external_lex_state = 2}, + [2287] = {.lex_state = 282, .external_lex_state = 2}, + [2288] = {.lex_state = 282, .external_lex_state = 2}, + [2289] = {.lex_state = 282, .external_lex_state = 2}, + [2290] = {.lex_state = 278, .external_lex_state = 2}, + [2291] = {.lex_state = 282, .external_lex_state = 2}, + [2292] = {.lex_state = 282, .external_lex_state = 2}, + [2293] = {.lex_state = 282, .external_lex_state = 2}, + [2294] = {.lex_state = 282, .external_lex_state = 2}, + [2295] = {.lex_state = 282, .external_lex_state = 2}, + [2296] = {.lex_state = 282, .external_lex_state = 2}, + [2297] = {.lex_state = 282, .external_lex_state = 2}, + [2298] = {.lex_state = 282, .external_lex_state = 2}, + [2299] = {.lex_state = 282, .external_lex_state = 2}, + [2300] = {.lex_state = 282, .external_lex_state = 2}, + [2301] = {.lex_state = 282, .external_lex_state = 2}, + [2302] = {.lex_state = 282, .external_lex_state = 2}, + [2303] = {.lex_state = 282, .external_lex_state = 2}, + [2304] = {.lex_state = 282, .external_lex_state = 2}, + [2305] = {.lex_state = 278, .external_lex_state = 2}, + [2306] = {.lex_state = 280, .external_lex_state = 2}, + [2307] = {.lex_state = 280, .external_lex_state = 2}, + [2308] = {.lex_state = 282, .external_lex_state = 2}, + [2309] = {.lex_state = 282, .external_lex_state = 2}, + [2310] = {.lex_state = 278, .external_lex_state = 2}, + [2311] = {.lex_state = 282, .external_lex_state = 2}, + [2312] = {.lex_state = 282, .external_lex_state = 2}, + [2313] = {.lex_state = 282, .external_lex_state = 2}, + [2314] = {.lex_state = 282, .external_lex_state = 2}, + [2315] = {.lex_state = 282, .external_lex_state = 2}, + [2316] = {.lex_state = 282, .external_lex_state = 2}, + [2317] = {.lex_state = 282, .external_lex_state = 2}, + [2318] = {.lex_state = 282, .external_lex_state = 2}, + [2319] = {.lex_state = 282, .external_lex_state = 2}, + [2320] = {.lex_state = 282, .external_lex_state = 2}, + [2321] = {.lex_state = 282, .external_lex_state = 2}, + [2322] = {.lex_state = 282, .external_lex_state = 2}, + [2323] = {.lex_state = 280, .external_lex_state = 2}, + [2324] = {.lex_state = 278, .external_lex_state = 2}, + [2325] = {.lex_state = 278, .external_lex_state = 2}, + [2326] = {.lex_state = 278, .external_lex_state = 2}, + [2327] = {.lex_state = 282, .external_lex_state = 2}, + [2328] = {.lex_state = 282, .external_lex_state = 2}, + [2329] = {.lex_state = 282, .external_lex_state = 2}, + [2330] = {.lex_state = 282, .external_lex_state = 2}, + [2331] = {.lex_state = 282, .external_lex_state = 2}, + [2332] = {.lex_state = 282, .external_lex_state = 2}, + [2333] = {.lex_state = 280, .external_lex_state = 2}, + [2334] = {.lex_state = 282, .external_lex_state = 2}, + [2335] = {.lex_state = 282, .external_lex_state = 2}, + [2336] = {.lex_state = 282, .external_lex_state = 2}, + [2337] = {.lex_state = 282, .external_lex_state = 2}, + [2338] = {.lex_state = 282, .external_lex_state = 2}, + [2339] = {.lex_state = 282, .external_lex_state = 2}, + [2340] = {.lex_state = 278, .external_lex_state = 8}, + [2341] = {.lex_state = 282, .external_lex_state = 2}, + [2342] = {.lex_state = 278, .external_lex_state = 2}, + [2343] = {.lex_state = 282, .external_lex_state = 2}, + [2344] = {.lex_state = 282, .external_lex_state = 2}, + [2345] = {.lex_state = 282, .external_lex_state = 2}, + [2346] = {.lex_state = 282, .external_lex_state = 2}, + [2347] = {.lex_state = 282, .external_lex_state = 2}, + [2348] = {.lex_state = 282, .external_lex_state = 2}, + [2349] = {.lex_state = 282, .external_lex_state = 2}, + [2350] = {.lex_state = 282, .external_lex_state = 2}, + [2351] = {.lex_state = 282, .external_lex_state = 2}, + [2352] = {.lex_state = 282, .external_lex_state = 2}, + [2353] = {.lex_state = 282, .external_lex_state = 2}, + [2354] = {.lex_state = 282, .external_lex_state = 2}, + [2355] = {.lex_state = 282, .external_lex_state = 2}, + [2356] = {.lex_state = 282, .external_lex_state = 2}, + [2357] = {.lex_state = 282, .external_lex_state = 2}, + [2358] = {.lex_state = 278, .external_lex_state = 2}, + [2359] = {.lex_state = 278, .external_lex_state = 8}, + [2360] = {.lex_state = 282, .external_lex_state = 2}, + [2361] = {.lex_state = 282, .external_lex_state = 2}, + [2362] = {.lex_state = 282, .external_lex_state = 2}, + [2363] = {.lex_state = 280, .external_lex_state = 8}, + [2364] = {.lex_state = 282, .external_lex_state = 2}, + [2365] = {.lex_state = 282, .external_lex_state = 2}, + [2366] = {.lex_state = 278, .external_lex_state = 2}, + [2367] = {.lex_state = 282, .external_lex_state = 2}, + [2368] = {.lex_state = 282, .external_lex_state = 2}, + [2369] = {.lex_state = 282, .external_lex_state = 2}, + [2370] = {.lex_state = 282, .external_lex_state = 2}, + [2371] = {.lex_state = 278, .external_lex_state = 2}, + [2372] = {.lex_state = 282, .external_lex_state = 2}, + [2373] = {.lex_state = 282, .external_lex_state = 2}, + [2374] = {.lex_state = 282, .external_lex_state = 2}, + [2375] = {.lex_state = 282, .external_lex_state = 2}, + [2376] = {.lex_state = 280, .external_lex_state = 2}, + [2377] = {.lex_state = 282, .external_lex_state = 2}, + [2378] = {.lex_state = 282, .external_lex_state = 2}, + [2379] = {.lex_state = 278, .external_lex_state = 2}, + [2380] = {.lex_state = 282, .external_lex_state = 2}, + [2381] = {.lex_state = 282, .external_lex_state = 2}, + [2382] = {.lex_state = 278, .external_lex_state = 2}, + [2383] = {.lex_state = 282, .external_lex_state = 2}, + [2384] = {.lex_state = 278, .external_lex_state = 2}, + [2385] = {.lex_state = 282, .external_lex_state = 2}, + [2386] = {.lex_state = 282, .external_lex_state = 2}, + [2387] = {.lex_state = 282, .external_lex_state = 2}, + [2388] = {.lex_state = 282, .external_lex_state = 2}, + [2389] = {.lex_state = 282, .external_lex_state = 2}, + [2390] = {.lex_state = 282, .external_lex_state = 2}, + [2391] = {.lex_state = 282, .external_lex_state = 2}, + [2392] = {.lex_state = 282, .external_lex_state = 2}, + [2393] = {.lex_state = 282, .external_lex_state = 2}, + [2394] = {.lex_state = 282, .external_lex_state = 2}, + [2395] = {.lex_state = 278, .external_lex_state = 2}, + [2396] = {.lex_state = 282, .external_lex_state = 2}, + [2397] = {.lex_state = 282, .external_lex_state = 2}, + [2398] = {.lex_state = 282, .external_lex_state = 2}, + [2399] = {.lex_state = 282, .external_lex_state = 2}, + [2400] = {.lex_state = 282, .external_lex_state = 2}, + [2401] = {.lex_state = 278, .external_lex_state = 2}, + [2402] = {.lex_state = 278, .external_lex_state = 2}, + [2403] = {.lex_state = 282, .external_lex_state = 2}, + [2404] = {.lex_state = 282, .external_lex_state = 2}, + [2405] = {.lex_state = 278, .external_lex_state = 2}, + [2406] = {.lex_state = 278, .external_lex_state = 8}, + [2407] = {.lex_state = 282, .external_lex_state = 2}, + [2408] = {.lex_state = 282, .external_lex_state = 2}, + [2409] = {.lex_state = 282, .external_lex_state = 2}, + [2410] = {.lex_state = 282, .external_lex_state = 2}, + [2411] = {.lex_state = 282, .external_lex_state = 2}, + [2412] = {.lex_state = 282, .external_lex_state = 2}, + [2413] = {.lex_state = 282, .external_lex_state = 2}, + [2414] = {.lex_state = 278, .external_lex_state = 2}, + [2415] = {.lex_state = 282, .external_lex_state = 2}, + [2416] = {.lex_state = 282, .external_lex_state = 2}, + [2417] = {.lex_state = 282, .external_lex_state = 2}, + [2418] = {.lex_state = 282, .external_lex_state = 2}, + [2419] = {.lex_state = 278, .external_lex_state = 2}, + [2420] = {.lex_state = 278, .external_lex_state = 2}, + [2421] = {.lex_state = 282, .external_lex_state = 2}, + [2422] = {.lex_state = 278, .external_lex_state = 2}, + [2423] = {.lex_state = 282, .external_lex_state = 2}, + [2424] = {.lex_state = 282, .external_lex_state = 2}, + [2425] = {.lex_state = 282, .external_lex_state = 2}, + [2426] = {.lex_state = 282, .external_lex_state = 2}, + [2427] = {.lex_state = 282, .external_lex_state = 2}, + [2428] = {.lex_state = 282, .external_lex_state = 2}, + [2429] = {.lex_state = 282, .external_lex_state = 2}, + [2430] = {.lex_state = 282, .external_lex_state = 2}, + [2431] = {.lex_state = 282, .external_lex_state = 2}, + [2432] = {.lex_state = 282, .external_lex_state = 2}, + [2433] = {.lex_state = 282, .external_lex_state = 2}, + [2434] = {.lex_state = 282, .external_lex_state = 2}, + [2435] = {.lex_state = 282, .external_lex_state = 2}, + [2436] = {.lex_state = 278, .external_lex_state = 2}, + [2437] = {.lex_state = 278, .external_lex_state = 2}, + [2438] = {.lex_state = 282, .external_lex_state = 2}, + [2439] = {.lex_state = 282, .external_lex_state = 2}, + [2440] = {.lex_state = 282, .external_lex_state = 2}, + [2441] = {.lex_state = 282, .external_lex_state = 2}, + [2442] = {.lex_state = 282, .external_lex_state = 2}, + [2443] = {.lex_state = 282, .external_lex_state = 2}, + [2444] = {.lex_state = 278, .external_lex_state = 8}, + [2445] = {.lex_state = 278, .external_lex_state = 8}, + [2446] = {.lex_state = 282, .external_lex_state = 2}, + [2447] = {.lex_state = 282, .external_lex_state = 2}, + [2448] = {.lex_state = 282, .external_lex_state = 2}, + [2449] = {.lex_state = 282, .external_lex_state = 2}, + [2450] = {.lex_state = 282, .external_lex_state = 2}, + [2451] = {.lex_state = 278, .external_lex_state = 8}, + [2452] = {.lex_state = 280, .external_lex_state = 8}, + [2453] = {.lex_state = 278, .external_lex_state = 2}, + [2454] = {.lex_state = 282, .external_lex_state = 2}, + [2455] = {.lex_state = 278, .external_lex_state = 2}, + [2456] = {.lex_state = 282, .external_lex_state = 2}, + [2457] = {.lex_state = 282, .external_lex_state = 2}, + [2458] = {.lex_state = 280, .external_lex_state = 8}, + [2459] = {.lex_state = 282, .external_lex_state = 2}, + [2460] = {.lex_state = 279, .external_lex_state = 3}, + [2461] = {.lex_state = 278, .external_lex_state = 2}, + [2462] = {.lex_state = 278, .external_lex_state = 2}, + [2463] = {.lex_state = 278, .external_lex_state = 8}, + [2464] = {.lex_state = 278, .external_lex_state = 2}, + [2465] = {.lex_state = 278, .external_lex_state = 8}, + [2466] = {.lex_state = 280, .external_lex_state = 8}, + [2467] = {.lex_state = 278, .external_lex_state = 8}, + [2468] = {.lex_state = 278, .external_lex_state = 8}, + [2469] = {.lex_state = 278, .external_lex_state = 8}, + [2470] = {.lex_state = 278, .external_lex_state = 2}, + [2471] = {.lex_state = 278, .external_lex_state = 2}, + [2472] = {.lex_state = 278, .external_lex_state = 2}, + [2473] = {.lex_state = 278, .external_lex_state = 8}, + [2474] = {.lex_state = 279, .external_lex_state = 3}, + [2475] = {.lex_state = 278, .external_lex_state = 2}, + [2476] = {.lex_state = 278, .external_lex_state = 8}, + [2477] = {.lex_state = 278, .external_lex_state = 8}, + [2478] = {.lex_state = 278, .external_lex_state = 8}, + [2479] = {.lex_state = 278, .external_lex_state = 8}, + [2480] = {.lex_state = 278, .external_lex_state = 8}, + [2481] = {.lex_state = 279, .external_lex_state = 3}, + [2482] = {.lex_state = 278, .external_lex_state = 8}, + [2483] = {.lex_state = 279, .external_lex_state = 3}, + [2484] = {.lex_state = 278, .external_lex_state = 2}, + [2485] = {.lex_state = 278, .external_lex_state = 2}, + [2486] = {.lex_state = 278, .external_lex_state = 2}, + [2487] = {.lex_state = 278, .external_lex_state = 2}, + [2488] = {.lex_state = 278, .external_lex_state = 2}, + [2489] = {.lex_state = 85, .external_lex_state = 2}, + [2490] = {.lex_state = 278, .external_lex_state = 2}, + [2491] = {.lex_state = 278, .external_lex_state = 2}, + [2492] = {.lex_state = 278, .external_lex_state = 8}, + [2493] = {.lex_state = 278, .external_lex_state = 2}, + [2494] = {.lex_state = 278, .external_lex_state = 8}, + [2495] = {.lex_state = 278, .external_lex_state = 2}, + [2496] = {.lex_state = 278, .external_lex_state = 2}, + [2497] = {.lex_state = 85, .external_lex_state = 2}, + [2498] = {.lex_state = 85, .external_lex_state = 2}, + [2499] = {.lex_state = 278, .external_lex_state = 8}, + [2500] = {.lex_state = 278, .external_lex_state = 8}, + [2501] = {.lex_state = 85, .external_lex_state = 2}, + [2502] = {.lex_state = 278, .external_lex_state = 8}, + [2503] = {.lex_state = 278, .external_lex_state = 8}, + [2504] = {.lex_state = 278, .external_lex_state = 2}, + [2505] = {.lex_state = 278, .external_lex_state = 8}, + [2506] = {.lex_state = 278, .external_lex_state = 2}, + [2507] = {.lex_state = 278, .external_lex_state = 2}, + [2508] = {.lex_state = 278, .external_lex_state = 2}, + [2509] = {.lex_state = 278, .external_lex_state = 8}, + [2510] = {.lex_state = 278, .external_lex_state = 8}, + [2511] = {.lex_state = 278, .external_lex_state = 8}, + [2512] = {.lex_state = 278, .external_lex_state = 8}, + [2513] = {.lex_state = 278, .external_lex_state = 8}, + [2514] = {.lex_state = 85, .external_lex_state = 2}, + [2515] = {.lex_state = 278, .external_lex_state = 8}, + [2516] = {.lex_state = 278, .external_lex_state = 8}, + [2517] = {.lex_state = 278, .external_lex_state = 8}, + [2518] = {.lex_state = 85, .external_lex_state = 2}, + [2519] = {.lex_state = 278, .external_lex_state = 8}, + [2520] = {.lex_state = 278, .external_lex_state = 8}, + [2521] = {.lex_state = 278, .external_lex_state = 8}, + [2522] = {.lex_state = 278, .external_lex_state = 8}, + [2523] = {.lex_state = 279, .external_lex_state = 3}, + [2524] = {.lex_state = 278, .external_lex_state = 8}, + [2525] = {.lex_state = 279, .external_lex_state = 3}, + [2526] = {.lex_state = 278, .external_lex_state = 8}, + [2527] = {.lex_state = 278, .external_lex_state = 8}, + [2528] = {.lex_state = 278, .external_lex_state = 8}, + [2529] = {.lex_state = 278, .external_lex_state = 8}, + [2530] = {.lex_state = 85, .external_lex_state = 2}, + [2531] = {.lex_state = 279, .external_lex_state = 3}, + [2532] = {.lex_state = 278, .external_lex_state = 8}, + [2533] = {.lex_state = 278, .external_lex_state = 8}, + [2534] = {.lex_state = 279, .external_lex_state = 3}, + [2535] = {.lex_state = 279, .external_lex_state = 3}, + [2536] = {.lex_state = 279, .external_lex_state = 3}, + [2537] = {.lex_state = 85, .external_lex_state = 2}, + [2538] = {.lex_state = 85, .external_lex_state = 2}, + [2539] = {.lex_state = 279, .external_lex_state = 2}, + [2540] = {.lex_state = 279, .external_lex_state = 2}, + [2541] = {.lex_state = 85, .external_lex_state = 2}, + [2542] = {.lex_state = 279, .external_lex_state = 3}, + [2543] = {.lex_state = 85, .external_lex_state = 2}, + [2544] = {.lex_state = 279, .external_lex_state = 3}, + [2545] = {.lex_state = 85, .external_lex_state = 2}, + [2546] = {.lex_state = 279, .external_lex_state = 2}, + [2547] = {.lex_state = 85, .external_lex_state = 2}, + [2548] = {.lex_state = 279, .external_lex_state = 3}, + [2549] = {.lex_state = 279, .external_lex_state = 2}, + [2550] = {.lex_state = 279, .external_lex_state = 3}, + [2551] = {.lex_state = 279, .external_lex_state = 3}, + [2552] = {.lex_state = 279, .external_lex_state = 3}, + [2553] = {.lex_state = 85, .external_lex_state = 2}, + [2554] = {.lex_state = 85, .external_lex_state = 2}, + [2555] = {.lex_state = 279, .external_lex_state = 3}, + [2556] = {.lex_state = 85, .external_lex_state = 2}, + [2557] = {.lex_state = 85, .external_lex_state = 2}, + [2558] = {.lex_state = 85, .external_lex_state = 2}, + [2559] = {.lex_state = 279, .external_lex_state = 3}, + [2560] = {.lex_state = 85, .external_lex_state = 2}, + [2561] = {.lex_state = 279, .external_lex_state = 3}, + [2562] = {.lex_state = 279, .external_lex_state = 2}, + [2563] = {.lex_state = 279, .external_lex_state = 3}, + [2564] = {.lex_state = 279, .external_lex_state = 3}, + [2565] = {.lex_state = 85, .external_lex_state = 2}, + [2566] = {.lex_state = 279, .external_lex_state = 3}, + [2567] = {.lex_state = 279, .external_lex_state = 2}, + [2568] = {.lex_state = 279, .external_lex_state = 3}, + [2569] = {.lex_state = 85, .external_lex_state = 2}, + [2570] = {.lex_state = 85, .external_lex_state = 2}, + [2571] = {.lex_state = 85, .external_lex_state = 2}, + [2572] = {.lex_state = 279, .external_lex_state = 3}, + [2573] = {.lex_state = 279, .external_lex_state = 2}, + [2574] = {.lex_state = 85, .external_lex_state = 2}, + [2575] = {.lex_state = 279, .external_lex_state = 2}, + [2576] = {.lex_state = 279, .external_lex_state = 2}, + [2577] = {.lex_state = 279, .external_lex_state = 2}, + [2578] = {.lex_state = 279, .external_lex_state = 2}, + [2579] = {.lex_state = 279, .external_lex_state = 2}, + [2580] = {.lex_state = 279, .external_lex_state = 2}, + [2581] = {.lex_state = 279, .external_lex_state = 2}, + [2582] = {.lex_state = 279, .external_lex_state = 2}, + [2583] = {.lex_state = 279, .external_lex_state = 2}, + [2584] = {.lex_state = 279, .external_lex_state = 2}, + [2585] = {.lex_state = 279, .external_lex_state = 2}, + [2586] = {.lex_state = 279, .external_lex_state = 2}, + [2587] = {.lex_state = 279, .external_lex_state = 2}, + [2588] = {.lex_state = 279, .external_lex_state = 2}, + [2589] = {.lex_state = 279, .external_lex_state = 2}, + [2590] = {.lex_state = 279, .external_lex_state = 2}, + [2591] = {.lex_state = 279, .external_lex_state = 2}, + [2592] = {.lex_state = 278, .external_lex_state = 2}, + [2593] = {.lex_state = 278, .external_lex_state = 2}, + [2594] = {.lex_state = 278, .external_lex_state = 2}, + [2595] = {.lex_state = 278, .external_lex_state = 2}, + [2596] = {.lex_state = 278, .external_lex_state = 2}, + [2597] = {.lex_state = 278, .external_lex_state = 2}, + [2598] = {.lex_state = 278, .external_lex_state = 2}, + [2599] = {.lex_state = 278, .external_lex_state = 2}, + [2600] = {.lex_state = 90, .external_lex_state = 2}, + [2601] = {.lex_state = 90, .external_lex_state = 2}, + [2602] = {.lex_state = 278, .external_lex_state = 2}, + [2603] = {.lex_state = 278, .external_lex_state = 2}, + [2604] = {.lex_state = 278, .external_lex_state = 2}, + [2605] = {.lex_state = 278, .external_lex_state = 2}, + [2606] = {.lex_state = 278, .external_lex_state = 2}, + [2607] = {.lex_state = 278, .external_lex_state = 2}, + [2608] = {.lex_state = 278, .external_lex_state = 2}, + [2609] = {.lex_state = 282, .external_lex_state = 2}, + [2610] = {.lex_state = 282, .external_lex_state = 2}, + [2611] = {.lex_state = 282, .external_lex_state = 2}, + [2612] = {.lex_state = 120, .external_lex_state = 2}, + [2613] = {.lex_state = 120, .external_lex_state = 2}, + [2614] = {.lex_state = 282, .external_lex_state = 2}, + [2615] = {.lex_state = 282, .external_lex_state = 2}, + [2616] = {.lex_state = 282, .external_lex_state = 2}, + [2617] = {.lex_state = 282, .external_lex_state = 2}, + [2618] = {.lex_state = 282, .external_lex_state = 2}, + [2619] = {.lex_state = 282, .external_lex_state = 2}, + [2620] = {.lex_state = 282, .external_lex_state = 2}, + [2621] = {.lex_state = 282, .external_lex_state = 2}, + [2622] = {.lex_state = 282, .external_lex_state = 2}, + [2623] = {.lex_state = 282, .external_lex_state = 2}, + [2624] = {.lex_state = 282, .external_lex_state = 2}, + [2625] = {.lex_state = 282, .external_lex_state = 2}, + [2626] = {.lex_state = 282, .external_lex_state = 2}, + [2627] = {.lex_state = 282, .external_lex_state = 2}, + [2628] = {.lex_state = 282, .external_lex_state = 2}, + [2629] = {.lex_state = 97, .external_lex_state = 2}, + [2630] = {.lex_state = 105, .external_lex_state = 2}, + [2631] = {.lex_state = 115, .external_lex_state = 2}, + [2632] = {.lex_state = 106, .external_lex_state = 2}, + [2633] = {.lex_state = 98, .external_lex_state = 2}, + [2634] = {.lex_state = 282, .external_lex_state = 2}, + [2635] = {.lex_state = 99, .external_lex_state = 2}, + [2636] = {.lex_state = 96, .external_lex_state = 2}, + [2637] = {.lex_state = 101, .external_lex_state = 2}, + [2638] = {.lex_state = 99, .external_lex_state = 2}, + [2639] = {.lex_state = 101, .external_lex_state = 2}, + [2640] = {.lex_state = 96, .external_lex_state = 2}, + [2641] = {.lex_state = 101, .external_lex_state = 2}, + [2642] = {.lex_state = 96, .external_lex_state = 2}, + [2643] = {.lex_state = 281, .external_lex_state = 2}, + [2644] = {.lex_state = 96, .external_lex_state = 2}, + [2645] = {.lex_state = 101, .external_lex_state = 2}, + [2646] = {.lex_state = 281, .external_lex_state = 2}, + [2647] = {.lex_state = 101, .external_lex_state = 2}, + [2648] = {.lex_state = 96, .external_lex_state = 2}, + [2649] = {.lex_state = 96, .external_lex_state = 2}, + [2650] = {.lex_state = 101, .external_lex_state = 2}, + [2651] = {.lex_state = 99, .external_lex_state = 2}, + [2652] = {.lex_state = 99, .external_lex_state = 2}, + [2653] = {.lex_state = 281, .external_lex_state = 2}, + [2654] = {.lex_state = 281, .external_lex_state = 2}, + [2655] = {.lex_state = 121, .external_lex_state = 2}, + [2656] = {.lex_state = 96, .external_lex_state = 2}, + [2657] = {.lex_state = 96, .external_lex_state = 2}, + [2658] = {.lex_state = 101, .external_lex_state = 2}, + [2659] = {.lex_state = 101, .external_lex_state = 2}, + [2660] = {.lex_state = 101, .external_lex_state = 2}, + [2661] = {.lex_state = 96, .external_lex_state = 2}, + [2662] = {.lex_state = 281, .external_lex_state = 2}, + [2663] = {.lex_state = 281, .external_lex_state = 2}, + [2664] = {.lex_state = 281, .external_lex_state = 2}, + [2665] = {.lex_state = 281, .external_lex_state = 2}, + [2666] = {.lex_state = 281, .external_lex_state = 2}, + [2667] = {.lex_state = 281, .external_lex_state = 2}, + [2668] = {.lex_state = 281, .external_lex_state = 2}, + [2669] = {.lex_state = 281, .external_lex_state = 2}, + [2670] = {.lex_state = 281, .external_lex_state = 2}, + [2671] = {.lex_state = 281, .external_lex_state = 2}, + [2672] = {.lex_state = 281, .external_lex_state = 2}, + [2673] = {.lex_state = 96, .external_lex_state = 2}, + [2674] = {.lex_state = 281, .external_lex_state = 2}, + [2675] = {.lex_state = 281, .external_lex_state = 2}, + [2676] = {.lex_state = 101, .external_lex_state = 2}, + [2677] = {.lex_state = 281, .external_lex_state = 2}, + [2678] = {.lex_state = 281, .external_lex_state = 2}, + [2679] = {.lex_state = 281, .external_lex_state = 2}, + [2680] = {.lex_state = 101, .external_lex_state = 2}, + [2681] = {.lex_state = 281, .external_lex_state = 2}, + [2682] = {.lex_state = 96, .external_lex_state = 2}, + [2683] = {.lex_state = 281, .external_lex_state = 2}, + [2684] = {.lex_state = 101, .external_lex_state = 2}, + [2685] = {.lex_state = 96, .external_lex_state = 2}, + [2686] = {.lex_state = 96, .external_lex_state = 2}, + [2687] = {.lex_state = 281, .external_lex_state = 2}, + [2688] = {.lex_state = 96, .external_lex_state = 2}, + [2689] = {.lex_state = 281, .external_lex_state = 2}, + [2690] = {.lex_state = 101, .external_lex_state = 2}, + [2691] = {.lex_state = 281, .external_lex_state = 2}, + [2692] = {.lex_state = 281, .external_lex_state = 2}, + [2693] = {.lex_state = 101, .external_lex_state = 2}, + [2694] = {.lex_state = 96, .external_lex_state = 2}, + [2695] = {.lex_state = 281, .external_lex_state = 2}, + [2696] = {.lex_state = 281, .external_lex_state = 2}, + [2697] = {.lex_state = 281, .external_lex_state = 2}, + [2698] = {.lex_state = 281, .external_lex_state = 2}, + [2699] = {.lex_state = 281, .external_lex_state = 2}, + [2700] = {.lex_state = 281, .external_lex_state = 2}, + [2701] = {.lex_state = 101, .external_lex_state = 2}, + [2702] = {.lex_state = 281, .external_lex_state = 2}, + [2703] = {.lex_state = 281, .external_lex_state = 2}, + [2704] = {.lex_state = 281, .external_lex_state = 2}, + [2705] = {.lex_state = 281, .external_lex_state = 2}, + [2706] = {.lex_state = 281, .external_lex_state = 2}, + [2707] = {.lex_state = 96, .external_lex_state = 2}, + [2708] = {.lex_state = 101, .external_lex_state = 2}, + [2709] = {.lex_state = 107, .external_lex_state = 2}, + [2710] = {.lex_state = 101, .external_lex_state = 2}, + [2711] = {.lex_state = 96, .external_lex_state = 2}, + [2712] = {.lex_state = 101, .external_lex_state = 2}, + [2713] = {.lex_state = 101, .external_lex_state = 2}, + [2714] = {.lex_state = 96, .external_lex_state = 2}, + [2715] = {.lex_state = 96, .external_lex_state = 2}, + [2716] = {.lex_state = 101, .external_lex_state = 2}, + [2717] = {.lex_state = 101, .external_lex_state = 2}, + [2718] = {.lex_state = 96, .external_lex_state = 2}, + [2719] = {.lex_state = 101, .external_lex_state = 2}, + [2720] = {.lex_state = 96, .external_lex_state = 2}, + [2721] = {.lex_state = 96, .external_lex_state = 2}, + [2722] = {.lex_state = 96, .external_lex_state = 2}, + [2723] = {.lex_state = 101, .external_lex_state = 2}, + [2724] = {.lex_state = 101, .external_lex_state = 2}, + [2725] = {.lex_state = 101, .external_lex_state = 2}, + [2726] = {.lex_state = 96, .external_lex_state = 2}, + [2727] = {.lex_state = 96, .external_lex_state = 2}, + [2728] = {.lex_state = 96, .external_lex_state = 2}, + [2729] = {.lex_state = 101, .external_lex_state = 2}, + [2730] = {.lex_state = 108, .external_lex_state = 2}, + [2731] = {.lex_state = 108, .external_lex_state = 2}, + [2732] = {.lex_state = 102, .external_lex_state = 2}, + [2733] = {.lex_state = 108, .external_lex_state = 2}, + [2734] = {.lex_state = 130, .external_lex_state = 2}, + [2735] = {.lex_state = 130, .external_lex_state = 2}, + [2736] = {.lex_state = 102, .external_lex_state = 2}, + [2737] = {.lex_state = 130, .external_lex_state = 2}, + [2738] = {.lex_state = 116, .external_lex_state = 2}, + [2739] = {.lex_state = 108, .external_lex_state = 2}, + [2740] = {.lex_state = 96, .external_lex_state = 2}, + [2741] = {.lex_state = 102, .external_lex_state = 2}, + [2742] = {.lex_state = 130, .external_lex_state = 2}, + [2743] = {.lex_state = 113, .external_lex_state = 2}, + [2744] = {.lex_state = 113, .external_lex_state = 2}, + [2745] = {.lex_state = 130, .external_lex_state = 2}, + [2746] = {.lex_state = 114, .external_lex_state = 2}, + [2747] = {.lex_state = 114, .external_lex_state = 2}, + [2748] = {.lex_state = 114, .external_lex_state = 2}, + [2749] = {.lex_state = 117, .external_lex_state = 2}, + [2750] = {.lex_state = 281, .external_lex_state = 2}, + [2751] = {.lex_state = 113, .external_lex_state = 2}, + [2752] = {.lex_state = 114, .external_lex_state = 2}, + [2753] = {.lex_state = 117, .external_lex_state = 2}, + [2754] = {.lex_state = 114, .external_lex_state = 2}, + [2755] = {.lex_state = 114, .external_lex_state = 2}, + [2756] = {.lex_state = 117, .external_lex_state = 2}, + [2757] = {.lex_state = 113, .external_lex_state = 2}, + [2758] = {.lex_state = 114, .external_lex_state = 2}, + [2759] = {.lex_state = 114, .external_lex_state = 2}, + [2760] = {.lex_state = 114, .external_lex_state = 2}, + [2761] = {.lex_state = 117, .external_lex_state = 2}, + [2762] = {.lex_state = 114, .external_lex_state = 2}, + [2763] = {.lex_state = 102, .external_lex_state = 2}, + [2764] = {.lex_state = 102, .external_lex_state = 2}, + [2765] = {.lex_state = 102, .external_lex_state = 2}, + [2766] = {.lex_state = 281, .external_lex_state = 2}, + [2767] = {.lex_state = 281, .external_lex_state = 2}, + [2768] = {.lex_state = 104, .external_lex_state = 2}, + [2769] = {.lex_state = 281, .external_lex_state = 2}, + [2770] = {.lex_state = 281, .external_lex_state = 2}, + [2771] = {.lex_state = 281, .external_lex_state = 2}, + [2772] = {.lex_state = 102, .external_lex_state = 2}, + [2773] = {.lex_state = 281, .external_lex_state = 2}, + [2774] = {.lex_state = 281, .external_lex_state = 2}, + [2775] = {.lex_state = 281, .external_lex_state = 2}, + [2776] = {.lex_state = 281, .external_lex_state = 2}, + [2777] = {.lex_state = 102, .external_lex_state = 2}, + [2778] = {.lex_state = 281, .external_lex_state = 2}, + [2779] = {.lex_state = 102, .external_lex_state = 2}, + [2780] = {.lex_state = 102, .external_lex_state = 2}, + [2781] = {.lex_state = 281, .external_lex_state = 2}, + [2782] = {.lex_state = 102, .external_lex_state = 2}, + [2783] = {.lex_state = 102, .external_lex_state = 2}, + [2784] = {.lex_state = 102, .external_lex_state = 2}, + [2785] = {.lex_state = 102, .external_lex_state = 2}, + [2786] = {.lex_state = 102, .external_lex_state = 2}, + [2787] = {.lex_state = 102, .external_lex_state = 2}, + [2788] = {.lex_state = 102, .external_lex_state = 2}, + [2789] = {.lex_state = 102, .external_lex_state = 2}, + [2790] = {.lex_state = 102, .external_lex_state = 2}, + [2791] = {.lex_state = 102, .external_lex_state = 2}, + [2792] = {.lex_state = 102, .external_lex_state = 2}, + [2793] = {.lex_state = 102, .external_lex_state = 2}, + [2794] = {.lex_state = 102, .external_lex_state = 2}, + [2795] = {.lex_state = 102, .external_lex_state = 2}, + [2796] = {.lex_state = 102, .external_lex_state = 2}, + [2797] = {.lex_state = 90, .external_lex_state = 2}, + [2798] = {.lex_state = 281, .external_lex_state = 2}, + [2799] = {.lex_state = 102, .external_lex_state = 2}, + [2800] = {.lex_state = 130, .external_lex_state = 2}, + [2801] = {.lex_state = 102, .external_lex_state = 2}, + [2802] = {.lex_state = 281, .external_lex_state = 2}, + [2803] = {.lex_state = 102, .external_lex_state = 2}, + [2804] = {.lex_state = 102, .external_lex_state = 2}, + [2805] = {.lex_state = 104, .external_lex_state = 2}, + [2806] = {.lex_state = 102, .external_lex_state = 2}, + [2807] = {.lex_state = 130, .external_lex_state = 2}, + [2808] = {.lex_state = 102, .external_lex_state = 2}, + [2809] = {.lex_state = 102, .external_lex_state = 2}, + [2810] = {.lex_state = 102, .external_lex_state = 2}, + [2811] = {.lex_state = 281, .external_lex_state = 2}, + [2812] = {.lex_state = 110, .external_lex_state = 2}, + [2813] = {.lex_state = 130, .external_lex_state = 2}, + [2814] = {.lex_state = 130, .external_lex_state = 2}, + [2815] = {.lex_state = 102, .external_lex_state = 2}, + [2816] = {.lex_state = 104, .external_lex_state = 2}, + [2817] = {.lex_state = 90, .external_lex_state = 2}, + [2818] = {.lex_state = 132, .external_lex_state = 2}, + [2819] = {.lex_state = 130, .external_lex_state = 2}, + [2820] = {.lex_state = 102, .external_lex_state = 2}, + [2821] = {.lex_state = 130, .external_lex_state = 2}, + [2822] = {.lex_state = 130, .external_lex_state = 2}, + [2823] = {.lex_state = 102, .external_lex_state = 2}, + [2824] = {.lex_state = 130, .external_lex_state = 2}, + [2825] = {.lex_state = 281, .external_lex_state = 2}, + [2826] = {.lex_state = 281, .external_lex_state = 2}, + [2827] = {.lex_state = 281, .external_lex_state = 2}, + [2828] = {.lex_state = 102, .external_lex_state = 2}, + [2829] = {.lex_state = 113, .external_lex_state = 2}, + [2830] = {.lex_state = 281, .external_lex_state = 2}, + [2831] = {.lex_state = 281, .external_lex_state = 2}, + [2832] = {.lex_state = 281, .external_lex_state = 2}, + [2833] = {.lex_state = 281, .external_lex_state = 2}, + [2834] = {.lex_state = 111, .external_lex_state = 2}, + [2835] = {.lex_state = 281, .external_lex_state = 2}, + [2836] = {.lex_state = 281, .external_lex_state = 2}, + [2837] = {.lex_state = 281, .external_lex_state = 2}, + [2838] = {.lex_state = 281, .external_lex_state = 2}, + [2839] = {.lex_state = 111, .external_lex_state = 2}, + [2840] = {.lex_state = 130, .external_lex_state = 2}, + [2841] = {.lex_state = 281, .external_lex_state = 2}, + [2842] = {.lex_state = 111, .external_lex_state = 2}, + [2843] = {.lex_state = 281, .external_lex_state = 2}, + [2844] = {.lex_state = 281, .external_lex_state = 2}, + [2845] = {.lex_state = 281, .external_lex_state = 2}, + [2846] = {.lex_state = 281, .external_lex_state = 2}, + [2847] = {.lex_state = 281, .external_lex_state = 2}, + [2848] = {.lex_state = 130, .external_lex_state = 2}, + [2849] = {.lex_state = 113, .external_lex_state = 2}, + [2850] = {.lex_state = 281, .external_lex_state = 2}, + [2851] = {.lex_state = 113, .external_lex_state = 2}, + [2852] = {.lex_state = 281, .external_lex_state = 2}, + [2853] = {.lex_state = 281, .external_lex_state = 2}, + [2854] = {.lex_state = 281, .external_lex_state = 2}, + [2855] = {.lex_state = 281, .external_lex_state = 2}, + [2856] = {.lex_state = 281, .external_lex_state = 2}, + [2857] = {.lex_state = 281, .external_lex_state = 2}, + [2858] = {.lex_state = 281, .external_lex_state = 2}, + [2859] = {.lex_state = 281, .external_lex_state = 2}, + [2860] = {.lex_state = 281, .external_lex_state = 2}, + [2861] = {.lex_state = 130, .external_lex_state = 2}, + [2862] = {.lex_state = 130, .external_lex_state = 2}, + [2863] = {.lex_state = 130, .external_lex_state = 2}, + [2864] = {.lex_state = 113, .external_lex_state = 2}, + [2865] = {.lex_state = 113, .external_lex_state = 2}, + [2866] = {.lex_state = 111, .external_lex_state = 2}, + [2867] = {.lex_state = 281, .external_lex_state = 2}, + [2868] = {.lex_state = 281, .external_lex_state = 2}, + [2869] = {.lex_state = 90, .external_lex_state = 2}, + [2870] = {.lex_state = 113, .external_lex_state = 2}, + [2871] = {.lex_state = 113, .external_lex_state = 2}, + [2872] = {.lex_state = 113, .external_lex_state = 2}, + [2873] = {.lex_state = 113, .external_lex_state = 2}, + [2874] = {.lex_state = 281, .external_lex_state = 2}, + [2875] = {.lex_state = 113, .external_lex_state = 2}, + [2876] = {.lex_state = 113, .external_lex_state = 2}, + [2877] = {.lex_state = 281, .external_lex_state = 2}, + [2878] = {.lex_state = 113, .external_lex_state = 2}, + [2879] = {.lex_state = 113, .external_lex_state = 2}, + [2880] = {.lex_state = 113, .external_lex_state = 2}, + [2881] = {.lex_state = 113, .external_lex_state = 2}, + [2882] = {.lex_state = 113, .external_lex_state = 2}, + [2883] = {.lex_state = 281, .external_lex_state = 2}, + [2884] = {.lex_state = 113, .external_lex_state = 2}, + [2885] = {.lex_state = 281, .external_lex_state = 2}, + [2886] = {.lex_state = 113, .external_lex_state = 2}, + [2887] = {.lex_state = 113, .external_lex_state = 2}, + [2888] = {.lex_state = 113, .external_lex_state = 2}, + [2889] = {.lex_state = 113, .external_lex_state = 2}, + [2890] = {.lex_state = 113, .external_lex_state = 2}, + [2891] = {.lex_state = 113, .external_lex_state = 2}, + [2892] = {.lex_state = 113, .external_lex_state = 2}, + [2893] = {.lex_state = 113, .external_lex_state = 2}, + [2894] = {.lex_state = 113, .external_lex_state = 2}, + [2895] = {.lex_state = 113, .external_lex_state = 2}, + [2896] = {.lex_state = 104, .external_lex_state = 2}, + [2897] = {.lex_state = 113, .external_lex_state = 2}, + [2898] = {.lex_state = 281, .external_lex_state = 2}, + [2899] = {.lex_state = 113, .external_lex_state = 2}, + [2900] = {.lex_state = 113, .external_lex_state = 2}, + [2901] = {.lex_state = 113, .external_lex_state = 2}, + [2902] = {.lex_state = 113, .external_lex_state = 2}, + [2903] = {.lex_state = 113, .external_lex_state = 2}, + [2904] = {.lex_state = 104, .external_lex_state = 2}, + [2905] = {.lex_state = 104, .external_lex_state = 2}, + [2906] = {.lex_state = 104, .external_lex_state = 2}, + [2907] = {.lex_state = 104, .external_lex_state = 2}, + [2908] = {.lex_state = 104, .external_lex_state = 2}, + [2909] = {.lex_state = 104, .external_lex_state = 2}, + [2910] = {.lex_state = 104, .external_lex_state = 2}, + [2911] = {.lex_state = 104, .external_lex_state = 2}, + [2912] = {.lex_state = 104, .external_lex_state = 2}, + [2913] = {.lex_state = 104, .external_lex_state = 2}, + [2914] = {.lex_state = 104, .external_lex_state = 2}, + [2915] = {.lex_state = 104, .external_lex_state = 2}, + [2916] = {.lex_state = 104, .external_lex_state = 2}, + [2917] = {.lex_state = 104, .external_lex_state = 2}, + [2918] = {.lex_state = 104, .external_lex_state = 2}, + [2919] = {.lex_state = 104, .external_lex_state = 2}, + [2920] = {.lex_state = 104, .external_lex_state = 2}, + [2921] = {.lex_state = 104, .external_lex_state = 2}, + [2922] = {.lex_state = 104, .external_lex_state = 2}, + [2923] = {.lex_state = 104, .external_lex_state = 2}, + [2924] = {.lex_state = 104, .external_lex_state = 2}, + [2925] = {.lex_state = 104, .external_lex_state = 2}, + [2926] = {.lex_state = 104, .external_lex_state = 2}, + [2927] = {.lex_state = 104, .external_lex_state = 2}, + [2928] = {.lex_state = 104, .external_lex_state = 2}, + [2929] = {.lex_state = 104, .external_lex_state = 2}, + [2930] = {.lex_state = 104, .external_lex_state = 2}, + [2931] = {.lex_state = 104, .external_lex_state = 2}, + [2932] = {.lex_state = 104, .external_lex_state = 2}, + [2933] = {.lex_state = 104, .external_lex_state = 2}, + [2934] = {.lex_state = 104, .external_lex_state = 2}, + [2935] = {.lex_state = 104, .external_lex_state = 2}, + [2936] = {.lex_state = 104, .external_lex_state = 2}, + [2937] = {.lex_state = 104, .external_lex_state = 2}, + [2938] = {.lex_state = 104, .external_lex_state = 2}, + [2939] = {.lex_state = 104, .external_lex_state = 2}, + [2940] = {.lex_state = 104, .external_lex_state = 2}, + [2941] = {.lex_state = 104, .external_lex_state = 2}, + [2942] = {.lex_state = 104, .external_lex_state = 2}, + [2943] = {.lex_state = 104, .external_lex_state = 2}, + [2944] = {.lex_state = 104, .external_lex_state = 2}, + [2945] = {.lex_state = 104, .external_lex_state = 2}, + [2946] = {.lex_state = 104, .external_lex_state = 2}, + [2947] = {.lex_state = 104, .external_lex_state = 2}, + [2948] = {.lex_state = 104, .external_lex_state = 2}, + [2949] = {.lex_state = 104, .external_lex_state = 2}, + [2950] = {.lex_state = 104, .external_lex_state = 2}, + [2951] = {.lex_state = 104, .external_lex_state = 2}, + [2952] = {.lex_state = 104, .external_lex_state = 2}, + [2953] = {.lex_state = 104, .external_lex_state = 2}, + [2954] = {.lex_state = 104, .external_lex_state = 2}, + [2955] = {.lex_state = 104, .external_lex_state = 2}, + [2956] = {.lex_state = 104, .external_lex_state = 2}, + [2957] = {.lex_state = 104, .external_lex_state = 2}, + [2958] = {.lex_state = 104, .external_lex_state = 2}, + [2959] = {.lex_state = 104, .external_lex_state = 2}, + [2960] = {.lex_state = 104, .external_lex_state = 2}, + [2961] = {.lex_state = 104, .external_lex_state = 2}, + [2962] = {.lex_state = 104, .external_lex_state = 2}, + [2963] = {.lex_state = 104, .external_lex_state = 2}, + [2964] = {.lex_state = 104, .external_lex_state = 2}, + [2965] = {.lex_state = 104, .external_lex_state = 2}, + [2966] = {.lex_state = 104, .external_lex_state = 2}, + [2967] = {.lex_state = 104, .external_lex_state = 2}, + [2968] = {.lex_state = 104, .external_lex_state = 2}, + [2969] = {.lex_state = 104, .external_lex_state = 2}, + [2970] = {.lex_state = 104, .external_lex_state = 2}, + [2971] = {.lex_state = 104, .external_lex_state = 2}, + [2972] = {.lex_state = 130, .external_lex_state = 2}, + [2973] = {.lex_state = 104, .external_lex_state = 2}, + [2974] = {.lex_state = 104, .external_lex_state = 2}, + [2975] = {.lex_state = 104, .external_lex_state = 2}, + [2976] = {.lex_state = 104, .external_lex_state = 2}, + [2977] = {.lex_state = 104, .external_lex_state = 2}, + [2978] = {.lex_state = 104, .external_lex_state = 2}, + [2979] = {.lex_state = 104, .external_lex_state = 2}, + [2980] = {.lex_state = 104, .external_lex_state = 2}, + [2981] = {.lex_state = 104, .external_lex_state = 2}, + [2982] = {.lex_state = 104, .external_lex_state = 2}, + [2983] = {.lex_state = 104, .external_lex_state = 2}, + [2984] = {.lex_state = 104, .external_lex_state = 2}, + [2985] = {.lex_state = 104, .external_lex_state = 2}, + [2986] = {.lex_state = 104, .external_lex_state = 2}, + [2987] = {.lex_state = 130, .external_lex_state = 2}, + [2988] = {.lex_state = 130, .external_lex_state = 2}, + [2989] = {.lex_state = 282, .external_lex_state = 2}, + [2990] = {.lex_state = 282, .external_lex_state = 2}, + [2991] = {.lex_state = 282, .external_lex_state = 8}, + [2992] = {.lex_state = 282, .external_lex_state = 8}, + [2993] = {.lex_state = 130, .external_lex_state = 2}, + [2994] = {.lex_state = 282, .external_lex_state = 2}, + [2995] = {.lex_state = 282, .external_lex_state = 2}, + [2996] = {.lex_state = 130, .external_lex_state = 8}, + [2997] = {.lex_state = 123, .external_lex_state = 2}, + [2998] = {.lex_state = 282, .external_lex_state = 2}, + [2999] = {.lex_state = 282, .external_lex_state = 2}, + [3000] = {.lex_state = 130, .external_lex_state = 2}, + [3001] = {.lex_state = 282, .external_lex_state = 8}, + [3002] = {.lex_state = 282, .external_lex_state = 8}, + [3003] = {.lex_state = 130, .external_lex_state = 2}, + [3004] = {.lex_state = 130, .external_lex_state = 2}, + [3005] = {.lex_state = 124, .external_lex_state = 2}, + [3006] = {.lex_state = 120, .external_lex_state = 2}, + [3007] = {.lex_state = 130, .external_lex_state = 2}, + [3008] = {.lex_state = 124, .external_lex_state = 2}, + [3009] = {.lex_state = 120, .external_lex_state = 2}, + [3010] = {.lex_state = 130, .external_lex_state = 2}, + [3011] = {.lex_state = 130, .external_lex_state = 2}, + [3012] = {.lex_state = 130, .external_lex_state = 2}, + [3013] = {.lex_state = 130, .external_lex_state = 2}, + [3014] = {.lex_state = 124, .external_lex_state = 2}, + [3015] = {.lex_state = 130, .external_lex_state = 2}, + [3016] = {.lex_state = 130, .external_lex_state = 2}, + [3017] = {.lex_state = 130, .external_lex_state = 2}, + [3018] = {.lex_state = 130, .external_lex_state = 2}, + [3019] = {.lex_state = 130, .external_lex_state = 2}, + [3020] = {.lex_state = 130, .external_lex_state = 2}, + [3021] = {.lex_state = 130, .external_lex_state = 2}, + [3022] = {.lex_state = 120, .external_lex_state = 2}, + [3023] = {.lex_state = 130, .external_lex_state = 2}, + [3024] = {.lex_state = 130, .external_lex_state = 2}, + [3025] = {.lex_state = 119, .external_lex_state = 2}, + [3026] = {.lex_state = 130, .external_lex_state = 2}, + [3027] = {.lex_state = 130, .external_lex_state = 2}, + [3028] = {.lex_state = 130, .external_lex_state = 2}, + [3029] = {.lex_state = 124, .external_lex_state = 2}, + [3030] = {.lex_state = 130, .external_lex_state = 2}, + [3031] = {.lex_state = 282, .external_lex_state = 2}, + [3032] = {.lex_state = 130, .external_lex_state = 2}, + [3033] = {.lex_state = 130, .external_lex_state = 2}, + [3034] = {.lex_state = 130, .external_lex_state = 2}, + [3035] = {.lex_state = 130, .external_lex_state = 8}, + [3036] = {.lex_state = 130, .external_lex_state = 4}, + [3037] = {.lex_state = 130, .external_lex_state = 8}, + [3038] = {.lex_state = 130, .external_lex_state = 2}, + [3039] = {.lex_state = 120, .external_lex_state = 2}, + [3040] = {.lex_state = 130, .external_lex_state = 8}, + [3041] = {.lex_state = 130, .external_lex_state = 2}, + [3042] = {.lex_state = 130, .external_lex_state = 2}, + [3043] = {.lex_state = 90, .external_lex_state = 2}, + [3044] = {.lex_state = 130, .external_lex_state = 2}, + [3045] = {.lex_state = 130, .external_lex_state = 8}, + [3046] = {.lex_state = 130, .external_lex_state = 8}, + [3047] = {.lex_state = 130, .external_lex_state = 2}, + [3048] = {.lex_state = 130, .external_lex_state = 2}, + [3049] = {.lex_state = 130, .external_lex_state = 2}, + [3050] = {.lex_state = 130, .external_lex_state = 2}, + [3051] = {.lex_state = 130, .external_lex_state = 2}, + [3052] = {.lex_state = 90, .external_lex_state = 2}, + [3053] = {.lex_state = 130, .external_lex_state = 2}, + [3054] = {.lex_state = 130, .external_lex_state = 4}, + [3055] = {.lex_state = 130, .external_lex_state = 2}, + [3056] = {.lex_state = 130, .external_lex_state = 8}, + [3057] = {.lex_state = 130, .external_lex_state = 8}, + [3058] = {.lex_state = 130, .external_lex_state = 2}, + [3059] = {.lex_state = 120, .external_lex_state = 2}, + [3060] = {.lex_state = 130, .external_lex_state = 2}, + [3061] = {.lex_state = 130, .external_lex_state = 4}, + [3062] = {.lex_state = 130, .external_lex_state = 2}, + [3063] = {.lex_state = 120, .external_lex_state = 2}, + [3064] = {.lex_state = 130, .external_lex_state = 4}, + [3065] = {.lex_state = 120, .external_lex_state = 2}, + [3066] = {.lex_state = 120, .external_lex_state = 2}, + [3067] = {.lex_state = 130, .external_lex_state = 8}, + [3068] = {.lex_state = 130, .external_lex_state = 2}, + [3069] = {.lex_state = 130, .external_lex_state = 2}, + [3070] = {.lex_state = 130, .external_lex_state = 8}, + [3071] = {.lex_state = 120, .external_lex_state = 2}, + [3072] = {.lex_state = 130, .external_lex_state = 8}, + [3073] = {.lex_state = 282, .external_lex_state = 2}, + [3074] = {.lex_state = 282, .external_lex_state = 2}, + [3075] = {.lex_state = 282, .external_lex_state = 2}, + [3076] = {.lex_state = 130, .external_lex_state = 2}, + [3077] = {.lex_state = 130, .external_lex_state = 4}, + [3078] = {.lex_state = 130, .external_lex_state = 2}, + [3079] = {.lex_state = 130, .external_lex_state = 4}, + [3080] = {.lex_state = 130, .external_lex_state = 4}, + [3081] = {.lex_state = 282, .external_lex_state = 2}, + [3082] = {.lex_state = 120, .external_lex_state = 2}, + [3083] = {.lex_state = 120, .external_lex_state = 2}, + [3084] = {.lex_state = 282, .external_lex_state = 2}, + [3085] = {.lex_state = 282, .external_lex_state = 2}, + [3086] = {.lex_state = 130, .external_lex_state = 8}, + [3087] = {.lex_state = 282, .external_lex_state = 2}, + [3088] = {.lex_state = 130, .external_lex_state = 8}, + [3089] = {.lex_state = 282, .external_lex_state = 2}, + [3090] = {.lex_state = 120, .external_lex_state = 2}, + [3091] = {.lex_state = 120, .external_lex_state = 2}, + [3092] = {.lex_state = 120, .external_lex_state = 2}, + [3093] = {.lex_state = 130, .external_lex_state = 4}, + [3094] = {.lex_state = 120, .external_lex_state = 2}, + [3095] = {.lex_state = 120, .external_lex_state = 2}, + [3096] = {.lex_state = 130, .external_lex_state = 2}, + [3097] = {.lex_state = 282, .external_lex_state = 2}, + [3098] = {.lex_state = 120, .external_lex_state = 2}, + [3099] = {.lex_state = 130, .external_lex_state = 4}, + [3100] = {.lex_state = 130, .external_lex_state = 2}, + [3101] = {.lex_state = 282, .external_lex_state = 2}, + [3102] = {.lex_state = 282, .external_lex_state = 2}, + [3103] = {.lex_state = 282, .external_lex_state = 2}, + [3104] = {.lex_state = 120, .external_lex_state = 2}, + [3105] = {.lex_state = 120, .external_lex_state = 2}, + [3106] = {.lex_state = 282, .external_lex_state = 2}, + [3107] = {.lex_state = 120, .external_lex_state = 2}, + [3108] = {.lex_state = 120, .external_lex_state = 2}, + [3109] = {.lex_state = 120, .external_lex_state = 2}, + [3110] = {.lex_state = 120, .external_lex_state = 2}, + [3111] = {.lex_state = 120, .external_lex_state = 2}, + [3112] = {.lex_state = 282, .external_lex_state = 2}, + [3113] = {.lex_state = 282, .external_lex_state = 2}, + [3114] = {.lex_state = 120, .external_lex_state = 2}, + [3115] = {.lex_state = 120, .external_lex_state = 2}, + [3116] = {.lex_state = 120, .external_lex_state = 2}, + [3117] = {.lex_state = 120, .external_lex_state = 2}, + [3118] = {.lex_state = 120, .external_lex_state = 2}, + [3119] = {.lex_state = 282, .external_lex_state = 2}, + [3120] = {.lex_state = 120, .external_lex_state = 2}, + [3121] = {.lex_state = 120, .external_lex_state = 2}, + [3122] = {.lex_state = 120, .external_lex_state = 2}, + [3123] = {.lex_state = 120, .external_lex_state = 2}, + [3124] = {.lex_state = 120, .external_lex_state = 2}, + [3125] = {.lex_state = 120, .external_lex_state = 2}, + [3126] = {.lex_state = 120, .external_lex_state = 2}, + [3127] = {.lex_state = 120, .external_lex_state = 2}, + [3128] = {.lex_state = 120, .external_lex_state = 2}, + [3129] = {.lex_state = 120, .external_lex_state = 2}, + [3130] = {.lex_state = 120, .external_lex_state = 2}, + [3131] = {.lex_state = 120, .external_lex_state = 2}, + [3132] = {.lex_state = 120, .external_lex_state = 2}, + [3133] = {.lex_state = 130, .external_lex_state = 2}, + [3134] = {.lex_state = 120, .external_lex_state = 2}, + [3135] = {.lex_state = 130, .external_lex_state = 4}, + [3136] = {.lex_state = 120, .external_lex_state = 2}, + [3137] = {.lex_state = 120, .external_lex_state = 2}, + [3138] = {.lex_state = 282, .external_lex_state = 2}, + [3139] = {.lex_state = 120, .external_lex_state = 2}, + [3140] = {.lex_state = 120, .external_lex_state = 2}, + [3141] = {.lex_state = 120, .external_lex_state = 2}, + [3142] = {.lex_state = 282, .external_lex_state = 2}, + [3143] = {.lex_state = 130, .external_lex_state = 2}, + [3144] = {.lex_state = 130, .external_lex_state = 2}, + [3145] = {.lex_state = 130, .external_lex_state = 2}, + [3146] = {.lex_state = 130, .external_lex_state = 2}, + [3147] = {.lex_state = 130, .external_lex_state = 2}, + [3148] = {.lex_state = 130, .external_lex_state = 2}, + [3149] = {.lex_state = 130, .external_lex_state = 2}, + [3150] = {.lex_state = 130, .external_lex_state = 2}, + [3151] = {.lex_state = 130, .external_lex_state = 8}, + [3152] = {.lex_state = 130, .external_lex_state = 2}, + [3153] = {.lex_state = 130, .external_lex_state = 2}, + [3154] = {.lex_state = 130, .external_lex_state = 2}, + [3155] = {.lex_state = 130, .external_lex_state = 2}, + [3156] = {.lex_state = 130, .external_lex_state = 2}, + [3157] = {.lex_state = 130, .external_lex_state = 4}, + [3158] = {.lex_state = 130, .external_lex_state = 2}, + [3159] = {.lex_state = 130, .external_lex_state = 2}, + [3160] = {.lex_state = 130, .external_lex_state = 2}, + [3161] = {.lex_state = 130, .external_lex_state = 2}, + [3162] = {.lex_state = 130, .external_lex_state = 2}, + [3163] = {.lex_state = 130, .external_lex_state = 2}, + [3164] = {.lex_state = 130, .external_lex_state = 2}, + [3165] = {.lex_state = 130, .external_lex_state = 2}, + [3166] = {.lex_state = 130, .external_lex_state = 2}, + [3167] = {.lex_state = 130, .external_lex_state = 2}, + [3168] = {.lex_state = 130, .external_lex_state = 2}, + [3169] = {.lex_state = 130, .external_lex_state = 2}, + [3170] = {.lex_state = 130, .external_lex_state = 2}, + [3171] = {.lex_state = 130, .external_lex_state = 2}, + [3172] = {.lex_state = 130, .external_lex_state = 2}, + [3173] = {.lex_state = 130, .external_lex_state = 2}, + [3174] = {.lex_state = 90, .external_lex_state = 2}, + [3175] = {.lex_state = 130, .external_lex_state = 2}, + [3176] = {.lex_state = 130, .external_lex_state = 2}, + [3177] = {.lex_state = 130, .external_lex_state = 2}, + [3178] = {.lex_state = 130, .external_lex_state = 2}, + [3179] = {.lex_state = 130, .external_lex_state = 2}, + [3180] = {.lex_state = 130, .external_lex_state = 2}, + [3181] = {.lex_state = 130, .external_lex_state = 2}, + [3182] = {.lex_state = 130, .external_lex_state = 2}, + [3183] = {.lex_state = 130, .external_lex_state = 2}, + [3184] = {.lex_state = 130, .external_lex_state = 2}, + [3185] = {.lex_state = 130, .external_lex_state = 2}, + [3186] = {.lex_state = 130, .external_lex_state = 2}, + [3187] = {.lex_state = 130, .external_lex_state = 2}, + [3188] = {.lex_state = 130, .external_lex_state = 2}, + [3189] = {.lex_state = 130, .external_lex_state = 4}, + [3190] = {.lex_state = 130, .external_lex_state = 2}, + [3191] = {.lex_state = 130, .external_lex_state = 2}, + [3192] = {.lex_state = 130, .external_lex_state = 2}, + [3193] = {.lex_state = 130, .external_lex_state = 8}, + [3194] = {.lex_state = 130, .external_lex_state = 2}, + [3195] = {.lex_state = 130, .external_lex_state = 2}, + [3196] = {.lex_state = 130, .external_lex_state = 2}, + [3197] = {.lex_state = 130, .external_lex_state = 2}, + [3198] = {.lex_state = 130, .external_lex_state = 2}, + [3199] = {.lex_state = 130, .external_lex_state = 2}, + [3200] = {.lex_state = 130, .external_lex_state = 8}, + [3201] = {.lex_state = 130, .external_lex_state = 2}, + [3202] = {.lex_state = 130, .external_lex_state = 2}, + [3203] = {.lex_state = 130, .external_lex_state = 2}, + [3204] = {.lex_state = 130, .external_lex_state = 2}, + [3205] = {.lex_state = 130, .external_lex_state = 2}, + [3206] = {.lex_state = 130, .external_lex_state = 2}, + [3207] = {.lex_state = 130, .external_lex_state = 2}, + [3208] = {.lex_state = 130, .external_lex_state = 2}, + [3209] = {.lex_state = 130, .external_lex_state = 8}, + [3210] = {.lex_state = 130, .external_lex_state = 2}, + [3211] = {.lex_state = 130, .external_lex_state = 2}, + [3212] = {.lex_state = 130, .external_lex_state = 2}, + [3213] = {.lex_state = 130, .external_lex_state = 2}, + [3214] = {.lex_state = 130, .external_lex_state = 2}, + [3215] = {.lex_state = 130, .external_lex_state = 2}, + [3216] = {.lex_state = 130, .external_lex_state = 2}, + [3217] = {.lex_state = 130, .external_lex_state = 4}, + [3218] = {.lex_state = 130, .external_lex_state = 2}, + [3219] = {.lex_state = 130, .external_lex_state = 2}, + [3220] = {.lex_state = 130, .external_lex_state = 2}, + [3221] = {.lex_state = 130, .external_lex_state = 2}, + [3222] = {.lex_state = 130, .external_lex_state = 2}, + [3223] = {.lex_state = 130, .external_lex_state = 2}, + [3224] = {.lex_state = 130, .external_lex_state = 2}, + [3225] = {.lex_state = 130, .external_lex_state = 2}, + [3226] = {.lex_state = 130, .external_lex_state = 2}, + [3227] = {.lex_state = 130, .external_lex_state = 2}, + [3228] = {.lex_state = 130, .external_lex_state = 2}, + [3229] = {.lex_state = 130, .external_lex_state = 4}, + [3230] = {.lex_state = 130, .external_lex_state = 2}, + [3231] = {.lex_state = 130, .external_lex_state = 2}, + [3232] = {.lex_state = 130, .external_lex_state = 2}, + [3233] = {.lex_state = 130, .external_lex_state = 2}, + [3234] = {.lex_state = 130, .external_lex_state = 4}, + [3235] = {.lex_state = 130, .external_lex_state = 2}, + [3236] = {.lex_state = 130, .external_lex_state = 2}, + [3237] = {.lex_state = 130, .external_lex_state = 2}, + [3238] = {.lex_state = 130, .external_lex_state = 2}, + [3239] = {.lex_state = 130, .external_lex_state = 2}, + [3240] = {.lex_state = 130, .external_lex_state = 2}, + [3241] = {.lex_state = 130, .external_lex_state = 2}, + [3242] = {.lex_state = 130, .external_lex_state = 2}, + [3243] = {.lex_state = 130, .external_lex_state = 2}, + [3244] = {.lex_state = 130, .external_lex_state = 2}, + [3245] = {.lex_state = 130, .external_lex_state = 2}, + [3246] = {.lex_state = 130, .external_lex_state = 2}, + [3247] = {.lex_state = 130, .external_lex_state = 8}, + [3248] = {.lex_state = 130, .external_lex_state = 2}, + [3249] = {.lex_state = 130, .external_lex_state = 2}, + [3250] = {.lex_state = 130, .external_lex_state = 2}, + [3251] = {.lex_state = 130, .external_lex_state = 2}, + [3252] = {.lex_state = 130, .external_lex_state = 2}, + [3253] = {.lex_state = 130, .external_lex_state = 2}, + [3254] = {.lex_state = 130, .external_lex_state = 2}, + [3255] = {.lex_state = 130, .external_lex_state = 2}, + [3256] = {.lex_state = 130, .external_lex_state = 2}, + [3257] = {.lex_state = 130, .external_lex_state = 2}, + [3258] = {.lex_state = 130, .external_lex_state = 2}, + [3259] = {.lex_state = 130, .external_lex_state = 2}, + [3260] = {.lex_state = 130, .external_lex_state = 2}, + [3261] = {.lex_state = 130, .external_lex_state = 2}, + [3262] = {.lex_state = 130, .external_lex_state = 2}, + [3263] = {.lex_state = 130, .external_lex_state = 2}, + [3264] = {.lex_state = 130, .external_lex_state = 2}, + [3265] = {.lex_state = 130, .external_lex_state = 2}, + [3266] = {.lex_state = 130, .external_lex_state = 2}, + [3267] = {.lex_state = 130, .external_lex_state = 2}, + [3268] = {.lex_state = 90, .external_lex_state = 2}, + [3269] = {.lex_state = 130, .external_lex_state = 2}, + [3270] = {.lex_state = 130, .external_lex_state = 2}, + [3271] = {.lex_state = 130, .external_lex_state = 2}, + [3272] = {.lex_state = 130, .external_lex_state = 2}, + [3273] = {.lex_state = 130, .external_lex_state = 2}, + [3274] = {.lex_state = 130, .external_lex_state = 2}, + [3275] = {.lex_state = 130, .external_lex_state = 2}, + [3276] = {.lex_state = 130, .external_lex_state = 2}, + [3277] = {.lex_state = 130, .external_lex_state = 2}, + [3278] = {.lex_state = 90, .external_lex_state = 2}, + [3279] = {.lex_state = 130, .external_lex_state = 2}, + [3280] = {.lex_state = 130, .external_lex_state = 2}, + [3281] = {.lex_state = 130, .external_lex_state = 8}, + [3282] = {.lex_state = 130, .external_lex_state = 2}, + [3283] = {.lex_state = 130, .external_lex_state = 2}, + [3284] = {.lex_state = 130, .external_lex_state = 2}, + [3285] = {.lex_state = 130, .external_lex_state = 2}, + [3286] = {.lex_state = 130, .external_lex_state = 2}, + [3287] = {.lex_state = 130, .external_lex_state = 2}, + [3288] = {.lex_state = 130, .external_lex_state = 4}, + [3289] = {.lex_state = 130, .external_lex_state = 2}, + [3290] = {.lex_state = 130, .external_lex_state = 2}, + [3291] = {.lex_state = 130, .external_lex_state = 4}, + [3292] = {.lex_state = 130, .external_lex_state = 2}, + [3293] = {.lex_state = 130, .external_lex_state = 2}, + [3294] = {.lex_state = 130, .external_lex_state = 2}, + [3295] = {.lex_state = 130, .external_lex_state = 2}, + [3296] = {.lex_state = 130, .external_lex_state = 2}, + [3297] = {.lex_state = 130, .external_lex_state = 8}, + [3298] = {.lex_state = 130, .external_lex_state = 2}, + [3299] = {.lex_state = 130, .external_lex_state = 2}, + [3300] = {.lex_state = 130, .external_lex_state = 2}, + [3301] = {.lex_state = 130, .external_lex_state = 2}, + [3302] = {.lex_state = 130, .external_lex_state = 2}, + [3303] = {.lex_state = 130, .external_lex_state = 2}, + [3304] = {.lex_state = 130, .external_lex_state = 2}, + [3305] = {.lex_state = 130, .external_lex_state = 2}, + [3306] = {.lex_state = 130, .external_lex_state = 8}, + [3307] = {.lex_state = 130, .external_lex_state = 2}, + [3308] = {.lex_state = 130, .external_lex_state = 2}, + [3309] = {.lex_state = 130, .external_lex_state = 4}, + [3310] = {.lex_state = 130, .external_lex_state = 2}, + [3311] = {.lex_state = 130, .external_lex_state = 2}, + [3312] = {.lex_state = 130, .external_lex_state = 2}, + [3313] = {.lex_state = 130, .external_lex_state = 2}, + [3314] = {.lex_state = 130, .external_lex_state = 2}, + [3315] = {.lex_state = 130, .external_lex_state = 2}, + [3316] = {.lex_state = 130, .external_lex_state = 2}, + [3317] = {.lex_state = 130, .external_lex_state = 2}, + [3318] = {.lex_state = 130, .external_lex_state = 2}, + [3319] = {.lex_state = 130, .external_lex_state = 2}, + [3320] = {.lex_state = 130, .external_lex_state = 2}, + [3321] = {.lex_state = 130, .external_lex_state = 2}, + [3322] = {.lex_state = 130, .external_lex_state = 2}, + [3323] = {.lex_state = 130, .external_lex_state = 2}, + [3324] = {.lex_state = 130, .external_lex_state = 2}, + [3325] = {.lex_state = 130, .external_lex_state = 2}, + [3326] = {.lex_state = 130, .external_lex_state = 2}, + [3327] = {.lex_state = 130, .external_lex_state = 2}, + [3328] = {.lex_state = 130, .external_lex_state = 4}, + [3329] = {.lex_state = 130, .external_lex_state = 2}, + [3330] = {.lex_state = 130, .external_lex_state = 2}, + [3331] = {.lex_state = 130, .external_lex_state = 2}, + [3332] = {.lex_state = 130, .external_lex_state = 2}, + [3333] = {.lex_state = 130, .external_lex_state = 2}, + [3334] = {.lex_state = 130, .external_lex_state = 2}, + [3335] = {.lex_state = 130, .external_lex_state = 2}, + [3336] = {.lex_state = 130, .external_lex_state = 2}, + [3337] = {.lex_state = 130, .external_lex_state = 2}, + [3338] = {.lex_state = 130, .external_lex_state = 2}, + [3339] = {.lex_state = 130, .external_lex_state = 2}, + [3340] = {.lex_state = 130, .external_lex_state = 2}, + [3341] = {.lex_state = 130, .external_lex_state = 2}, + [3342] = {.lex_state = 130, .external_lex_state = 2}, + [3343] = {.lex_state = 130, .external_lex_state = 2}, + [3344] = {.lex_state = 130, .external_lex_state = 2}, + [3345] = {.lex_state = 130, .external_lex_state = 2}, + [3346] = {.lex_state = 130, .external_lex_state = 2}, + [3347] = {.lex_state = 130, .external_lex_state = 4}, + [3348] = {.lex_state = 130, .external_lex_state = 4}, + [3349] = {.lex_state = 130, .external_lex_state = 2}, + [3350] = {.lex_state = 130, .external_lex_state = 2}, + [3351] = {.lex_state = 130, .external_lex_state = 8}, + [3352] = {.lex_state = 130, .external_lex_state = 2}, + [3353] = {.lex_state = 282, .external_lex_state = 4}, + [3354] = {.lex_state = 130, .external_lex_state = 8}, + [3355] = {.lex_state = 130, .external_lex_state = 8}, + [3356] = {.lex_state = 130, .external_lex_state = 4}, + [3357] = {.lex_state = 130, .external_lex_state = 8}, + [3358] = {.lex_state = 130, .external_lex_state = 8}, + [3359] = {.lex_state = 130, .external_lex_state = 8}, + [3360] = {.lex_state = 130, .external_lex_state = 8}, + [3361] = {.lex_state = 282, .external_lex_state = 2}, + [3362] = {.lex_state = 130, .external_lex_state = 4}, + [3363] = {.lex_state = 130, .external_lex_state = 8}, + [3364] = {.lex_state = 130, .external_lex_state = 8}, + [3365] = {.lex_state = 130, .external_lex_state = 8}, + [3366] = {.lex_state = 130, .external_lex_state = 8}, + [3367] = {.lex_state = 130, .external_lex_state = 8}, + [3368] = {.lex_state = 130, .external_lex_state = 8}, + [3369] = {.lex_state = 130, .external_lex_state = 4}, + [3370] = {.lex_state = 130, .external_lex_state = 4}, + [3371] = {.lex_state = 282, .external_lex_state = 4}, + [3372] = {.lex_state = 130, .external_lex_state = 4}, + [3373] = {.lex_state = 130, .external_lex_state = 8}, + [3374] = {.lex_state = 130, .external_lex_state = 4}, + [3375] = {.lex_state = 130, .external_lex_state = 8}, + [3376] = {.lex_state = 130, .external_lex_state = 4}, + [3377] = {.lex_state = 130, .external_lex_state = 8}, + [3378] = {.lex_state = 130, .external_lex_state = 4}, + [3379] = {.lex_state = 282, .external_lex_state = 4}, + [3380] = {.lex_state = 130, .external_lex_state = 4}, + [3381] = {.lex_state = 132, .external_lex_state = 2}, + [3382] = {.lex_state = 132, .external_lex_state = 2}, + [3383] = {.lex_state = 130, .external_lex_state = 4}, + [3384] = {.lex_state = 130, .external_lex_state = 8}, + [3385] = {.lex_state = 282, .external_lex_state = 2}, + [3386] = {.lex_state = 130, .external_lex_state = 4}, + [3387] = {.lex_state = 132, .external_lex_state = 2}, + [3388] = {.lex_state = 132, .external_lex_state = 2}, + [3389] = {.lex_state = 282, .external_lex_state = 8}, + [3390] = {.lex_state = 133, .external_lex_state = 2}, + [3391] = {.lex_state = 133, .external_lex_state = 2}, + [3392] = {.lex_state = 132, .external_lex_state = 2}, + [3393] = {.lex_state = 133, .external_lex_state = 2}, + [3394] = {.lex_state = 282, .external_lex_state = 8}, + [3395] = {.lex_state = 282, .external_lex_state = 8}, + [3396] = {.lex_state = 282, .external_lex_state = 2}, + [3397] = {.lex_state = 135, .external_lex_state = 2}, + [3398] = {.lex_state = 135, .external_lex_state = 2}, + [3399] = {.lex_state = 135, .external_lex_state = 2}, + [3400] = {.lex_state = 133, .external_lex_state = 2}, + [3401] = {.lex_state = 135, .external_lex_state = 2}, + [3402] = {.lex_state = 282, .external_lex_state = 2}, + [3403] = {.lex_state = 136, .external_lex_state = 2}, + [3404] = {.lex_state = 282, .external_lex_state = 2}, + [3405] = {.lex_state = 136, .external_lex_state = 2}, + [3406] = {.lex_state = 135, .external_lex_state = 2}, + [3407] = {.lex_state = 136, .external_lex_state = 2}, + [3408] = {.lex_state = 136, .external_lex_state = 2}, + [3409] = {.lex_state = 136, .external_lex_state = 2}, + [3410] = {.lex_state = 282, .external_lex_state = 2}, + [3411] = {.lex_state = 132, .external_lex_state = 2}, + [3412] = {.lex_state = 132, .external_lex_state = 2}, + [3413] = {.lex_state = 135, .external_lex_state = 2}, + [3414] = {.lex_state = 132, .external_lex_state = 8}, + [3415] = {.lex_state = 120, .external_lex_state = 8}, + [3416] = {.lex_state = 136, .external_lex_state = 2}, + [3417] = {.lex_state = 130, .external_lex_state = 2}, + [3418] = {.lex_state = 132, .external_lex_state = 2}, + [3419] = {.lex_state = 132, .external_lex_state = 2}, + [3420] = {.lex_state = 135, .external_lex_state = 2}, + [3421] = {.lex_state = 132, .external_lex_state = 2}, + [3422] = {.lex_state = 132, .external_lex_state = 2}, + [3423] = {.lex_state = 90, .external_lex_state = 2}, + [3424] = {.lex_state = 132, .external_lex_state = 2}, + [3425] = {.lex_state = 132, .external_lex_state = 2}, + [3426] = {.lex_state = 132, .external_lex_state = 2}, + [3427] = {.lex_state = 132, .external_lex_state = 2}, + [3428] = {.lex_state = 132, .external_lex_state = 2}, + [3429] = {.lex_state = 132, .external_lex_state = 2}, + [3430] = {.lex_state = 132, .external_lex_state = 2}, + [3431] = {.lex_state = 136, .external_lex_state = 2}, + [3432] = {.lex_state = 132, .external_lex_state = 2}, + [3433] = {.lex_state = 136, .external_lex_state = 2}, + [3434] = {.lex_state = 132, .external_lex_state = 2}, + [3435] = {.lex_state = 136, .external_lex_state = 2}, + [3436] = {.lex_state = 90, .external_lex_state = 2}, + [3437] = {.lex_state = 90, .external_lex_state = 2}, + [3438] = {.lex_state = 132, .external_lex_state = 2}, + [3439] = {.lex_state = 132, .external_lex_state = 2}, + [3440] = {.lex_state = 282, .external_lex_state = 8}, + [3441] = {.lex_state = 132, .external_lex_state = 2}, + [3442] = {.lex_state = 132, .external_lex_state = 2}, + [3443] = {.lex_state = 282, .external_lex_state = 8}, + [3444] = {.lex_state = 132, .external_lex_state = 2}, + [3445] = {.lex_state = 132, .external_lex_state = 2}, + [3446] = {.lex_state = 132, .external_lex_state = 2}, + [3447] = {.lex_state = 132, .external_lex_state = 2}, + [3448] = {.lex_state = 132, .external_lex_state = 2}, + [3449] = {.lex_state = 132, .external_lex_state = 2}, + [3450] = {.lex_state = 132, .external_lex_state = 2}, + [3451] = {.lex_state = 130, .external_lex_state = 2}, + [3452] = {.lex_state = 132, .external_lex_state = 2}, + [3453] = {.lex_state = 132, .external_lex_state = 2}, + [3454] = {.lex_state = 132, .external_lex_state = 2}, + [3455] = {.lex_state = 132, .external_lex_state = 2}, + [3456] = {.lex_state = 132, .external_lex_state = 2}, + [3457] = {.lex_state = 132, .external_lex_state = 2}, + [3458] = {.lex_state = 132, .external_lex_state = 2}, + [3459] = {.lex_state = 132, .external_lex_state = 2}, + [3460] = {.lex_state = 132, .external_lex_state = 2}, + [3461] = {.lex_state = 132, .external_lex_state = 2}, + [3462] = {.lex_state = 132, .external_lex_state = 2}, + [3463] = {.lex_state = 132, .external_lex_state = 2}, + [3464] = {.lex_state = 132, .external_lex_state = 2}, + [3465] = {.lex_state = 282, .external_lex_state = 8}, + [3466] = {.lex_state = 132, .external_lex_state = 2}, + [3467] = {.lex_state = 132, .external_lex_state = 2}, + [3468] = {.lex_state = 132, .external_lex_state = 2}, + [3469] = {.lex_state = 132, .external_lex_state = 2}, + [3470] = {.lex_state = 132, .external_lex_state = 2}, + [3471] = {.lex_state = 132, .external_lex_state = 2}, + [3472] = {.lex_state = 120, .external_lex_state = 8}, + [3473] = {.lex_state = 132, .external_lex_state = 2}, + [3474] = {.lex_state = 132, .external_lex_state = 2}, + [3475] = {.lex_state = 135, .external_lex_state = 2}, + [3476] = {.lex_state = 132, .external_lex_state = 2}, + [3477] = {.lex_state = 135, .external_lex_state = 2}, + [3478] = {.lex_state = 130, .external_lex_state = 2}, + [3479] = {.lex_state = 132, .external_lex_state = 2}, + [3480] = {.lex_state = 120, .external_lex_state = 8}, + [3481] = {.lex_state = 132, .external_lex_state = 2}, + [3482] = {.lex_state = 132, .external_lex_state = 2}, + [3483] = {.lex_state = 132, .external_lex_state = 2}, + [3484] = {.lex_state = 136, .external_lex_state = 2}, + [3485] = {.lex_state = 130, .external_lex_state = 2}, + [3486] = {.lex_state = 282, .external_lex_state = 8}, + [3487] = {.lex_state = 130, .external_lex_state = 2}, + [3488] = {.lex_state = 135, .external_lex_state = 2}, + [3489] = {.lex_state = 130, .external_lex_state = 2}, + [3490] = {.lex_state = 136, .external_lex_state = 2}, + [3491] = {.lex_state = 282, .external_lex_state = 8}, + [3492] = {.lex_state = 282, .external_lex_state = 8}, + [3493] = {.lex_state = 136, .external_lex_state = 2}, + [3494] = {.lex_state = 135, .external_lex_state = 2}, + [3495] = {.lex_state = 135, .external_lex_state = 2}, + [3496] = {.lex_state = 282, .external_lex_state = 8}, + [3497] = {.lex_state = 135, .external_lex_state = 2}, + [3498] = {.lex_state = 136, .external_lex_state = 2}, + [3499] = {.lex_state = 136, .external_lex_state = 2}, + [3500] = {.lex_state = 282, .external_lex_state = 8}, + [3501] = {.lex_state = 135, .external_lex_state = 2}, + [3502] = {.lex_state = 130, .external_lex_state = 2}, + [3503] = {.lex_state = 282, .external_lex_state = 8}, + [3504] = {.lex_state = 136, .external_lex_state = 2}, + [3505] = {.lex_state = 135, .external_lex_state = 2}, + [3506] = {.lex_state = 90, .external_lex_state = 2}, + [3507] = {.lex_state = 136, .external_lex_state = 2}, + [3508] = {.lex_state = 132, .external_lex_state = 2}, + [3509] = {.lex_state = 132, .external_lex_state = 2}, + [3510] = {.lex_state = 132, .external_lex_state = 2}, + [3511] = {.lex_state = 132, .external_lex_state = 2}, + [3512] = {.lex_state = 90, .external_lex_state = 2}, + [3513] = {.lex_state = 135, .external_lex_state = 2}, + [3514] = {.lex_state = 136, .external_lex_state = 2}, + [3515] = {.lex_state = 135, .external_lex_state = 2}, + [3516] = {.lex_state = 132, .external_lex_state = 2}, + [3517] = {.lex_state = 135, .external_lex_state = 2}, + [3518] = {.lex_state = 135, .external_lex_state = 2}, + [3519] = {.lex_state = 130, .external_lex_state = 2}, + [3520] = {.lex_state = 130, .external_lex_state = 4}, + [3521] = {.lex_state = 90, .external_lex_state = 2}, + [3522] = {.lex_state = 130, .external_lex_state = 2}, + [3523] = {.lex_state = 132, .external_lex_state = 2}, + [3524] = {.lex_state = 90, .external_lex_state = 2}, + [3525] = {.lex_state = 136, .external_lex_state = 2}, + [3526] = {.lex_state = 132, .external_lex_state = 2}, + [3527] = {.lex_state = 132, .external_lex_state = 2}, + [3528] = {.lex_state = 132, .external_lex_state = 2}, + [3529] = {.lex_state = 282, .external_lex_state = 8}, + [3530] = {.lex_state = 135, .external_lex_state = 2}, + [3531] = {.lex_state = 135, .external_lex_state = 2}, + [3532] = {.lex_state = 130, .external_lex_state = 2}, + [3533] = {.lex_state = 282, .external_lex_state = 4}, + [3534] = {.lex_state = 130, .external_lex_state = 2}, + [3535] = {.lex_state = 132, .external_lex_state = 2}, + [3536] = {.lex_state = 130, .external_lex_state = 2}, + [3537] = {.lex_state = 130, .external_lex_state = 2}, + [3538] = {.lex_state = 132, .external_lex_state = 2}, + [3539] = {.lex_state = 136, .external_lex_state = 2}, + [3540] = {.lex_state = 136, .external_lex_state = 2}, + [3541] = {.lex_state = 130, .external_lex_state = 2}, + [3542] = {.lex_state = 136, .external_lex_state = 2}, + [3543] = {.lex_state = 130, .external_lex_state = 2}, + [3544] = {.lex_state = 136, .external_lex_state = 2}, + [3545] = {.lex_state = 136, .external_lex_state = 2}, + [3546] = {.lex_state = 282, .external_lex_state = 8}, + [3547] = {.lex_state = 136, .external_lex_state = 2}, + [3548] = {.lex_state = 132, .external_lex_state = 2}, + [3549] = {.lex_state = 282, .external_lex_state = 8}, + [3550] = {.lex_state = 130, .external_lex_state = 2}, + [3551] = {.lex_state = 135, .external_lex_state = 2}, + [3552] = {.lex_state = 132, .external_lex_state = 2}, + [3553] = {.lex_state = 136, .external_lex_state = 2}, + [3554] = {.lex_state = 135, .external_lex_state = 2}, + [3555] = {.lex_state = 135, .external_lex_state = 2}, + [3556] = {.lex_state = 135, .external_lex_state = 2}, + [3557] = {.lex_state = 132, .external_lex_state = 2}, + [3558] = {.lex_state = 136, .external_lex_state = 2}, + [3559] = {.lex_state = 135, .external_lex_state = 2}, + [3560] = {.lex_state = 138, .external_lex_state = 2}, + [3561] = {.lex_state = 282, .external_lex_state = 4}, + [3562] = {.lex_state = 138, .external_lex_state = 2}, + [3563] = {.lex_state = 138, .external_lex_state = 2}, + [3564] = {.lex_state = 282, .external_lex_state = 4}, + [3565] = {.lex_state = 282, .external_lex_state = 4}, + [3566] = {.lex_state = 138, .external_lex_state = 2}, + [3567] = {.lex_state = 130, .external_lex_state = 2}, + [3568] = {.lex_state = 282, .external_lex_state = 4}, + [3569] = {.lex_state = 282, .external_lex_state = 4}, + [3570] = {.lex_state = 282, .external_lex_state = 4}, + [3571] = {.lex_state = 138, .external_lex_state = 2}, + [3572] = {.lex_state = 282, .external_lex_state = 4}, + [3573] = {.lex_state = 138, .external_lex_state = 2}, + [3574] = {.lex_state = 138, .external_lex_state = 2}, + [3575] = {.lex_state = 138, .external_lex_state = 2}, + [3576] = {.lex_state = 138, .external_lex_state = 2}, + [3577] = {.lex_state = 138, .external_lex_state = 2}, + [3578] = {.lex_state = 130, .external_lex_state = 2}, + [3579] = {.lex_state = 138, .external_lex_state = 2}, + [3580] = {.lex_state = 130, .external_lex_state = 2}, + [3581] = {.lex_state = 138, .external_lex_state = 2}, + [3582] = {.lex_state = 138, .external_lex_state = 2}, + [3583] = {.lex_state = 130, .external_lex_state = 8}, + [3584] = {.lex_state = 130, .external_lex_state = 2}, + [3585] = {.lex_state = 138, .external_lex_state = 2}, + [3586] = {.lex_state = 138, .external_lex_state = 2}, + [3587] = {.lex_state = 130, .external_lex_state = 2}, + [3588] = {.lex_state = 282, .external_lex_state = 4}, + [3589] = {.lex_state = 138, .external_lex_state = 2}, + [3590] = {.lex_state = 130, .external_lex_state = 9}, + [3591] = {.lex_state = 138, .external_lex_state = 2}, + [3592] = {.lex_state = 282, .external_lex_state = 8}, + [3593] = {.lex_state = 130, .external_lex_state = 2}, + [3594] = {.lex_state = 282, .external_lex_state = 4}, + [3595] = {.lex_state = 93, .external_lex_state = 2}, + [3596] = {.lex_state = 130, .external_lex_state = 2}, + [3597] = {.lex_state = 93, .external_lex_state = 2}, + [3598] = {.lex_state = 93, .external_lex_state = 2}, + [3599] = {.lex_state = 130, .external_lex_state = 9}, + [3600] = {.lex_state = 93, .external_lex_state = 2}, + [3601] = {.lex_state = 93, .external_lex_state = 2}, + [3602] = {.lex_state = 130, .external_lex_state = 9}, + [3603] = {.lex_state = 93, .external_lex_state = 2}, + [3604] = {.lex_state = 93, .external_lex_state = 2}, + [3605] = {.lex_state = 130, .external_lex_state = 9}, + [3606] = {.lex_state = 93, .external_lex_state = 2}, + [3607] = {.lex_state = 93, .external_lex_state = 2}, + [3608] = {.lex_state = 130, .external_lex_state = 2}, + [3609] = {.lex_state = 93, .external_lex_state = 2}, + [3610] = {.lex_state = 130, .external_lex_state = 9}, + [3611] = {.lex_state = 93, .external_lex_state = 2}, + [3612] = {.lex_state = 93, .external_lex_state = 2}, + [3613] = {.lex_state = 132, .external_lex_state = 2}, + [3614] = {.lex_state = 282, .external_lex_state = 8}, + [3615] = {.lex_state = 282, .external_lex_state = 8}, + [3616] = {.lex_state = 93, .external_lex_state = 2}, + [3617] = {.lex_state = 93, .external_lex_state = 2}, + [3618] = {.lex_state = 282, .external_lex_state = 4}, + [3619] = {.lex_state = 282, .external_lex_state = 8}, + [3620] = {.lex_state = 282, .external_lex_state = 8}, + [3621] = {.lex_state = 93, .external_lex_state = 2}, + [3622] = {.lex_state = 93, .external_lex_state = 2}, + [3623] = {.lex_state = 282, .external_lex_state = 4}, + [3624] = {.lex_state = 282, .external_lex_state = 4}, + [3625] = {.lex_state = 282, .external_lex_state = 4}, + [3626] = {.lex_state = 282, .external_lex_state = 4}, + [3627] = {.lex_state = 130, .external_lex_state = 2}, + [3628] = {.lex_state = 93, .external_lex_state = 2}, + [3629] = {.lex_state = 282, .external_lex_state = 8}, + [3630] = {.lex_state = 282, .external_lex_state = 4}, + [3631] = {.lex_state = 130, .external_lex_state = 2}, + [3632] = {.lex_state = 282, .external_lex_state = 8}, + [3633] = {.lex_state = 93, .external_lex_state = 2}, + [3634] = {.lex_state = 93, .external_lex_state = 2}, + [3635] = {.lex_state = 93, .external_lex_state = 2}, + [3636] = {.lex_state = 282, .external_lex_state = 8}, + [3637] = {.lex_state = 93, .external_lex_state = 2}, + [3638] = {.lex_state = 282, .external_lex_state = 8}, + [3639] = {.lex_state = 93, .external_lex_state = 2}, + [3640] = {.lex_state = 93, .external_lex_state = 2}, + [3641] = {.lex_state = 130, .external_lex_state = 2}, + [3642] = {.lex_state = 130, .external_lex_state = 2}, + [3643] = {.lex_state = 93, .external_lex_state = 2}, + [3644] = {.lex_state = 93, .external_lex_state = 2}, + [3645] = {.lex_state = 93, .external_lex_state = 2}, + [3646] = {.lex_state = 130, .external_lex_state = 2}, + [3647] = {.lex_state = 93, .external_lex_state = 2}, + [3648] = {.lex_state = 93, .external_lex_state = 2}, + [3649] = {.lex_state = 93, .external_lex_state = 2}, + [3650] = {.lex_state = 130, .external_lex_state = 2}, + [3651] = {.lex_state = 93, .external_lex_state = 2}, + [3652] = {.lex_state = 93, .external_lex_state = 2}, + [3653] = {.lex_state = 130, .external_lex_state = 2}, + [3654] = {.lex_state = 93, .external_lex_state = 2}, + [3655] = {.lex_state = 93, .external_lex_state = 2}, + [3656] = {.lex_state = 130, .external_lex_state = 2}, + [3657] = {.lex_state = 93, .external_lex_state = 2}, + [3658] = {.lex_state = 93, .external_lex_state = 2}, + [3659] = {.lex_state = 282, .external_lex_state = 4}, + [3660] = {.lex_state = 282, .external_lex_state = 4}, + [3661] = {.lex_state = 282, .external_lex_state = 8}, + [3662] = {.lex_state = 130, .external_lex_state = 2}, + [3663] = {.lex_state = 282, .external_lex_state = 4}, + [3664] = {.lex_state = 282, .external_lex_state = 4}, + [3665] = {.lex_state = 282, .external_lex_state = 4}, + [3666] = {.lex_state = 282, .external_lex_state = 4}, + [3667] = {.lex_state = 282, .external_lex_state = 4}, + [3668] = {.lex_state = 93, .external_lex_state = 2}, + [3669] = {.lex_state = 130, .external_lex_state = 2}, + [3670] = {.lex_state = 93, .external_lex_state = 2}, + [3671] = {.lex_state = 282, .external_lex_state = 4}, + [3672] = {.lex_state = 93, .external_lex_state = 2}, + [3673] = {.lex_state = 132, .external_lex_state = 2}, + [3674] = {.lex_state = 282, .external_lex_state = 4}, + [3675] = {.lex_state = 93, .external_lex_state = 2}, + [3676] = {.lex_state = 282, .external_lex_state = 4}, + [3677] = {.lex_state = 132, .external_lex_state = 2}, + [3678] = {.lex_state = 128, .external_lex_state = 2}, + [3679] = {.lex_state = 132, .external_lex_state = 2}, + [3680] = {.lex_state = 132, .external_lex_state = 2}, + [3681] = {.lex_state = 132, .external_lex_state = 2}, + [3682] = {.lex_state = 132, .external_lex_state = 2}, + [3683] = {.lex_state = 132, .external_lex_state = 2}, + [3684] = {.lex_state = 132, .external_lex_state = 2}, + [3685] = {.lex_state = 132, .external_lex_state = 2}, + [3686] = {.lex_state = 132, .external_lex_state = 2}, + [3687] = {.lex_state = 132, .external_lex_state = 2}, + [3688] = {.lex_state = 132, .external_lex_state = 2}, + [3689] = {.lex_state = 132, .external_lex_state = 2}, + [3690] = {.lex_state = 130, .external_lex_state = 2}, + [3691] = {.lex_state = 132, .external_lex_state = 2}, + [3692] = {.lex_state = 132, .external_lex_state = 2}, + [3693] = {.lex_state = 128, .external_lex_state = 2}, + [3694] = {.lex_state = 132, .external_lex_state = 2}, + [3695] = {.lex_state = 128, .external_lex_state = 2}, + [3696] = {.lex_state = 128, .external_lex_state = 2}, + [3697] = {.lex_state = 132, .external_lex_state = 2}, + [3698] = {.lex_state = 132, .external_lex_state = 2}, + [3699] = {.lex_state = 132, .external_lex_state = 2}, + [3700] = {.lex_state = 282, .external_lex_state = 2}, + [3701] = {.lex_state = 132, .external_lex_state = 2}, + [3702] = {.lex_state = 132, .external_lex_state = 2}, + [3703] = {.lex_state = 128, .external_lex_state = 2}, + [3704] = {.lex_state = 128, .external_lex_state = 2}, + [3705] = {.lex_state = 132, .external_lex_state = 2}, + [3706] = {.lex_state = 282, .external_lex_state = 2}, + [3707] = {.lex_state = 128, .external_lex_state = 2}, + [3708] = {.lex_state = 132, .external_lex_state = 2}, + [3709] = {.lex_state = 130, .external_lex_state = 2}, + [3710] = {.lex_state = 128, .external_lex_state = 2}, + [3711] = {.lex_state = 128, .external_lex_state = 2}, + [3712] = {.lex_state = 132, .external_lex_state = 2}, + [3713] = {.lex_state = 128, .external_lex_state = 2}, + [3714] = {.lex_state = 128, .external_lex_state = 2}, + [3715] = {.lex_state = 128, .external_lex_state = 2}, + [3716] = {.lex_state = 128, .external_lex_state = 2}, + [3717] = {.lex_state = 128, .external_lex_state = 2}, + [3718] = {.lex_state = 130, .external_lex_state = 4}, + [3719] = {.lex_state = 282, .external_lex_state = 8}, + [3720] = {.lex_state = 128, .external_lex_state = 2}, + [3721] = {.lex_state = 282, .external_lex_state = 8}, + [3722] = {.lex_state = 130, .external_lex_state = 9}, + [3723] = {.lex_state = 130, .external_lex_state = 9}, + [3724] = {.lex_state = 282, .external_lex_state = 8}, + [3725] = {.lex_state = 282, .external_lex_state = 8}, + [3726] = {.lex_state = 282, .external_lex_state = 8}, + [3727] = {.lex_state = 132, .external_lex_state = 2}, + [3728] = {.lex_state = 130, .external_lex_state = 4}, + [3729] = {.lex_state = 282, .external_lex_state = 8}, + [3730] = {.lex_state = 132, .external_lex_state = 2}, + [3731] = {.lex_state = 132, .external_lex_state = 2}, + [3732] = {.lex_state = 282, .external_lex_state = 8}, + [3733] = {.lex_state = 282, .external_lex_state = 8}, + [3734] = {.lex_state = 128, .external_lex_state = 2}, + [3735] = {.lex_state = 282, .external_lex_state = 2}, + [3736] = {.lex_state = 128, .external_lex_state = 2}, + [3737] = {.lex_state = 128, .external_lex_state = 2}, + [3738] = {.lex_state = 130, .external_lex_state = 4}, + [3739] = {.lex_state = 128, .external_lex_state = 2}, + [3740] = {.lex_state = 282, .external_lex_state = 8}, + [3741] = {.lex_state = 128, .external_lex_state = 2}, + [3742] = {.lex_state = 130, .external_lex_state = 2}, + [3743] = {.lex_state = 282, .external_lex_state = 8}, + [3744] = {.lex_state = 282, .external_lex_state = 8}, + [3745] = {.lex_state = 130, .external_lex_state = 2}, + [3746] = {.lex_state = 128, .external_lex_state = 2}, + [3747] = {.lex_state = 282, .external_lex_state = 8}, + [3748] = {.lex_state = 282, .external_lex_state = 8}, + [3749] = {.lex_state = 128, .external_lex_state = 2}, + [3750] = {.lex_state = 128, .external_lex_state = 2}, + [3751] = {.lex_state = 128, .external_lex_state = 2}, + [3752] = {.lex_state = 282, .external_lex_state = 2}, + [3753] = {.lex_state = 130, .external_lex_state = 4}, + [3754] = {.lex_state = 128, .external_lex_state = 2}, + [3755] = {.lex_state = 282, .external_lex_state = 8}, + [3756] = {.lex_state = 282, .external_lex_state = 8}, + [3757] = {.lex_state = 282, .external_lex_state = 8}, + [3758] = {.lex_state = 132, .external_lex_state = 2}, + [3759] = {.lex_state = 130, .external_lex_state = 9}, + [3760] = {.lex_state = 130, .external_lex_state = 2}, + [3761] = {.lex_state = 132, .external_lex_state = 2}, + [3762] = {.lex_state = 128, .external_lex_state = 2}, + [3763] = {.lex_state = 132, .external_lex_state = 2}, + [3764] = {.lex_state = 128, .external_lex_state = 2}, + [3765] = {.lex_state = 132, .external_lex_state = 2}, + [3766] = {.lex_state = 282, .external_lex_state = 2}, + [3767] = {.lex_state = 132, .external_lex_state = 2}, + [3768] = {.lex_state = 128, .external_lex_state = 2}, + [3769] = {.lex_state = 132, .external_lex_state = 2}, + [3770] = {.lex_state = 132, .external_lex_state = 2}, + [3771] = {.lex_state = 128, .external_lex_state = 2}, + [3772] = {.lex_state = 132, .external_lex_state = 2}, + [3773] = {.lex_state = 128, .external_lex_state = 2}, + [3774] = {.lex_state = 132, .external_lex_state = 2}, + [3775] = {.lex_state = 132, .external_lex_state = 2}, + [3776] = {.lex_state = 282, .external_lex_state = 2}, + [3777] = {.lex_state = 128, .external_lex_state = 2}, + [3778] = {.lex_state = 128, .external_lex_state = 2}, + [3779] = {.lex_state = 128, .external_lex_state = 2}, + [3780] = {.lex_state = 128, .external_lex_state = 2}, + [3781] = {.lex_state = 132, .external_lex_state = 2}, + [3782] = {.lex_state = 132, .external_lex_state = 2}, + [3783] = {.lex_state = 128, .external_lex_state = 2}, + [3784] = {.lex_state = 130, .external_lex_state = 2}, + [3785] = {.lex_state = 130, .external_lex_state = 2}, + [3786] = {.lex_state = 132, .external_lex_state = 2}, + [3787] = {.lex_state = 130, .external_lex_state = 8}, + [3788] = {.lex_state = 130, .external_lex_state = 2}, + [3789] = {.lex_state = 282, .external_lex_state = 2}, + [3790] = {.lex_state = 132, .external_lex_state = 2}, + [3791] = {.lex_state = 94, .external_lex_state = 2}, + [3792] = {.lex_state = 130, .external_lex_state = 2}, + [3793] = {.lex_state = 130, .external_lex_state = 2}, + [3794] = {.lex_state = 130, .external_lex_state = 2}, + [3795] = {.lex_state = 282, .external_lex_state = 2}, + [3796] = {.lex_state = 130, .external_lex_state = 9}, + [3797] = {.lex_state = 132, .external_lex_state = 2}, + [3798] = {.lex_state = 130, .external_lex_state = 2}, + [3799] = {.lex_state = 282, .external_lex_state = 2}, + [3800] = {.lex_state = 130, .external_lex_state = 9}, + [3801] = {.lex_state = 130, .external_lex_state = 2}, + [3802] = {.lex_state = 130, .external_lex_state = 2}, + [3803] = {.lex_state = 132, .external_lex_state = 2}, + [3804] = {.lex_state = 132, .external_lex_state = 2}, + [3805] = {.lex_state = 131, .external_lex_state = 2}, + [3806] = {.lex_state = 132, .external_lex_state = 2}, + [3807] = {.lex_state = 132, .external_lex_state = 2}, + [3808] = {.lex_state = 130, .external_lex_state = 8}, + [3809] = {.lex_state = 132, .external_lex_state = 2}, + [3810] = {.lex_state = 132, .external_lex_state = 2}, + [3811] = {.lex_state = 132, .external_lex_state = 2}, + [3812] = {.lex_state = 282, .external_lex_state = 2}, + [3813] = {.lex_state = 282, .external_lex_state = 2}, + [3814] = {.lex_state = 282, .external_lex_state = 2}, + [3815] = {.lex_state = 132, .external_lex_state = 2}, + [3816] = {.lex_state = 130, .external_lex_state = 2}, + [3817] = {.lex_state = 282, .external_lex_state = 2}, + [3818] = {.lex_state = 130, .external_lex_state = 2}, + [3819] = {.lex_state = 282, .external_lex_state = 2}, + [3820] = {.lex_state = 132, .external_lex_state = 2}, + [3821] = {.lex_state = 131, .external_lex_state = 2}, + [3822] = {.lex_state = 282, .external_lex_state = 2}, + [3823] = {.lex_state = 132, .external_lex_state = 2}, + [3824] = {.lex_state = 282, .external_lex_state = 2}, + [3825] = {.lex_state = 130, .external_lex_state = 2}, + [3826] = {.lex_state = 132, .external_lex_state = 2}, + [3827] = {.lex_state = 132, .external_lex_state = 2}, + [3828] = {.lex_state = 130, .external_lex_state = 2}, + [3829] = {.lex_state = 282, .external_lex_state = 2}, + [3830] = {.lex_state = 130, .external_lex_state = 9}, + [3831] = {.lex_state = 130, .external_lex_state = 8}, + [3832] = {.lex_state = 130, .external_lex_state = 2}, + [3833] = {.lex_state = 130, .external_lex_state = 2}, + [3834] = {.lex_state = 130, .external_lex_state = 2}, + [3835] = {.lex_state = 282, .external_lex_state = 2}, + [3836] = {.lex_state = 282, .external_lex_state = 2}, + [3837] = {.lex_state = 282, .external_lex_state = 2}, + [3838] = {.lex_state = 130, .external_lex_state = 2}, + [3839] = {.lex_state = 282, .external_lex_state = 2}, + [3840] = {.lex_state = 130, .external_lex_state = 2}, + [3841] = {.lex_state = 282, .external_lex_state = 2}, + [3842] = {.lex_state = 282, .external_lex_state = 2}, + [3843] = {.lex_state = 130, .external_lex_state = 2}, + [3844] = {.lex_state = 130, .external_lex_state = 2}, + [3845] = {.lex_state = 132, .external_lex_state = 2}, + [3846] = {.lex_state = 94, .external_lex_state = 2}, + [3847] = {.lex_state = 130, .external_lex_state = 2}, + [3848] = {.lex_state = 132, .external_lex_state = 2}, + [3849] = {.lex_state = 130, .external_lex_state = 2}, + [3850] = {.lex_state = 282, .external_lex_state = 2}, + [3851] = {.lex_state = 132, .external_lex_state = 2}, + [3852] = {.lex_state = 132, .external_lex_state = 2}, + [3853] = {.lex_state = 132, .external_lex_state = 2}, + [3854] = {.lex_state = 130, .external_lex_state = 2}, + [3855] = {.lex_state = 132, .external_lex_state = 2}, + [3856] = {.lex_state = 130, .external_lex_state = 2}, + [3857] = {.lex_state = 132, .external_lex_state = 2}, + [3858] = {.lex_state = 130, .external_lex_state = 2}, + [3859] = {.lex_state = 132, .external_lex_state = 2}, + [3860] = {.lex_state = 282, .external_lex_state = 2}, + [3861] = {.lex_state = 130, .external_lex_state = 2}, + [3862] = {.lex_state = 132, .external_lex_state = 2}, + [3863] = {.lex_state = 94, .external_lex_state = 2}, + [3864] = {.lex_state = 130, .external_lex_state = 2}, + [3865] = {.lex_state = 132, .external_lex_state = 2}, + [3866] = {.lex_state = 282, .external_lex_state = 2}, + [3867] = {.lex_state = 132, .external_lex_state = 2}, + [3868] = {.lex_state = 132, .external_lex_state = 2}, + [3869] = {.lex_state = 132, .external_lex_state = 2}, + [3870] = {.lex_state = 132, .external_lex_state = 2}, + [3871] = {.lex_state = 130, .external_lex_state = 2}, + [3872] = {.lex_state = 130, .external_lex_state = 2}, + [3873] = {.lex_state = 282, .external_lex_state = 2}, + [3874] = {.lex_state = 132, .external_lex_state = 2}, + [3875] = {.lex_state = 130, .external_lex_state = 2}, + [3876] = {.lex_state = 132, .external_lex_state = 2}, + [3877] = {.lex_state = 282, .external_lex_state = 2}, + [3878] = {.lex_state = 132, .external_lex_state = 2}, + [3879] = {.lex_state = 132, .external_lex_state = 2}, + [3880] = {.lex_state = 130, .external_lex_state = 2}, + [3881] = {.lex_state = 130, .external_lex_state = 2}, + [3882] = {.lex_state = 282, .external_lex_state = 2}, + [3883] = {.lex_state = 132, .external_lex_state = 2}, + [3884] = {.lex_state = 94, .external_lex_state = 2}, + [3885] = {.lex_state = 130, .external_lex_state = 2}, + [3886] = {.lex_state = 282, .external_lex_state = 2}, + [3887] = {.lex_state = 282, .external_lex_state = 2}, + [3888] = {.lex_state = 94, .external_lex_state = 2}, + [3889] = {.lex_state = 131, .external_lex_state = 2}, + [3890] = {.lex_state = 130, .external_lex_state = 9}, + [3891] = {.lex_state = 130, .external_lex_state = 9}, + [3892] = {.lex_state = 130, .external_lex_state = 2}, + [3893] = {.lex_state = 94, .external_lex_state = 2}, + [3894] = {.lex_state = 132, .external_lex_state = 2}, + [3895] = {.lex_state = 130, .external_lex_state = 2}, + [3896] = {.lex_state = 131, .external_lex_state = 2}, + [3897] = {.lex_state = 94, .external_lex_state = 2}, + [3898] = {.lex_state = 131, .external_lex_state = 2}, + [3899] = {.lex_state = 282, .external_lex_state = 2}, + [3900] = {.lex_state = 132, .external_lex_state = 2}, + [3901] = {.lex_state = 130, .external_lex_state = 2}, + [3902] = {.lex_state = 130, .external_lex_state = 9}, + [3903] = {.lex_state = 132, .external_lex_state = 2}, + [3904] = {.lex_state = 132, .external_lex_state = 2}, + [3905] = {.lex_state = 132, .external_lex_state = 2}, + [3906] = {.lex_state = 132, .external_lex_state = 2}, + [3907] = {.lex_state = 132, .external_lex_state = 2}, + [3908] = {.lex_state = 130, .external_lex_state = 9}, + [3909] = {.lex_state = 132, .external_lex_state = 2}, + [3910] = {.lex_state = 128, .external_lex_state = 2}, + [3911] = {.lex_state = 132, .external_lex_state = 2}, + [3912] = {.lex_state = 132, .external_lex_state = 2}, + [3913] = {.lex_state = 130, .external_lex_state = 9}, + [3914] = {.lex_state = 132, .external_lex_state = 2}, + [3915] = {.lex_state = 132, .external_lex_state = 2}, + [3916] = {.lex_state = 130, .external_lex_state = 9}, + [3917] = {.lex_state = 130, .external_lex_state = 2}, + [3918] = {.lex_state = 132, .external_lex_state = 2}, + [3919] = {.lex_state = 130, .external_lex_state = 9}, + [3920] = {.lex_state = 130, .external_lex_state = 2}, + [3921] = {.lex_state = 130, .external_lex_state = 9}, + [3922] = {.lex_state = 130, .external_lex_state = 9}, + [3923] = {.lex_state = 130, .external_lex_state = 9}, + [3924] = {.lex_state = 132, .external_lex_state = 2}, + [3925] = {.lex_state = 132, .external_lex_state = 2}, + [3926] = {.lex_state = 132, .external_lex_state = 2}, + [3927] = {.lex_state = 130, .external_lex_state = 9}, + [3928] = {.lex_state = 132, .external_lex_state = 2}, + [3929] = {.lex_state = 132, .external_lex_state = 2}, + [3930] = {.lex_state = 132, .external_lex_state = 2}, + [3931] = {.lex_state = 130, .external_lex_state = 9}, + [3932] = {.lex_state = 132, .external_lex_state = 2}, + [3933] = {.lex_state = 90, .external_lex_state = 2}, + [3934] = {.lex_state = 132, .external_lex_state = 2}, + [3935] = {.lex_state = 132, .external_lex_state = 2}, + [3936] = {.lex_state = 132, .external_lex_state = 2}, + [3937] = {.lex_state = 132, .external_lex_state = 2}, + [3938] = {.lex_state = 132, .external_lex_state = 2}, + [3939] = {.lex_state = 130, .external_lex_state = 9}, + [3940] = {.lex_state = 132, .external_lex_state = 2}, + [3941] = {.lex_state = 132, .external_lex_state = 2}, + [3942] = {.lex_state = 132, .external_lex_state = 2}, + [3943] = {.lex_state = 130, .external_lex_state = 2}, + [3944] = {.lex_state = 132, .external_lex_state = 2}, + [3945] = {.lex_state = 93, .external_lex_state = 2}, + [3946] = {.lex_state = 130, .external_lex_state = 2}, + [3947] = {.lex_state = 132, .external_lex_state = 2}, + [3948] = {.lex_state = 132, .external_lex_state = 2}, + [3949] = {.lex_state = 132, .external_lex_state = 2}, + [3950] = {.lex_state = 132, .external_lex_state = 2}, + [3951] = {.lex_state = 132, .external_lex_state = 2}, + [3952] = {.lex_state = 130, .external_lex_state = 2}, + [3953] = {.lex_state = 132, .external_lex_state = 2}, + [3954] = {.lex_state = 132, .external_lex_state = 2}, + [3955] = {.lex_state = 132, .external_lex_state = 2}, + [3956] = {.lex_state = 130, .external_lex_state = 2}, + [3957] = {.lex_state = 130, .external_lex_state = 9}, + [3958] = {.lex_state = 130, .external_lex_state = 2}, + [3959] = {.lex_state = 128, .external_lex_state = 2}, + [3960] = {.lex_state = 130, .external_lex_state = 2}, + [3961] = {.lex_state = 132, .external_lex_state = 2}, + [3962] = {.lex_state = 93, .external_lex_state = 2}, + [3963] = {.lex_state = 93, .external_lex_state = 2}, + [3964] = {.lex_state = 90, .external_lex_state = 2}, + [3965] = {.lex_state = 132, .external_lex_state = 2}, + [3966] = {.lex_state = 86, .external_lex_state = 2}, + [3967] = {.lex_state = 86, .external_lex_state = 2}, + [3968] = {.lex_state = 86, .external_lex_state = 2}, + [3969] = {.lex_state = 86, .external_lex_state = 2}, + [3970] = {.lex_state = 282, .external_lex_state = 2}, + [3971] = {.lex_state = 142, .external_lex_state = 2}, + [3972] = {.lex_state = 86, .external_lex_state = 2}, + [3973] = {.lex_state = 86, .external_lex_state = 2}, + [3974] = {.lex_state = 86, .external_lex_state = 2}, + [3975] = {.lex_state = 90, .external_lex_state = 2}, + [3976] = {.lex_state = 130, .external_lex_state = 2}, + [3977] = {.lex_state = 142, .external_lex_state = 2}, + [3978] = {.lex_state = 86, .external_lex_state = 2}, + [3979] = {.lex_state = 282, .external_lex_state = 2}, + [3980] = {.lex_state = 142, .external_lex_state = 2}, + [3981] = {.lex_state = 86, .external_lex_state = 2}, + [3982] = {.lex_state = 86, .external_lex_state = 2}, + [3983] = {.lex_state = 86, .external_lex_state = 2}, + [3984] = {.lex_state = 86, .external_lex_state = 2}, + [3985] = {.lex_state = 86, .external_lex_state = 2}, + [3986] = {.lex_state = 86, .external_lex_state = 2}, + [3987] = {.lex_state = 282, .external_lex_state = 2}, + [3988] = {.lex_state = 142, .external_lex_state = 2}, + [3989] = {.lex_state = 142, .external_lex_state = 2}, + [3990] = {.lex_state = 282, .external_lex_state = 2}, + [3991] = {.lex_state = 282, .external_lex_state = 2}, + [3992] = {.lex_state = 86, .external_lex_state = 2}, + [3993] = {.lex_state = 142, .external_lex_state = 2}, + [3994] = {.lex_state = 86, .external_lex_state = 2}, + [3995] = {.lex_state = 86, .external_lex_state = 2}, + [3996] = {.lex_state = 86, .external_lex_state = 2}, + [3997] = {.lex_state = 86, .external_lex_state = 2}, + [3998] = {.lex_state = 142, .external_lex_state = 2}, + [3999] = {.lex_state = 282, .external_lex_state = 2}, + [4000] = {.lex_state = 86, .external_lex_state = 2}, + [4001] = {.lex_state = 86, .external_lex_state = 2}, + [4002] = {.lex_state = 86, .external_lex_state = 2}, + [4003] = {.lex_state = 142, .external_lex_state = 2}, + [4004] = {.lex_state = 86, .external_lex_state = 2}, + [4005] = {.lex_state = 86, .external_lex_state = 2}, + [4006] = {.lex_state = 86, .external_lex_state = 2}, + [4007] = {.lex_state = 86, .external_lex_state = 2}, + [4008] = {.lex_state = 86, .external_lex_state = 2}, + [4009] = {.lex_state = 282, .external_lex_state = 2}, + [4010] = {.lex_state = 142, .external_lex_state = 2}, + [4011] = {.lex_state = 282, .external_lex_state = 2}, + [4012] = {.lex_state = 86, .external_lex_state = 2}, + [4013] = {.lex_state = 142, .external_lex_state = 2}, + [4014] = {.lex_state = 142, .external_lex_state = 2}, + [4015] = {.lex_state = 86, .external_lex_state = 2}, + [4016] = {.lex_state = 94, .external_lex_state = 2}, + [4017] = {.lex_state = 282, .external_lex_state = 2}, + [4018] = {.lex_state = 282, .external_lex_state = 2}, + [4019] = {.lex_state = 86, .external_lex_state = 2}, + [4020] = {.lex_state = 90, .external_lex_state = 2}, + [4021] = {.lex_state = 86, .external_lex_state = 2}, + [4022] = {.lex_state = 86, .external_lex_state = 2}, + [4023] = {.lex_state = 94, .external_lex_state = 2}, + [4024] = {.lex_state = 86, .external_lex_state = 2}, + [4025] = {.lex_state = 86, .external_lex_state = 2}, + [4026] = {.lex_state = 86, .external_lex_state = 2}, + [4027] = {.lex_state = 130, .external_lex_state = 2}, + [4028] = {.lex_state = 282, .external_lex_state = 2}, + [4029] = {.lex_state = 129, .external_lex_state = 2}, + [4030] = {.lex_state = 129, .external_lex_state = 2}, + [4031] = {.lex_state = 282, .external_lex_state = 2}, + [4032] = {.lex_state = 130, .external_lex_state = 2}, + [4033] = {.lex_state = 282, .external_lex_state = 2}, + [4034] = {.lex_state = 129, .external_lex_state = 2}, + [4035] = {.lex_state = 143, .external_lex_state = 2}, + [4036] = {.lex_state = 132, .external_lex_state = 2}, + [4037] = {.lex_state = 143, .external_lex_state = 2}, + [4038] = {.lex_state = 132, .external_lex_state = 2}, + [4039] = {.lex_state = 281, .external_lex_state = 10}, + [4040] = {.lex_state = 132, .external_lex_state = 2}, + [4041] = {.lex_state = 90, .external_lex_state = 2}, + [4042] = {.lex_state = 282, .external_lex_state = 2}, + [4043] = {.lex_state = 281, .external_lex_state = 10}, + [4044] = {.lex_state = 90, .external_lex_state = 2}, + [4045] = {.lex_state = 143, .external_lex_state = 2}, + [4046] = {.lex_state = 90, .external_lex_state = 2}, + [4047] = {.lex_state = 132, .external_lex_state = 2}, + [4048] = {.lex_state = 132, .external_lex_state = 2}, + [4049] = {.lex_state = 142, .external_lex_state = 2}, + [4050] = {.lex_state = 132, .external_lex_state = 2}, + [4051] = {.lex_state = 132, .external_lex_state = 2}, + [4052] = {.lex_state = 132, .external_lex_state = 2}, + [4053] = {.lex_state = 282, .external_lex_state = 2}, + [4054] = {.lex_state = 132, .external_lex_state = 2}, + [4055] = {.lex_state = 282, .external_lex_state = 2}, + [4056] = {.lex_state = 143, .external_lex_state = 2}, + [4057] = {.lex_state = 282, .external_lex_state = 2}, + [4058] = {.lex_state = 143, .external_lex_state = 2}, + [4059] = {.lex_state = 142, .external_lex_state = 2}, + [4060] = {.lex_state = 282, .external_lex_state = 2}, + [4061] = {.lex_state = 282, .external_lex_state = 4}, + [4062] = {.lex_state = 132, .external_lex_state = 2}, + [4063] = {.lex_state = 282, .external_lex_state = 2}, + [4064] = {.lex_state = 132, .external_lex_state = 2}, + [4065] = {.lex_state = 282, .external_lex_state = 2}, + [4066] = {.lex_state = 142, .external_lex_state = 2}, + [4067] = {.lex_state = 90, .external_lex_state = 2}, + [4068] = {.lex_state = 132, .external_lex_state = 2}, + [4069] = {.lex_state = 281, .external_lex_state = 10}, + [4070] = {.lex_state = 143, .external_lex_state = 2}, + [4071] = {.lex_state = 282, .external_lex_state = 4}, + [4072] = {.lex_state = 132, .external_lex_state = 2}, + [4073] = {.lex_state = 132, .external_lex_state = 2}, + [4074] = {.lex_state = 142, .external_lex_state = 2}, + [4075] = {.lex_state = 132, .external_lex_state = 2}, + [4076] = {.lex_state = 143, .external_lex_state = 2}, + [4077] = {.lex_state = 132, .external_lex_state = 2}, + [4078] = {.lex_state = 132, .external_lex_state = 2}, + [4079] = {.lex_state = 143, .external_lex_state = 2}, + [4080] = {.lex_state = 143, .external_lex_state = 2}, + [4081] = {.lex_state = 281, .external_lex_state = 10}, + [4082] = {.lex_state = 282, .external_lex_state = 2}, + [4083] = {.lex_state = 282, .external_lex_state = 2}, + [4084] = {.lex_state = 281, .external_lex_state = 10}, + [4085] = {.lex_state = 142, .external_lex_state = 2}, + [4086] = {.lex_state = 282, .external_lex_state = 2}, + [4087] = {.lex_state = 132, .external_lex_state = 2}, + [4088] = {.lex_state = 143, .external_lex_state = 2}, + [4089] = {.lex_state = 132, .external_lex_state = 2}, + [4090] = {.lex_state = 132, .external_lex_state = 2}, + [4091] = {.lex_state = 282, .external_lex_state = 2}, + [4092] = {.lex_state = 132, .external_lex_state = 2}, + [4093] = {.lex_state = 132, .external_lex_state = 2}, + [4094] = {.lex_state = 132, .external_lex_state = 2}, + [4095] = {.lex_state = 143, .external_lex_state = 2}, + [4096] = {.lex_state = 143, .external_lex_state = 2}, + [4097] = {.lex_state = 281, .external_lex_state = 10}, + [4098] = {.lex_state = 132, .external_lex_state = 2}, + [4099] = {.lex_state = 282, .external_lex_state = 2}, + [4100] = {.lex_state = 143, .external_lex_state = 2}, + [4101] = {.lex_state = 143, .external_lex_state = 2}, + [4102] = {.lex_state = 132, .external_lex_state = 2}, + [4103] = {.lex_state = 282, .external_lex_state = 2}, + [4104] = {.lex_state = 132, .external_lex_state = 8}, + [4105] = {.lex_state = 282, .external_lex_state = 2}, + [4106] = {.lex_state = 86, .external_lex_state = 2}, + [4107] = {.lex_state = 132, .external_lex_state = 2}, + [4108] = {.lex_state = 282, .external_lex_state = 2}, + [4109] = {.lex_state = 142, .external_lex_state = 2}, + [4110] = {.lex_state = 281, .external_lex_state = 10}, + [4111] = {.lex_state = 281, .external_lex_state = 10}, + [4112] = {.lex_state = 132, .external_lex_state = 2}, + [4113] = {.lex_state = 282, .external_lex_state = 2}, + [4114] = {.lex_state = 1, .external_lex_state = 2}, + [4115] = {.lex_state = 86, .external_lex_state = 2}, + [4116] = {.lex_state = 132, .external_lex_state = 2}, + [4117] = {.lex_state = 142, .external_lex_state = 2}, + [4118] = {.lex_state = 142, .external_lex_state = 2}, + [4119] = {.lex_state = 282, .external_lex_state = 2}, + [4120] = {.lex_state = 132, .external_lex_state = 2}, + [4121] = {.lex_state = 132, .external_lex_state = 2}, + [4122] = {.lex_state = 282, .external_lex_state = 2}, + [4123] = {.lex_state = 282, .external_lex_state = 2}, + [4124] = {.lex_state = 143, .external_lex_state = 2}, + [4125] = {.lex_state = 132, .external_lex_state = 2}, + [4126] = {.lex_state = 132, .external_lex_state = 2}, + [4127] = {.lex_state = 132, .external_lex_state = 2}, + [4128] = {.lex_state = 281, .external_lex_state = 10}, + [4129] = {.lex_state = 143, .external_lex_state = 2}, + [4130] = {.lex_state = 282, .external_lex_state = 2}, + [4131] = {.lex_state = 132, .external_lex_state = 2}, + [4132] = {.lex_state = 132, .external_lex_state = 2}, + [4133] = {.lex_state = 282, .external_lex_state = 2}, + [4134] = {.lex_state = 132, .external_lex_state = 8}, + [4135] = {.lex_state = 282, .external_lex_state = 2}, + [4136] = {.lex_state = 132, .external_lex_state = 2}, + [4137] = {.lex_state = 132, .external_lex_state = 2}, + [4138] = {.lex_state = 142, .external_lex_state = 2}, + [4139] = {.lex_state = 132, .external_lex_state = 2}, + [4140] = {.lex_state = 142, .external_lex_state = 2}, + [4141] = {.lex_state = 282, .external_lex_state = 2}, + [4142] = {.lex_state = 132, .external_lex_state = 2}, + [4143] = {.lex_state = 132, .external_lex_state = 2}, + [4144] = {.lex_state = 132, .external_lex_state = 2}, + [4145] = {.lex_state = 282, .external_lex_state = 2}, + [4146] = {.lex_state = 132, .external_lex_state = 2}, + [4147] = {.lex_state = 132, .external_lex_state = 2}, + [4148] = {.lex_state = 132, .external_lex_state = 2}, + [4149] = {.lex_state = 132, .external_lex_state = 2}, + [4150] = {.lex_state = 143, .external_lex_state = 2}, + [4151] = {.lex_state = 282, .external_lex_state = 2}, + [4152] = {.lex_state = 142, .external_lex_state = 2}, + [4153] = {.lex_state = 281, .external_lex_state = 10}, + [4154] = {.lex_state = 132, .external_lex_state = 2}, + [4155] = {.lex_state = 282, .external_lex_state = 2}, + [4156] = {.lex_state = 282, .external_lex_state = 2}, + [4157] = {.lex_state = 282, .external_lex_state = 2}, + [4158] = {.lex_state = 282, .external_lex_state = 8}, + [4159] = {.lex_state = 282, .external_lex_state = 2}, + [4160] = {.lex_state = 282, .external_lex_state = 2}, + [4161] = {.lex_state = 282, .external_lex_state = 8}, + [4162] = {.lex_state = 282, .external_lex_state = 2}, + [4163] = {.lex_state = 282, .external_lex_state = 2}, + [4164] = {.lex_state = 281, .external_lex_state = 11}, + [4165] = {.lex_state = 282, .external_lex_state = 2}, + [4166] = {.lex_state = 132, .external_lex_state = 8}, + [4167] = {.lex_state = 282, .external_lex_state = 2}, + [4168] = {.lex_state = 282, .external_lex_state = 2}, + [4169] = {.lex_state = 282, .external_lex_state = 2}, + [4170] = {.lex_state = 282, .external_lex_state = 2}, + [4171] = {.lex_state = 90, .external_lex_state = 2}, + [4172] = {.lex_state = 281, .external_lex_state = 10}, + [4173] = {.lex_state = 282, .external_lex_state = 2}, + [4174] = {.lex_state = 282, .external_lex_state = 2}, + [4175] = {.lex_state = 132, .external_lex_state = 8}, + [4176] = {.lex_state = 282, .external_lex_state = 2}, + [4177] = {.lex_state = 282, .external_lex_state = 2}, + [4178] = {.lex_state = 282, .external_lex_state = 2}, + [4179] = {.lex_state = 282, .external_lex_state = 2}, + [4180] = {.lex_state = 281, .external_lex_state = 11}, + [4181] = {.lex_state = 129, .external_lex_state = 2}, + [4182] = {.lex_state = 132, .external_lex_state = 2}, + [4183] = {.lex_state = 282, .external_lex_state = 2}, + [4184] = {.lex_state = 282, .external_lex_state = 8}, + [4185] = {.lex_state = 282, .external_lex_state = 2}, + [4186] = {.lex_state = 282, .external_lex_state = 2}, + [4187] = {.lex_state = 129, .external_lex_state = 2}, + [4188] = {.lex_state = 281, .external_lex_state = 11}, + [4189] = {.lex_state = 90, .external_lex_state = 2}, + [4190] = {.lex_state = 282, .external_lex_state = 8}, + [4191] = {.lex_state = 282, .external_lex_state = 2}, + [4192] = {.lex_state = 282, .external_lex_state = 2}, + [4193] = {.lex_state = 282, .external_lex_state = 2}, + [4194] = {.lex_state = 90, .external_lex_state = 2}, + [4195] = {.lex_state = 281, .external_lex_state = 11}, + [4196] = {.lex_state = 282, .external_lex_state = 8}, + [4197] = {.lex_state = 282, .external_lex_state = 2}, + [4198] = {.lex_state = 282, .external_lex_state = 2}, + [4199] = {.lex_state = 282, .external_lex_state = 2}, + [4200] = {.lex_state = 132, .external_lex_state = 8}, + [4201] = {.lex_state = 282, .external_lex_state = 8}, + [4202] = {.lex_state = 282, .external_lex_state = 2}, + [4203] = {.lex_state = 282, .external_lex_state = 2}, + [4204] = {.lex_state = 142, .external_lex_state = 2}, + [4205] = {.lex_state = 281, .external_lex_state = 11}, + [4206] = {.lex_state = 282, .external_lex_state = 2}, + [4207] = {.lex_state = 281, .external_lex_state = 11}, + [4208] = {.lex_state = 282, .external_lex_state = 2}, + [4209] = {.lex_state = 282, .external_lex_state = 2}, + [4210] = {.lex_state = 120, .external_lex_state = 2}, + [4211] = {.lex_state = 282, .external_lex_state = 2}, + [4212] = {.lex_state = 282, .external_lex_state = 4}, + [4213] = {.lex_state = 282, .external_lex_state = 4}, + [4214] = {.lex_state = 281, .external_lex_state = 11}, + [4215] = {.lex_state = 281, .external_lex_state = 2}, + [4216] = {.lex_state = 282, .external_lex_state = 2}, + [4217] = {.lex_state = 281, .external_lex_state = 11}, + [4218] = {.lex_state = 282, .external_lex_state = 4}, + [4219] = {.lex_state = 282, .external_lex_state = 2}, + [4220] = {.lex_state = 281, .external_lex_state = 11}, + [4221] = {.lex_state = 282, .external_lex_state = 2}, + [4222] = {.lex_state = 282, .external_lex_state = 2}, + [4223] = {.lex_state = 281, .external_lex_state = 11}, + [4224] = {.lex_state = 282, .external_lex_state = 2}, + [4225] = {.lex_state = 282, .external_lex_state = 2}, + [4226] = {.lex_state = 281, .external_lex_state = 11}, + [4227] = {.lex_state = 281, .external_lex_state = 2}, + [4228] = {.lex_state = 282, .external_lex_state = 3}, + [4229] = {.lex_state = 282, .external_lex_state = 8}, + [4230] = {.lex_state = 281, .external_lex_state = 11}, + [4231] = {.lex_state = 282, .external_lex_state = 2}, + [4232] = {.lex_state = 281, .external_lex_state = 11}, + [4233] = {.lex_state = 282, .external_lex_state = 2}, + [4234] = {.lex_state = 281, .external_lex_state = 11}, + [4235] = {.lex_state = 281, .external_lex_state = 11}, + [4236] = {.lex_state = 282, .external_lex_state = 8}, + [4237] = {.lex_state = 282, .external_lex_state = 2}, + [4238] = {.lex_state = 282, .external_lex_state = 2}, + [4239] = {.lex_state = 281, .external_lex_state = 4}, + [4240] = {.lex_state = 282, .external_lex_state = 2}, + [4241] = {.lex_state = 282, .external_lex_state = 2}, + [4242] = {.lex_state = 120, .external_lex_state = 2}, + [4243] = {.lex_state = 281, .external_lex_state = 2}, + [4244] = {.lex_state = 282, .external_lex_state = 2}, + [4245] = {.lex_state = 282, .external_lex_state = 8}, + [4246] = {.lex_state = 281, .external_lex_state = 2}, + [4247] = {.lex_state = 282, .external_lex_state = 4}, + [4248] = {.lex_state = 282, .external_lex_state = 2}, + [4249] = {.lex_state = 90, .external_lex_state = 2}, + [4250] = {.lex_state = 281, .external_lex_state = 2}, + [4251] = {.lex_state = 282, .external_lex_state = 4}, + [4252] = {.lex_state = 281, .external_lex_state = 11}, + [4253] = {.lex_state = 281, .external_lex_state = 11}, + [4254] = {.lex_state = 282, .external_lex_state = 2}, + [4255] = {.lex_state = 281, .external_lex_state = 2}, + [4256] = {.lex_state = 281, .external_lex_state = 2}, + [4257] = {.lex_state = 282, .external_lex_state = 2}, + [4258] = {.lex_state = 132, .external_lex_state = 2}, + [4259] = {.lex_state = 281, .external_lex_state = 8}, + [4260] = {.lex_state = 282, .external_lex_state = 4}, + [4261] = {.lex_state = 281, .external_lex_state = 11}, + [4262] = {.lex_state = 281, .external_lex_state = 4}, + [4263] = {.lex_state = 282, .external_lex_state = 2}, + [4264] = {.lex_state = 281, .external_lex_state = 2}, + [4265] = {.lex_state = 90, .external_lex_state = 2}, + [4266] = {.lex_state = 282, .external_lex_state = 2}, + [4267] = {.lex_state = 282, .external_lex_state = 2}, + [4268] = {.lex_state = 282, .external_lex_state = 2}, + [4269] = {.lex_state = 282, .external_lex_state = 2}, + [4270] = {.lex_state = 281, .external_lex_state = 2}, + [4271] = {.lex_state = 282, .external_lex_state = 3}, + [4272] = {.lex_state = 282, .external_lex_state = 2}, + [4273] = {.lex_state = 281, .external_lex_state = 11}, + [4274] = {.lex_state = 281, .external_lex_state = 2}, + [4275] = {.lex_state = 130, .external_lex_state = 2}, + [4276] = {.lex_state = 281, .external_lex_state = 11}, + [4277] = {.lex_state = 281, .external_lex_state = 11}, + [4278] = {.lex_state = 281, .external_lex_state = 11}, + [4279] = {.lex_state = 282, .external_lex_state = 2}, + [4280] = {.lex_state = 282, .external_lex_state = 2}, + [4281] = {.lex_state = 281, .external_lex_state = 4}, + [4282] = {.lex_state = 282, .external_lex_state = 2}, + [4283] = {.lex_state = 281, .external_lex_state = 8}, + [4284] = {.lex_state = 282, .external_lex_state = 3}, + [4285] = {.lex_state = 282, .external_lex_state = 4}, + [4286] = {.lex_state = 281, .external_lex_state = 2}, + [4287] = {.lex_state = 282, .external_lex_state = 2}, + [4288] = {.lex_state = 282, .external_lex_state = 2}, + [4289] = {.lex_state = 282, .external_lex_state = 4}, + [4290] = {.lex_state = 102, .external_lex_state = 3}, + [4291] = {.lex_state = 282, .external_lex_state = 2}, + [4292] = {.lex_state = 90, .external_lex_state = 2}, + [4293] = {.lex_state = 282, .external_lex_state = 2}, + [4294] = {.lex_state = 282, .external_lex_state = 2}, + [4295] = {.lex_state = 281, .external_lex_state = 2}, + [4296] = {.lex_state = 282, .external_lex_state = 3}, + [4297] = {.lex_state = 281, .external_lex_state = 4}, + [4298] = {.lex_state = 102, .external_lex_state = 3}, + [4299] = {.lex_state = 281, .external_lex_state = 4}, + [4300] = {.lex_state = 282, .external_lex_state = 2}, + [4301] = {.lex_state = 282, .external_lex_state = 3}, + [4302] = {.lex_state = 282, .external_lex_state = 3}, + [4303] = {.lex_state = 102, .external_lex_state = 3}, + [4304] = {.lex_state = 282, .external_lex_state = 2}, + [4305] = {.lex_state = 102, .external_lex_state = 3}, + [4306] = {.lex_state = 282, .external_lex_state = 2}, + [4307] = {.lex_state = 281, .external_lex_state = 4}, + [4308] = {.lex_state = 281, .external_lex_state = 2}, + [4309] = {.lex_state = 282, .external_lex_state = 2}, + [4310] = {.lex_state = 281, .external_lex_state = 2}, + [4311] = {.lex_state = 282, .external_lex_state = 2}, + [4312] = {.lex_state = 281, .external_lex_state = 11}, + [4313] = {.lex_state = 281, .external_lex_state = 2}, + [4314] = {.lex_state = 130, .external_lex_state = 2}, + [4315] = {.lex_state = 102, .external_lex_state = 3}, + [4316] = {.lex_state = 282, .external_lex_state = 3}, + [4317] = {.lex_state = 282, .external_lex_state = 2}, + [4318] = {.lex_state = 102, .external_lex_state = 2}, + [4319] = {.lex_state = 281, .external_lex_state = 11}, + [4320] = {.lex_state = 281, .external_lex_state = 11}, + [4321] = {.lex_state = 281, .external_lex_state = 11}, + [4322] = {.lex_state = 282, .external_lex_state = 2}, + [4323] = {.lex_state = 281, .external_lex_state = 8}, + [4324] = {.lex_state = 281, .external_lex_state = 11}, + [4325] = {.lex_state = 281, .external_lex_state = 8}, + [4326] = {.lex_state = 281, .external_lex_state = 4}, + [4327] = {.lex_state = 281, .external_lex_state = 2}, + [4328] = {.lex_state = 282, .external_lex_state = 2}, + [4329] = {.lex_state = 90, .external_lex_state = 2}, + [4330] = {.lex_state = 282, .external_lex_state = 2}, + [4331] = {.lex_state = 282, .external_lex_state = 2}, + [4332] = {.lex_state = 282, .external_lex_state = 4}, + [4333] = {.lex_state = 281, .external_lex_state = 2}, + [4334] = {.lex_state = 281, .external_lex_state = 11}, + [4335] = {.lex_state = 281, .external_lex_state = 2}, + [4336] = {.lex_state = 282, .external_lex_state = 2}, + [4337] = {.lex_state = 281, .external_lex_state = 2}, + [4338] = {.lex_state = 281, .external_lex_state = 11}, + [4339] = {.lex_state = 282, .external_lex_state = 2}, + [4340] = {.lex_state = 281, .external_lex_state = 2}, + [4341] = {.lex_state = 281, .external_lex_state = 11}, + [4342] = {.lex_state = 281, .external_lex_state = 8}, + [4343] = {.lex_state = 282, .external_lex_state = 3}, + [4344] = {.lex_state = 130, .external_lex_state = 2}, + [4345] = {.lex_state = 281, .external_lex_state = 2}, + [4346] = {.lex_state = 102, .external_lex_state = 3}, + [4347] = {.lex_state = 282, .external_lex_state = 2}, + [4348] = {.lex_state = 282, .external_lex_state = 2}, + [4349] = {.lex_state = 282, .external_lex_state = 2}, + [4350] = {.lex_state = 281, .external_lex_state = 11}, + [4351] = {.lex_state = 281, .external_lex_state = 11}, + [4352] = {.lex_state = 102, .external_lex_state = 3}, + [4353] = {.lex_state = 281, .external_lex_state = 4}, + [4354] = {.lex_state = 281, .external_lex_state = 4}, + [4355] = {.lex_state = 282, .external_lex_state = 2}, + [4356] = {.lex_state = 281, .external_lex_state = 4}, + [4357] = {.lex_state = 282, .external_lex_state = 3}, + [4358] = {.lex_state = 281, .external_lex_state = 2}, + [4359] = {.lex_state = 282, .external_lex_state = 2}, + [4360] = {.lex_state = 282, .external_lex_state = 2}, + [4361] = {.lex_state = 281, .external_lex_state = 4}, + [4362] = {.lex_state = 282, .external_lex_state = 2}, + [4363] = {.lex_state = 132, .external_lex_state = 2}, + [4364] = {.lex_state = 282, .external_lex_state = 2}, + [4365] = {.lex_state = 282, .external_lex_state = 2}, + [4366] = {.lex_state = 281, .external_lex_state = 11}, + [4367] = {.lex_state = 282, .external_lex_state = 2}, + [4368] = {.lex_state = 281, .external_lex_state = 8}, + [4369] = {.lex_state = 120, .external_lex_state = 2}, + [4370] = {.lex_state = 90, .external_lex_state = 2}, + [4371] = {.lex_state = 281, .external_lex_state = 2}, + [4372] = {.lex_state = 282, .external_lex_state = 2}, + [4373] = {.lex_state = 102, .external_lex_state = 3}, + [4374] = {.lex_state = 281, .external_lex_state = 2}, + [4375] = {.lex_state = 132, .external_lex_state = 2}, + [4376] = {.lex_state = 282, .external_lex_state = 2}, + [4377] = {.lex_state = 282, .external_lex_state = 3}, + [4378] = {.lex_state = 282, .external_lex_state = 2}, + [4379] = {.lex_state = 282, .external_lex_state = 2}, + [4380] = {.lex_state = 281, .external_lex_state = 11}, + [4381] = {.lex_state = 281, .external_lex_state = 4}, + [4382] = {.lex_state = 281, .external_lex_state = 11}, + [4383] = {.lex_state = 281, .external_lex_state = 11}, + [4384] = {.lex_state = 130, .external_lex_state = 2}, + [4385] = {.lex_state = 281, .external_lex_state = 2}, + [4386] = {.lex_state = 282, .external_lex_state = 2}, + [4387] = {.lex_state = 102, .external_lex_state = 3}, + [4388] = {.lex_state = 281, .external_lex_state = 11}, + [4389] = {.lex_state = 281, .external_lex_state = 2}, + [4390] = {.lex_state = 282, .external_lex_state = 2}, + [4391] = {.lex_state = 281, .external_lex_state = 11}, + [4392] = {.lex_state = 281, .external_lex_state = 11}, + [4393] = {.lex_state = 281, .external_lex_state = 11}, + [4394] = {.lex_state = 282, .external_lex_state = 2}, + [4395] = {.lex_state = 282, .external_lex_state = 3}, + [4396] = {.lex_state = 282, .external_lex_state = 2}, + [4397] = {.lex_state = 90, .external_lex_state = 2}, + [4398] = {.lex_state = 282, .external_lex_state = 2}, + [4399] = {.lex_state = 281, .external_lex_state = 11}, + [4400] = {.lex_state = 281, .external_lex_state = 11}, + [4401] = {.lex_state = 282, .external_lex_state = 8}, + [4402] = {.lex_state = 281, .external_lex_state = 11}, + [4403] = {.lex_state = 281, .external_lex_state = 11}, + [4404] = {.lex_state = 281, .external_lex_state = 11}, + [4405] = {.lex_state = 281, .external_lex_state = 11}, + [4406] = {.lex_state = 281, .external_lex_state = 11}, + [4407] = {.lex_state = 282, .external_lex_state = 2}, + [4408] = {.lex_state = 282, .external_lex_state = 2}, + [4409] = {.lex_state = 281, .external_lex_state = 8}, + [4410] = {.lex_state = 132, .external_lex_state = 2}, + [4411] = {.lex_state = 281, .external_lex_state = 2}, + [4412] = {.lex_state = 132, .external_lex_state = 2}, + [4413] = {.lex_state = 281, .external_lex_state = 8}, + [4414] = {.lex_state = 281, .external_lex_state = 11}, + [4415] = {.lex_state = 90, .external_lex_state = 2}, + [4416] = {.lex_state = 281, .external_lex_state = 11}, + [4417] = {.lex_state = 102, .external_lex_state = 3}, + [4418] = {.lex_state = 281, .external_lex_state = 11}, + [4419] = {.lex_state = 281, .external_lex_state = 11}, + [4420] = {.lex_state = 281, .external_lex_state = 11}, + [4421] = {.lex_state = 102, .external_lex_state = 3}, + [4422] = {.lex_state = 281, .external_lex_state = 11}, + [4423] = {.lex_state = 281, .external_lex_state = 11}, + [4424] = {.lex_state = 281, .external_lex_state = 11}, + [4425] = {.lex_state = 281, .external_lex_state = 11}, + [4426] = {.lex_state = 281, .external_lex_state = 4}, + [4427] = {.lex_state = 132, .external_lex_state = 2}, + [4428] = {.lex_state = 281, .external_lex_state = 11}, + [4429] = {.lex_state = 281, .external_lex_state = 11}, + [4430] = {.lex_state = 281, .external_lex_state = 11}, + [4431] = {.lex_state = 282, .external_lex_state = 2}, + [4432] = {.lex_state = 132, .external_lex_state = 2}, + [4433] = {.lex_state = 281, .external_lex_state = 2}, + [4434] = {.lex_state = 281, .external_lex_state = 2}, + [4435] = {.lex_state = 282, .external_lex_state = 2}, + [4436] = {.lex_state = 281, .external_lex_state = 2}, + [4437] = {.lex_state = 282, .external_lex_state = 2}, + [4438] = {.lex_state = 281, .external_lex_state = 11}, + [4439] = {.lex_state = 282, .external_lex_state = 2}, + [4440] = {.lex_state = 281, .external_lex_state = 11}, + [4441] = {.lex_state = 281, .external_lex_state = 11}, + [4442] = {.lex_state = 281, .external_lex_state = 11}, + [4443] = {.lex_state = 281, .external_lex_state = 11}, + [4444] = {.lex_state = 281, .external_lex_state = 11}, + [4445] = {.lex_state = 281, .external_lex_state = 11}, + [4446] = {.lex_state = 90, .external_lex_state = 2}, + [4447] = {.lex_state = 281, .external_lex_state = 11}, + [4448] = {.lex_state = 281, .external_lex_state = 11}, + [4449] = {.lex_state = 281, .external_lex_state = 11}, + [4450] = {.lex_state = 282, .external_lex_state = 2}, + [4451] = {.lex_state = 281, .external_lex_state = 11}, + [4452] = {.lex_state = 281, .external_lex_state = 11}, + [4453] = {.lex_state = 281, .external_lex_state = 11}, + [4454] = {.lex_state = 281, .external_lex_state = 11}, + [4455] = {.lex_state = 281, .external_lex_state = 4}, + [4456] = {.lex_state = 281, .external_lex_state = 11}, + [4457] = {.lex_state = 281, .external_lex_state = 11}, + [4458] = {.lex_state = 132, .external_lex_state = 2}, + [4459] = {.lex_state = 281, .external_lex_state = 4}, + [4460] = {.lex_state = 281, .external_lex_state = 2}, + [4461] = {.lex_state = 281, .external_lex_state = 11}, + [4462] = {.lex_state = 132, .external_lex_state = 2}, + [4463] = {.lex_state = 281, .external_lex_state = 8}, + [4464] = {.lex_state = 281, .external_lex_state = 4}, + [4465] = {.lex_state = 281, .external_lex_state = 11}, + [4466] = {.lex_state = 102, .external_lex_state = 3}, + [4467] = {.lex_state = 281, .external_lex_state = 2}, + [4468] = {.lex_state = 282, .external_lex_state = 2}, + [4469] = {.lex_state = 281, .external_lex_state = 8}, + [4470] = {.lex_state = 281, .external_lex_state = 8}, + [4471] = {.lex_state = 281, .external_lex_state = 11}, + [4472] = {.lex_state = 281, .external_lex_state = 2}, + [4473] = {.lex_state = 281, .external_lex_state = 11}, + [4474] = {.lex_state = 282, .external_lex_state = 2}, + [4475] = {.lex_state = 281, .external_lex_state = 2}, + [4476] = {.lex_state = 282, .external_lex_state = 2}, + [4477] = {.lex_state = 282, .external_lex_state = 2}, + [4478] = {.lex_state = 281, .external_lex_state = 11}, + [4479] = {.lex_state = 281, .external_lex_state = 11}, + [4480] = {.lex_state = 281, .external_lex_state = 11}, + [4481] = {.lex_state = 281, .external_lex_state = 2}, + [4482] = {.lex_state = 281, .external_lex_state = 2}, + [4483] = {.lex_state = 282, .external_lex_state = 2}, + [4484] = {.lex_state = 90, .external_lex_state = 2}, + [4485] = {.lex_state = 281, .external_lex_state = 11}, + [4486] = {.lex_state = 281, .external_lex_state = 11}, + [4487] = {.lex_state = 281, .external_lex_state = 11}, + [4488] = {.lex_state = 281, .external_lex_state = 11}, + [4489] = {.lex_state = 281, .external_lex_state = 11}, + [4490] = {.lex_state = 281, .external_lex_state = 11}, + [4491] = {.lex_state = 281, .external_lex_state = 11}, + [4492] = {.lex_state = 132, .external_lex_state = 2}, + [4493] = {.lex_state = 281, .external_lex_state = 2}, + [4494] = {.lex_state = 281, .external_lex_state = 11}, + [4495] = {.lex_state = 281, .external_lex_state = 8}, + [4496] = {.lex_state = 282, .external_lex_state = 2}, + [4497] = {.lex_state = 132, .external_lex_state = 2}, + [4498] = {.lex_state = 90, .external_lex_state = 2}, + [4499] = {.lex_state = 281, .external_lex_state = 11}, + [4500] = {.lex_state = 281, .external_lex_state = 11}, + [4501] = {.lex_state = 282, .external_lex_state = 2}, + [4502] = {.lex_state = 281, .external_lex_state = 11}, + [4503] = {.lex_state = 281, .external_lex_state = 11}, + [4504] = {.lex_state = 281, .external_lex_state = 11}, + [4505] = {.lex_state = 282, .external_lex_state = 2}, + [4506] = {.lex_state = 282, .external_lex_state = 2}, + [4507] = {.lex_state = 132, .external_lex_state = 2}, + [4508] = {.lex_state = 282, .external_lex_state = 8}, + [4509] = {.lex_state = 281, .external_lex_state = 11}, + [4510] = {.lex_state = 281, .external_lex_state = 11}, + [4511] = {.lex_state = 281, .external_lex_state = 8}, + [4512] = {.lex_state = 132, .external_lex_state = 2}, + [4513] = {.lex_state = 281, .external_lex_state = 11}, + [4514] = {.lex_state = 281, .external_lex_state = 11}, + [4515] = {.lex_state = 281, .external_lex_state = 11}, + [4516] = {.lex_state = 281, .external_lex_state = 11}, + [4517] = {.lex_state = 281, .external_lex_state = 11}, + [4518] = {.lex_state = 282, .external_lex_state = 2}, + [4519] = {.lex_state = 281, .external_lex_state = 11}, + [4520] = {.lex_state = 281, .external_lex_state = 4}, + [4521] = {.lex_state = 132, .external_lex_state = 2}, + [4522] = {.lex_state = 282, .external_lex_state = 2}, + [4523] = {.lex_state = 282, .external_lex_state = 2}, + [4524] = {.lex_state = 281, .external_lex_state = 11}, + [4525] = {.lex_state = 281, .external_lex_state = 11}, + [4526] = {.lex_state = 281, .external_lex_state = 2}, + [4527] = {.lex_state = 281, .external_lex_state = 11}, + [4528] = {.lex_state = 282, .external_lex_state = 2}, + [4529] = {.lex_state = 281, .external_lex_state = 11}, + [4530] = {.lex_state = 282, .external_lex_state = 2}, + [4531] = {.lex_state = 281, .external_lex_state = 8}, + [4532] = {.lex_state = 281, .external_lex_state = 11}, + [4533] = {.lex_state = 281, .external_lex_state = 11}, + [4534] = {.lex_state = 281, .external_lex_state = 11}, + [4535] = {.lex_state = 281, .external_lex_state = 8}, + [4536] = {.lex_state = 281, .external_lex_state = 11}, + [4537] = {.lex_state = 281, .external_lex_state = 4}, + [4538] = {.lex_state = 281, .external_lex_state = 11}, + [4539] = {.lex_state = 90, .external_lex_state = 2}, + [4540] = {.lex_state = 281, .external_lex_state = 11}, + [4541] = {.lex_state = 282, .external_lex_state = 2}, + [4542] = {.lex_state = 281, .external_lex_state = 11}, + [4543] = {.lex_state = 281, .external_lex_state = 11}, + [4544] = {.lex_state = 282, .external_lex_state = 2}, + [4545] = {.lex_state = 282, .external_lex_state = 2}, + [4546] = {.lex_state = 282, .external_lex_state = 2}, + [4547] = {.lex_state = 281, .external_lex_state = 11}, + [4548] = {.lex_state = 90, .external_lex_state = 2}, + [4549] = {.lex_state = 132, .external_lex_state = 2}, + [4550] = {.lex_state = 281, .external_lex_state = 11}, + [4551] = {.lex_state = 281, .external_lex_state = 11}, + [4552] = {.lex_state = 132, .external_lex_state = 2}, + [4553] = {.lex_state = 90, .external_lex_state = 2}, + [4554] = {.lex_state = 132, .external_lex_state = 2}, + [4555] = {.lex_state = 281, .external_lex_state = 11}, + [4556] = {.lex_state = 282, .external_lex_state = 2}, + [4557] = {.lex_state = 281, .external_lex_state = 11}, + [4558] = {.lex_state = 281, .external_lex_state = 11}, + [4559] = {.lex_state = 282, .external_lex_state = 2}, + [4560] = {.lex_state = 281, .external_lex_state = 11}, + [4561] = {.lex_state = 281, .external_lex_state = 11}, + [4562] = {.lex_state = 282, .external_lex_state = 2}, + [4563] = {.lex_state = 281, .external_lex_state = 11}, + [4564] = {.lex_state = 281, .external_lex_state = 11}, + [4565] = {.lex_state = 281, .external_lex_state = 11}, + [4566] = {.lex_state = 282, .external_lex_state = 2}, + [4567] = {.lex_state = 282, .external_lex_state = 2}, + [4568] = {.lex_state = 281, .external_lex_state = 11}, + [4569] = {.lex_state = 281, .external_lex_state = 11}, + [4570] = {.lex_state = 282, .external_lex_state = 2}, + [4571] = {.lex_state = 281, .external_lex_state = 11}, + [4572] = {.lex_state = 281, .external_lex_state = 11}, + [4573] = {.lex_state = 281, .external_lex_state = 8}, + [4574] = {.lex_state = 132, .external_lex_state = 2}, + [4575] = {.lex_state = 282, .external_lex_state = 2}, + [4576] = {.lex_state = 281, .external_lex_state = 11}, + [4577] = {.lex_state = 281, .external_lex_state = 11}, + [4578] = {.lex_state = 281, .external_lex_state = 11}, + [4579] = {.lex_state = 281, .external_lex_state = 2}, + [4580] = {.lex_state = 281, .external_lex_state = 11}, + [4581] = {.lex_state = 282, .external_lex_state = 2}, + [4582] = {.lex_state = 281, .external_lex_state = 11}, + [4583] = {.lex_state = 281, .external_lex_state = 11}, + [4584] = {.lex_state = 282, .external_lex_state = 8}, + [4585] = {.lex_state = 281, .external_lex_state = 11}, + [4586] = {.lex_state = 282, .external_lex_state = 8}, + [4587] = {.lex_state = 281, .external_lex_state = 8}, + [4588] = {.lex_state = 281, .external_lex_state = 11}, + [4589] = {.lex_state = 281, .external_lex_state = 11}, + [4590] = {.lex_state = 282, .external_lex_state = 8}, + [4591] = {.lex_state = 281, .external_lex_state = 11}, + [4592] = {.lex_state = 281, .external_lex_state = 11}, + [4593] = {.lex_state = 281, .external_lex_state = 2}, + [4594] = {.lex_state = 281, .external_lex_state = 11}, + [4595] = {.lex_state = 90, .external_lex_state = 2}, + [4596] = {.lex_state = 281, .external_lex_state = 11}, + [4597] = {.lex_state = 282, .external_lex_state = 2}, + [4598] = {.lex_state = 281, .external_lex_state = 11}, + [4599] = {.lex_state = 281, .external_lex_state = 8}, + [4600] = {.lex_state = 281, .external_lex_state = 11}, + [4601] = {.lex_state = 281, .external_lex_state = 11}, + [4602] = {.lex_state = 281, .external_lex_state = 11}, + [4603] = {.lex_state = 281, .external_lex_state = 11}, + [4604] = {.lex_state = 281, .external_lex_state = 11}, + [4605] = {.lex_state = 281, .external_lex_state = 8}, + [4606] = {.lex_state = 282, .external_lex_state = 2}, + [4607] = {.lex_state = 281, .external_lex_state = 2}, + [4608] = {.lex_state = 282, .external_lex_state = 2}, + [4609] = {.lex_state = 282, .external_lex_state = 2}, + [4610] = {.lex_state = 282, .external_lex_state = 2}, + [4611] = {.lex_state = 281, .external_lex_state = 8}, + [4612] = {.lex_state = 281, .external_lex_state = 11}, + [4613] = {.lex_state = 281, .external_lex_state = 8}, + [4614] = {.lex_state = 281, .external_lex_state = 2}, + [4615] = {.lex_state = 281, .external_lex_state = 8}, + [4616] = {.lex_state = 282, .external_lex_state = 2}, + [4617] = {.lex_state = 281, .external_lex_state = 11}, + [4618] = {.lex_state = 281, .external_lex_state = 8}, + [4619] = {.lex_state = 281, .external_lex_state = 11}, + [4620] = {.lex_state = 282, .external_lex_state = 2}, + [4621] = {.lex_state = 281, .external_lex_state = 11}, + [4622] = {.lex_state = 281, .external_lex_state = 11}, + [4623] = {.lex_state = 281, .external_lex_state = 2}, + [4624] = {.lex_state = 281, .external_lex_state = 11}, + [4625] = {.lex_state = 281, .external_lex_state = 8}, + [4626] = {.lex_state = 281, .external_lex_state = 8}, + [4627] = {.lex_state = 281, .external_lex_state = 2}, + [4628] = {.lex_state = 90, .external_lex_state = 2}, + [4629] = {.lex_state = 281, .external_lex_state = 8}, + [4630] = {.lex_state = 281, .external_lex_state = 11}, + [4631] = {.lex_state = 281, .external_lex_state = 8}, + [4632] = {.lex_state = 281, .external_lex_state = 8}, + [4633] = {.lex_state = 282, .external_lex_state = 8}, + [4634] = {.lex_state = 281, .external_lex_state = 11}, + [4635] = {.lex_state = 282, .external_lex_state = 2}, + [4636] = {.lex_state = 281, .external_lex_state = 11}, + [4637] = {.lex_state = 281, .external_lex_state = 11}, + [4638] = {.lex_state = 281, .external_lex_state = 11}, + [4639] = {.lex_state = 281, .external_lex_state = 8}, + [4640] = {.lex_state = 281, .external_lex_state = 11}, + [4641] = {.lex_state = 281, .external_lex_state = 11}, + [4642] = {.lex_state = 281, .external_lex_state = 11}, + [4643] = {.lex_state = 281, .external_lex_state = 11}, + [4644] = {.lex_state = 281, .external_lex_state = 11}, + [4645] = {.lex_state = 281, .external_lex_state = 11}, + [4646] = {.lex_state = 281, .external_lex_state = 8}, + [4647] = {.lex_state = 282, .external_lex_state = 2}, + [4648] = {.lex_state = 281, .external_lex_state = 11}, + [4649] = {.lex_state = 282, .external_lex_state = 2}, + [4650] = {.lex_state = 281, .external_lex_state = 11}, + [4651] = {.lex_state = 282, .external_lex_state = 2}, + [4652] = {.lex_state = 281, .external_lex_state = 11}, + [4653] = {.lex_state = 281, .external_lex_state = 2}, + [4654] = {.lex_state = 281, .external_lex_state = 11}, + [4655] = {.lex_state = 281, .external_lex_state = 8}, + [4656] = {.lex_state = 281, .external_lex_state = 4}, + [4657] = {.lex_state = 281, .external_lex_state = 8}, + [4658] = {.lex_state = 281, .external_lex_state = 11}, + [4659] = {.lex_state = 281, .external_lex_state = 11}, + [4660] = {.lex_state = 282, .external_lex_state = 2}, + [4661] = {.lex_state = 281, .external_lex_state = 10}, + [4662] = {.lex_state = 281, .external_lex_state = 11}, + [4663] = {.lex_state = 281, .external_lex_state = 11}, + [4664] = {.lex_state = 90, .external_lex_state = 2}, + [4665] = {.lex_state = 281, .external_lex_state = 11}, + [4666] = {.lex_state = 120, .external_lex_state = 2}, + [4667] = {.lex_state = 281, .external_lex_state = 11}, + [4668] = {.lex_state = 281, .external_lex_state = 11}, + [4669] = {.lex_state = 281, .external_lex_state = 11}, + [4670] = {.lex_state = 281, .external_lex_state = 11}, + [4671] = {.lex_state = 281, .external_lex_state = 11}, + [4672] = {.lex_state = 132, .external_lex_state = 2}, + [4673] = {.lex_state = 281, .external_lex_state = 11}, + [4674] = {.lex_state = 281, .external_lex_state = 11}, + [4675] = {.lex_state = 281, .external_lex_state = 11}, + [4676] = {.lex_state = 132, .external_lex_state = 2}, + [4677] = {.lex_state = 281, .external_lex_state = 11}, + [4678] = {.lex_state = 281, .external_lex_state = 11}, + [4679] = {.lex_state = 282, .external_lex_state = 2}, + [4680] = {.lex_state = 282, .external_lex_state = 2}, + [4681] = {.lex_state = 281, .external_lex_state = 8}, + [4682] = {.lex_state = 282, .external_lex_state = 2}, + [4683] = {.lex_state = 281, .external_lex_state = 11}, + [4684] = {.lex_state = 281, .external_lex_state = 8}, + [4685] = {.lex_state = 281, .external_lex_state = 8}, + [4686] = {.lex_state = 282, .external_lex_state = 2}, + [4687] = {.lex_state = 281, .external_lex_state = 11}, + [4688] = {.lex_state = 282, .external_lex_state = 2}, + [4689] = {.lex_state = 281, .external_lex_state = 11}, + [4690] = {.lex_state = 281, .external_lex_state = 11}, + [4691] = {.lex_state = 281, .external_lex_state = 11}, + [4692] = {.lex_state = 282, .external_lex_state = 2}, + [4693] = {.lex_state = 281, .external_lex_state = 11}, + [4694] = {.lex_state = 281, .external_lex_state = 11}, + [4695] = {.lex_state = 281, .external_lex_state = 11}, + [4696] = {.lex_state = 281, .external_lex_state = 11}, + [4697] = {.lex_state = 132, .external_lex_state = 2}, + [4698] = {.lex_state = 90, .external_lex_state = 2}, + [4699] = {.lex_state = 90, .external_lex_state = 2}, + [4700] = {.lex_state = 281, .external_lex_state = 11}, + [4701] = {.lex_state = 281, .external_lex_state = 4}, + [4702] = {.lex_state = 281, .external_lex_state = 11}, + [4703] = {.lex_state = 281, .external_lex_state = 11}, + [4704] = {.lex_state = 282, .external_lex_state = 2}, + [4705] = {.lex_state = 281, .external_lex_state = 4}, + [4706] = {.lex_state = 281, .external_lex_state = 11}, + [4707] = {.lex_state = 90, .external_lex_state = 2}, + [4708] = {.lex_state = 281, .external_lex_state = 8}, + [4709] = {.lex_state = 281, .external_lex_state = 8}, + [4710] = {.lex_state = 281, .external_lex_state = 11}, + [4711] = {.lex_state = 281, .external_lex_state = 8}, + [4712] = {.lex_state = 282, .external_lex_state = 2}, + [4713] = {.lex_state = 281, .external_lex_state = 11}, + [4714] = {.lex_state = 282, .external_lex_state = 2}, + [4715] = {.lex_state = 281, .external_lex_state = 4}, + [4716] = {.lex_state = 281, .external_lex_state = 11}, + [4717] = {.lex_state = 281, .external_lex_state = 11}, + [4718] = {.lex_state = 281, .external_lex_state = 11}, + [4719] = {.lex_state = 281, .external_lex_state = 11}, + [4720] = {.lex_state = 281, .external_lex_state = 8}, + [4721] = {.lex_state = 281, .external_lex_state = 2}, + [4722] = {.lex_state = 281, .external_lex_state = 11}, + [4723] = {.lex_state = 281, .external_lex_state = 2}, + [4724] = {.lex_state = 281, .external_lex_state = 8}, + [4725] = {.lex_state = 281, .external_lex_state = 11}, + [4726] = {.lex_state = 282, .external_lex_state = 2}, + [4727] = {.lex_state = 282, .external_lex_state = 2}, + [4728] = {.lex_state = 281, .external_lex_state = 8}, + [4729] = {.lex_state = 282, .external_lex_state = 2}, + [4730] = {.lex_state = 281, .external_lex_state = 11}, + [4731] = {.lex_state = 281, .external_lex_state = 11}, + [4732] = {.lex_state = 282, .external_lex_state = 2}, + [4733] = {.lex_state = 281, .external_lex_state = 4}, + [4734] = {.lex_state = 281, .external_lex_state = 11}, + [4735] = {.lex_state = 281, .external_lex_state = 4}, + [4736] = {.lex_state = 281, .external_lex_state = 11}, + [4737] = {.lex_state = 281, .external_lex_state = 8}, + [4738] = {.lex_state = 281, .external_lex_state = 11}, + [4739] = {.lex_state = 281, .external_lex_state = 11}, + [4740] = {.lex_state = 281, .external_lex_state = 11}, + [4741] = {.lex_state = 281, .external_lex_state = 11}, + [4742] = {.lex_state = 281, .external_lex_state = 11}, + [4743] = {.lex_state = 281, .external_lex_state = 11}, + [4744] = {.lex_state = 281, .external_lex_state = 11}, + [4745] = {.lex_state = 282, .external_lex_state = 2}, + [4746] = {.lex_state = 281, .external_lex_state = 2}, + [4747] = {.lex_state = 281, .external_lex_state = 8}, + [4748] = {.lex_state = 282, .external_lex_state = 2}, + [4749] = {.lex_state = 281, .external_lex_state = 8}, + [4750] = {.lex_state = 282, .external_lex_state = 2}, + [4751] = {.lex_state = 281, .external_lex_state = 8}, + [4752] = {.lex_state = 90, .external_lex_state = 2}, + [4753] = {.lex_state = 90, .external_lex_state = 2}, + [4754] = {.lex_state = 282, .external_lex_state = 2}, + [4755] = {.lex_state = 282, .external_lex_state = 2}, + [4756] = {.lex_state = 281, .external_lex_state = 2}, + [4757] = {.lex_state = 90, .external_lex_state = 2}, + [4758] = {.lex_state = 90, .external_lex_state = 2}, + [4759] = {.lex_state = 90, .external_lex_state = 2}, + [4760] = {.lex_state = 281, .external_lex_state = 8}, + [4761] = {.lex_state = 281, .external_lex_state = 2}, + [4762] = {.lex_state = 282, .external_lex_state = 2}, + [4763] = {.lex_state = 281, .external_lex_state = 8}, + [4764] = {.lex_state = 282, .external_lex_state = 2}, + [4765] = {.lex_state = 281, .external_lex_state = 11}, + [4766] = {.lex_state = 90, .external_lex_state = 2}, + [4767] = {.lex_state = 281, .external_lex_state = 2}, + [4768] = {.lex_state = 90, .external_lex_state = 2}, + [4769] = {.lex_state = 281, .external_lex_state = 2}, + [4770] = {.lex_state = 281, .external_lex_state = 2}, + [4771] = {.lex_state = 282, .external_lex_state = 2}, + [4772] = {.lex_state = 1, .external_lex_state = 2}, + [4773] = {.lex_state = 281, .external_lex_state = 2}, + [4774] = {.lex_state = 281, .external_lex_state = 8}, + [4775] = {.lex_state = 281, .external_lex_state = 8}, + [4776] = {.lex_state = 281, .external_lex_state = 8}, + [4777] = {.lex_state = 282, .external_lex_state = 2}, + [4778] = {.lex_state = 281, .external_lex_state = 8}, + [4779] = {.lex_state = 281, .external_lex_state = 2}, + [4780] = {.lex_state = 281, .external_lex_state = 12}, + [4781] = {.lex_state = 281, .external_lex_state = 12}, + [4782] = {.lex_state = 282, .external_lex_state = 2}, + [4783] = {.lex_state = 282, .external_lex_state = 2}, + [4784] = {.lex_state = 282, .external_lex_state = 2}, + [4785] = {.lex_state = 282, .external_lex_state = 2}, + [4786] = {.lex_state = 281, .external_lex_state = 11}, + [4787] = {.lex_state = 282, .external_lex_state = 2}, + [4788] = {.lex_state = 282, .external_lex_state = 2}, + [4789] = {.lex_state = 282, .external_lex_state = 2}, + [4790] = {.lex_state = 281, .external_lex_state = 2}, + [4791] = {.lex_state = 282, .external_lex_state = 2}, + [4792] = {.lex_state = 282, .external_lex_state = 2}, + [4793] = {.lex_state = 281, .external_lex_state = 2}, + [4794] = {.lex_state = 282, .external_lex_state = 2}, + [4795] = {.lex_state = 281, .external_lex_state = 2}, + [4796] = {.lex_state = 282, .external_lex_state = 2}, + [4797] = {.lex_state = 281, .external_lex_state = 2}, + [4798] = {.lex_state = 281, .external_lex_state = 2}, + [4799] = {.lex_state = 282, .external_lex_state = 2}, + [4800] = {.lex_state = 282, .external_lex_state = 2}, + [4801] = {.lex_state = 282, .external_lex_state = 2}, + [4802] = {.lex_state = 282, .external_lex_state = 2}, + [4803] = {.lex_state = 282, .external_lex_state = 2}, + [4804] = {.lex_state = 281, .external_lex_state = 2}, + [4805] = {.lex_state = 281, .external_lex_state = 2}, + [4806] = {.lex_state = 282, .external_lex_state = 2}, + [4807] = {.lex_state = 282, .external_lex_state = 2}, + [4808] = {.lex_state = 281, .external_lex_state = 8}, + [4809] = {.lex_state = 281, .external_lex_state = 2}, + [4810] = {.lex_state = 121, .external_lex_state = 2}, + [4811] = {.lex_state = 281, .external_lex_state = 2}, + [4812] = {.lex_state = 90, .external_lex_state = 2}, + [4813] = {.lex_state = 282, .external_lex_state = 2}, + [4814] = {.lex_state = 282, .external_lex_state = 2}, + [4815] = {.lex_state = 281, .external_lex_state = 12}, + [4816] = {.lex_state = 281, .external_lex_state = 12}, + [4817] = {.lex_state = 282, .external_lex_state = 2}, + [4818] = {.lex_state = 282, .external_lex_state = 2}, + [4819] = {.lex_state = 282, .external_lex_state = 2}, + [4820] = {.lex_state = 281, .external_lex_state = 2}, + [4821] = {.lex_state = 281, .external_lex_state = 2}, + [4822] = {.lex_state = 282, .external_lex_state = 2}, + [4823] = {.lex_state = 281, .external_lex_state = 2}, + [4824] = {.lex_state = 90, .external_lex_state = 2}, + [4825] = {.lex_state = 121, .external_lex_state = 2}, + [4826] = {.lex_state = 282, .external_lex_state = 2}, + [4827] = {.lex_state = 281, .external_lex_state = 2}, + [4828] = {.lex_state = 1, .external_lex_state = 2}, + [4829] = {.lex_state = 282, .external_lex_state = 2}, + [4830] = {.lex_state = 281, .external_lex_state = 2}, + [4831] = {.lex_state = 281, .external_lex_state = 2}, + [4832] = {.lex_state = 281, .external_lex_state = 2}, + [4833] = {.lex_state = 281, .external_lex_state = 2}, + [4834] = {.lex_state = 282, .external_lex_state = 2}, + [4835] = {.lex_state = 281, .external_lex_state = 2}, + [4836] = {.lex_state = 282, .external_lex_state = 2}, + [4837] = {.lex_state = 281, .external_lex_state = 8}, + [4838] = {.lex_state = 281, .external_lex_state = 8}, + [4839] = {.lex_state = 281, .external_lex_state = 2}, + [4840] = {.lex_state = 281, .external_lex_state = 2}, + [4841] = {.lex_state = 281, .external_lex_state = 2}, + [4842] = {.lex_state = 281, .external_lex_state = 2}, + [4843] = {.lex_state = 281, .external_lex_state = 2}, + [4844] = {.lex_state = 281, .external_lex_state = 8}, + [4845] = {.lex_state = 282, .external_lex_state = 2}, + [4846] = {.lex_state = 281, .external_lex_state = 11}, + [4847] = {.lex_state = 282, .external_lex_state = 2}, + [4848] = {.lex_state = 90, .external_lex_state = 2}, + [4849] = {.lex_state = 281, .external_lex_state = 2}, + [4850] = {.lex_state = 281, .external_lex_state = 2}, + [4851] = {.lex_state = 281, .external_lex_state = 2}, + [4852] = {.lex_state = 281, .external_lex_state = 2}, + [4853] = {.lex_state = 281, .external_lex_state = 2}, + [4854] = {.lex_state = 281, .external_lex_state = 2}, + [4855] = {.lex_state = 282, .external_lex_state = 2}, + [4856] = {.lex_state = 281, .external_lex_state = 8}, + [4857] = {.lex_state = 282, .external_lex_state = 2}, + [4858] = {.lex_state = 281, .external_lex_state = 8}, + [4859] = {.lex_state = 90, .external_lex_state = 2}, + [4860] = {.lex_state = 282, .external_lex_state = 2}, + [4861] = {.lex_state = 282, .external_lex_state = 2}, + [4862] = {.lex_state = 281, .external_lex_state = 8}, + [4863] = {.lex_state = 282, .external_lex_state = 2}, + [4864] = {.lex_state = 90, .external_lex_state = 2}, + [4865] = {.lex_state = 281, .external_lex_state = 8}, + [4866] = {.lex_state = 281, .external_lex_state = 8}, + [4867] = {.lex_state = 281, .external_lex_state = 2}, + [4868] = {.lex_state = 281, .external_lex_state = 2}, + [4869] = {.lex_state = 90, .external_lex_state = 2}, + [4870] = {.lex_state = 90, .external_lex_state = 2}, + [4871] = {.lex_state = 281, .external_lex_state = 2}, + [4872] = {.lex_state = 281, .external_lex_state = 2}, + [4873] = {.lex_state = 282, .external_lex_state = 2}, + [4874] = {.lex_state = 282, .external_lex_state = 2}, + [4875] = {.lex_state = 281, .external_lex_state = 2}, + [4876] = {.lex_state = 281, .external_lex_state = 2}, + [4877] = {.lex_state = 90, .external_lex_state = 2}, + [4878] = {.lex_state = 281, .external_lex_state = 2}, + [4879] = {.lex_state = 281, .external_lex_state = 2}, + [4880] = {.lex_state = 281, .external_lex_state = 12}, + [4881] = {.lex_state = 281, .external_lex_state = 12}, + [4882] = {.lex_state = 281, .external_lex_state = 2}, + [4883] = {.lex_state = 282, .external_lex_state = 2}, + [4884] = {.lex_state = 90, .external_lex_state = 2}, + [4885] = {.lex_state = 282, .external_lex_state = 2}, + [4886] = {.lex_state = 281, .external_lex_state = 2}, + [4887] = {.lex_state = 90, .external_lex_state = 2}, + [4888] = {.lex_state = 281, .external_lex_state = 2}, + [4889] = {.lex_state = 281, .external_lex_state = 2}, + [4890] = {.lex_state = 281, .external_lex_state = 2}, + [4891] = {.lex_state = 1, .external_lex_state = 2}, + [4892] = {.lex_state = 90, .external_lex_state = 2}, + [4893] = {.lex_state = 281, .external_lex_state = 2}, + [4894] = {.lex_state = 282, .external_lex_state = 2}, + [4895] = {.lex_state = 90, .external_lex_state = 2}, + [4896] = {.lex_state = 281, .external_lex_state = 2}, + [4897] = {.lex_state = 282, .external_lex_state = 2}, + [4898] = {.lex_state = 281, .external_lex_state = 8}, + [4899] = {.lex_state = 281, .external_lex_state = 8}, + [4900] = {.lex_state = 281, .external_lex_state = 2}, + [4901] = {.lex_state = 281, .external_lex_state = 2}, + [4902] = {.lex_state = 281, .external_lex_state = 2}, + [4903] = {.lex_state = 282, .external_lex_state = 2}, + [4904] = {.lex_state = 281, .external_lex_state = 2}, + [4905] = {.lex_state = 282, .external_lex_state = 2}, + [4906] = {.lex_state = 90, .external_lex_state = 2}, + [4907] = {.lex_state = 281, .external_lex_state = 2}, + [4908] = {.lex_state = 90, .external_lex_state = 2}, + [4909] = {.lex_state = 281, .external_lex_state = 8}, + [4910] = {.lex_state = 281, .external_lex_state = 2}, + [4911] = {.lex_state = 281, .external_lex_state = 2}, + [4912] = {.lex_state = 282, .external_lex_state = 2}, + [4913] = {.lex_state = 281, .external_lex_state = 2}, + [4914] = {.lex_state = 281, .external_lex_state = 2}, + [4915] = {.lex_state = 281, .external_lex_state = 8}, + [4916] = {.lex_state = 90, .external_lex_state = 2}, + [4917] = {.lex_state = 90, .external_lex_state = 2}, + [4918] = {.lex_state = 282, .external_lex_state = 2}, + [4919] = {.lex_state = 281, .external_lex_state = 2}, + [4920] = {.lex_state = 90, .external_lex_state = 2}, + [4921] = {.lex_state = 282, .external_lex_state = 2}, + [4922] = {.lex_state = 282, .external_lex_state = 2}, + [4923] = {.lex_state = 90, .external_lex_state = 2}, + [4924] = {.lex_state = 281, .external_lex_state = 2}, + [4925] = {.lex_state = 90, .external_lex_state = 2}, + [4926] = {.lex_state = 90, .external_lex_state = 2}, + [4927] = {.lex_state = 281, .external_lex_state = 2}, + [4928] = {.lex_state = 281, .external_lex_state = 2}, + [4929] = {.lex_state = 281, .external_lex_state = 8}, + [4930] = {.lex_state = 282, .external_lex_state = 2}, + [4931] = {.lex_state = 281, .external_lex_state = 8}, + [4932] = {.lex_state = 281, .external_lex_state = 12}, + [4933] = {.lex_state = 281, .external_lex_state = 12}, + [4934] = {.lex_state = 281, .external_lex_state = 2}, + [4935] = {.lex_state = 281, .external_lex_state = 2}, + [4936] = {.lex_state = 281, .external_lex_state = 8}, + [4937] = {.lex_state = 281, .external_lex_state = 11}, + [4938] = {.lex_state = 281, .external_lex_state = 2}, + [4939] = {.lex_state = 281, .external_lex_state = 2}, + [4940] = {.lex_state = 281, .external_lex_state = 2}, + [4941] = {.lex_state = 90, .external_lex_state = 2}, + [4942] = {.lex_state = 281, .external_lex_state = 2}, + [4943] = {.lex_state = 1, .external_lex_state = 2}, + [4944] = {.lex_state = 281, .external_lex_state = 2}, + [4945] = {.lex_state = 282, .external_lex_state = 2}, + [4946] = {.lex_state = 90, .external_lex_state = 2}, + [4947] = {.lex_state = 281, .external_lex_state = 2}, + [4948] = {.lex_state = 281, .external_lex_state = 2}, + [4949] = {.lex_state = 281, .external_lex_state = 8}, + [4950] = {.lex_state = 281, .external_lex_state = 8}, + [4951] = {.lex_state = 282, .external_lex_state = 2}, + [4952] = {.lex_state = 282, .external_lex_state = 2}, + [4953] = {.lex_state = 281, .external_lex_state = 2}, + [4954] = {.lex_state = 282, .external_lex_state = 2}, + [4955] = {.lex_state = 282, .external_lex_state = 2}, + [4956] = {.lex_state = 282, .external_lex_state = 2}, + [4957] = {.lex_state = 282, .external_lex_state = 2}, + [4958] = {.lex_state = 282, .external_lex_state = 2}, + [4959] = {.lex_state = 90, .external_lex_state = 2}, + [4960] = {.lex_state = 281, .external_lex_state = 8}, + [4961] = {.lex_state = 281, .external_lex_state = 8}, + [4962] = {.lex_state = 282, .external_lex_state = 2}, + [4963] = {.lex_state = 282, .external_lex_state = 2}, + [4964] = {.lex_state = 281, .external_lex_state = 2}, + [4965] = {.lex_state = 281, .external_lex_state = 2}, + [4966] = {.lex_state = 90, .external_lex_state = 2}, + [4967] = {.lex_state = 281, .external_lex_state = 12}, + [4968] = {.lex_state = 281, .external_lex_state = 12}, + [4969] = {.lex_state = 281, .external_lex_state = 2}, + [4970] = {.lex_state = 281, .external_lex_state = 2}, + [4971] = {.lex_state = 282, .external_lex_state = 2}, + [4972] = {.lex_state = 281, .external_lex_state = 2}, + [4973] = {.lex_state = 282, .external_lex_state = 2}, + [4974] = {.lex_state = 282, .external_lex_state = 2}, + [4975] = {.lex_state = 90, .external_lex_state = 2}, + [4976] = {.lex_state = 281, .external_lex_state = 2}, + [4977] = {.lex_state = 1, .external_lex_state = 2}, + [4978] = {.lex_state = 281, .external_lex_state = 2}, + [4979] = {.lex_state = 282, .external_lex_state = 2}, + [4980] = {.lex_state = 281, .external_lex_state = 2}, + [4981] = {.lex_state = 281, .external_lex_state = 2}, + [4982] = {.lex_state = 282, .external_lex_state = 2}, + [4983] = {.lex_state = 281, .external_lex_state = 8}, + [4984] = {.lex_state = 281, .external_lex_state = 8}, + [4985] = {.lex_state = 281, .external_lex_state = 2}, + [4986] = {.lex_state = 281, .external_lex_state = 2}, + [4987] = {.lex_state = 281, .external_lex_state = 2}, + [4988] = {.lex_state = 90, .external_lex_state = 2}, + [4989] = {.lex_state = 281, .external_lex_state = 2}, + [4990] = {.lex_state = 282, .external_lex_state = 2}, + [4991] = {.lex_state = 282, .external_lex_state = 2}, + [4992] = {.lex_state = 281, .external_lex_state = 2}, + [4993] = {.lex_state = 281, .external_lex_state = 8}, + [4994] = {.lex_state = 282, .external_lex_state = 2}, + [4995] = {.lex_state = 90, .external_lex_state = 2}, + [4996] = {.lex_state = 281, .external_lex_state = 2}, + [4997] = {.lex_state = 282, .external_lex_state = 2}, + [4998] = {.lex_state = 281, .external_lex_state = 2}, + [4999] = {.lex_state = 282, .external_lex_state = 2}, + [5000] = {.lex_state = 281, .external_lex_state = 12}, + [5001] = {.lex_state = 281, .external_lex_state = 12}, + [5002] = {.lex_state = 281, .external_lex_state = 8}, + [5003] = {.lex_state = 281, .external_lex_state = 2}, + [5004] = {.lex_state = 281, .external_lex_state = 2}, + [5005] = {.lex_state = 281, .external_lex_state = 2}, + [5006] = {.lex_state = 281, .external_lex_state = 2}, + [5007] = {.lex_state = 90, .external_lex_state = 2}, + [5008] = {.lex_state = 281, .external_lex_state = 2}, + [5009] = {.lex_state = 281, .external_lex_state = 2}, + [5010] = {.lex_state = 1, .external_lex_state = 2}, + [5011] = {.lex_state = 282, .external_lex_state = 2}, + [5012] = {.lex_state = 90, .external_lex_state = 2}, + [5013] = {.lex_state = 281, .external_lex_state = 2}, + [5014] = {.lex_state = 281, .external_lex_state = 8}, + [5015] = {.lex_state = 281, .external_lex_state = 8}, + [5016] = {.lex_state = 281, .external_lex_state = 2}, + [5017] = {.lex_state = 282, .external_lex_state = 2}, + [5018] = {.lex_state = 281, .external_lex_state = 2}, + [5019] = {.lex_state = 282, .external_lex_state = 2}, + [5020] = {.lex_state = 281, .external_lex_state = 8}, + [5021] = {.lex_state = 282, .external_lex_state = 2}, + [5022] = {.lex_state = 281, .external_lex_state = 2}, + [5023] = {.lex_state = 281, .external_lex_state = 2}, + [5024] = {.lex_state = 281, .external_lex_state = 8}, + [5025] = {.lex_state = 281, .external_lex_state = 2}, + [5026] = {.lex_state = 90, .external_lex_state = 2}, + [5027] = {.lex_state = 281, .external_lex_state = 2}, + [5028] = {.lex_state = 281, .external_lex_state = 2}, + [5029] = {.lex_state = 281, .external_lex_state = 11}, + [5030] = {.lex_state = 281, .external_lex_state = 2}, + [5031] = {.lex_state = 281, .external_lex_state = 12}, + [5032] = {.lex_state = 281, .external_lex_state = 12}, + [5033] = {.lex_state = 282, .external_lex_state = 2}, + [5034] = {.lex_state = 281, .external_lex_state = 2}, + [5035] = {.lex_state = 90, .external_lex_state = 2}, + [5036] = {.lex_state = 281, .external_lex_state = 2}, + [5037] = {.lex_state = 281, .external_lex_state = 2}, + [5038] = {.lex_state = 281, .external_lex_state = 2}, + [5039] = {.lex_state = 281, .external_lex_state = 13}, + [5040] = {.lex_state = 90, .external_lex_state = 2}, + [5041] = {.lex_state = 1, .external_lex_state = 2}, + [5042] = {.lex_state = 282, .external_lex_state = 2}, + [5043] = {.lex_state = 281, .external_lex_state = 2}, + [5044] = {.lex_state = 281, .external_lex_state = 2}, + [5045] = {.lex_state = 281, .external_lex_state = 8}, + [5046] = {.lex_state = 281, .external_lex_state = 8}, + [5047] = {.lex_state = 282, .external_lex_state = 2}, + [5048] = {.lex_state = 281, .external_lex_state = 2}, + [5049] = {.lex_state = 281, .external_lex_state = 2}, + [5050] = {.lex_state = 281, .external_lex_state = 2}, + [5051] = {.lex_state = 281, .external_lex_state = 2}, + [5052] = {.lex_state = 282, .external_lex_state = 2}, + [5053] = {.lex_state = 281, .external_lex_state = 2}, + [5054] = {.lex_state = 281, .external_lex_state = 2}, + [5055] = {.lex_state = 281, .external_lex_state = 8}, + [5056] = {.lex_state = 282, .external_lex_state = 2}, + [5057] = {.lex_state = 281, .external_lex_state = 2}, + [5058] = {.lex_state = 281, .external_lex_state = 8}, + [5059] = {.lex_state = 90, .external_lex_state = 2}, + [5060] = {.lex_state = 282, .external_lex_state = 2}, + [5061] = {.lex_state = 281, .external_lex_state = 2}, + [5062] = {.lex_state = 281, .external_lex_state = 12}, + [5063] = {.lex_state = 281, .external_lex_state = 12}, + [5064] = {.lex_state = 281, .external_lex_state = 2}, + [5065] = {.lex_state = 281, .external_lex_state = 2}, + [5066] = {.lex_state = 281, .external_lex_state = 2}, + [5067] = {.lex_state = 281, .external_lex_state = 2}, + [5068] = {.lex_state = 281, .external_lex_state = 2}, + [5069] = {.lex_state = 281, .external_lex_state = 2}, + [5070] = {.lex_state = 281, .external_lex_state = 11}, + [5071] = {.lex_state = 281, .external_lex_state = 2}, + [5072] = {.lex_state = 1, .external_lex_state = 2}, + [5073] = {.lex_state = 281, .external_lex_state = 2}, + [5074] = {.lex_state = 90, .external_lex_state = 2}, + [5075] = {.lex_state = 281, .external_lex_state = 2}, + [5076] = {.lex_state = 281, .external_lex_state = 8}, + [5077] = {.lex_state = 281, .external_lex_state = 8}, + [5078] = {.lex_state = 121, .external_lex_state = 2}, + [5079] = {.lex_state = 281, .external_lex_state = 2}, + [5080] = {.lex_state = 281, .external_lex_state = 2}, + [5081] = {.lex_state = 281, .external_lex_state = 2}, + [5082] = {.lex_state = 281, .external_lex_state = 2}, + [5083] = {.lex_state = 282, .external_lex_state = 2}, + [5084] = {.lex_state = 281, .external_lex_state = 2}, + [5085] = {.lex_state = 281, .external_lex_state = 11}, + [5086] = {.lex_state = 281, .external_lex_state = 8}, + [5087] = {.lex_state = 281, .external_lex_state = 2}, + [5088] = {.lex_state = 282, .external_lex_state = 2}, + [5089] = {.lex_state = 102, .external_lex_state = 2}, + [5090] = {.lex_state = 281, .external_lex_state = 8}, + [5091] = {.lex_state = 90, .external_lex_state = 2}, + [5092] = {.lex_state = 281, .external_lex_state = 2}, + [5093] = {.lex_state = 281, .external_lex_state = 12}, + [5094] = {.lex_state = 281, .external_lex_state = 12}, + [5095] = {.lex_state = 281, .external_lex_state = 8}, + [5096] = {.lex_state = 281, .external_lex_state = 8}, + [5097] = {.lex_state = 282, .external_lex_state = 2}, + [5098] = {.lex_state = 281, .external_lex_state = 2}, + [5099] = {.lex_state = 90, .external_lex_state = 2}, + [5100] = {.lex_state = 281, .external_lex_state = 2}, + [5101] = {.lex_state = 281, .external_lex_state = 2}, + [5102] = {.lex_state = 281, .external_lex_state = 2}, + [5103] = {.lex_state = 1, .external_lex_state = 2}, + [5104] = {.lex_state = 90, .external_lex_state = 2}, + [5105] = {.lex_state = 281, .external_lex_state = 2}, + [5106] = {.lex_state = 281, .external_lex_state = 2}, + [5107] = {.lex_state = 281, .external_lex_state = 8}, + [5108] = {.lex_state = 281, .external_lex_state = 8}, + [5109] = {.lex_state = 281, .external_lex_state = 2}, + [5110] = {.lex_state = 282, .external_lex_state = 2}, + [5111] = {.lex_state = 281, .external_lex_state = 2}, + [5112] = {.lex_state = 281, .external_lex_state = 8}, + [5113] = {.lex_state = 281, .external_lex_state = 2}, + [5114] = {.lex_state = 282, .external_lex_state = 2}, + [5115] = {.lex_state = 282, .external_lex_state = 2}, + [5116] = {.lex_state = 282, .external_lex_state = 2}, + [5117] = {.lex_state = 281, .external_lex_state = 11}, + [5118] = {.lex_state = 281, .external_lex_state = 2}, + [5119] = {.lex_state = 281, .external_lex_state = 2}, + [5120] = {.lex_state = 281, .external_lex_state = 12}, + [5121] = {.lex_state = 281, .external_lex_state = 12}, + [5122] = {.lex_state = 281, .external_lex_state = 2}, + [5123] = {.lex_state = 281, .external_lex_state = 2}, + [5124] = {.lex_state = 281, .external_lex_state = 2}, + [5125] = {.lex_state = 281, .external_lex_state = 2}, + [5126] = {.lex_state = 281, .external_lex_state = 2}, + [5127] = {.lex_state = 90, .external_lex_state = 2}, + [5128] = {.lex_state = 281, .external_lex_state = 12}, + [5129] = {.lex_state = 281, .external_lex_state = 12}, + [5130] = {.lex_state = 121, .external_lex_state = 2}, + [5131] = {.lex_state = 282, .external_lex_state = 2}, + [5132] = {.lex_state = 281, .external_lex_state = 2}, + [5133] = {.lex_state = 281, .external_lex_state = 2}, + [5134] = {.lex_state = 281, .external_lex_state = 2}, + [5135] = {.lex_state = 281, .external_lex_state = 2}, + [5136] = {.lex_state = 281, .external_lex_state = 12}, + [5137] = {.lex_state = 281, .external_lex_state = 12}, + [5138] = {.lex_state = 281, .external_lex_state = 2}, + [5139] = {.lex_state = 281, .external_lex_state = 2}, + [5140] = {.lex_state = 281, .external_lex_state = 2}, + [5141] = {.lex_state = 281, .external_lex_state = 8}, + [5142] = {.lex_state = 133, .external_lex_state = 2}, + [5143] = {.lex_state = 281, .external_lex_state = 2}, + [5144] = {.lex_state = 281, .external_lex_state = 12}, + [5145] = {.lex_state = 281, .external_lex_state = 12}, + [5146] = {.lex_state = 281, .external_lex_state = 2}, + [5147] = {.lex_state = 281, .external_lex_state = 2}, + [5148] = {.lex_state = 281, .external_lex_state = 2}, + [5149] = {.lex_state = 282, .external_lex_state = 2}, + [5150] = {.lex_state = 90, .external_lex_state = 2}, + [5151] = {.lex_state = 281, .external_lex_state = 12}, + [5152] = {.lex_state = 281, .external_lex_state = 12}, + [5153] = {.lex_state = 281, .external_lex_state = 2}, + [5154] = {.lex_state = 281, .external_lex_state = 2}, + [5155] = {.lex_state = 281, .external_lex_state = 2}, + [5156] = {.lex_state = 281, .external_lex_state = 2}, + [5157] = {.lex_state = 281, .external_lex_state = 2}, + [5158] = {.lex_state = 281, .external_lex_state = 12}, + [5159] = {.lex_state = 281, .external_lex_state = 12}, + [5160] = {.lex_state = 281, .external_lex_state = 2}, + [5161] = {.lex_state = 90, .external_lex_state = 2}, + [5162] = {.lex_state = 281, .external_lex_state = 2}, + [5163] = {.lex_state = 281, .external_lex_state = 2}, + [5164] = {.lex_state = 281, .external_lex_state = 12}, + [5165] = {.lex_state = 281, .external_lex_state = 12}, + [5166] = {.lex_state = 281, .external_lex_state = 2}, + [5167] = {.lex_state = 281, .external_lex_state = 2}, + [5168] = {.lex_state = 282, .external_lex_state = 2}, + [5169] = {.lex_state = 282, .external_lex_state = 2}, + [5170] = {.lex_state = 282, .external_lex_state = 2}, + [5171] = {.lex_state = 281, .external_lex_state = 2}, + [5172] = {.lex_state = 281, .external_lex_state = 2}, + [5173] = {.lex_state = 281, .external_lex_state = 2}, + [5174] = {.lex_state = 281, .external_lex_state = 2}, + [5175] = {.lex_state = 281, .external_lex_state = 2}, + [5176] = {.lex_state = 90, .external_lex_state = 2}, + [5177] = {.lex_state = 282, .external_lex_state = 2}, + [5178] = {.lex_state = 121, .external_lex_state = 2}, + [5179] = {.lex_state = 281, .external_lex_state = 2}, + [5180] = {.lex_state = 281, .external_lex_state = 2}, + [5181] = {.lex_state = 281, .external_lex_state = 2}, + [5182] = {.lex_state = 1, .external_lex_state = 2}, + [5183] = {.lex_state = 281, .external_lex_state = 2}, + [5184] = {.lex_state = 1, .external_lex_state = 2}, + [5185] = {.lex_state = 281, .external_lex_state = 2}, + [5186] = {.lex_state = 1, .external_lex_state = 2}, + [5187] = {.lex_state = 1, .external_lex_state = 2}, + [5188] = {.lex_state = 281, .external_lex_state = 2}, + [5189] = {.lex_state = 281, .external_lex_state = 2}, + [5190] = {.lex_state = 282, .external_lex_state = 2}, + [5191] = {.lex_state = 90, .external_lex_state = 2}, + [5192] = {.lex_state = 281, .external_lex_state = 2}, + [5193] = {.lex_state = 281, .external_lex_state = 2}, + [5194] = {.lex_state = 281, .external_lex_state = 2}, + [5195] = {.lex_state = 281, .external_lex_state = 2}, + [5196] = {.lex_state = 121, .external_lex_state = 2}, + [5197] = {.lex_state = 282, .external_lex_state = 2}, + [5198] = {.lex_state = 282, .external_lex_state = 2}, + [5199] = {.lex_state = 281, .external_lex_state = 8}, + [5200] = {.lex_state = 281, .external_lex_state = 2}, + [5201] = {.lex_state = 281, .external_lex_state = 2}, + [5202] = {.lex_state = 281, .external_lex_state = 11}, + [5203] = {.lex_state = 281, .external_lex_state = 11}, + [5204] = {.lex_state = 281, .external_lex_state = 11}, + [5205] = {.lex_state = 281, .external_lex_state = 11}, + [5206] = {.lex_state = 281, .external_lex_state = 2}, + [5207] = {.lex_state = 281, .external_lex_state = 2}, + [5208] = {.lex_state = 282, .external_lex_state = 2}, + [5209] = {.lex_state = 90, .external_lex_state = 2}, + [5210] = {.lex_state = 281, .external_lex_state = 2}, + [5211] = {.lex_state = 281, .external_lex_state = 11}, + [5212] = {.lex_state = 281, .external_lex_state = 2}, + [5213] = {.lex_state = 281, .external_lex_state = 2}, + [5214] = {.lex_state = 281, .external_lex_state = 11}, + [5215] = {.lex_state = 281, .external_lex_state = 2}, + [5216] = {.lex_state = 281, .external_lex_state = 2}, + [5217] = {.lex_state = 282, .external_lex_state = 2}, + [5218] = {.lex_state = 281, .external_lex_state = 2}, + [5219] = {.lex_state = 281, .external_lex_state = 11}, + [5220] = {.lex_state = 281, .external_lex_state = 8}, + [5221] = {.lex_state = 282, .external_lex_state = 2}, + [5222] = {.lex_state = 281, .external_lex_state = 11}, + [5223] = {.lex_state = 281, .external_lex_state = 2}, + [5224] = {.lex_state = 281, .external_lex_state = 11}, + [5225] = {.lex_state = 281, .external_lex_state = 2}, + [5226] = {.lex_state = 281, .external_lex_state = 11}, + [5227] = {.lex_state = 281, .external_lex_state = 2}, + [5228] = {.lex_state = 281, .external_lex_state = 11}, + [5229] = {.lex_state = 282, .external_lex_state = 2}, + [5230] = {.lex_state = 281, .external_lex_state = 2}, + [5231] = {.lex_state = 281, .external_lex_state = 8}, + [5232] = {.lex_state = 282, .external_lex_state = 2}, + [5233] = {.lex_state = 281, .external_lex_state = 11}, + [5234] = {.lex_state = 281, .external_lex_state = 2}, + [5235] = {.lex_state = 282, .external_lex_state = 2}, + [5236] = {.lex_state = 281, .external_lex_state = 2}, + [5237] = {.lex_state = 90, .external_lex_state = 2}, + [5238] = {.lex_state = 121, .external_lex_state = 2}, + [5239] = {.lex_state = 281, .external_lex_state = 2}, + [5240] = {.lex_state = 281, .external_lex_state = 2}, + [5241] = {.lex_state = 281, .external_lex_state = 2}, + [5242] = {.lex_state = 281, .external_lex_state = 2}, + [5243] = {.lex_state = 281, .external_lex_state = 2}, + [5244] = {.lex_state = 282, .external_lex_state = 2}, + [5245] = {.lex_state = 282, .external_lex_state = 2}, + [5246] = {.lex_state = 282, .external_lex_state = 2}, + [5247] = {.lex_state = 282, .external_lex_state = 2}, + [5248] = {.lex_state = 90, .external_lex_state = 2}, + [5249] = {.lex_state = 281, .external_lex_state = 2}, + [5250] = {.lex_state = 281, .external_lex_state = 11}, + [5251] = {.lex_state = 281, .external_lex_state = 11}, + [5252] = {.lex_state = 281, .external_lex_state = 2}, + [5253] = {.lex_state = 282, .external_lex_state = 2}, + [5254] = {.lex_state = 90, .external_lex_state = 2}, + [5255] = {.lex_state = 90, .external_lex_state = 2}, + [5256] = {.lex_state = 281, .external_lex_state = 2}, + [5257] = {.lex_state = 281, .external_lex_state = 11}, + [5258] = {.lex_state = 281, .external_lex_state = 2}, + [5259] = {.lex_state = 281, .external_lex_state = 2}, + [5260] = {.lex_state = 281, .external_lex_state = 2}, + [5261] = {.lex_state = 282, .external_lex_state = 2}, + [5262] = {.lex_state = 281, .external_lex_state = 2}, + [5263] = {.lex_state = 282, .external_lex_state = 2}, + [5264] = {.lex_state = 282, .external_lex_state = 2}, + [5265] = {.lex_state = 281, .external_lex_state = 11}, + [5266] = {.lex_state = 281, .external_lex_state = 2}, + [5267] = {.lex_state = 281, .external_lex_state = 11}, + [5268] = {.lex_state = 281, .external_lex_state = 8}, + [5269] = {.lex_state = 282, .external_lex_state = 2}, + [5270] = {.lex_state = 282, .external_lex_state = 2}, + [5271] = {.lex_state = 281, .external_lex_state = 2}, + [5272] = {.lex_state = 282, .external_lex_state = 2}, + [5273] = {.lex_state = 281, .external_lex_state = 2}, + [5274] = {.lex_state = 281, .external_lex_state = 2}, + [5275] = {.lex_state = 90, .external_lex_state = 2}, + [5276] = {.lex_state = 281, .external_lex_state = 2}, + [5277] = {.lex_state = 281, .external_lex_state = 2}, + [5278] = {.lex_state = 282, .external_lex_state = 2}, + [5279] = {.lex_state = 282, .external_lex_state = 2}, + [5280] = {.lex_state = 90, .external_lex_state = 2}, + [5281] = {.lex_state = 282, .external_lex_state = 2}, + [5282] = {.lex_state = 281, .external_lex_state = 11}, + [5283] = {.lex_state = 281, .external_lex_state = 8}, + [5284] = {.lex_state = 121, .external_lex_state = 2}, + [5285] = {.lex_state = 281, .external_lex_state = 2}, + [5286] = {.lex_state = 281, .external_lex_state = 2}, + [5287] = {.lex_state = 281, .external_lex_state = 11}, + [5288] = {.lex_state = 281, .external_lex_state = 11}, + [5289] = {.lex_state = 281, .external_lex_state = 2}, + [5290] = {.lex_state = 281, .external_lex_state = 2}, + [5291] = {.lex_state = 282, .external_lex_state = 2}, + [5292] = {.lex_state = 1, .external_lex_state = 2}, + [5293] = {.lex_state = 281, .external_lex_state = 2}, + [5294] = {.lex_state = 282, .external_lex_state = 2}, + [5295] = {.lex_state = 281, .external_lex_state = 11}, + [5296] = {.lex_state = 1, .external_lex_state = 2}, + [5297] = {.lex_state = 281, .external_lex_state = 11}, + [5298] = {.lex_state = 281, .external_lex_state = 2}, + [5299] = {.lex_state = 90, .external_lex_state = 2}, + [5300] = {.lex_state = 282, .external_lex_state = 2}, + [5301] = {.lex_state = 281, .external_lex_state = 2}, + [5302] = {.lex_state = 282, .external_lex_state = 2}, + [5303] = {.lex_state = 281, .external_lex_state = 2}, + [5304] = {.lex_state = 282, .external_lex_state = 2}, + [5305] = {.lex_state = 281, .external_lex_state = 8}, + [5306] = {.lex_state = 281, .external_lex_state = 8}, + [5307] = {.lex_state = 282, .external_lex_state = 2}, + [5308] = {.lex_state = 282, .external_lex_state = 2}, + [5309] = {.lex_state = 282, .external_lex_state = 2}, + [5310] = {.lex_state = 282, .external_lex_state = 2}, + [5311] = {.lex_state = 281, .external_lex_state = 11}, + [5312] = {.lex_state = 282, .external_lex_state = 2}, + [5313] = {.lex_state = 90, .external_lex_state = 2}, + [5314] = {.lex_state = 281, .external_lex_state = 11}, + [5315] = {.lex_state = 281, .external_lex_state = 2}, + [5316] = {.lex_state = 281, .external_lex_state = 2}, + [5317] = {.lex_state = 281, .external_lex_state = 2}, + [5318] = {.lex_state = 282, .external_lex_state = 2}, + [5319] = {.lex_state = 282, .external_lex_state = 2}, + [5320] = {.lex_state = 282, .external_lex_state = 2}, + [5321] = {.lex_state = 282, .external_lex_state = 2}, + [5322] = {.lex_state = 282, .external_lex_state = 2}, + [5323] = {.lex_state = 282, .external_lex_state = 2}, + [5324] = {.lex_state = 281, .external_lex_state = 2}, + [5325] = {.lex_state = 281, .external_lex_state = 11}, + [5326] = {.lex_state = 281, .external_lex_state = 11}, + [5327] = {.lex_state = 281, .external_lex_state = 11}, + [5328] = {.lex_state = 281, .external_lex_state = 2}, + [5329] = {.lex_state = 281, .external_lex_state = 2}, + [5330] = {.lex_state = 281, .external_lex_state = 2}, + [5331] = {.lex_state = 282, .external_lex_state = 2}, + [5332] = {.lex_state = 90, .external_lex_state = 2}, + [5333] = {.lex_state = 1, .external_lex_state = 2}, + [5334] = {.lex_state = 282, .external_lex_state = 2}, + [5335] = {.lex_state = 282, .external_lex_state = 2}, + [5336] = {.lex_state = 282, .external_lex_state = 2}, + [5337] = {.lex_state = 90, .external_lex_state = 2}, + [5338] = {.lex_state = 281, .external_lex_state = 11}, + [5339] = {.lex_state = 90, .external_lex_state = 2}, + [5340] = {.lex_state = 281, .external_lex_state = 11}, + [5341] = {.lex_state = 281, .external_lex_state = 2}, + [5342] = {.lex_state = 281, .external_lex_state = 2}, + [5343] = {.lex_state = 90, .external_lex_state = 2}, + [5344] = {.lex_state = 282, .external_lex_state = 2}, + [5345] = {.lex_state = 282, .external_lex_state = 2}, + [5346] = {.lex_state = 281, .external_lex_state = 2}, + [5347] = {.lex_state = 282, .external_lex_state = 2}, + [5348] = {.lex_state = 282, .external_lex_state = 2}, + [5349] = {.lex_state = 281, .external_lex_state = 2}, + [5350] = {.lex_state = 281, .external_lex_state = 2}, + [5351] = {.lex_state = 281, .external_lex_state = 11}, + [5352] = {.lex_state = 281, .external_lex_state = 2}, + [5353] = {.lex_state = 281, .external_lex_state = 11}, + [5354] = {.lex_state = 281, .external_lex_state = 8}, + [5355] = {.lex_state = 281, .external_lex_state = 2}, + [5356] = {.lex_state = 90, .external_lex_state = 2}, + [5357] = {.lex_state = 281, .external_lex_state = 8}, + [5358] = {.lex_state = 90, .external_lex_state = 2}, + [5359] = {.lex_state = 121, .external_lex_state = 2}, + [5360] = {.lex_state = 282, .external_lex_state = 2}, + [5361] = {.lex_state = 282, .external_lex_state = 2}, + [5362] = {.lex_state = 281, .external_lex_state = 2}, + [5363] = {.lex_state = 281, .external_lex_state = 2}, + [5364] = {.lex_state = 281, .external_lex_state = 11}, + [5365] = {.lex_state = 281, .external_lex_state = 2}, + [5366] = {.lex_state = 281, .external_lex_state = 11}, + [5367] = {.lex_state = 281, .external_lex_state = 2}, + [5368] = {.lex_state = 281, .external_lex_state = 2}, + [5369] = {.lex_state = 281, .external_lex_state = 2}, + [5370] = {.lex_state = 281, .external_lex_state = 2}, + [5371] = {.lex_state = 281, .external_lex_state = 2}, + [5372] = {.lex_state = 282, .external_lex_state = 2}, + [5373] = {.lex_state = 282, .external_lex_state = 2}, + [5374] = {.lex_state = 282, .external_lex_state = 2}, + [5375] = {.lex_state = 281, .external_lex_state = 2}, + [5376] = {.lex_state = 282, .external_lex_state = 2}, + [5377] = {.lex_state = 281, .external_lex_state = 11}, + [5378] = {.lex_state = 281, .external_lex_state = 2}, + [5379] = {.lex_state = 281, .external_lex_state = 11}, + [5380] = {.lex_state = 281, .external_lex_state = 2}, + [5381] = {.lex_state = 144, .external_lex_state = 2}, + [5382] = {.lex_state = 282, .external_lex_state = 2}, + [5383] = {.lex_state = 281, .external_lex_state = 2}, + [5384] = {.lex_state = 282, .external_lex_state = 2}, + [5385] = {.lex_state = 282, .external_lex_state = 2}, + [5386] = {.lex_state = 282, .external_lex_state = 2}, + [5387] = {.lex_state = 281, .external_lex_state = 2}, + [5388] = {.lex_state = 282, .external_lex_state = 2}, + [5389] = {.lex_state = 282, .external_lex_state = 2}, + [5390] = {.lex_state = 281, .external_lex_state = 11}, + [5391] = {.lex_state = 281, .external_lex_state = 11}, + [5392] = {.lex_state = 282, .external_lex_state = 2}, + [5393] = {.lex_state = 282, .external_lex_state = 2}, + [5394] = {.lex_state = 281, .external_lex_state = 8}, + [5395] = {.lex_state = 282, .external_lex_state = 2}, + [5396] = {.lex_state = 281, .external_lex_state = 2}, + [5397] = {.lex_state = 282, .external_lex_state = 2}, + [5398] = {.lex_state = 281, .external_lex_state = 2}, + [5399] = {.lex_state = 282, .external_lex_state = 2}, + [5400] = {.lex_state = 90, .external_lex_state = 2}, + [5401] = {.lex_state = 281, .external_lex_state = 2}, + [5402] = {.lex_state = 281, .external_lex_state = 2}, + [5403] = {.lex_state = 281, .external_lex_state = 2}, + [5404] = {.lex_state = 281, .external_lex_state = 11}, + [5405] = {.lex_state = 281, .external_lex_state = 11}, + [5406] = {.lex_state = 281, .external_lex_state = 2}, + [5407] = {.lex_state = 281, .external_lex_state = 2}, + [5408] = {.lex_state = 281, .external_lex_state = 2}, + [5409] = {.lex_state = 281, .external_lex_state = 11}, + [5410] = {.lex_state = 281, .external_lex_state = 11}, + [5411] = {.lex_state = 281, .external_lex_state = 2}, + [5412] = {.lex_state = 282, .external_lex_state = 2}, + [5413] = {.lex_state = 282, .external_lex_state = 2}, + [5414] = {.lex_state = 281, .external_lex_state = 11}, + [5415] = {.lex_state = 281, .external_lex_state = 11}, + [5416] = {.lex_state = 90, .external_lex_state = 2}, + [5417] = {.lex_state = 281, .external_lex_state = 2}, + [5418] = {.lex_state = 282, .external_lex_state = 2}, + [5419] = {.lex_state = 281, .external_lex_state = 11}, + [5420] = {.lex_state = 281, .external_lex_state = 11}, + [5421] = {.lex_state = 282, .external_lex_state = 2}, + [5422] = {.lex_state = 282, .external_lex_state = 2}, + [5423] = {.lex_state = 282, .external_lex_state = 2}, + [5424] = {.lex_state = 281, .external_lex_state = 11}, + [5425] = {.lex_state = 281, .external_lex_state = 11}, + [5426] = {.lex_state = 281, .external_lex_state = 2}, + [5427] = {.lex_state = 281, .external_lex_state = 2}, + [5428] = {.lex_state = 282, .external_lex_state = 2}, + [5429] = {.lex_state = 281, .external_lex_state = 11}, + [5430] = {.lex_state = 281, .external_lex_state = 11}, + [5431] = {.lex_state = 281, .external_lex_state = 2}, + [5432] = {.lex_state = 90, .external_lex_state = 2}, + [5433] = {.lex_state = 282, .external_lex_state = 2}, + [5434] = {.lex_state = 281, .external_lex_state = 11}, + [5435] = {.lex_state = 281, .external_lex_state = 11}, + [5436] = {.lex_state = 282, .external_lex_state = 2}, + [5437] = {.lex_state = 282, .external_lex_state = 2}, + [5438] = {.lex_state = 282, .external_lex_state = 2}, + [5439] = {.lex_state = 281, .external_lex_state = 11}, + [5440] = {.lex_state = 281, .external_lex_state = 11}, + [5441] = {.lex_state = 282, .external_lex_state = 2}, + [5442] = {.lex_state = 282, .external_lex_state = 2}, + [5443] = {.lex_state = 90, .external_lex_state = 2}, + [5444] = {.lex_state = 282, .external_lex_state = 2}, + [5445] = {.lex_state = 282, .external_lex_state = 2}, + [5446] = {.lex_state = 281, .external_lex_state = 8}, + [5447] = {.lex_state = 281, .external_lex_state = 8}, + [5448] = {.lex_state = 90, .external_lex_state = 2}, + [5449] = {.lex_state = 281, .external_lex_state = 2}, + [5450] = {.lex_state = 281, .external_lex_state = 2}, + [5451] = {.lex_state = 281, .external_lex_state = 2}, + [5452] = {.lex_state = 282, .external_lex_state = 2}, + [5453] = {.lex_state = 281, .external_lex_state = 11}, + [5454] = {.lex_state = 90, .external_lex_state = 2}, + [5455] = {.lex_state = 102, .external_lex_state = 2}, + [5456] = {.lex_state = 281, .external_lex_state = 2}, + [5457] = {.lex_state = 90, .external_lex_state = 2}, + [5458] = {.lex_state = 282, .external_lex_state = 2}, + [5459] = {.lex_state = 281, .external_lex_state = 2}, + [5460] = {.lex_state = 281, .external_lex_state = 2}, + [5461] = {.lex_state = 281, .external_lex_state = 2}, + [5462] = {.lex_state = 90, .external_lex_state = 2}, + [5463] = {.lex_state = 281, .external_lex_state = 2}, + [5464] = {.lex_state = 282, .external_lex_state = 2}, + [5465] = {.lex_state = 281, .external_lex_state = 2}, + [5466] = {.lex_state = 281, .external_lex_state = 12}, + [5467] = {.lex_state = 281, .external_lex_state = 12}, + [5468] = {.lex_state = 282, .external_lex_state = 2}, + [5469] = {.lex_state = 121, .external_lex_state = 2}, + [5470] = {.lex_state = 281, .external_lex_state = 2}, + [5471] = {.lex_state = 281, .external_lex_state = 2}, + [5472] = {.lex_state = 281, .external_lex_state = 2}, + [5473] = {.lex_state = 282, .external_lex_state = 2}, + [5474] = {.lex_state = 281, .external_lex_state = 2}, + [5475] = {.lex_state = 281, .external_lex_state = 2}, + [5476] = {.lex_state = 281, .external_lex_state = 11}, + [5477] = {.lex_state = 281, .external_lex_state = 11}, + [5478] = {.lex_state = 281, .external_lex_state = 11}, + [5479] = {.lex_state = 281, .external_lex_state = 2}, + [5480] = {.lex_state = 281, .external_lex_state = 2}, + [5481] = {.lex_state = 281, .external_lex_state = 2}, + [5482] = {.lex_state = 281, .external_lex_state = 2}, + [5483] = {.lex_state = 90, .external_lex_state = 2}, + [5484] = {.lex_state = 281, .external_lex_state = 2}, + [5485] = {(TSStateId)(-1)}, + [5486] = {(TSStateId)(-1)}, + [5487] = {(TSStateId)(-1)}, + [5488] = {(TSStateId)(-1)}, + [5489] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -24668,7 +21795,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_end] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_DOT_DOT2] = ACTIONS(1), - [anon_sym_DOT_DOT3] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_LT2] = ACTIONS(1), [anon_sym_LBRACK_RBRACK] = ACTIONS(1), @@ -24761,90 +21887,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_file] = STATE(5350), - [sym_namespace] = STATE(4449), - [sym_named_module] = STATE(5348), - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2433), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_file] = STATE(5463), + [sym_namespace] = STATE(4616), + [sym_named_module] = STATE(5461), + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2486), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(1), [sym_block_comment] = STATE(1), [sym_preproc_line] = STATE(1), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat1] = STATE(294), - [aux_sym_file_repeat2] = STATE(4131), - [aux_sym_file_repeat3] = STATE(338), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat1] = STATE(322), + [aux_sym_file_repeat2] = STATE(4206), + [aux_sym_file_repeat3] = STATE(332), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [ts_builtin_sym_end] = ACTIONS(11), [sym_identifier] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), @@ -24915,8 +22041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(111), }, [2] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -24947,624 +22073,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(2), [sym_block_comment] = STATE(2), [sym_preproc_line] = STATE(2), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_GT_RBRACK] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_GT_RBRACK] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(115), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_with] = ACTIONS(113), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(155), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_to] = ACTIONS(113), - [anon_sym_downto] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_end] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(147), + [anon_sym_downto] = ACTIONS(147), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(147), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [anon_sym_POUNDendif] = ACTIONS(115), - [anon_sym_POUNDelse] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(117), + [anon_sym_POUNDelse] = ACTIONS(117), + [sym__newline] = ACTIONS(219), }, [3] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(3), [sym_block_comment] = STATE(3), [sym_preproc_line] = STATE(3), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(127), - [sym_identifier] = ACTIONS(129), - [anon_sym_namespace] = ACTIONS(129), - [anon_sym_module] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_POUNDnowarn] = ACTIONS(127), - [anon_sym_POUNDr] = ACTIONS(127), - [anon_sym_POUNDload] = ACTIONS(127), - [anon_sym_open] = ACTIONS(129), - [anon_sym_LBRACK_LT] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_type] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT_RBRACK] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(223), + [anon_sym_downto] = ACTIONS(223), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(221), + [anon_sym_POUNDelse] = ACTIONS(221), + [sym__newline] = ACTIONS(221), }, [4] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(4), [sym_block_comment] = STATE(4), [sym_preproc_line] = STATE(4), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(137), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(139), - [anon_sym_module] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(137), - [anon_sym_POUNDr] = ACTIONS(137), - [anon_sym_POUNDload] = ACTIONS(137), - [anon_sym_open] = ACTIONS(139), - [anon_sym_LBRACK_LT] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(139), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(95), - [aux_sym__identifier_or_op_token1] = ACTIONS(101), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_GT_RBRACK] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_with] = ACTIONS(225), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_to] = ACTIONS(225), + [anon_sym_downto] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_end] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [anon_sym_POUNDendif] = ACTIONS(227), + [anon_sym_POUNDelse] = ACTIONS(227), + [sym__newline] = ACTIONS(227), }, [5] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(5), [sym_block_comment] = STATE(5), [sym_preproc_line] = STATE(5), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(181), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(183), - [anon_sym_module] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(181), - [anon_sym_POUNDr] = ACTIONS(181), - [anon_sym_POUNDload] = ACTIONS(181), - [anon_sym_open] = ACTIONS(183), - [anon_sym_LBRACK_LT] = ACTIONS(181), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(183), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(95), - [aux_sym__identifier_or_op_token1] = ACTIONS(101), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(185), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_GT_RBRACK] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_to] = ACTIONS(229), + [anon_sym_downto] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_end] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [anon_sym_POUNDendif] = ACTIONS(231), + [anon_sym_POUNDelse] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, [6] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -25595,246 +22721,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(6), [sym_block_comment] = STATE(6), [sym_preproc_line] = STATE(6), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(211), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(211), - [anon_sym_downto] = ACTIONS(211), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(211), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT_RBRACK] = ACTIONS(233), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(233), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(235), + [anon_sym_downto] = ACTIONS(235), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(189), - [anon_sym_POUNDelse] = ACTIONS(189), - [sym__newline] = ACTIONS(273), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(233), + [anon_sym_POUNDelse] = ACTIONS(233), + [sym__newline] = ACTIONS(219), }, [7] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(7), [sym_block_comment] = STATE(7), [sym_preproc_line] = STATE(7), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(275), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(221), [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(275), - [anon_sym_POUNDr] = ACTIONS(275), - [anon_sym_POUNDload] = ACTIONS(275), - [anon_sym_open] = ACTIONS(277), - [anon_sym_LBRACK_LT] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(277), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_namespace] = ACTIONS(223), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(221), + [anon_sym_POUNDr] = ACTIONS(221), + [anon_sym_POUNDload] = ACTIONS(221), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(223), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -25843,17 +22969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -25863,302 +22989,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(185), + [sym__newline] = ACTIONS(221), }, [8] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(8), [sym_block_comment] = STATE(8), [sym_preproc_line] = STATE(8), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(279), - [sym_identifier] = ACTIONS(281), - [anon_sym_namespace] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_POUNDnowarn] = ACTIONS(279), - [anon_sym_POUNDr] = ACTIONS(279), - [anon_sym_POUNDload] = ACTIONS(279), - [anon_sym_open] = ACTIONS(281), - [anon_sym_LBRACK_LT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_type] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - }, - [9] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(9), - [sym_block_comment] = STATE(9), - [sym_preproc_line] = STATE(9), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(283), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(271), [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(283), - [anon_sym_POUNDr] = ACTIONS(283), - [anon_sym_POUNDload] = ACTIONS(283), - [anon_sym_open] = ACTIONS(285), - [anon_sym_LBRACK_LT] = ACTIONS(283), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(285), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_namespace] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(271), + [anon_sym_POUNDr] = ACTIONS(271), + [anon_sym_POUNDload] = ACTIONS(271), + [anon_sym_open] = ACTIONS(273), + [anon_sym_LBRACK_LT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(273), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -26167,17 +23131,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -26187,32 +23151,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(283), + [sym__newline] = ACTIONS(277), }, - [10] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [9] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -26243,138 +23207,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(9), + [sym_block_comment] = STATE(9), + [sym_preproc_line] = STATE(9), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_GT_RBRACK] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_RBRACK] = ACTIONS(281), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_with] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_to] = ACTIONS(279), + [anon_sym_downto] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_end] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [anon_sym_POUNDendif] = ACTIONS(281), + [anon_sym_POUNDelse] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + }, + [10] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(10), [sym_block_comment] = STATE(10), [sym_preproc_line] = STATE(10), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_GT_RBRACK] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(279), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(279), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_to] = ACTIONS(281), - [anon_sym_downto] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_end] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [anon_sym_POUNDendif] = ACTIONS(279), - [anon_sym_POUNDelse] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(283), + [anon_sym_POUNDr] = ACTIONS(283), + [anon_sym_POUNDload] = ACTIONS(283), + [anon_sym_open] = ACTIONS(285), + [anon_sym_LBRACK_LT] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(285), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(95), + [aux_sym__identifier_or_op_token1] = ACTIONS(101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + [sym__newline] = ACTIONS(283), }, [11] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -26405,138 +23531,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(11), [sym_block_comment] = STATE(11), [sym_preproc_line] = STATE(11), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_GT_RBRACK] = ACTIONS(283), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), [anon_sym_RBRACK] = ACTIONS(283), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), [anon_sym_RBRACE] = ACTIONS(283), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), [anon_sym_with] = ACTIONS(285), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), [anon_sym_to] = ACTIONS(285), [anon_sym_downto] = ACTIONS(285), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), [anon_sym_end] = ACTIONS(285), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), [anon_sym_POUNDendif] = ACTIONS(283), [anon_sym_POUNDelse] = ACTIONS(283), [sym__newline] = ACTIONS(283), }, [12] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -26567,408 +23693,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(12), [sym_block_comment] = STATE(12), [sym_preproc_line] = STATE(12), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_GT_RBRACK] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(289), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_with] = ACTIONS(287), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_to] = ACTIONS(287), - [anon_sym_downto] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_end] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [anon_sym_POUNDendif] = ACTIONS(289), - [anon_sym_POUNDelse] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT_RBRACK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(271), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(273), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(273), + [anon_sym_downto] = ACTIONS(273), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(271), + [anon_sym_POUNDelse] = ACTIONS(271), + [sym__newline] = ACTIONS(219), }, [13] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(13), [sym_block_comment] = STATE(13), [sym_preproc_line] = STATE(13), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(277), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(277), - [anon_sym_downto] = ACTIONS(277), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(277), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(287), + [anon_sym_POUNDr] = ACTIONS(287), + [anon_sym_POUNDload] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_LBRACK_LT] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(289), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(95), + [aux_sym__identifier_or_op_token1] = ACTIONS(101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(275), - [anon_sym_POUNDelse] = ACTIONS(275), - [sym__newline] = ACTIONS(273), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + [sym__newline] = ACTIONS(277), }, [14] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(14), [sym_block_comment] = STATE(14), [sym_preproc_line] = STATE(14), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(291), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(233), [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(293), - [anon_sym_module] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(291), - [anon_sym_POUNDr] = ACTIONS(291), - [anon_sym_POUNDload] = ACTIONS(291), - [anon_sym_open] = ACTIONS(293), - [anon_sym_LBRACK_LT] = ACTIONS(291), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(293), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_namespace] = ACTIONS(235), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(233), + [anon_sym_POUNDr] = ACTIONS(233), + [anon_sym_POUNDload] = ACTIONS(233), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(233), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(235), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -26977,17 +24103,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -26997,140 +24123,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(185), + [sym__newline] = ACTIONS(277), }, [15] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(15), [sym_block_comment] = STATE(15), [sym_preproc_line] = STATE(15), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(189), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(211), - [anon_sym_module] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(189), - [anon_sym_POUNDr] = ACTIONS(189), - [anon_sym_POUNDload] = ACTIONS(189), - [anon_sym_open] = ACTIONS(211), - [anon_sym_LBRACK_LT] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(211), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_namespace] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(117), + [anon_sym_POUNDr] = ACTIONS(117), + [anon_sym_POUNDload] = ACTIONS(117), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(147), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(155), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(243), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -27139,17 +24265,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(171), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(255), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -27159,518 +24285,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(179), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(185), + [sym__newline] = ACTIONS(277), }, [16] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(16), [sym_block_comment] = STATE(16), [sym_preproc_line] = STATE(16), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(139), - [anon_sym_downto] = ACTIONS(139), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(227), + [sym_identifier] = ACTIONS(225), + [anon_sym_namespace] = ACTIONS(225), + [anon_sym_module] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_POUNDnowarn] = ACTIONS(227), + [anon_sym_POUNDr] = ACTIONS(227), + [anon_sym_POUNDload] = ACTIONS(227), + [anon_sym_open] = ACTIONS(225), + [anon_sym_LBRACK_LT] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_type] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(137), - [anon_sym_POUNDelse] = ACTIONS(137), - [sym__newline] = ACTIONS(137), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), }, [17] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(17), [sym_block_comment] = STATE(17), [sym_preproc_line] = STATE(17), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(289), - [sym_identifier] = ACTIONS(287), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_module] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_POUNDnowarn] = ACTIONS(289), - [anon_sym_POUNDr] = ACTIONS(289), - [anon_sym_POUNDload] = ACTIONS(289), - [anon_sym_open] = ACTIONS(287), - [anon_sym_LBRACK_LT] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_type] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_identifier] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(229), + [anon_sym_module] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_POUNDnowarn] = ACTIONS(231), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), + [anon_sym_open] = ACTIONS(229), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_type] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, [18] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(18), [sym_block_comment] = STATE(18), [sym_preproc_line] = STATE(18), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(181), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(181), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(181), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(183), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(183), - [anon_sym_downto] = ACTIONS(183), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(183), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(181), - [anon_sym_POUNDelse] = ACTIONS(181), - [sym__newline] = ACTIONS(273), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(279), + [anon_sym_module] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_POUNDnowarn] = ACTIONS(281), + [anon_sym_POUNDr] = ACTIONS(281), + [anon_sym_POUNDload] = ACTIONS(281), + [anon_sym_open] = ACTIONS(279), + [anon_sym_LBRACK_LT] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_type] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), }, [19] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -27701,392 +24827,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(19), [sym_block_comment] = STATE(19), [sym_preproc_line] = STATE(19), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_GT_RBRACK] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(127), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_with] = ACTIONS(129), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_to] = ACTIONS(129), - [anon_sym_downto] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_end] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [anon_sym_POUNDendif] = ACTIONS(127), - [anon_sym_POUNDelse] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_GT_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_with] = ACTIONS(291), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_to] = ACTIONS(291), + [anon_sym_downto] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_end] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDendif] = ACTIONS(293), + [anon_sym_POUNDelse] = ACTIONS(293), + [sym__newline] = ACTIONS(293), }, [20] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_infix_op] = STATE(594), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(18), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_infix_op] = STATE(499), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(20), [sym_block_comment] = STATE(20), [sym_preproc_line] = STATE(20), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(913), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_POUNDnowarn] = ACTIONS(115), - [anon_sym_POUNDr] = ACTIONS(115), - [anon_sym_POUNDload] = ACTIONS(115), - [anon_sym_open] = ACTIONS(113), - [anon_sym_LBRACK_LT] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(950), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(291), + [anon_sym_namespace] = ACTIONS(291), + [anon_sym_module] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_POUNDnowarn] = ACTIONS(293), + [anon_sym_POUNDr] = ACTIONS(293), + [anon_sym_POUNDload] = ACTIONS(293), + [anon_sym_open] = ACTIONS(291), + [anon_sym_LBRACK_LT] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), }, [21] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(21), [sym_block_comment] = STATE(21), [sym_preproc_line] = STATE(21), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(137), - [anon_sym_POUNDr] = ACTIONS(137), - [anon_sym_POUNDload] = ACTIONS(137), - [anon_sym_open] = ACTIONS(139), - [anon_sym_LBRACK_LT] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(117), + [anon_sym_POUNDr] = ACTIONS(117), + [anon_sym_POUNDload] = ACTIONS(117), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(237), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(139), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(147), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), [anon_sym_new] = ACTIONS(51), [anon_sym_return_BANG] = ACTIONS(53), @@ -28096,12 +25222,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -28111,16 +25237,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -28130,124 +25256,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(137), + [sym__newline] = ACTIONS(299), }, [22] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(22), [sym_block_comment] = STATE(22), [sym_preproc_line] = STATE(22), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(189), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(271), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(189), - [anon_sym_POUNDr] = ACTIONS(189), - [anon_sym_POUNDload] = ACTIONS(189), - [anon_sym_open] = ACTIONS(211), - [anon_sym_LBRACK_LT] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(273), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(271), + [anon_sym_POUNDr] = ACTIONS(271), + [anon_sym_POUNDload] = ACTIONS(271), + [anon_sym_open] = ACTIONS(273), + [anon_sym_LBRACK_LT] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(237), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(211), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(273), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), [anon_sym_new] = ACTIONS(51), [anon_sym_return_BANG] = ACTIONS(53), @@ -28257,12 +25383,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -28272,16 +25398,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -28291,285 +25417,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), [sym__newline] = ACTIONS(299), }, [23] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(23), [sym_block_comment] = STATE(23), [sym_preproc_line] = STATE(23), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(137), - [anon_sym_POUNDr] = ACTIONS(137), - [anon_sym_POUNDload] = ACTIONS(137), - [anon_sym_open] = ACTIONS(139), - [anon_sym_LBRACK_LT] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(139), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), - }, - [24] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(24), - [sym_block_comment] = STATE(24), - [sym_preproc_line] = STATE(24), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(275), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(287), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(275), - [anon_sym_POUNDr] = ACTIONS(275), - [anon_sym_POUNDload] = ACTIONS(275), - [anon_sym_open] = ACTIONS(277), - [anon_sym_LBRACK_LT] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(287), + [anon_sym_POUNDr] = ACTIONS(287), + [anon_sym_POUNDload] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_LBRACK_LT] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(237), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(277), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(289), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), [anon_sym_new] = ACTIONS(51), [anon_sym_return_BANG] = ACTIONS(53), @@ -28579,12 +25544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -28594,16 +25559,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -28613,281 +25578,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), [sym__newline] = ACTIONS(299), }, + [24] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(24), + [sym_block_comment] = STATE(24), + [sym_preproc_line] = STATE(24), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_identifier] = ACTIONS(229), + [anon_sym_module] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_POUNDnowarn] = ACTIONS(231), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), + [anon_sym_open] = ACTIONS(229), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_type] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + }, [25] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(25), [sym_block_comment] = STATE(25), [sym_preproc_line] = STATE(25), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(289), - [sym_identifier] = ACTIONS(287), - [anon_sym_module] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_POUNDnowarn] = ACTIONS(289), - [anon_sym_POUNDr] = ACTIONS(289), - [anon_sym_POUNDload] = ACTIONS(289), - [anon_sym_open] = ACTIONS(287), - [anon_sym_LBRACK_LT] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_type] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(279), + [anon_sym_module] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_POUNDnowarn] = ACTIONS(281), + [anon_sym_POUNDr] = ACTIONS(281), + [anon_sym_POUNDload] = ACTIONS(281), + [anon_sym_open] = ACTIONS(279), + [anon_sym_LBRACK_LT] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_type] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), }, [26] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(26), [sym_block_comment] = STATE(26), [sym_preproc_line] = STATE(26), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(227), + [sym_identifier] = ACTIONS(225), + [anon_sym_module] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_POUNDnowarn] = ACTIONS(227), + [anon_sym_POUNDr] = ACTIONS(227), + [anon_sym_POUNDload] = ACTIONS(227), + [anon_sym_open] = ACTIONS(225), + [anon_sym_LBRACK_LT] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_type] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + }, + [27] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(27), + [sym_block_comment] = STATE(27), + [sym_preproc_line] = STATE(27), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(181), - [anon_sym_POUNDr] = ACTIONS(181), - [anon_sym_POUNDload] = ACTIONS(181), - [anon_sym_open] = ACTIONS(183), - [anon_sym_LBRACK_LT] = ACTIONS(181), + [anon_sym_module] = ACTIONS(273), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(271), + [anon_sym_POUNDr] = ACTIONS(271), + [anon_sym_POUNDload] = ACTIONS(271), + [anon_sym_open] = ACTIONS(273), + [anon_sym_LBRACK_LT] = ACTIONS(271), [anon_sym_COLON] = ACTIONS(303), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(183), + [anon_sym_type] = ACTIONS(273), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), @@ -28901,9 +26188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -28924,7 +26211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -28934,447 +26221,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(181), + [sym__dedent] = ACTIONS(271), }, - [27] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [28] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(27), - [sym_block_comment] = STATE(27), - [sym_preproc_line] = STATE(27), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_POUNDnowarn] = ACTIONS(115), - [anon_sym_POUNDr] = ACTIONS(115), - [anon_sym_POUNDload] = ACTIONS(115), - [anon_sym_open] = ACTIONS(113), - [anon_sym_LBRACK_LT] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(28), + [sym_block_comment] = STATE(28), + [sym_preproc_line] = STATE(28), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(221), + [anon_sym_POUNDr] = ACTIONS(221), + [anon_sym_POUNDload] = ACTIONS(221), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(313), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(327), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(329), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__dedent] = ACTIONS(115), - }, - [28] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(28), - [sym_block_comment] = STATE(28), - [sym_preproc_line] = STATE(28), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(279), - [sym_identifier] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_POUNDnowarn] = ACTIONS(279), - [anon_sym_POUNDr] = ACTIONS(279), - [anon_sym_POUNDload] = ACTIONS(279), - [anon_sym_open] = ACTIONS(281), - [anon_sym_LBRACK_LT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_type] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(221), + [sym__dedent] = ACTIONS(221), }, [29] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), [sym_xml_doc] = STATE(29), [sym_block_comment] = STATE(29), [sym_preproc_line] = STATE(29), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(283), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_module] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_POUNDnowarn] = ACTIONS(231), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), + [anon_sym_open] = ACTIONS(229), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_type] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), + }, + [30] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(30), + [sym_block_comment] = STATE(30), + [sym_preproc_line] = STATE(30), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(221), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(283), - [anon_sym_POUNDr] = ACTIONS(283), - [anon_sym_POUNDload] = ACTIONS(283), - [anon_sym_open] = ACTIONS(285), - [anon_sym_LBRACK_LT] = ACTIONS(283), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(221), + [anon_sym_POUNDr] = ACTIONS(221), + [anon_sym_POUNDload] = ACTIONS(221), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(237), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(285), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(223), [anon_sym_LBRACE_PIPE] = ACTIONS(49), [anon_sym_new] = ACTIONS(51), [anon_sym_return_BANG] = ACTIONS(53), @@ -29384,12 +26671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -29399,16 +26686,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -29418,281 +26705,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(283), - }, - [30] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(30), - [sym_block_comment] = STATE(30), - [sym_preproc_line] = STATE(30), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_POUNDnowarn] = ACTIONS(115), - [anon_sym_POUNDr] = ACTIONS(115), - [anon_sym_POUNDload] = ACTIONS(115), - [anon_sym_open] = ACTIONS(113), - [anon_sym_LBRACK_LT] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(111), + [sym__newline] = ACTIONS(221), }, [31] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), [sym_xml_doc] = STATE(31), [sym_block_comment] = STATE(31), [sym_preproc_line] = STATE(31), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(275), - [anon_sym_POUNDr] = ACTIONS(275), - [anon_sym_POUNDload] = ACTIONS(275), - [anon_sym_open] = ACTIONS(277), - [anon_sym_LBRACK_LT] = ACTIONS(275), + [anon_sym_module] = ACTIONS(289), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(287), + [anon_sym_POUNDr] = ACTIONS(287), + [anon_sym_POUNDload] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_LBRACK_LT] = ACTIONS(287), [anon_sym_COLON] = ACTIONS(303), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(277), + [anon_sym_type] = ACTIONS(289), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), @@ -29706,9 +26832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -29729,7 +26855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -29739,286 +26865,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(275), + [sym__dedent] = ACTIONS(287), }, [32] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(32), [sym_block_comment] = STATE(32), [sym_preproc_line] = STATE(32), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(283), - [anon_sym_POUNDr] = ACTIONS(283), - [anon_sym_POUNDload] = ACTIONS(283), - [anon_sym_open] = ACTIONS(285), - [anon_sym_LBRACK_LT] = ACTIONS(283), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(285), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(349), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(283), - [sym__dedent] = ACTIONS(283), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(291), + [anon_sym_module] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_POUNDnowarn] = ACTIONS(293), + [anon_sym_POUNDr] = ACTIONS(293), + [anon_sym_POUNDload] = ACTIONS(293), + [anon_sym_open] = ACTIONS(291), + [anon_sym_LBRACK_LT] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), }, [33] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(33), [sym_block_comment] = STATE(33), [sym_preproc_line] = STATE(33), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(181), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(233), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(181), - [anon_sym_POUNDr] = ACTIONS(181), - [anon_sym_POUNDload] = ACTIONS(181), - [anon_sym_open] = ACTIONS(183), - [anon_sym_LBRACK_LT] = ACTIONS(181), - [anon_sym_COLON] = ACTIONS(143), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(233), + [anon_sym_POUNDr] = ACTIONS(233), + [anon_sym_POUNDload] = ACTIONS(233), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(233), + [anon_sym_COLON] = ACTIONS(237), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(183), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_type] = ACTIONS(235), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(275), [anon_sym_LBRACE_PIPE] = ACTIONS(49), [anon_sym_new] = ACTIONS(51), [anon_sym_return_BANG] = ACTIONS(53), @@ -30028,12 +27154,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -30043,16 +27169,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), + [anon_sym_LPAREN2] = ACTIONS(267), [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), [anon_sym_AT_DQUOTE] = ACTIONS(89), @@ -30062,120 +27188,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(95), [aux_sym__identifier_or_op_token1] = ACTIONS(101), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), [sym__newline] = ACTIONS(299), }, [34] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), [sym_xml_doc] = STATE(34), [sym_block_comment] = STATE(34), [sym_preproc_line] = STATE(34), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_module] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_POUNDnowarn] = ACTIONS(293), + [anon_sym_POUNDr] = ACTIONS(293), + [anon_sym_POUNDload] = ACTIONS(293), + [anon_sym_open] = ACTIONS(291), + [anon_sym_LBRACK_LT] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__dedent] = ACTIONS(293), + }, + [35] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(35), + [sym_block_comment] = STATE(35), + [sym_preproc_line] = STATE(35), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_module] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_POUNDnowarn] = ACTIONS(227), + [anon_sym_POUNDr] = ACTIONS(227), + [anon_sym_POUNDload] = ACTIONS(227), + [anon_sym_open] = ACTIONS(225), + [anon_sym_LBRACK_LT] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_type] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__dedent] = ACTIONS(227), + }, + [36] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(36), + [sym_block_comment] = STATE(36), + [sym_preproc_line] = STATE(36), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_module] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_POUNDnowarn] = ACTIONS(281), + [anon_sym_POUNDr] = ACTIONS(281), + [anon_sym_POUNDload] = ACTIONS(281), + [anon_sym_open] = ACTIONS(279), + [anon_sym_LBRACK_LT] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_type] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__dedent] = ACTIONS(281), + }, + [37] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(25), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_infix_op] = STATE(611), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(37), + [sym_block_comment] = STATE(37), + [sym_preproc_line] = STATE(37), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_sequential_expression_repeat1] = STATE(1124), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(283), + [anon_sym_POUNDr] = ACTIONS(283), + [anon_sym_POUNDload] = ACTIONS(283), + [anon_sym_open] = ACTIONS(285), + [anon_sym_LBRACK_LT] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(285), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_COMMA] = ACTIONS(295), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(275), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(249), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(251), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(253), + [anon_sym_COLON_QMARK_GT] = ACTIONS(253), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(297), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(95), + [aux_sym__identifier_or_op_token1] = ACTIONS(101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + [sym__newline] = ACTIONS(283), + }, + [38] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_preproc_line] = STATE(38), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(189), - [anon_sym_POUNDr] = ACTIONS(189), - [anon_sym_POUNDload] = ACTIONS(189), - [anon_sym_open] = ACTIONS(211), - [anon_sym_LBRACK_LT] = ACTIONS(189), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(233), + [anon_sym_POUNDr] = ACTIONS(233), + [anon_sym_POUNDload] = ACTIONS(233), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(233), [anon_sym_COLON] = ACTIONS(303), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(211), + [anon_sym_type] = ACTIONS(235), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), @@ -30189,9 +27959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -30212,7 +27982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -30222,282 +27992,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(189), - }, - [35] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(35), - [sym_block_comment] = STATE(35), - [sym_preproc_line] = STATE(35), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_module] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_POUNDnowarn] = ACTIONS(289), - [anon_sym_POUNDr] = ACTIONS(289), - [anon_sym_POUNDload] = ACTIONS(289), - [anon_sym_open] = ACTIONS(287), - [anon_sym_LBRACK_LT] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_type] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__dedent] = ACTIONS(289), + [sym__dedent] = ACTIONS(233), }, - [36] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [39] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(36), - [sym_block_comment] = STATE(36), - [sym_preproc_line] = STATE(36), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_preproc_line] = STATE(39), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(291), - [anon_sym_POUNDr] = ACTIONS(291), - [anon_sym_POUNDload] = ACTIONS(291), - [anon_sym_open] = ACTIONS(293), - [anon_sym_LBRACK_LT] = ACTIONS(291), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(117), + [anon_sym_POUNDr] = ACTIONS(117), + [anon_sym_POUNDload] = ACTIONS(117), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(117), [anon_sym_COLON] = ACTIONS(303), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(293), + [anon_sym_type] = ACTIONS(147), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_COMMA] = ACTIONS(313), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), @@ -30511,9 +28120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -30534,7 +28143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -30544,761 +28153,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(291), - }, - [37] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(37), - [sym_block_comment] = STATE(37), - [sym_preproc_line] = STATE(37), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(291), - [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_POUNDnowarn] = ACTIONS(291), - [anon_sym_POUNDr] = ACTIONS(291), - [anon_sym_POUNDload] = ACTIONS(291), - [anon_sym_open] = ACTIONS(293), - [anon_sym_LBRACK_LT] = ACTIONS(291), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(293), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(295), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(165), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(167), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(169), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(297), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(95), - [aux_sym__identifier_or_op_token1] = ACTIONS(101), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - [sym__newline] = ACTIONS(299), + [sym__dedent] = ACTIONS(117), }, - [38] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(38), - [sym_block_comment] = STATE(38), - [sym_preproc_line] = STATE(38), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_POUNDnowarn] = ACTIONS(279), - [anon_sym_POUNDr] = ACTIONS(279), - [anon_sym_POUNDload] = ACTIONS(279), - [anon_sym_open] = ACTIONS(281), - [anon_sym_LBRACK_LT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_type] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), - }, - [39] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [40] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(36), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_infix_op] = STATE(556), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(39), - [sym_block_comment] = STATE(39), - [sym_preproc_line] = STATE(39), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1090), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_module] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_POUNDnowarn] = ACTIONS(127), - [anon_sym_POUNDr] = ACTIONS(127), - [anon_sym_POUNDload] = ACTIONS(127), - [anon_sym_open] = ACTIONS(129), - [anon_sym_LBRACK_LT] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_type] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_infix_op] = STATE(511), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(40), + [sym_block_comment] = STATE(40), + [sym_preproc_line] = STATE(40), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1087), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_POUNDnowarn] = ACTIONS(283), + [anon_sym_POUNDr] = ACTIONS(283), + [anon_sym_POUNDload] = ACTIONS(283), + [anon_sym_open] = ACTIONS(285), + [anon_sym_LBRACK_LT] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(285), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__dedent] = ACTIONS(127), - }, - [40] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_infix_op] = STATE(627), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_preproc_line] = STATE(40), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_sequential_expression_repeat1] = STATE(1062), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(127), - [sym_identifier] = ACTIONS(129), - [anon_sym_module] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_POUNDnowarn] = ACTIONS(127), - [anon_sym_POUNDr] = ACTIONS(127), - [anon_sym_POUNDload] = ACTIONS(127), - [anon_sym_open] = ACTIONS(129), - [anon_sym_LBRACK_LT] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_type] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(283), + [sym__dedent] = ACTIONS(283), }, [41] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1098), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(994), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(41), [sym_block_comment] = STATE(41), [sym_preproc_line] = STATE(41), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4054), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4097), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -31312,9 +28438,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -31335,7 +28461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -31345,25 +28471,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -31372,92 +28498,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [42] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1874), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1106), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(42), [sym_block_comment] = STATE(42), [sym_preproc_line] = STATE(42), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(3954), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4128), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -31471,9 +28597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -31494,7 +28620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -31504,25 +28630,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -31531,92 +28657,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [43] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1947), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1735), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(43), [sym_block_comment] = STATE(43), [sym_preproc_line] = STATE(43), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4062), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4043), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -31630,9 +28756,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -31653,7 +28779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -31663,25 +28789,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -31690,92 +28816,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [44] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1667), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1513), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(44), [sym_block_comment] = STATE(44), [sym_preproc_line] = STATE(44), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4016), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4069), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -31789,9 +28915,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -31812,7 +28938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -31822,25 +28948,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -31849,92 +28975,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [45] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1749), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1930), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(45), [sym_block_comment] = STATE(45), [sym_preproc_line] = STATE(45), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(3963), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4110), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -31948,9 +29074,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -31971,7 +29097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -31981,25 +29107,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32008,92 +29134,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [46] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1827), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1610), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(46), [sym_block_comment] = STATE(46), [sym_preproc_line] = STATE(46), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4022), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4111), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -32107,9 +29233,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -32130,7 +29256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -32140,25 +29266,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32167,92 +29293,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [47] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(908), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1671), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(47), [sym_block_comment] = STATE(47), [sym_preproc_line] = STATE(47), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4028), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4153), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -32266,9 +29392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -32289,7 +29415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -32299,25 +29425,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32326,92 +29452,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [48] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1460), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(2044), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(48), [sym_block_comment] = STATE(48), [sym_preproc_line] = STATE(48), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4036), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4039), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -32425,9 +29551,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -32448,7 +29574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -32458,25 +29584,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32485,92 +29611,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [49] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1566), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1029), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(49), [sym_block_comment] = STATE(49), [sym_preproc_line] = STATE(49), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4017), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4084), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -32584,9 +29710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -32607,7 +29733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -32617,25 +29743,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32644,92 +29770,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [50] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__else_expression] = STATE(1029), - [sym_elif_expression] = STATE(4500), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__else_expression] = STATE(1874), + [sym_elif_expression] = STATE(4661), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(50), [sym_block_comment] = STATE(50), [sym_preproc_line] = STATE(50), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__if_then_else_expression_repeat1] = STATE(4046), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__if_then_else_expression_repeat1] = STATE(4081), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -32743,9 +29869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -32766,7 +29892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -32776,25 +29902,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), @@ -32803,557 +29929,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elif] = ACTIONS(485), }, [51] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(51), [sym_block_comment] = STATE(51), [sym_preproc_line] = STATE(51), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(525), - [anon_sym_as] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(183), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(549), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(551), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(553), - [anon_sym_COLON_QMARK_GT] = ACTIONS(553), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_LT_DASH] = ACTIONS(571), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(601), - [aux_sym__identifier_or_op_token1] = ACTIONS(603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym__list_elements_repeat1] = STATE(4356), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(533), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(539), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - [sym__newline] = ACTIONS(611), - [sym__dedent] = ACTIONS(181), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(543), + [sym__dedent] = ACTIONS(545), }, [52] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(52), [sym_block_comment] = STATE(52), [sym_preproc_line] = STATE(52), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_as] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), }, [53] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(53), [sym_block_comment] = STATE(53), [sym_preproc_line] = STATE(53), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_as] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_with] = ACTIONS(129), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__dedent] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(555), + [anon_sym_as] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(577), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(579), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(581), + [anon_sym_COLON_QMARK_GT] = ACTIONS(581), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(623), + [aux_sym__identifier_or_op_token1] = ACTIONS(625), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + [sym__newline] = ACTIONS(221), + [sym__dedent] = ACTIONS(221), }, [54] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(54), [sym_block_comment] = STATE(54), [sym_preproc_line] = STATE(54), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -33367,9 +30493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -33390,7 +30516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -33400,116 +30526,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), - [sym__else] = ACTIONS(137), - [sym__elif] = ACTIONS(137), + [sym__newline] = ACTIONS(479), + [sym__dedent] = ACTIONS(117), + [sym__else] = ACTIONS(117), + [sym__elif] = ACTIONS(117), }, [55] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(55), [sym_block_comment] = STATE(55), [sym_preproc_line] = STATE(55), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -33523,9 +30649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -33546,7 +30672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -33556,584 +30682,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), - [sym__newline] = ACTIONS(479), - [sym__dedent] = ACTIONS(181), - [sym__else] = ACTIONS(181), - [sym__elif] = ACTIONS(181), + [sym__newline] = ACTIONS(283), + [sym__dedent] = ACTIONS(283), + [sym__else] = ACTIONS(283), + [sym__elif] = ACTIONS(283), }, [56] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(56), [sym_block_comment] = STATE(56), [sym_preproc_line] = STATE(56), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(555), + [anon_sym_as] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(577), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(579), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(581), + [anon_sym_COLON_QMARK_GT] = ACTIONS(581), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(623), + [aux_sym__identifier_or_op_token1] = ACTIONS(625), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + [sym__newline] = ACTIONS(635), + [sym__dedent] = ACTIONS(117), }, [57] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(57), [sym_block_comment] = STATE(57), [sym_preproc_line] = STATE(57), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_as] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_with] = ACTIONS(287), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__dedent] = ACTIONS(289), - }, - [58] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_preproc_line] = STATE(58), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(555), + [anon_sym_as] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(565), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_with] = ACTIONS(113), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(285), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(577), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(579), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(581), + [anon_sym_COLON_QMARK_GT] = ACTIONS(581), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(623), + [aux_sym__identifier_or_op_token1] = ACTIONS(625), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__dedent] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(631), + [sym__newline] = ACTIONS(283), + [sym__dedent] = ACTIONS(283), }, - [59] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_preproc_line] = STATE(59), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [58] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_preproc_line] = STATE(58), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -34147,9 +31117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -34170,7 +31140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -34180,119 +31150,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), - [sym__dedent] = ACTIONS(275), - [sym__else] = ACTIONS(275), - [sym__elif] = ACTIONS(275), + [sym__dedent] = ACTIONS(271), + [sym__else] = ACTIONS(271), + [sym__elif] = ACTIONS(271), + }, + [59] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_preproc_line] = STATE(59), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(555), + [anon_sym_as] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(273), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(577), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(579), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(581), + [anon_sym_COLON_QMARK_GT] = ACTIONS(581), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(623), + [aux_sym__identifier_or_op_token1] = ACTIONS(625), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + [sym__newline] = ACTIONS(635), + [sym__dedent] = ACTIONS(271), }, [60] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(60), [sym_block_comment] = STATE(60), [sym_preproc_line] = STATE(60), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(223), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -34303,9 +31429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -34326,7 +31452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -34336,740 +31462,896 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), - [sym__newline] = ACTIONS(283), - [sym__dedent] = ACTIONS(283), - [sym__else] = ACTIONS(283), - [sym__elif] = ACTIONS(283), + [sym__newline] = ACTIONS(221), + [sym__dedent] = ACTIONS(221), + [sym__else] = ACTIONS(221), + [sym__elif] = ACTIONS(221), }, [61] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(61), [sym_block_comment] = STATE(61), [sym_preproc_line] = STATE(61), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), [anon_sym_DOT_LBRACK] = ACTIONS(441), [anon_sym_DOT] = ACTIONS(443), [anon_sym_LT] = ACTIONS(445), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__dedent] = ACTIONS(115), - [sym__else] = ACTIONS(115), - [sym__elif] = ACTIONS(115), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__dedent] = ACTIONS(281), + [sym__else] = ACTIONS(281), + [sym__elif] = ACTIONS(281), }, [62] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(62), [sym_block_comment] = STATE(62), [sym_preproc_line] = STATE(62), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), [anon_sym_DOT_LBRACK] = ACTIONS(441), [anon_sym_DOT] = ACTIONS(443), [anon_sym_LT] = ACTIONS(445), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__dedent] = ACTIONS(289), - [sym__else] = ACTIONS(289), - [sym__elif] = ACTIONS(289), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), + [sym__else] = ACTIONS(231), + [sym__elif] = ACTIONS(231), }, [63] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(63), [sym_block_comment] = STATE(63), [sym_preproc_line] = STATE(63), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), [anon_sym_DOT_LBRACK] = ACTIONS(441), [anon_sym_DOT] = ACTIONS(443), [anon_sym_LT] = ACTIONS(445), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), - [sym__else] = ACTIONS(279), - [sym__elif] = ACTIONS(279), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__dedent] = ACTIONS(293), + [sym__else] = ACTIONS(293), + [sym__elif] = ACTIONS(293), }, [64] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(64), [sym_block_comment] = STATE(64), [sym_preproc_line] = STATE(64), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), [anon_sym_DOT_LBRACK] = ACTIONS(441), [anon_sym_DOT] = ACTIONS(443), [anon_sym_LT] = ACTIONS(445), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__dedent] = ACTIONS(127), - [sym__else] = ACTIONS(127), - [sym__elif] = ACTIONS(127), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__dedent] = ACTIONS(227), + [sym__else] = ACTIONS(227), + [sym__elif] = ACTIONS(227), }, [65] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_infix_op] = STATE(608), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(65), [sym_block_comment] = STATE(65), [sym_preproc_line] = STATE(65), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_sequential_expression_repeat1] = STATE(1344), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_as] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), + }, + [66] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(61), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_infix_op] = STATE(584), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_preproc_line] = STATE(66), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_sequential_expression_repeat1] = STATE(1382), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(393), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), [anon_sym_LBRACE] = ACTIONS(409), @@ -35083,9 +32365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), [anon_sym_LT_AT] = ACTIONS(417), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(419), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(421), [anon_sym_COLON_QMARK_GT] = ACTIONS(421), [anon_sym_for] = ACTIONS(423), @@ -35106,7 +32388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(453), [anon_sym_LPAREN2] = ACTIONS(455), [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), [anon_sym_AT_DQUOTE] = ACTIONS(463), @@ -35116,1125 +32398,659 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(469), [aux_sym__identifier_or_op_token1] = ACTIONS(471), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), [sym_int] = ACTIONS(473), [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), [sym__newline] = ACTIONS(479), - [sym__dedent] = ACTIONS(189), - [sym__else] = ACTIONS(189), - [sym__elif] = ACTIONS(189), - }, - [66] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_preproc_line] = STATE(66), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(525), - [anon_sym_as] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(549), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(551), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(553), - [anon_sym_COLON_QMARK_GT] = ACTIONS(553), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_LT_DASH] = ACTIONS(571), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(601), - [aux_sym__identifier_or_op_token1] = ACTIONS(603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), + [sym__dedent] = ACTIONS(233), + [sym__else] = ACTIONS(233), + [sym__elif] = ACTIONS(233), }, [67] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(67), [sym_block_comment] = STATE(67), [sym_preproc_line] = STATE(67), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(525), - [anon_sym_as] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(277), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(549), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(551), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(553), - [anon_sym_COLON_QMARK_GT] = ACTIONS(553), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_LT_DASH] = ACTIONS(571), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(601), - [aux_sym__identifier_or_op_token1] = ACTIONS(603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - [sym__newline] = ACTIONS(611), - [sym__dedent] = ACTIONS(275), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_with] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__dedent] = ACTIONS(281), }, [68] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(68), [sym_block_comment] = STATE(68), [sym_preproc_line] = STATE(68), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym__list_elements_repeat1] = STATE(4207), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(635), - [sym__dedent] = ACTIONS(637), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_as] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_with] = ACTIONS(225), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__dedent] = ACTIONS(227), }, [69] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(69), [sym_block_comment] = STATE(69), [sym_preproc_line] = STATE(69), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(525), - [anon_sym_as] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(285), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(549), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(551), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(553), - [anon_sym_COLON_QMARK_GT] = ACTIONS(553), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_LT_DASH] = ACTIONS(571), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(601), - [aux_sym__identifier_or_op_token1] = ACTIONS(603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(555), + [anon_sym_as] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(577), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(579), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(581), + [anon_sym_COLON_QMARK_GT] = ACTIONS(581), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(623), + [aux_sym__identifier_or_op_token1] = ACTIONS(625), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - [sym__newline] = ACTIONS(283), - [sym__dedent] = ACTIONS(283), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + [sym__newline] = ACTIONS(635), + [sym__dedent] = ACTIONS(233), }, [70] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_infix_op] = STATE(687), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(67), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_infix_op] = STATE(670), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), [sym_xml_doc] = STATE(70), [sym_block_comment] = STATE(70), [sym_preproc_line] = STATE(70), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_sequential_expression_repeat1] = STATE(1336), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(525), - [anon_sym_as] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(211), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(549), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(551), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(553), - [anon_sym_COLON_QMARK_GT] = ACTIONS(553), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_LT_DASH] = ACTIONS(571), - [anon_sym_DOT_LBRACK] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_LPAREN2] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(601), - [aux_sym__identifier_or_op_token1] = ACTIONS(603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - [sym__newline] = ACTIONS(611), - [sym__dedent] = ACTIONS(189), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_sequential_expression_repeat1] = STATE(1394), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_with] = ACTIONS(291), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__dedent] = ACTIONS(293), }, [71] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(71), - [sym_block_comment] = STATE(71), - [sym_preproc_line] = STATE(71), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), - }, - [72] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(72), - [sym_block_comment] = STATE(72), - [sym_preproc_line] = STATE(72), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(285), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(283), - }, - [73] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -36265,131 +33081,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(73), - [sym_block_comment] = STATE(73), - [sym_preproc_line] = STATE(73), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(71), + [sym_block_comment] = STATE(71), + [sym_preproc_line] = STATE(71), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(115), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(155), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DOT_DOT2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(639), + [anon_sym_downto] = ACTIONS(639), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [74] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [72] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -36420,852 +33236,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(74), - [sym_block_comment] = STATE(74), - [sym_preproc_line] = STATE(74), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(72), + [sym_block_comment] = STATE(72), + [sym_preproc_line] = STATE(72), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(283), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(283), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(641), + [anon_sym_downto] = ACTIONS(641), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(283), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [73] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(73), + [sym_block_comment] = STATE(73), + [sym_preproc_line] = STATE(73), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_DOT_DOT2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), + }, + [74] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(74), + [sym_block_comment] = STATE(74), + [sym_preproc_line] = STATE(74), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_DOT_DOT2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__dedent] = ACTIONS(293), }, [75] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(75), [sym_block_comment] = STATE(75), [sym_preproc_line] = STATE(75), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_RBRACK] = ACTIONS(289), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_DOT_DOT2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_DOT_DOT2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__dedent] = ACTIONS(227), }, [76] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), [sym_xml_doc] = STATE(76), [sym_block_comment] = STATE(76), [sym_preproc_line] = STATE(76), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(275), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_as] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(667), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(669), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_LPAREN2] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(719), + [aux_sym__identifier_or_op_token1] = ACTIONS(721), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(727), + [sym__newline] = ACTIONS(221), }, [77] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(77), [sym_block_comment] = STATE(77), [sym_preproc_line] = STATE(77), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(757), - [anon_sym_downto] = ACTIONS(757), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [78] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(78), - [sym_block_comment] = STATE(78), - [sym_preproc_line] = STATE(78), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(279), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_DOT_DOT2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - }, - [79] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(79), - [sym_block_comment] = STATE(79), - [sym_preproc_line] = STATE(79), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym__list_elements_repeat1] = STATE(4287), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -37273,17 +34088,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(533), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(283), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -37293,498 +34109,808 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(283), + [sym__dedent] = ACTIONS(283), + }, + [78] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(78), + [sym_block_comment] = STATE(78), + [sym_preproc_line] = STATE(78), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(757), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(817), + [sym__else] = ACTIONS(117), + [sym__elif] = ACTIONS(117), + }, + [79] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(79), + [sym_block_comment] = STATE(79), + [sym_preproc_line] = STATE(79), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(533), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(759), - [sym__dedent] = ACTIONS(761), + [sym__newline] = ACTIONS(819), + [sym__dedent] = ACTIONS(117), }, [80] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(80), [sym_block_comment] = STATE(80), [sym_preproc_line] = STATE(80), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(127), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_DOT_DOT2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(533), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(819), + [sym__dedent] = ACTIONS(233), }, [81] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(81), [sym_block_comment] = STATE(81), [sym_preproc_line] = STATE(81), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_with] = ACTIONS(129), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(533), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__dedent] = ACTIONS(127), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(221), + [sym__dedent] = ACTIONS(221), }, [82] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), [sym_xml_doc] = STATE(82), [sym_block_comment] = STATE(82), [sym_preproc_line] = STATE(82), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_as] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(667), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(669), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_LPAREN2] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(719), + [aux_sym__identifier_or_op_token1] = ACTIONS(721), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + [sym__newline] = ACTIONS(823), }, [83] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -37815,386 +34941,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(83), [sym_block_comment] = STATE(83), [sym_preproc_line] = STATE(83), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(825), + [anon_sym_downto] = ACTIONS(825), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [84] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(84), [sym_block_comment] = STATE(84), [sym_preproc_line] = STATE(84), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_with] = ACTIONS(287), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(533), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__dedent] = ACTIONS(289), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_DOT_DOT2] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(819), + [sym__dedent] = ACTIONS(271), }, [85] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(85), [sym_block_comment] = STATE(85), [sym_preproc_line] = STATE(85), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -38202,18 +35328,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(533), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(275), + [anon_sym_DOT_DOT2] = ACTIONS(233), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -38223,188 +35349,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(767), - [sym__dedent] = ACTIONS(275), + [sym__newline] = ACTIONS(827), + [sym__dedent] = ACTIONS(827), }, [86] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(86), [sym_block_comment] = STATE(86), [sym_preproc_line] = STATE(86), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(741), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_with] = ACTIONS(113), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(757), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__dedent] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(817), + [sym__else] = ACTIONS(233), + [sym__elif] = ACTIONS(233), }, [87] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -38435,286 +35561,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(87), [sym_block_comment] = STATE(87), [sym_preproc_line] = STATE(87), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(829), + [anon_sym_downto] = ACTIONS(829), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [88] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(88), [sym_block_comment] = STATE(88), [sym_preproc_line] = STATE(88), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(181), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(757), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(221), + [sym__else] = ACTIONS(221), + [sym__elif] = ACTIONS(221), }, [89] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -38745,386 +35871,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(89), [sym_block_comment] = STATE(89), [sym_preproc_line] = STATE(89), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(771), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(831), + [anon_sym_downto] = ACTIONS(831), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [90] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(90), [sym_block_comment] = STATE(90), [sym_preproc_line] = STATE(90), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(137), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(137), - }, - [91] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(91), - [sym_block_comment] = STATE(91), - [sym_preproc_line] = STATE(91), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -39132,18 +36103,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(533), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(283), + [anon_sym_DOT_DOT2] = ACTIONS(539), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -39153,188 +36124,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(283), - [sym__dedent] = ACTIONS(283), + [sym__newline] = ACTIONS(819), + [sym__dedent] = ACTIONS(833), }, - [92] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(92), - [sym_block_comment] = STATE(92), - [sym_preproc_line] = STATE(92), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(773), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), - }, - [93] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [91] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -39365,131 +36181,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(93), - [sym_block_comment] = STATE(93), - [sym_preproc_line] = STATE(93), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(91), + [sym_block_comment] = STATE(91), + [sym_preproc_line] = STATE(91), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(835), + [anon_sym_downto] = ACTIONS(835), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [92] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(92), + [sym_block_comment] = STATE(92), + [sym_preproc_line] = STATE(92), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_as] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + }, + [93] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_preproc_line] = STATE(93), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__dedent] = ACTIONS(231), }, [94] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -39520,231 +36646,697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(94), [sym_block_comment] = STATE(94), [sym_preproc_line] = STATE(94), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(785), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(283), }, [95] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(95), [sym_block_comment] = STATE(95), [sym_preproc_line] = STATE(95), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__else] = ACTIONS(231), + [sym__elif] = ACTIONS(231), + }, + [96] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(96), + [sym_block_comment] = STATE(96), + [sym_preproc_line] = STATE(96), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(283), + }, + [97] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(97), + [sym_block_comment] = STATE(97), + [sym_preproc_line] = STATE(97), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + }, + [98] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(98), + [sym_block_comment] = STATE(98), + [sym_preproc_line] = STATE(98), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), + [anon_sym_with] = ACTIONS(273), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -39752,18 +37344,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(189), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -39773,343 +37364,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(767), - [sym__dedent] = ACTIONS(189), - }, - [96] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(96), - [sym_block_comment] = STATE(96), - [sym_preproc_line] = STATE(96), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(875), - [sym__else] = ACTIONS(189), - [sym__elif] = ACTIONS(189), - }, - [97] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(97), - [sym_block_comment] = STATE(97), - [sym_preproc_line] = STATE(97), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(877), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(271), }, - [98] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [99] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -40140,1371 +37421,1371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(98), - [sym_block_comment] = STATE(98), - [sym_preproc_line] = STATE(98), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(879), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), - }, - [99] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(99), [sym_block_comment] = STATE(99), [sym_preproc_line] = STATE(99), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_DASH_GT] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_DOT_DOT] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(961), + [anon_sym_downto] = ACTIONS(961), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [100] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(100), [sym_block_comment] = STATE(100), [sym_preproc_line] = STATE(100), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(757), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(283), - [sym__else] = ACTIONS(283), - [sym__elif] = ACTIONS(283), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(817), + [sym__else] = ACTIONS(271), + [sym__elif] = ACTIONS(271), }, [101] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(101), [sym_block_comment] = STATE(101), [sym_preproc_line] = STATE(101), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(963), + [anon_sym_downto] = ACTIONS(963), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(875), - [sym__else] = ACTIONS(275), - [sym__elif] = ACTIONS(275), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [102] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(102), [sym_block_comment] = STATE(102), [sym_preproc_line] = STATE(102), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(875), - [sym__else] = ACTIONS(181), - [sym__elif] = ACTIONS(181), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, [103] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(103), [sym_block_comment] = STATE(103), [sym_preproc_line] = STATE(103), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(137), - [sym__else] = ACTIONS(137), - [sym__elif] = ACTIONS(137), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), }, [104] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(104), [sym_block_comment] = STATE(104), [sym_preproc_line] = STATE(104), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(881), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__else] = ACTIONS(281), + [sym__elif] = ACTIONS(281), }, [105] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(105), [sym_block_comment] = STATE(105), [sym_preproc_line] = STATE(105), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(183), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), }, [106] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(106), [sym_block_comment] = STATE(106), [sym_preproc_line] = STATE(106), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_DOT_DOT] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(223), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(221), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(221), }, [107] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(107), + [sym_block_comment] = STATE(107), + [sym_preproc_line] = STATE(107), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(273), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), + }, + [108] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -41535,539 +38816,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(107), - [sym_block_comment] = STATE(107), - [sym_preproc_line] = STATE(107), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(887), - [anon_sym_POUNDelse] = ACTIONS(887), - [sym__newline] = ACTIONS(273), - }, - [108] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(108), [sym_block_comment] = STATE(108), [sym_preproc_line] = STATE(108), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(971), + [anon_sym_POUNDelse] = ACTIONS(971), + [sym__newline] = ACTIONS(219), }, [109] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(109), [sym_block_comment] = STATE(109), [sym_preproc_line] = STATE(109), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(155), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_DOT_DOT] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, [110] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(110), [sym_block_comment] = STATE(110), [sym_preproc_line] = STATE(110), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(889), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_with] = ACTIONS(285), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -42078,17 +39204,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -42098,498 +39224,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(891), + [sym__newline] = ACTIONS(283), + [sym__dedent] = ACTIONS(283), }, [111] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(111), [sym_block_comment] = STATE(111), [sym_preproc_line] = STATE(111), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(813), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(815), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(817), - [anon_sym_COLON_QMARK_GT] = ACTIONS(817), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(865), - [aux_sym__identifier_or_op_token1] = ACTIONS(867), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(975), + [anon_sym_downto] = ACTIONS(975), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - [sym__newline] = ACTIONS(875), - [sym__else] = ACTIONS(893), - [sym__elif] = ACTIONS(893), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, [112] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(112), - [sym_block_comment] = STATE(112), - [sym_preproc_line] = STATE(112), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(277), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(275), - }, - [113] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(113), - [sym_block_comment] = STATE(113), - [sym_preproc_line] = STATE(113), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(211), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), - }, - [114] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -42620,286 +39436,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(114), - [sym_block_comment] = STATE(114), - [sym_preproc_line] = STATE(114), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(112), + [sym_block_comment] = STATE(112), + [sym_preproc_line] = STATE(112), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(895), - [anon_sym_POUNDelse] = ACTIONS(895), - [sym__newline] = ACTIONS(273), - }, - [115] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(115), - [sym_block_comment] = STATE(115), - [sym_preproc_line] = STATE(115), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(285), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(117), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(117), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(283), - [sym__dedent] = ACTIONS(283), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [116] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [113] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -42930,131 +39591,1061 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(113), + [sym_block_comment] = STATE(113), + [sym_preproc_line] = STATE(113), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(271), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), + }, + [114] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(114), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_infix_op] = STATE(565), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(114), + [sym_block_comment] = STATE(114), + [sym_preproc_line] = STATE(114), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1598), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_DOT_DOT2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__dedent] = ACTIONS(281), + }, + [115] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(115), + [sym_block_comment] = STATE(115), + [sym_preproc_line] = STATE(115), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_as] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(667), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(669), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_LPAREN2] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(719), + [aux_sym__identifier_or_op_token1] = ACTIONS(721), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + [sym__newline] = ACTIONS(823), + }, + [116] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), [sym_xml_doc] = STATE(116), [sym_block_comment] = STATE(116), [sym_preproc_line] = STATE(116), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(897), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(757), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(283), + [sym__else] = ACTIONS(283), + [sym__elif] = ACTIONS(283), }, [117] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(117), + [sym_block_comment] = STATE(117), + [sym_preproc_line] = STATE(117), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_as] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(285), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(667), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(669), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_LPAREN2] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(719), + [aux_sym__identifier_or_op_token1] = ACTIONS(721), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + [sym__newline] = ACTIONS(283), + }, + [118] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(118), + [sym_block_comment] = STATE(118), + [sym_preproc_line] = STATE(118), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_DASH_GT] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + }, + [119] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(119), + [sym_block_comment] = STATE(119), + [sym_preproc_line] = STATE(119), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_DASH_GT] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + }, + [120] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -43085,286 +40676,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(117), - [sym_block_comment] = STATE(117), - [sym_preproc_line] = STATE(117), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(120), + [sym_block_comment] = STATE(120), + [sym_preproc_line] = STATE(120), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [118] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [121] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(118), - [sym_block_comment] = STATE(118), - [sym_preproc_line] = STATE(118), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_with] = ACTIONS(211), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(121), + [sym_block_comment] = STATE(121), + [sym_preproc_line] = STATE(121), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_with] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(189), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__dedent] = ACTIONS(281), }, - [119] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [122] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(122), + [sym_block_comment] = STATE(122), + [sym_preproc_line] = STATE(122), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_with] = ACTIONS(225), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__dedent] = ACTIONS(227), + }, + [123] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -43395,1161 +41141,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(119), - [sym_block_comment] = STATE(119), - [sym_preproc_line] = STATE(119), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), - }, - [120] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(120), - [sym_block_comment] = STATE(120), - [sym_preproc_line] = STATE(120), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_as] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_with] = ACTIONS(129), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - }, - [121] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(121), - [sym_block_comment] = STATE(121), - [sym_preproc_line] = STATE(121), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - }, - [122] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(122), - [sym_block_comment] = STATE(122), - [sym_preproc_line] = STATE(122), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_as] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_with] = ACTIONS(287), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - }, - [123] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(123), [sym_block_comment] = STATE(123), [sym_preproc_line] = STATE(123), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(275), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(907), - [sym__dedent] = ACTIONS(907), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_DOT_DOT2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), }, [124] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(124), [sym_block_comment] = STATE(124), [sym_preproc_line] = STATE(124), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_with] = ACTIONS(113), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - }, - [125] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(125), - [sym_block_comment] = STATE(125), - [sym_preproc_line] = STATE(125), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), - }, - [126] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(126), - [sym_block_comment] = STATE(126), - [sym_preproc_line] = STATE(126), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -44557,18 +41374,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(631), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -44578,498 +41394,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(767), - [sym__dedent] = ACTIONS(771), - }, - [127] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(127), - [sym_block_comment] = STATE(127), - [sym_preproc_line] = STATE(127), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_DOT_DOT2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__dedent] = ACTIONS(127), - }, - [128] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(128), - [sym_block_comment] = STATE(128), - [sym_preproc_line] = STATE(128), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__else] = ACTIONS(115), - [sym__elif] = ACTIONS(115), - }, - [129] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(129), - [sym_block_comment] = STATE(129), - [sym_preproc_line] = STATE(129), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_DOT_DOT2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__dedent] = ACTIONS(279), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(117), }, - [130] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [125] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -45100,131 +41451,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(130), - [sym_block_comment] = STATE(130), - [sym_preproc_line] = STATE(130), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(125), + [sym_block_comment] = STATE(125), + [sym_preproc_line] = STATE(125), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(909), - [anon_sym_downto] = ACTIONS(909), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [131] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [126] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -45255,596 +41606,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(131), - [sym_block_comment] = STATE(131), - [sym_preproc_line] = STATE(131), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(126), + [sym_block_comment] = STATE(126), + [sym_preproc_line] = STATE(126), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(911), - [anon_sym_downto] = ACTIONS(911), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [132] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(132), - [sym_block_comment] = STATE(132), - [sym_preproc_line] = STATE(132), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_DOT_DOT2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__dedent] = ACTIONS(289), - }, - [133] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(133), - [sym_block_comment] = STATE(133), - [sym_preproc_line] = STATE(133), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__else] = ACTIONS(289), - [sym__elif] = ACTIONS(289), - }, - [134] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(134), - [sym_block_comment] = STATE(134), - [sym_preproc_line] = STATE(134), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_with] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(221), }, - [135] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [127] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -45875,1526 +41761,1061 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(135), - [sym_block_comment] = STATE(135), - [sym_preproc_line] = STATE(135), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(127), + [sym_block_comment] = STATE(127), + [sym_preproc_line] = STATE(127), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(913), - [anon_sym_downto] = ACTIONS(913), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [136] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(136), - [sym_block_comment] = STATE(136), - [sym_preproc_line] = STATE(136), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_as] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(139), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(941), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(943), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(945), - [anon_sym_COLON_QMARK_GT] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_LT_DASH] = ACTIONS(963), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(987), - [aux_sym__identifier_or_op_token1] = ACTIONS(989), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - [sym__newline] = ACTIONS(137), - }, - [137] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(137), - [sym_block_comment] = STATE(137), - [sym_preproc_line] = STATE(137), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(155), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_DOT_DOT2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__dedent] = ACTIONS(115), - }, - [138] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(138), - [sym_block_comment] = STATE(138), - [sym_preproc_line] = STATE(138), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_as] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(285), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(941), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(943), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(945), - [anon_sym_COLON_QMARK_GT] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_LT_DASH] = ACTIONS(963), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(987), - [aux_sym__identifier_or_op_token1] = ACTIONS(989), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - [sym__newline] = ACTIONS(283), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [139] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(139), - [sym_block_comment] = STATE(139), - [sym_preproc_line] = STATE(139), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(183), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(181), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [128] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(128), + [sym_block_comment] = STATE(128), + [sym_preproc_line] = STATE(128), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(983), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(987), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(781), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), }, - [140] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(140), - [sym_block_comment] = STATE(140), - [sym_preproc_line] = STATE(140), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_as] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(211), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(941), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(943), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(945), - [anon_sym_COLON_QMARK_GT] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_LT_DASH] = ACTIONS(963), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(987), - [aux_sym__identifier_or_op_token1] = ACTIONS(989), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [129] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(129), + [sym_block_comment] = STATE(129), + [sym_preproc_line] = STATE(129), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(731), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(755), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(757), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(759), + [anon_sym_COLON_QMARK_GT] = ACTIONS(759), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(777), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(793), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(807), + [aux_sym__identifier_or_op_token1] = ACTIONS(809), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - [sym__newline] = ACTIONS(997), + [anon_sym_POUNDif] = ACTIONS(815), + [sym__newline] = ACTIONS(817), + [sym__else] = ACTIONS(989), + [sym__elif] = ACTIONS(989), }, - [141] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(141), - [sym_block_comment] = STATE(141), - [sym_preproc_line] = STATE(141), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__else] = ACTIONS(279), - [sym__elif] = ACTIONS(279), + [130] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(130), + [sym_block_comment] = STATE(130), + [sym_preproc_line] = STATE(130), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_DASH_GT] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), }, - [142] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(142), - [sym_block_comment] = STATE(142), - [sym_preproc_line] = STATE(142), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_as] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(277), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(941), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(943), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(945), - [anon_sym_COLON_QMARK_GT] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_LT_DASH] = ACTIONS(963), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(987), - [aux_sym__identifier_or_op_token1] = ACTIONS(989), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [131] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(131), + [sym_block_comment] = STATE(131), + [sym_preproc_line] = STATE(131), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(991), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(985), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(987), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - [sym__newline] = ACTIONS(997), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), }, - [143] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_infix_op] = STATE(653), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_preproc_line] = STATE(143), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1372), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(681), - [anon_sym_COLON_QMARK_GT] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(139), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(699), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [132] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(132), + [sym_block_comment] = STATE(132), + [sym_preproc_line] = STATE(132), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(137), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(233), }, - [144] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(144), - [sym_block_comment] = STATE(144), - [sym_preproc_line] = STATE(144), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(999), - [anon_sym_downto] = ACTIONS(999), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [133] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(97), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_infix_op] = STATE(592), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(133), + [sym_block_comment] = STATE(133), + [sym_preproc_line] = STATE(133), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1600), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(885), + [anon_sym_COLON_QMARK_GT] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(903), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(995), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(969), }, - [145] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [134] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -47425,131 +42846,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(145), - [sym_block_comment] = STATE(145), - [sym_preproc_line] = STATE(145), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(134), + [sym_block_comment] = STATE(134), + [sym_preproc_line] = STATE(134), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(1001), - [anon_sym_downto] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(997), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [146] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [135] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -47580,541 +43001,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_preproc_line] = STATE(146), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(135), + [sym_block_comment] = STATE(135), + [sym_preproc_line] = STATE(135), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [147] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_preproc_line] = STATE(147), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_sequential_expression_repeat1] = STATE(1427), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [136] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(136), + [sym_block_comment] = STATE(136), + [sym_preproc_line] = STATE(136), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__else] = ACTIONS(127), - [sym__elif] = ACTIONS(127), - }, - [148] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_preproc_line] = STATE(148), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(1005), - [anon_sym_downto] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_with] = ACTIONS(1001), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1003), }, - [149] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [137] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(149), - [sym_block_comment] = STATE(149), - [sym_preproc_line] = STATE(149), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(137), + [sym_block_comment] = STATE(137), + [sym_preproc_line] = STATE(137), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(223), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -48122,18 +43389,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(137), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -48143,33 +43409,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(137), - [sym__dedent] = ACTIONS(137), + [sym__newline] = ACTIONS(221), + [sym__dedent] = ACTIONS(221), }, - [150] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [138] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(138), + [sym_block_comment] = STATE(138), + [sym_preproc_line] = STATE(138), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__else] = ACTIONS(293), + [sym__elif] = ACTIONS(293), + }, + [139] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -48200,295 +43621,450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_preproc_line] = STATE(150), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(139), + [sym_block_comment] = STATE(139), + [sym_preproc_line] = STATE(139), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [151] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_infix_op] = STATE(557), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(151), - [sym_block_comment] = STATE(151), - [sym_preproc_line] = STATE(151), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_sequential_expression_repeat1] = STATE(1378), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(917), - [anon_sym_as] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(183), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(941), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(943), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(945), - [anon_sym_COLON_QMARK_GT] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_LT_DASH] = ACTIONS(963), - [anon_sym_DOT_LBRACK] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_LPAREN2] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(987), - [aux_sym__identifier_or_op_token1] = ACTIONS(989), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - [sym__newline] = ACTIONS(997), + [140] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(140), + [sym_block_comment] = STATE(140), + [sym_preproc_line] = STATE(140), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_as] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_with] = ACTIONS(225), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), }, - [152] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), + [141] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(141), + [sym_block_comment] = STATE(141), + [sym_preproc_line] = STATE(141), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_with] = ACTIONS(291), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + }, + [142] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), [sym__if_then_expression] = STATE(983), [sym_if_expression] = STATE(972), [sym_fun_expression] = STATE(972), @@ -48510,131 +44086,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_preproc_line] = STATE(152), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(142), + [sym_block_comment] = STATE(142), + [sym_preproc_line] = STATE(142), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(1009), - [anon_sym_downto] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_DOT_DOT2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), }, - [153] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [143] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -48665,131 +44241,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(153), - [sym_block_comment] = STATE(153), - [sym_preproc_line] = STATE(153), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(143), + [sym_block_comment] = STATE(143), + [sym_preproc_line] = STATE(143), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(1011), - [anon_sym_downto] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(1007), + [anon_sym_POUNDelse] = ACTIONS(1007), + [sym__newline] = ACTIONS(219), }, - [154] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(80), + [144] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -48820,286 +44396,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_infix_op] = STATE(576), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_preproc_line] = STATE(154), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(144), + [sym_block_comment] = STATE(144), + [sym_preproc_line] = STATE(144), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1369), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(749), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_DOT_DOT2] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(233), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(755), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [155] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_infix_op] = STATE(692), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_preproc_line] = STATE(155), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1377), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_DOT_DOT2] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [145] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(145), + [sym_block_comment] = STATE(145), + [sym_preproc_line] = STATE(145), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1009), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(767), - [sym__dedent] = ACTIONS(181), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [156] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [146] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(104), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_infix_op] = STATE(708), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_preproc_line] = STATE(146), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_sequential_expression_repeat1] = STATE(1573), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__else] = ACTIONS(227), + [sym__elif] = ACTIONS(227), + }, + [147] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -49130,228 +44861,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_preproc_line] = STATE(156), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_preproc_line] = STATE(147), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_to] = ACTIONS(1015), - [anon_sym_downto] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_to] = ACTIONS(1011), + [anon_sym_downto] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [157] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [148] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(157), - [sym_block_comment] = STATE(157), - [sym_preproc_line] = STATE(157), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_preproc_line] = STATE(148), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym__list_elements_repeat1] = STATE(4239), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -49362,17 +45094,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -49382,187 +45114,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1017), + [sym__newline] = ACTIONS(1013), + [sym__dedent] = ACTIONS(1015), }, - [158] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(158), - [sym_block_comment] = STATE(158), - [sym_preproc_line] = STATE(158), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1019), + [149] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_preproc_line] = STATE(149), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_as] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_with] = ACTIONS(229), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, - [159] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [150] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -49593,284 +45326,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_preproc_line] = STATE(159), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_preproc_line] = STATE(150), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1023), - }, - [160] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_preproc_line] = STATE(160), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_DOT_DOT2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, - [161] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [151] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -49901,592 +45481,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(161), - [sym_block_comment] = STATE(161), - [sym_preproc_line] = STATE(161), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_preproc_line] = STATE(151), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1117), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1119), - }, - [162] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(162), - [sym_block_comment] = STATE(162), - [sym_preproc_line] = STATE(162), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1135), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_RBRACK] = ACTIONS(281), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_DOT_DOT2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), }, - [163] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_preproc_line] = STATE(163), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), - [sym__then] = ACTIONS(115), + [152] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_preproc_line] = STATE(152), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_with] = ACTIONS(279), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), }, - [164] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(164), - [sym_block_comment] = STATE(164), - [sym_preproc_line] = STATE(164), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), - [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), - [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_DOT_DOT] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(115), - [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [153] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_preproc_line] = STATE(153), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_with] = ACTIONS(291), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__dedent] = ACTIONS(293), }, - [165] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [154] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -50517,1054 +45946,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_preproc_line] = STATE(165), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(154), + [sym_block_comment] = STATE(154), + [sym_preproc_line] = STATE(154), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [166] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_preproc_line] = STATE(166), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(283), - [sym__then] = ACTIONS(283), - }, - [167] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_preproc_line] = STATE(167), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1233), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), - }, - [168] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_preproc_line] = STATE(168), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1239), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [169] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_preproc_line] = STATE(169), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [155] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(152), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_infix_op] = STATE(686), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_preproc_line] = STATE(155), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_sequential_expression_repeat1] = STATE(1459), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(645), + [anon_sym_as] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(273), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(667), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(669), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(671), + [anon_sym_COLON_QMARK_GT] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LT_DASH] = ACTIONS(689), + [anon_sym_DOT_LBRACK] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_LPAREN2] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(719), + [aux_sym__identifier_or_op_token1] = ACTIONS(721), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), - }, - [170] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_preproc_line] = STATE(170), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - [sym__then] = ACTIONS(289), - }, - [171] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_preproc_line] = STATE(171), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1243), + [anon_sym_POUNDif] = ACTIONS(727), + [sym__newline] = ACTIONS(823), }, - [172] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [156] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(151), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -51595,1054 +46256,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_preproc_line] = STATE(172), + [sym_prefix_op] = STATE(623), + [sym_infix_op] = STATE(537), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_preproc_line] = STATE(156), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1245), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1247), - }, - [173] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_preproc_line] = STATE(173), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1249), - }, - [174] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_preproc_line] = STATE(174), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1469), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(839), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1019), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(847), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [175] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_preproc_line] = STATE(175), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1253), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1255), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(967), }, - [176] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_preproc_line] = STATE(176), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [157] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_preproc_line] = STATE(157), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [177] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_preproc_line] = STATE(177), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [158] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_preproc_line] = STATE(158), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_DASH_GT] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - }, - [178] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_preproc_line] = STATE(178), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1135), }, - [179] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [159] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -52673,130 +46719,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(179), - [sym_block_comment] = STATE(179), - [sym_preproc_line] = STATE(179), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_preproc_line] = STATE(159), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(889), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [180] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [160] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -52827,227 +46873,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_preproc_line] = STATE(180), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_preproc_line] = STATE(160), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1141), }, - [181] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [161] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_preproc_line] = STATE(181), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_preproc_line] = STATE(161), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -53058,17 +47104,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -53078,341 +47124,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1263), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1143), }, - [182] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_preproc_line] = STATE(182), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [162] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(162), + [sym_block_comment] = STATE(162), + [sym_preproc_line] = STATE(162), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(275), - }, - [183] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_preproc_line] = STATE(183), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [184] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [163] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -53443,381 +47335,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_preproc_line] = STATE(184), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_preproc_line] = STATE(163), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [185] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_preproc_line] = STATE(185), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), - [sym__then] = ACTIONS(279), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [186] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [164] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_preproc_line] = STATE(186), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_preproc_line] = STATE(164), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -53828,17 +47566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -53848,649 +47586,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1267), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1239), }, - [187] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_preproc_line] = STATE(187), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [165] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_preproc_line] = STATE(165), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(283), }, - [188] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_preproc_line] = STATE(188), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [166] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_preproc_line] = STATE(166), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1243), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [189] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_preproc_line] = STATE(189), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1273), + [167] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_preproc_line] = STATE(167), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, - [190] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_preproc_line] = STATE(190), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [168] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_preproc_line] = STATE(168), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + [sym__then] = ACTIONS(293), }, - [191] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [169] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -54521,1459 +48259,1459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(191), - [sym_block_comment] = STATE(191), - [sym_preproc_line] = STATE(191), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_preproc_line] = STATE(169), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1245), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1247), }, - [192] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(192), - [sym_block_comment] = STATE(192), - [sym_preproc_line] = STATE(192), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), - }, - [193] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(193), - [sym_block_comment] = STATE(193), - [sym_preproc_line] = STATE(193), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [170] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_preproc_line] = STATE(170), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1279), - }, - [194] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_preproc_line] = STATE(194), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(281), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_BANG] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [anon_sym_QMARK] = ACTIONS(281), - [anon_sym_COLON_QMARK] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_COLON_COLON] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(281), - [anon_sym_LBRACE_PIPE] = ACTIONS(279), - [anon_sym_new] = ACTIONS(281), - [anon_sym_return_BANG] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_yield_BANG] = ACTIONS(279), - [anon_sym_lazy] = ACTIONS(281), - [anon_sym_assert] = ACTIONS(281), - [anon_sym_upcast] = ACTIONS(281), - [anon_sym_downcast] = ACTIONS(281), - [anon_sym_LT_AT] = ACTIONS(281), - [anon_sym_AT_GT] = ACTIONS(279), - [anon_sym_LT_AT_AT] = ACTIONS(281), - [anon_sym_AT_AT_GT] = ACTIONS(279), - [anon_sym_COLON_GT] = ACTIONS(279), - [anon_sym_COLON_QMARK_GT] = ACTIONS(279), - [anon_sym_for] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_match_BANG] = ACTIONS(279), - [anon_sym_function] = ACTIONS(281), - [anon_sym_LT_DASH] = ACTIONS(281), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(279), - [anon_sym_do_BANG] = ACTIONS(279), - [anon_sym_DOT_DOT] = ACTIONS(279), - [anon_sym_begin] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(279), - [anon_sym_or] = ACTIONS(281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(281), - [anon_sym_AT_DQUOTE] = ACTIONS(279), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), - [sym_bool] = ACTIONS(281), - [sym_unit] = ACTIONS(281), - [aux_sym__identifier_or_op_token1] = ACTIONS(281), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS_DOT] = ACTIONS(281), - [anon_sym_DASH_DOT] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(281), - [anon_sym_AMP_AMP] = ACTIONS(281), - [anon_sym_TILDE] = ACTIONS(279), - [aux_sym_prefix_op_token1] = ACTIONS(279), - [aux_sym_infix_op_token1] = ACTIONS(281), - [anon_sym_PIPE_PIPE] = ACTIONS(281), - [anon_sym_BANG_EQ] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_QMARK_LT_DASH] = ACTIONS(279), - [sym_int] = ACTIONS(281), - [sym_xint] = ACTIONS(279), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(279), - [sym__newline] = ACTIONS(279), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [195] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(195), - [sym_block_comment] = STATE(195), - [sym_preproc_line] = STATE(195), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_return] = ACTIONS(287), - [anon_sym_do] = ACTIONS(287), - [anon_sym_let] = ACTIONS(287), - [anon_sym_let_BANG] = ACTIONS(289), - [anon_sym_null] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_COLON_QMARK] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_COLON_COLON] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACK_PIPE] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_LBRACE_PIPE] = ACTIONS(289), - [anon_sym_new] = ACTIONS(287), - [anon_sym_return_BANG] = ACTIONS(289), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_yield_BANG] = ACTIONS(289), - [anon_sym_lazy] = ACTIONS(287), - [anon_sym_assert] = ACTIONS(287), - [anon_sym_upcast] = ACTIONS(287), - [anon_sym_downcast] = ACTIONS(287), - [anon_sym_LT_AT] = ACTIONS(287), - [anon_sym_AT_GT] = ACTIONS(289), - [anon_sym_LT_AT_AT] = ACTIONS(287), - [anon_sym_AT_AT_GT] = ACTIONS(289), - [anon_sym_COLON_GT] = ACTIONS(289), - [anon_sym_COLON_QMARK_GT] = ACTIONS(289), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(287), - [anon_sym_if] = ACTIONS(287), - [anon_sym_fun] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(287), - [anon_sym_try] = ACTIONS(287), - [anon_sym_match] = ACTIONS(287), - [anon_sym_match_BANG] = ACTIONS(289), - [anon_sym_function] = ACTIONS(287), - [anon_sym_LT_DASH] = ACTIONS(287), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(287), - [anon_sym_use_BANG] = ACTIONS(289), - [anon_sym_do_BANG] = ACTIONS(289), - [anon_sym_begin] = ACTIONS(287), - [anon_sym_LPAREN2] = ACTIONS(289), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_or] = ACTIONS(287), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(287), - [anon_sym_AT_DQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(289), - [sym_bool] = ACTIONS(287), - [sym_unit] = ACTIONS(287), - [aux_sym__identifier_or_op_token1] = ACTIONS(287), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(287), - [anon_sym_PLUS_DOT] = ACTIONS(287), - [anon_sym_DASH_DOT] = ACTIONS(287), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_AMP_AMP] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(289), - [aux_sym_prefix_op_token1] = ACTIONS(289), - [aux_sym_infix_op_token1] = ACTIONS(287), - [anon_sym_PIPE_PIPE] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_COLON_EQ] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(287), - [anon_sym_QMARK_LT_DASH] = ACTIONS(289), - [sym_int] = ACTIONS(287), - [sym_xint] = ACTIONS(289), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(289), - [sym__newline] = ACTIONS(289), + [171] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_preproc_line] = STATE(171), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), }, - [196] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_preproc_line] = STATE(196), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [172] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_preproc_line] = STATE(172), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1251), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1281), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [197] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_preproc_line] = STATE(197), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [173] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_preproc_line] = STATE(173), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), + [sym__then] = ACTIONS(231), + }, + [174] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_preproc_line] = STATE(174), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1253), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1255), }, - [198] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_preproc_line] = STATE(198), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [175] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_preproc_line] = STATE(175), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + }, + [176] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_preproc_line] = STATE(176), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1257), }, - [199] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(199), - [sym_block_comment] = STATE(199), - [sym_preproc_line] = STATE(199), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [177] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_preproc_line] = STATE(177), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1287), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [200] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [178] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_preproc_line] = STATE(200), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_preproc_line] = STATE(178), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -55984,17 +49722,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -56004,1419 +49742,1573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1289), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1261), }, - [201] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_preproc_line] = STATE(201), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [179] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_preproc_line] = STATE(179), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1291), - }, - [202] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_preproc_line] = STATE(202), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1293), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [203] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(203), - [sym_block_comment] = STATE(203), - [sym_preproc_line] = STATE(203), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [180] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_preproc_line] = STATE(180), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1295), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [204] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_preproc_line] = STATE(204), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [181] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_preproc_line] = STATE(181), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1265), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1297), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1267), }, - [205] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_preproc_line] = STATE(205), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [182] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_preproc_line] = STATE(182), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1299), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [206] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_preproc_line] = STATE(206), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [183] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_preproc_line] = STATE(183), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1301), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1273), }, - [207] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_preproc_line] = STATE(207), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [184] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_preproc_line] = STATE(184), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(221), + [sym__then] = ACTIONS(221), }, - [208] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_preproc_line] = STATE(208), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [185] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_preproc_line] = STATE(185), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1305), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1275), }, - [209] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_preproc_line] = STATE(209), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [186] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_preproc_line] = STATE(186), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1307), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [210] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [187] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_preproc_line] = STATE(187), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [188] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_preproc_line] = STATE(188), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + [sym__then] = ACTIONS(227), + }, + [189] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -57447,227 +51339,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_preproc_line] = STATE(210), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_preproc_line] = STATE(189), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [211] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [190] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(211), - [sym_block_comment] = STATE(211), - [sym_preproc_line] = STATE(211), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_preproc_line] = STATE(190), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -57678,17 +51570,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -57698,495 +51590,1419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1311), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1281), }, - [212] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(212), - [sym_block_comment] = STATE(212), - [sym_preproc_line] = STATE(212), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [191] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_preproc_line] = STATE(191), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), - [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_DOT_DOT] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(271), }, - [213] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(213), - [sym_block_comment] = STATE(213), - [sym_preproc_line] = STATE(213), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [192] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_preproc_line] = STATE(192), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + [sym__then] = ACTIONS(281), + }, + [193] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_preproc_line] = STATE(193), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(221), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1313), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(221), }, - [214] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_preproc_line] = STATE(214), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(113), + [194] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_preproc_line] = STATE(194), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_return] = ACTIONS(225), + [anon_sym_do] = ACTIONS(225), + [anon_sym_let] = ACTIONS(225), + [anon_sym_let_BANG] = ACTIONS(227), + [anon_sym_null] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_COLON_QMARK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_LBRACK_PIPE] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_LBRACE_PIPE] = ACTIONS(227), + [anon_sym_new] = ACTIONS(225), + [anon_sym_return_BANG] = ACTIONS(227), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_yield_BANG] = ACTIONS(227), + [anon_sym_lazy] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(225), + [anon_sym_upcast] = ACTIONS(225), + [anon_sym_downcast] = ACTIONS(225), + [anon_sym_LT_AT] = ACTIONS(225), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(225), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(227), + [anon_sym_COLON_QMARK_GT] = ACTIONS(227), + [anon_sym_for] = ACTIONS(225), + [anon_sym_while] = ACTIONS(225), + [anon_sym_if] = ACTIONS(225), + [anon_sym_fun] = ACTIONS(225), + [anon_sym_DASH_GT] = ACTIONS(225), + [anon_sym_try] = ACTIONS(225), + [anon_sym_match] = ACTIONS(225), + [anon_sym_match_BANG] = ACTIONS(227), + [anon_sym_function] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(225), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(225), + [anon_sym_use_BANG] = ACTIONS(227), + [anon_sym_do_BANG] = ACTIONS(227), + [anon_sym_begin] = ACTIONS(225), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_or] = ACTIONS(225), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_AT_DQUOTE] = ACTIONS(227), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(227), + [sym_bool] = ACTIONS(225), + [sym_unit] = ACTIONS(225), + [aux_sym__identifier_or_op_token1] = ACTIONS(225), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_PLUS_DOT] = ACTIONS(225), + [anon_sym_DASH_DOT] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(227), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(227), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(225), + [sym_xint] = ACTIONS(227), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(227), + [sym__newline] = ACTIONS(227), + }, + [195] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_preproc_line] = STATE(195), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), [anon_sym_EQ] = ACTIONS(115), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_BANG] = ACTIONS(115), - [anon_sym_null] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_COLON_QMARK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), [anon_sym_COLON_COLON] = ACTIONS(115), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACK_PIPE] = ACTIONS(115), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LBRACE_PIPE] = ACTIONS(115), - [anon_sym_new] = ACTIONS(113), - [anon_sym_return_BANG] = ACTIONS(115), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_yield_BANG] = ACTIONS(115), - [anon_sym_lazy] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_upcast] = ACTIONS(113), - [anon_sym_downcast] = ACTIONS(113), - [anon_sym_LT_AT] = ACTIONS(113), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), [anon_sym_AT_GT] = ACTIONS(115), - [anon_sym_LT_AT_AT] = ACTIONS(113), + [anon_sym_LT_AT_AT] = ACTIONS(1173), [anon_sym_AT_AT_GT] = ACTIONS(115), - [anon_sym_COLON_GT] = ACTIONS(115), - [anon_sym_COLON_QMARK_GT] = ACTIONS(115), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_fun] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_match_BANG] = ACTIONS(115), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LT_DASH] = ACTIONS(113), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(113), - [anon_sym_use_BANG] = ACTIONS(115), - [anon_sym_do_BANG] = ACTIONS(115), - [anon_sym_begin] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(115), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [anon_sym_AT_DQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(115), - [sym_bool] = ACTIONS(113), - [sym_unit] = ACTIONS(113), - [aux_sym__identifier_or_op_token1] = ACTIONS(113), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS_DOT] = ACTIONS(113), - [anon_sym_DASH_DOT] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(113), - [anon_sym_AMP_AMP] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(115), - [aux_sym_prefix_op_token1] = ACTIONS(115), - [aux_sym_infix_op_token1] = ACTIONS(113), - [anon_sym_PIPE_PIPE] = ACTIONS(113), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), [anon_sym_BANG_EQ] = ACTIONS(115), [anon_sym_COLON_EQ] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(131), [anon_sym_QMARK_LT_DASH] = ACTIONS(115), - [sym_int] = ACTIONS(113), - [sym_xint] = ACTIONS(115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(115), - [sym__newline] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [215] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [196] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_preproc_line] = STATE(196), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), + }, + [197] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_preproc_line] = STATE(197), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(117), + }, + [198] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_preproc_line] = STATE(198), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1285), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), + }, + [199] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_preproc_line] = STATE(199), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [200] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -58217,381 +53033,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_preproc_line] = STATE(215), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_preproc_line] = STATE(200), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1315), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1289), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1317), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1291), }, - [216] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_preproc_line] = STATE(216), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [201] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_preproc_line] = STATE(201), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1319), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(283), + [sym__then] = ACTIONS(283), }, - [217] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [202] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_preproc_line] = STATE(217), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_preproc_line] = STATE(202), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -58602,17 +53418,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -58622,187 +53438,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1321), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1293), }, - [218] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_preproc_line] = STATE(218), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [203] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_preproc_line] = STATE(203), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1323), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(283), }, - [219] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [204] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -58833,381 +53649,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_preproc_line] = STATE(219), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_preproc_line] = STATE(204), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1325), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1327), - }, - [220] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_preproc_line] = STATE(220), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1329), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [221] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [205] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_preproc_line] = STATE(221), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_preproc_line] = STATE(205), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -59218,17 +53880,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -59238,2189 +53900,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1331), - }, - [222] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(222), - [sym_block_comment] = STATE(222), - [sym_preproc_line] = STATE(222), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1333), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1297), }, - [223] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_preproc_line] = STATE(223), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_do] = ACTIONS(129), - [anon_sym_let] = ACTIONS(129), + [206] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_preproc_line] = STATE(206), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(129), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_COLON_QMARK] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_LBRACK_PIPE] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACE_PIPE] = ACTIONS(127), - [anon_sym_new] = ACTIONS(129), - [anon_sym_return_BANG] = ACTIONS(127), - [anon_sym_yield] = ACTIONS(129), - [anon_sym_yield_BANG] = ACTIONS(127), - [anon_sym_lazy] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_upcast] = ACTIONS(129), - [anon_sym_downcast] = ACTIONS(129), - [anon_sym_LT_AT] = ACTIONS(129), - [anon_sym_AT_GT] = ACTIONS(127), - [anon_sym_LT_AT_AT] = ACTIONS(129), - [anon_sym_AT_AT_GT] = ACTIONS(127), - [anon_sym_COLON_GT] = ACTIONS(127), - [anon_sym_COLON_QMARK_GT] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_while] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_fun] = ACTIONS(129), - [anon_sym_try] = ACTIONS(129), - [anon_sym_match] = ACTIONS(129), - [anon_sym_match_BANG] = ACTIONS(127), - [anon_sym_function] = ACTIONS(129), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(129), - [anon_sym_use_BANG] = ACTIONS(127), - [anon_sym_do_BANG] = ACTIONS(127), - [anon_sym_begin] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(127), - [anon_sym_SQUOTE] = ACTIONS(127), - [anon_sym_or] = ACTIONS(129), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(129), - [anon_sym_DQUOTE] = ACTIONS(129), - [anon_sym_AT_DQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(127), - [sym_bool] = ACTIONS(129), - [sym_unit] = ACTIONS(129), - [aux_sym__identifier_or_op_token1] = ACTIONS(129), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS_DOT] = ACTIONS(129), - [anon_sym_DASH_DOT] = ACTIONS(129), - [anon_sym_PERCENT] = ACTIONS(129), - [anon_sym_AMP_AMP] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(127), - [aux_sym_prefix_op_token1] = ACTIONS(127), - [aux_sym_infix_op_token1] = ACTIONS(129), - [anon_sym_PIPE_PIPE] = ACTIONS(129), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_COLON_EQ] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(129), - [anon_sym_QMARK_LT_DASH] = ACTIONS(127), - [sym_int] = ACTIONS(129), - [sym_xint] = ACTIONS(127), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(127), - [sym__newline] = ACTIONS(127), - [sym__then] = ACTIONS(127), - }, - [224] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_preproc_line] = STATE(224), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1335), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), - }, - [225] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_preproc_line] = STATE(225), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), - }, - [226] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_preproc_line] = STATE(226), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(181), - }, - [227] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(227), - [sym_block_comment] = STATE(227), - [sym_preproc_line] = STATE(227), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(211), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), - }, - [228] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_preproc_line] = STATE(228), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1339), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [229] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_preproc_line] = STATE(229), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [207] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_preproc_line] = STATE(207), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1301), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1341), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [230] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_preproc_line] = STATE(230), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [208] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_preproc_line] = STATE(208), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(1343), - }, - [231] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_preproc_line] = STATE(231), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1345), - }, - [232] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_preproc_line] = STATE(232), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(137), - }, - [233] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_preproc_line] = STATE(233), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [234] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_preproc_line] = STATE(234), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), + [209] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_preproc_line] = STATE(209), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), [anon_sym_use] = ACTIONS(1201), [anon_sym_use_BANG] = ACTIONS(1203), [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(137), - [sym__then] = ACTIONS(137), - }, - [235] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_preproc_line] = STATE(235), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(181), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(1305), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [236] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [210] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -61451,130 +54573,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_preproc_line] = STATE(236), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_preproc_line] = STATE(210), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1351), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1353), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1309), }, - [237] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [211] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -61605,535 +54727,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_preproc_line] = STATE(237), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_preproc_line] = STATE(211), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1313), }, - [238] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_preproc_line] = STATE(238), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [212] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_preproc_line] = STATE(212), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1357), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [239] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_preproc_line] = STATE(239), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [213] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_preproc_line] = STATE(213), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1317), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1359), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [240] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [214] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_preproc_line] = STATE(214), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + }, + [215] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_preproc_line] = STATE(240), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_preproc_line] = STATE(215), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -62144,17 +55420,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -62164,130 +55440,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1361), + [sym__newline] = ACTIONS(827), + [sym__dedent] = ACTIONS(827), }, - [241] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [216] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_preproc_line] = STATE(216), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [217] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_preproc_line] = STATE(217), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(291), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_return] = ACTIONS(291), + [anon_sym_do] = ACTIONS(291), + [anon_sym_let] = ACTIONS(291), + [anon_sym_let_BANG] = ACTIONS(293), + [anon_sym_null] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_COLON_QMARK] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_COLON_COLON] = ACTIONS(293), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_LBRACK_PIPE] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE_PIPE] = ACTIONS(293), + [anon_sym_new] = ACTIONS(291), + [anon_sym_return_BANG] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_yield_BANG] = ACTIONS(293), + [anon_sym_lazy] = ACTIONS(291), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_upcast] = ACTIONS(291), + [anon_sym_downcast] = ACTIONS(291), + [anon_sym_LT_AT] = ACTIONS(291), + [anon_sym_AT_GT] = ACTIONS(293), + [anon_sym_LT_AT_AT] = ACTIONS(291), + [anon_sym_AT_AT_GT] = ACTIONS(293), + [anon_sym_COLON_GT] = ACTIONS(293), + [anon_sym_COLON_QMARK_GT] = ACTIONS(293), + [anon_sym_for] = ACTIONS(291), + [anon_sym_while] = ACTIONS(291), + [anon_sym_if] = ACTIONS(291), + [anon_sym_fun] = ACTIONS(291), + [anon_sym_DASH_GT] = ACTIONS(291), + [anon_sym_try] = ACTIONS(291), + [anon_sym_match] = ACTIONS(291), + [anon_sym_match_BANG] = ACTIONS(293), + [anon_sym_function] = ACTIONS(291), + [anon_sym_LT_DASH] = ACTIONS(291), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(291), + [anon_sym_use_BANG] = ACTIONS(293), + [anon_sym_do_BANG] = ACTIONS(293), + [anon_sym_begin] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_SQUOTE] = ACTIONS(293), + [anon_sym_or] = ACTIONS(291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_AT_DQUOTE] = ACTIONS(293), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(293), + [sym_bool] = ACTIONS(291), + [sym_unit] = ACTIONS(291), + [aux_sym__identifier_or_op_token1] = ACTIONS(291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS_DOT] = ACTIONS(291), + [anon_sym_DASH_DOT] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(293), + [aux_sym_prefix_op_token1] = ACTIONS(293), + [aux_sym_infix_op_token1] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_COLON_EQ] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK_LT_DASH] = ACTIONS(293), + [sym_int] = ACTIONS(291), + [sym_xint] = ACTIONS(293), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(293), + [sym__newline] = ACTIONS(293), + }, + [218] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_preproc_line] = STATE(218), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [219] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_preproc_line] = STATE(219), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), + }, + [220] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_preproc_line] = STATE(220), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1325), + }, + [221] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_preproc_line] = STATE(241), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_preproc_line] = STATE(221), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -62298,17 +56344,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -62318,130 +56364,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1363), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1327), }, - [242] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [222] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_preproc_line] = STATE(222), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), + }, + [223] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_preproc_line] = STATE(223), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1001), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [224] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_preproc_line] = STATE(242), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_preproc_line] = STATE(224), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -62452,17 +56806,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -62472,130 +56826,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1365), + [sym__newline] = ACTIONS(827), + [sym__dedent] = ACTIONS(827), }, - [243] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [225] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_preproc_line] = STATE(225), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [226] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_preproc_line] = STATE(226), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1333), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1335), + }, + [227] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_preproc_line] = STATE(243), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_preproc_line] = STATE(227), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -62606,17 +57268,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -62626,1362 +57288,2132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(907), - [sym__dedent] = ACTIONS(907), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1337), }, - [244] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_preproc_line] = STATE(244), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(285), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(283), + [228] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_preproc_line] = STATE(228), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_let] = ACTIONS(229), + [anon_sym_let_BANG] = ACTIONS(231), + [anon_sym_null] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(229), + [anon_sym_COLON_QMARK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_COLON_COLON] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(231), + [anon_sym_new] = ACTIONS(229), + [anon_sym_return_BANG] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(229), + [anon_sym_yield_BANG] = ACTIONS(231), + [anon_sym_lazy] = ACTIONS(229), + [anon_sym_assert] = ACTIONS(229), + [anon_sym_upcast] = ACTIONS(229), + [anon_sym_downcast] = ACTIONS(229), + [anon_sym_LT_AT] = ACTIONS(229), + [anon_sym_AT_GT] = ACTIONS(231), + [anon_sym_LT_AT_AT] = ACTIONS(229), + [anon_sym_AT_AT_GT] = ACTIONS(231), + [anon_sym_COLON_GT] = ACTIONS(231), + [anon_sym_COLON_QMARK_GT] = ACTIONS(231), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_DASH_GT] = ACTIONS(229), + [anon_sym_try] = ACTIONS(229), + [anon_sym_match] = ACTIONS(229), + [anon_sym_match_BANG] = ACTIONS(231), + [anon_sym_function] = ACTIONS(229), + [anon_sym_LT_DASH] = ACTIONS(229), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(229), + [anon_sym_use_BANG] = ACTIONS(231), + [anon_sym_do_BANG] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(231), + [anon_sym_or] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_AT_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(231), + [sym_bool] = ACTIONS(229), + [sym_unit] = ACTIONS(229), + [aux_sym__identifier_or_op_token1] = ACTIONS(229), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_PLUS_DOT] = ACTIONS(229), + [anon_sym_DASH_DOT] = ACTIONS(229), + [anon_sym_PERCENT] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(231), + [aux_sym_prefix_op_token1] = ACTIONS(231), + [aux_sym_infix_op_token1] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_COLON_EQ] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(229), + [anon_sym_QMARK_LT_DASH] = ACTIONS(231), + [sym_int] = ACTIONS(229), + [sym_xint] = ACTIONS(231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(231), + [sym__newline] = ACTIONS(231), }, - [245] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(245), - [sym_block_comment] = STATE(245), - [sym_preproc_line] = STATE(245), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [229] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_preproc_line] = STATE(229), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1339), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1367), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [246] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(246), - [sym_block_comment] = STATE(246), - [sym_preproc_line] = STATE(246), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [230] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_preproc_line] = STATE(230), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [247] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_preproc_line] = STATE(247), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [231] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_preproc_line] = STATE(231), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1371), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [248] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_preproc_line] = STATE(248), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [232] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_preproc_line] = STATE(232), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_BANG] = ACTIONS(281), + [anon_sym_null] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON_QMARK] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_COLON_COLON] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_LBRACK_PIPE] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE_PIPE] = ACTIONS(281), + [anon_sym_new] = ACTIONS(279), + [anon_sym_return_BANG] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_yield_BANG] = ACTIONS(281), + [anon_sym_lazy] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(279), + [anon_sym_upcast] = ACTIONS(279), + [anon_sym_downcast] = ACTIONS(279), + [anon_sym_LT_AT] = ACTIONS(279), + [anon_sym_AT_GT] = ACTIONS(281), + [anon_sym_LT_AT_AT] = ACTIONS(279), + [anon_sym_AT_AT_GT] = ACTIONS(281), + [anon_sym_COLON_GT] = ACTIONS(281), + [anon_sym_COLON_QMARK_GT] = ACTIONS(281), + [anon_sym_for] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_fun] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_match_BANG] = ACTIONS(281), + [anon_sym_function] = ACTIONS(279), + [anon_sym_LT_DASH] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(281), + [anon_sym_begin] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(281), + [anon_sym_or] = ACTIONS(279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(279), + [anon_sym_AT_DQUOTE] = ACTIONS(281), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(281), + [sym_bool] = ACTIONS(279), + [sym_unit] = ACTIONS(279), + [aux_sym__identifier_or_op_token1] = ACTIONS(279), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS_DOT] = ACTIONS(279), + [anon_sym_DASH_DOT] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(281), + [aux_sym_prefix_op_token1] = ACTIONS(281), + [aux_sym_infix_op_token1] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_COLON_EQ] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_QMARK_LT_DASH] = ACTIONS(281), + [sym_int] = ACTIONS(279), + [sym_xint] = ACTIONS(281), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(281), + [sym__newline] = ACTIONS(281), + }, + [233] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_preproc_line] = STATE(233), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(223), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(221), }, - [249] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_preproc_line] = STATE(249), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [234] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_preproc_line] = STATE(234), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(1373), - [sym__dedent] = ACTIONS(1373), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), }, - [250] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_preproc_line] = STATE(250), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(331), - [anon_sym_COLON_QMARK_GT] = ACTIONS(331), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), - [anon_sym_DOT_LBRACK] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_LPAREN2] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(379), - [aux_sym__identifier_or_op_token1] = ACTIONS(381), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [235] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_preproc_line] = STATE(235), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1375), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [251] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_preproc_line] = STATE(251), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1377), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [236] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_preproc_line] = STATE(236), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [252] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [237] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_preproc_line] = STATE(237), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1347), + }, + [238] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_preproc_line] = STATE(238), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [239] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_preproc_line] = STATE(239), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [240] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_preproc_line] = STATE(240), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [241] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_preproc_line] = STATE(252), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_preproc_line] = STATE(241), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -63992,17 +59424,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -64012,33 +59444,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1379), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1355), }, - [253] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [242] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(214), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_infix_op] = STATE(625), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_preproc_line] = STATE(242), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_sequential_expression_repeat1] = STATE(1683), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1171), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1173), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1175), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(1193), + [anon_sym_DOT_LBRACK] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1225), + [aux_sym__identifier_or_op_token1] = ACTIONS(1227), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + }, + [243] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -64069,592 +59655,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_preproc_line] = STATE(253), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_preproc_line] = STATE(243), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT_RBRACK] = ACTIONS(1381), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(1359), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1381), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1361), }, - [254] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_preproc_line] = STATE(254), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), - }, - [255] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_preproc_line] = STATE(255), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [256] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_preproc_line] = STATE(256), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [244] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_preproc_line] = STATE(244), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(233), }, - [257] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [245] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -64685,535 +59963,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_preproc_line] = STATE(257), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_preproc_line] = STATE(245), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1389), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1363), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1391), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [258] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_preproc_line] = STATE(258), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [246] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_preproc_line] = STATE(246), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1365), }, - [259] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_preproc_line] = STATE(259), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [247] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(232), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_infix_op] = STATE(523), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_preproc_line] = STATE(247), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_sequential_expression_repeat1] = STATE(1796), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(881), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(883), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1031), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(273), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_LT_DASH] = ACTIONS(1035), + [anon_sym_DOT_LBRACK] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(933), + [aux_sym__identifier_or_op_token1] = ACTIONS(935), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(941), + [sym__newline] = ACTIONS(1043), }, - [260] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [248] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_preproc_line] = STATE(260), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_preproc_line] = STATE(248), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -65224,17 +60502,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -65244,33 +60522,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(907), - [sym__dedent] = ACTIONS(907), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1367), }, - [261] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [249] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -65301,535 +60579,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(261), - [sym_block_comment] = STATE(261), - [sym_preproc_line] = STATE(261), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_preproc_line] = STATE(249), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [262] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_preproc_line] = STATE(262), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(183), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [263] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_preproc_line] = STATE(263), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [250] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_preproc_line] = STATE(250), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1399), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1371), }, - [264] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [251] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_preproc_line] = STATE(264), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_preproc_line] = STATE(251), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -65840,17 +60964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -65860,284 +60984,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1401), - }, - [265] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_infix_op] = STATE(616), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_preproc_line] = STATE(265), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_sequential_expression_repeat1] = STATE(1808), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1177), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1179), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1181), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_LT_DASH] = ACTIONS(1199), - [anon_sym_DOT_LBRACK] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1223), - [aux_sym__identifier_or_op_token1] = ACTIONS(1225), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - [sym__newline] = ACTIONS(1237), - [sym__then] = ACTIONS(189), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1373), }, - [266] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [252] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_preproc_line] = STATE(266), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_preproc_line] = STATE(252), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -66148,17 +61118,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -66168,33 +61138,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1403), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1375), }, - [267] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [253] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -66225,381 +61195,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_preproc_line] = STATE(267), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_preproc_line] = STATE(253), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(1405), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT_RBRACK] = ACTIONS(1377), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1377), }, - [268] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_preproc_line] = STATE(268), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [254] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_preproc_line] = STATE(254), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1379), }, - [269] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [255] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_preproc_line] = STATE(269), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_preproc_line] = STATE(255), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -66610,17 +61580,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -66630,803 +61600,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1405), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1381), }, - [270] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_preproc_line] = STATE(270), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(139), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(137), - }, - [271] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_preproc_line] = STATE(271), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), - }, - [272] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_preproc_line] = STATE(272), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1409), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), - }, - [273] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_infix_op] = STATE(699), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_preproc_line] = STATE(273), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_sequential_expression_repeat1] = STATE(1779), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(1125), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(677), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(679), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1131), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_LT_DASH] = ACTIONS(1137), - [anon_sym_DOT_LBRACK] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_LPAREN2] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(729), - [aux_sym__identifier_or_op_token1] = ACTIONS(731), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - [sym__newline] = ACTIONS(1143), - }, - [274] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_preproc_line] = STATE(274), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [256] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_preproc_line] = STATE(256), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1383), }, - [275] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [257] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -67457,227 +61811,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_preproc_line] = STATE(275), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_preproc_line] = STATE(257), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(1415), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1385), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1417), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [276] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [258] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_infix_op] = STATE(590), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_preproc_line] = STATE(276), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_sequential_expression_repeat1] = STATE(1527), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_preproc_line] = STATE(258), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_EQ] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_COLON] = ACTIONS(303), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), - [anon_sym_QMARK] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(131), [anon_sym_COLON_QMARK] = ACTIONS(303), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), [anon_sym_LBRACE] = ACTIONS(319), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), [anon_sym_LT_AT] = ACTIONS(327), - [anon_sym_AT_GT] = ACTIONS(141), + [anon_sym_AT_GT] = ACTIONS(115), [anon_sym_LT_AT_AT] = ACTIONS(329), - [anon_sym_AT_AT_GT] = ACTIONS(141), + [anon_sym_AT_AT_GT] = ACTIONS(115), [anon_sym_COLON_GT] = ACTIONS(331), [anon_sym_COLON_QMARK_GT] = ACTIONS(331), [anon_sym_for] = ACTIONS(333), @@ -67688,17 +62042,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_LT_DASH] = ACTIONS(647), + [anon_sym_LT_DASH] = ACTIONS(951), [anon_sym_DOT_LBRACK] = ACTIONS(351), [anon_sym_DOT] = ACTIONS(353), [anon_sym_LT] = ACTIONS(355), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_LPAREN2] = ACTIONS(365), [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_or] = ACTIONS(153), + [anon_sym_or] = ACTIONS(131), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), @@ -67708,3097 +62062,3421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(379), [aux_sym__identifier_or_op_token1] = ACTIONS(381), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(633), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(885), - [sym__dedent] = ACTIONS(1419), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1387), }, - [277] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_preproc_line] = STATE(277), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(283), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(283), - }, - [278] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_preproc_line] = STATE(278), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_end] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [259] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_preproc_line] = STATE(259), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1389), }, - [279] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_preproc_line] = STATE(279), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [260] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_preproc_line] = STATE(260), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1391), }, - [280] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_preproc_line] = STATE(280), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_sequential_expression_repeat1] = STATE(1662), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1051), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(1053), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(1055), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1055), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_LT_DASH] = ACTIONS(1073), - [anon_sym_DOT_LBRACK] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1077), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_LPAREN2] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1105), - [aux_sym__identifier_or_op_token1] = ACTIONS(1107), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [261] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_preproc_line] = STATE(261), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - [sym__newline] = ACTIONS(1115), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1393), }, - [281] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_preproc_line] = STATE(281), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [262] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_preproc_line] = STATE(262), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1395), }, - [282] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_preproc_line] = STATE(282), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [283] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_preproc_line] = STATE(283), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [284] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_preproc_line] = STATE(284), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1431), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [263] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_preproc_line] = STATE(263), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1397), }, - [285] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_preproc_line] = STATE(285), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [264] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_preproc_line] = STATE(264), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1399), }, - [286] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_preproc_line] = STATE(286), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [265] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_preproc_line] = STATE(265), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1401), }, - [287] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_preproc_line] = STATE(287), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [266] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_preproc_line] = STATE(266), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1403), }, - [288] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_preproc_line] = STATE(288), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [267] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_preproc_line] = STATE(267), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1405), }, - [289] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_preproc_line] = STATE(289), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1441), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [268] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_preproc_line] = STATE(268), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1407), }, - [290] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_preproc_line] = STATE(290), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1443), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), - }, - [291] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_preproc_line] = STATE(291), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [269] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_preproc_line] = STATE(269), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1409), }, - [292] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_preproc_line] = STATE(292), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1443), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [270] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_preproc_line] = STATE(270), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1411), }, - [293] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_preproc_line] = STATE(293), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1441), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [271] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_preproc_line] = STATE(271), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1413), }, - [294] = { - [sym_namespace] = STATE(4449), - [sym_named_module] = STATE(5215), - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2433), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_preproc_line] = STATE(294), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat1] = STATE(2240), - [aux_sym_file_repeat2] = STATE(4071), - [aux_sym_file_repeat3] = STATE(341), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_module] = ACTIONS(17), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [272] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_preproc_line] = STATE(272), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1339), }, - [295] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_preproc_line] = STATE(295), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [273] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_preproc_line] = STATE(273), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1415), }, - [296] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_preproc_line] = STATE(296), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [274] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_preproc_line] = STATE(274), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(1417), + [sym__dedent] = ACTIONS(1417), }, - [297] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [275] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_preproc_line] = STATE(275), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1419), + }, + [276] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_preproc_line] = STATE(276), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1421), + }, + [277] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_preproc_line] = STATE(277), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1423), + }, + [278] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_preproc_line] = STATE(278), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1425), + }, + [279] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(121), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_infix_op] = STATE(613), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_preproc_line] = STATE(279), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_sequential_expression_repeat1] = STATE(1589), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(327), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(329), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(331), + [anon_sym_COLON_QMARK_GT] = ACTIONS(331), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(951), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_LPAREN2] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(379), + [aux_sym__identifier_or_op_token1] = ACTIONS(381), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(959), + [sym__dedent] = ACTIONS(1427), + }, + [280] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(192), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_infix_op] = STATE(464), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_preproc_line] = STATE(280), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_sequential_expression_repeat1] = STATE(1774), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(1071), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(1073), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(1075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_LT_DASH] = ACTIONS(1093), + [anon_sym_DOT_LBRACK] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_LPAREN2] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(1123), + [aux_sym__identifier_or_op_token1] = ACTIONS(1125), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + [sym__newline] = ACTIONS(1133), + [sym__then] = ACTIONS(1429), + }, + [281] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -70829,129 +65507,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_preproc_line] = STATE(297), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_preproc_line] = STATE(281), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1431), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [298] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [282] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -70982,129 +65660,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_preproc_line] = STATE(298), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_preproc_line] = STATE(282), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1455), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [299] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [283] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71135,129 +65813,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_preproc_line] = STATE(299), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_preproc_line] = STATE(283), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1457), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [300] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [284] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71288,129 +65966,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_preproc_line] = STATE(300), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_preproc_line] = STATE(284), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1455), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1437), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [301] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [285] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71441,129 +66119,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_preproc_line] = STATE(301), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_preproc_line] = STATE(285), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1457), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [302] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [286] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71594,129 +66272,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_preproc_line] = STATE(302), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_preproc_line] = STATE(286), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1431), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [303] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [287] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71747,129 +66425,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_preproc_line] = STATE(303), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_preproc_line] = STATE(287), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [304] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [288] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -71900,129 +66578,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_preproc_line] = STATE(304), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_preproc_line] = STATE(288), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [305] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [289] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72053,129 +66731,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_preproc_line] = STATE(305), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_preproc_line] = STATE(289), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1465), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1445), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [306] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [290] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72206,129 +66884,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_preproc_line] = STATE(306), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_preproc_line] = STATE(290), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1445), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [307] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [291] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72359,129 +67037,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_preproc_line] = STATE(307), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_preproc_line] = STATE(291), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1465), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [308] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [292] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72512,129 +67190,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_preproc_line] = STATE(308), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_preproc_line] = STATE(292), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [309] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [293] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72665,129 +67343,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_preproc_line] = STATE(309), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_preproc_line] = STATE(293), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1471), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [310] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [294] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72818,129 +67496,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_preproc_line] = STATE(310), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_preproc_line] = STATE(294), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1471), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1453), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [311] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [295] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -72971,129 +67649,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_preproc_line] = STATE(311), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_preproc_line] = STATE(295), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1431), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1455), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [312] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [296] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73124,129 +67802,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_preproc_line] = STATE(312), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_preproc_line] = STATE(296), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1473), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1457), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [313] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [297] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73277,129 +67955,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_preproc_line] = STATE(313), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_preproc_line] = STATE(297), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1457), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [314] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [298] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73430,129 +68108,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_preproc_line] = STATE(314), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_preproc_line] = STATE(298), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1473), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1455), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [315] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [299] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73583,129 +68261,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_preproc_line] = STATE(315), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_preproc_line] = STATE(299), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [316] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [300] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73736,129 +68414,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_preproc_line] = STATE(316), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_preproc_line] = STATE(300), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1437), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [317] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [301] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -73889,129 +68567,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_preproc_line] = STATE(317), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_preproc_line] = STATE(301), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1453), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [318] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [302] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -74042,129 +68720,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_preproc_line] = STATE(318), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_preproc_line] = STATE(302), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1481), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [319] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [303] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -74195,129 +68873,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_preproc_line] = STATE(319), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_preproc_line] = STATE(303), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1483), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [320] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [304] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -74348,129 +69026,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_preproc_line] = STATE(320), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_preproc_line] = STATE(304), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(1483), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [321] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [305] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -74501,129 +69179,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_preproc_line] = STATE(321), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_preproc_line] = STATE(305), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(141), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1467), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [322] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(19), + [306] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -74654,1696 +69332,2509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(540), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_preproc_line] = STATE(322), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_preproc_line] = STATE(306), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_sequential_expression_repeat1] = STATE(1035), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_QMARK] = ACTIONS(153), - [anon_sym_COLON_QMARK] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_COLON_COLON] = ACTIONS(141), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(217), - [anon_sym_AT_GT] = ACTIONS(1481), - [anon_sym_LT_AT_AT] = ACTIONS(219), - [anon_sym_AT_AT_GT] = ACTIONS(141), - [anon_sym_COLON_GT] = ACTIONS(221), - [anon_sym_COLON_QMARK_GT] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(239), - [anon_sym_DOT_LBRACK] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(121), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_or] = ACTIONS(153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(263), - [aux_sym__identifier_or_op_token1] = ACTIONS(265), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_DOT] = ACTIONS(157), - [anon_sym_DASH_DOT] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP_AMP] = ACTIONS(157), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [aux_sym_infix_op_token1] = ACTIONS(153), - [anon_sym_PIPE_PIPE] = ACTIONS(153), - [anon_sym_BANG_EQ] = ACTIONS(141), - [anon_sym_COLON_EQ] = ACTIONS(141), - [anon_sym_DOLLAR] = ACTIONS(153), - [anon_sym_QMARK_LT_DASH] = ACTIONS(141), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(273), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [323] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_preproc_line] = STATE(323), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(324), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [307] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_preproc_line] = STATE(307), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [324] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_preproc_line] = STATE(324), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(324), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [anon_sym_namespace] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_POUNDnowarn] = ACTIONS(1503), - [anon_sym_POUNDr] = ACTIONS(1506), - [anon_sym_POUNDload] = ACTIONS(1506), - [anon_sym_open] = ACTIONS(1509), - [anon_sym_LBRACK_LT] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_let_BANG] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACK_PIPE] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_return_BANG] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_yield_BANG] = ACTIONS(1554), - [anon_sym_lazy] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_upcast] = ACTIONS(1515), - [anon_sym_downcast] = ACTIONS(1515), - [anon_sym_LT_AT] = ACTIONS(1557), - [anon_sym_LT_AT_AT] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_fun] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_match_BANG] = ACTIONS(1581), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_use_BANG] = ACTIONS(1590), - [anon_sym_do_BANG] = ACTIONS(1593), - [anon_sym_begin] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_AT_DQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1614), - [sym_bool] = ACTIONS(1617), - [sym_unit] = ACTIONS(1620), - [aux_sym__identifier_or_op_token1] = ACTIONS(1623), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PLUS_DOT] = ACTIONS(1629), - [anon_sym_DASH_DOT] = ACTIONS(1629), - [anon_sym_PERCENT] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1632), - [aux_sym_prefix_op_token1] = ACTIONS(1629), - [sym_int] = ACTIONS(1635), - [sym_xint] = ACTIONS(1638), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [308] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_preproc_line] = STATE(308), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1467), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1641), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [325] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_preproc_line] = STATE(325), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(328), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1646), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [309] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_preproc_line] = STATE(309), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [326] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_preproc_line] = STATE(326), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(323), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1648), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1650), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [310] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_preproc_line] = STATE(310), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1475), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [327] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_preproc_line] = STATE(327), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(329), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1652), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [311] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_preproc_line] = STATE(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [328] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_preproc_line] = STATE(328), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(324), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1658), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [312] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_preproc_line] = STATE(312), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1479), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [329] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(350), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_preproc_line] = STATE(329), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(324), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(1662), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(145), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [313] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_preproc_line] = STATE(313), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1479), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [330] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_preproc_line] = STATE(330), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(343), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), - [anon_sym_POUNDnowarn] = ACTIONS(19), - [anon_sym_POUNDr] = ACTIONS(21), - [anon_sym_POUNDload] = ACTIONS(21), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [314] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_preproc_line] = STATE(314), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1475), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - }, - [331] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_preproc_line] = STATE(331), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_POUNDnowarn] = ACTIONS(1672), - [anon_sym_POUNDr] = ACTIONS(1675), - [anon_sym_POUNDload] = ACTIONS(1675), - [anon_sym_open] = ACTIONS(1678), - [anon_sym_LBRACK_LT] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_let_BANG] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_LBRACK_PIPE] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACE_PIPE] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_return_BANG] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_yield_BANG] = ACTIONS(1717), - [anon_sym_lazy] = ACTIONS(1681), - [anon_sym_assert] = ACTIONS(1681), - [anon_sym_upcast] = ACTIONS(1681), - [anon_sym_downcast] = ACTIONS(1681), - [anon_sym_LT_AT] = ACTIONS(1720), - [anon_sym_LT_AT_AT] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_match_BANG] = ACTIONS(1744), - [anon_sym_function] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1750), - [anon_sym_use_BANG] = ACTIONS(1753), - [anon_sym_do_BANG] = ACTIONS(1756), - [anon_sym_begin] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_AT_DQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1774), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1777), - [sym_bool] = ACTIONS(1780), - [sym_unit] = ACTIONS(1783), - [aux_sym__identifier_or_op_token1] = ACTIONS(1786), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PLUS_DOT] = ACTIONS(1629), - [anon_sym_DASH_DOT] = ACTIONS(1629), - [anon_sym_PERCENT] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1632), - [aux_sym_prefix_op_token1] = ACTIONS(1629), - [sym_int] = ACTIONS(1792), - [sym_xint] = ACTIONS(1795), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1798), - [sym__dedent] = ACTIONS(1493), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [332] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_preproc_line] = STATE(332), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [315] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_preproc_line] = STATE(315), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(1481), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1827), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), }, - [333] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_preproc_line] = STATE(333), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(340), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1829), + [316] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_preproc_line] = STATE(316), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [317] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_preproc_line] = STATE(317), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [318] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_preproc_line] = STATE(318), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [319] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_preproc_line] = STATE(319), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [320] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_preproc_line] = STATE(320), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(1481), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [321] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(9), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_infix_op] = STATE(577), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_preproc_line] = STATE(321), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_sequential_expression_repeat1] = STATE(1053), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_COLON_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_COLON_COLON] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(153), + [anon_sym_AT_GT] = ACTIONS(115), + [anon_sym_LT_AT_AT] = ACTIONS(155), + [anon_sym_AT_AT_GT] = ACTIONS(115), + [anon_sym_COLON_GT] = ACTIONS(157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_LT_DASH] = ACTIONS(175), + [anon_sym_DOT_LBRACK] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [aux_sym__identifier_or_op_token1] = ACTIONS(207), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(137), + [anon_sym_AMP_AMP] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_infix_op_token1] = ACTIONS(131), + [anon_sym_PIPE_PIPE] = ACTIONS(131), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_COLON_EQ] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(115), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(219), + }, + [322] = { + [sym_namespace] = STATE(4616), + [sym_named_module] = STATE(5316), + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2486), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_preproc_line] = STATE(322), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat1] = STATE(2290), + [aux_sym_file_repeat2] = STATE(4222), + [aux_sym_file_repeat3] = STATE(333), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1491), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_module] = ACTIONS(17), [anon_sym_POUNDnowarn] = ACTIONS(19), [anon_sym_POUNDr] = ACTIONS(21), [anon_sym_POUNDload] = ACTIONS(21), @@ -76409,433 +71900,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [334] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_preproc_line] = STATE(334), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [323] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_preproc_line] = STATE(323), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(327), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1831), - }, - [335] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_preproc_line] = STATE(335), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1833), - }, - [336] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_preproc_line] = STATE(336), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -76844,252 +72041,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1835), + [anon_sym_POUNDif] = ACTIONS(111), }, - [337] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_preproc_line] = STATE(337), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [324] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_preproc_line] = STATE(324), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(324), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_POUNDnowarn] = ACTIONS(1509), + [anon_sym_POUNDr] = ACTIONS(1512), + [anon_sym_POUNDload] = ACTIONS(1512), + [anon_sym_open] = ACTIONS(1515), + [anon_sym_LBRACK_LT] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_BANG] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LBRACK_PIPE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_LBRACE_PIPE] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_return_BANG] = ACTIONS(1560), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_yield_BANG] = ACTIONS(1560), + [anon_sym_lazy] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_upcast] = ACTIONS(1521), + [anon_sym_downcast] = ACTIONS(1521), + [anon_sym_LT_AT] = ACTIONS(1563), + [anon_sym_LT_AT_AT] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_fun] = ACTIONS(1578), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_match_BANG] = ACTIONS(1587), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_use_BANG] = ACTIONS(1596), + [anon_sym_do_BANG] = ACTIONS(1599), + [anon_sym_begin] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_AT_DQUOTE] = ACTIONS(1614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1620), + [sym_bool] = ACTIONS(1623), + [sym_unit] = ACTIONS(1626), + [aux_sym__identifier_or_op_token1] = ACTIONS(1629), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS_DOT] = ACTIONS(1635), + [anon_sym_DASH_DOT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1638), + [aux_sym_prefix_op_token1] = ACTIONS(1635), + [sym_int] = ACTIONS(1641), + [sym_xint] = ACTIONS(1644), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1837), + [anon_sym_POUNDif] = ACTIONS(1647), }, - [338] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_preproc_line] = STATE(338), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(340), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1447), + [325] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_preproc_line] = STATE(325), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(324), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1650), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1652), + [anon_sym_module] = ACTIONS(1497), [anon_sym_POUNDnowarn] = ACTIONS(19), [anon_sym_POUNDr] = ACTIONS(21), [anon_sym_POUNDload] = ACTIONS(21), [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), + [anon_sym_return] = ACTIONS(239), [anon_sym_type] = ACTIONS(29), [anon_sym_do] = ACTIONS(31), [anon_sym_let] = ACTIONS(33), @@ -77101,14 +72299,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -77119,8 +72317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -77141,7 +72339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -77149,137 +72347,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [339] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_preproc_line] = STATE(339), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(331), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [326] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_preproc_line] = STATE(326), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(325), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1654), + [sym_identifier] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -77288,252 +72488,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(1839), - }, - [340] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_preproc_line] = STATE(340), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(340), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_POUNDnowarn] = ACTIONS(1503), - [anon_sym_POUNDr] = ACTIONS(1506), - [anon_sym_POUNDload] = ACTIONS(1506), - [anon_sym_open] = ACTIONS(1509), - [anon_sym_LBRACK_LT] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_let_BANG] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACK_PIPE] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_return_BANG] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_yield_BANG] = ACTIONS(1847), - [anon_sym_lazy] = ACTIONS(1841), - [anon_sym_assert] = ACTIONS(1841), - [anon_sym_upcast] = ACTIONS(1841), - [anon_sym_downcast] = ACTIONS(1841), - [anon_sym_LT_AT] = ACTIONS(1557), - [anon_sym_LT_AT_AT] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_fun] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_match_BANG] = ACTIONS(1581), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1850), - [anon_sym_use_BANG] = ACTIONS(1853), - [anon_sym_do_BANG] = ACTIONS(1593), - [anon_sym_begin] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_AT_DQUOTE] = ACTIONS(1608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1614), - [sym_bool] = ACTIONS(1617), - [sym_unit] = ACTIONS(1620), - [aux_sym__identifier_or_op_token1] = ACTIONS(1623), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PLUS_DOT] = ACTIONS(1629), - [anon_sym_DASH_DOT] = ACTIONS(1629), - [anon_sym_PERCENT] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1632), - [aux_sym_prefix_op_token1] = ACTIONS(1629), - [sym_int] = ACTIONS(1856), - [sym_xint] = ACTIONS(1638), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1641), + [anon_sym_POUNDif] = ACTIONS(111), }, - [341] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_preproc_line] = STATE(341), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(340), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1859), + [327] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_preproc_line] = STATE(327), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(324), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1658), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1660), + [anon_sym_module] = ACTIONS(1497), [anon_sym_POUNDnowarn] = ACTIONS(19), [anon_sym_POUNDr] = ACTIONS(21), [anon_sym_POUNDload] = ACTIONS(21), [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), + [anon_sym_return] = ACTIONS(239), [anon_sym_type] = ACTIONS(29), [anon_sym_do] = ACTIONS(31), [anon_sym_let] = ACTIONS(33), @@ -77545,14 +72597,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -77563,8 +72615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -77585,7 +72637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -77593,95 +72645,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [342] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_preproc_line] = STATE(342), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(333), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1861), + [328] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_preproc_line] = STATE(328), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(329), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1662), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1497), [anon_sym_POUNDnowarn] = ACTIONS(19), [anon_sym_POUNDr] = ACTIONS(21), [anon_sym_POUNDload] = ACTIONS(21), [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), + [anon_sym_return] = ACTIONS(239), [anon_sym_type] = ACTIONS(29), [anon_sym_do] = ACTIONS(31), [anon_sym_let] = ACTIONS(33), @@ -77693,14 +72746,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -77711,8 +72764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -77733,7 +72786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -77741,95 +72794,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [343] = { - [sym_module_abbrev] = STATE(2436), - [sym_module_defn] = STATE(2436), - [sym_compiler_directive_decl] = STATE(2436), - [sym_fsi_directive_decl] = STATE(2436), - [sym_import_decl] = STATE(2436), - [sym_attributes] = STATE(3880), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2436), - [sym_do] = STATE(2431), - [sym_function_or_value_defn] = STATE(356), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_definition] = STATE(2436), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_preproc_line] = STATE(343), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_file_repeat3] = STATE(340), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1863), + [329] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(350), + [sym__expression] = STATE(13), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_preproc_line] = STATE(329), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(324), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1666), [sym_identifier] = ACTIONS(13), - [anon_sym_module] = ACTIONS(1491), + [anon_sym_namespace] = ACTIONS(1668), + [anon_sym_module] = ACTIONS(1497), [anon_sym_POUNDnowarn] = ACTIONS(19), [anon_sym_POUNDr] = ACTIONS(21), [anon_sym_POUNDload] = ACTIONS(21), [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), + [anon_sym_return] = ACTIONS(239), [anon_sym_type] = ACTIONS(29), [anon_sym_do] = ACTIONS(31), [anon_sym_let] = ACTIONS(33), @@ -77841,14 +72895,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -77859,8 +72913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -77881,7 +72935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -77889,104 +72943,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [344] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [330] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_preproc_line] = STATE(344), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(339), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_preproc_line] = STATE(330), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), [anon_sym_new] = ACTIONS(323), [anon_sym_return_BANG] = ACTIONS(325), @@ -77996,8 +73050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(305), [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -78017,8 +73071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -78035,105 +73089,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__dedent] = ACTIONS(1696), }, - [345] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [331] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1148), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_preproc_line] = STATE(345), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(335), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_preproc_line] = STATE(331), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), [anon_sym_new] = ACTIONS(323), [anon_sym_return_BANG] = ACTIONS(325), @@ -78143,8 +73198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(305), [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -78164,8 +73219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -78182,139 +73237,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__dedent] = ACTIONS(1698), }, - [346] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), + [332] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_preproc_line] = STATE(346), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(332), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_preproc_line] = STATE(332), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), [anon_sym_DASH_DOT] = ACTIONS(103), @@ -78322,112 +73379,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(111), }, - [347] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), + [333] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_preproc_line] = STATE(333), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + }, + [334] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_preproc_line] = STATE(347), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(336), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_preproc_line] = STATE(334), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), [anon_sym_new] = ACTIONS(323), [anon_sym_return_BANG] = ACTIONS(325), @@ -78437,8 +73642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(305), [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -78458,8 +73663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -78476,105 +73681,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__dedent] = ACTIONS(1702), }, - [348] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), + [335] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_preproc_line] = STATE(335), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(343), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1704), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + }, + [336] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_preproc_line] = STATE(336), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + }, + [337] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_preproc_line] = STATE(337), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(336), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + }, + [338] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_preproc_line] = STATE(338), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_POUNDnowarn] = ACTIONS(1509), + [anon_sym_POUNDr] = ACTIONS(1512), + [anon_sym_POUNDload] = ACTIONS(1512), + [anon_sym_open] = ACTIONS(1515), + [anon_sym_LBRACK_LT] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_BANG] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LBRACK_PIPE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_LBRACE_PIPE] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1713), + [anon_sym_return_BANG] = ACTIONS(1716), + [anon_sym_yield] = ACTIONS(1710), + [anon_sym_yield_BANG] = ACTIONS(1716), + [anon_sym_lazy] = ACTIONS(1710), + [anon_sym_assert] = ACTIONS(1710), + [anon_sym_upcast] = ACTIONS(1710), + [anon_sym_downcast] = ACTIONS(1710), + [anon_sym_LT_AT] = ACTIONS(1563), + [anon_sym_LT_AT_AT] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_fun] = ACTIONS(1578), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_match_BANG] = ACTIONS(1587), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1719), + [anon_sym_use_BANG] = ACTIONS(1722), + [anon_sym_do_BANG] = ACTIONS(1599), + [anon_sym_begin] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_AT_DQUOTE] = ACTIONS(1614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1620), + [sym_bool] = ACTIONS(1623), + [sym_unit] = ACTIONS(1626), + [aux_sym__identifier_or_op_token1] = ACTIONS(1629), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS_DOT] = ACTIONS(1635), + [anon_sym_DASH_DOT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1638), + [aux_sym_prefix_op_token1] = ACTIONS(1635), + [sym_int] = ACTIONS(1725), + [sym_xint] = ACTIONS(1644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1647), + }, + [339] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1139), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_preproc_line] = STATE(348), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(334), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_preproc_line] = STATE(339), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), [anon_sym_new] = ACTIONS(323), [anon_sym_return_BANG] = ACTIONS(325), @@ -78584,8 +74382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(305), [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -78605,8 +74403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -78623,105 +74421,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__dedent] = ACTIONS(1728), }, - [349] = { - [sym_module_abbrev] = STATE(2467), - [sym_module_defn] = STATE(2467), - [sym_compiler_directive_decl] = STATE(2467), - [sym_fsi_directive_decl] = STATE(2467), - [sym_import_decl] = STATE(2467), - [sym_attributes] = STATE(3933), - [sym_attribute_set] = STATE(3120), - [sym_value_declaration] = STATE(2467), - [sym_do] = STATE(2466), - [sym_function_or_value_defn] = STATE(355), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [340] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_definition] = STATE(2467), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_preproc_line] = STATE(349), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_file_repeat3] = STATE(337), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_preproc_line] = STATE(340), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_POUNDnowarn] = ACTIONS(1803), - [anon_sym_POUNDr] = ACTIONS(1805), - [anon_sym_POUNDload] = ACTIONS(1805), - [anon_sym_open] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(305), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_BANG] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), [anon_sym_new] = ACTIONS(323), [anon_sym_return_BANG] = ACTIONS(325), @@ -78731,8 +74530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(305), [anon_sym_upcast] = ACTIONS(305), [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -78752,8 +74551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -78770,241 +74569,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__dedent] = ACTIONS(1730), }, - [350] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(5), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_preproc_line] = STATE(350), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_POUNDnowarn] = ACTIONS(1865), - [anon_sym_POUNDr] = ACTIONS(1865), - [anon_sym_POUNDload] = ACTIONS(1865), - [anon_sym_open] = ACTIONS(1867), - [anon_sym_LBRACK_LT] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_BANG] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_LBRACK_PIPE] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LBRACE_PIPE] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_return_BANG] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_yield_BANG] = ACTIONS(1865), - [anon_sym_lazy] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_upcast] = ACTIONS(1867), - [anon_sym_downcast] = ACTIONS(1867), - [anon_sym_LT_AT] = ACTIONS(1867), - [anon_sym_LT_AT_AT] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_fun] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_match_BANG] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_use_BANG] = ACTIONS(1865), - [anon_sym_do_BANG] = ACTIONS(1865), - [anon_sym_begin] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_AT_DQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [sym_bool] = ACTIONS(1867), - [sym_unit] = ACTIONS(1865), - [aux_sym__identifier_or_op_token1] = ACTIONS(1865), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(1865), - [anon_sym_DASH_DOT] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [aux_sym_prefix_op_token1] = ACTIONS(1865), - [sym_int] = ACTIONS(1867), - [sym_xint] = ACTIONS(1865), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1865), - }, - [351] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(68), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [341] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym__list_elements] = STATE(5114), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(5114), - [sym_short_comp_expression] = STATE(5110), - [sym_slice_ranges] = STATE(5114), - [sym__slice_range_special] = STATE(4577), - [sym_slice_range] = STATE(4250), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_preproc_line] = STATE(351), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_preproc_line] = STATE(341), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1869), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -79012,12 +74688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), - [anon_sym_DOT_DOT3] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -79025,8 +74699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -79036,135 +74710,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(1875), + [sym__dedent] = ACTIONS(1732), }, - [352] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(134), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_type_arguments] = STATE(2509), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1228), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_preproc_line] = STATE(352), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym__compound_type_repeat1] = STATE(2488), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(925), + [342] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_preproc_line] = STATE(342), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(342), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1734), + [anon_sym_module] = ACTIONS(1737), + [anon_sym_POUNDnowarn] = ACTIONS(1740), + [anon_sym_POUNDr] = ACTIONS(1743), + [anon_sym_POUNDload] = ACTIONS(1743), + [anon_sym_open] = ACTIONS(1746), + [anon_sym_LBRACK_LT] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_let_BANG] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LBRACK_PIPE] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_LBRACE_PIPE] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_return_BANG] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_yield_BANG] = ACTIONS(1785), + [anon_sym_lazy] = ACTIONS(1749), + [anon_sym_assert] = ACTIONS(1749), + [anon_sym_upcast] = ACTIONS(1749), + [anon_sym_downcast] = ACTIONS(1749), + [anon_sym_LT_AT] = ACTIONS(1788), + [anon_sym_LT_AT_AT] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_fun] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_match_BANG] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_use_BANG] = ACTIONS(1821), + [anon_sym_do_BANG] = ACTIONS(1824), + [anon_sym_begin] = ACTIONS(1827), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_AT_DQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1845), + [sym_bool] = ACTIONS(1848), + [sym_unit] = ACTIONS(1851), + [aux_sym__identifier_or_op_token1] = ACTIONS(1854), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS_DOT] = ACTIONS(1635), + [anon_sym_DASH_DOT] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1638), + [aux_sym_prefix_op_token1] = ACTIONS(1635), + [sym_int] = ACTIONS(1860), + [sym_xint] = ACTIONS(1863), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1866), + [sym__dedent] = ACTIONS(1499), + }, + [343] = { + [sym_module_abbrev] = STATE(2461), + [sym_module_defn] = STATE(2461), + [sym_compiler_directive_decl] = STATE(2461), + [sym_fsi_directive_decl] = STATE(2461), + [sym_import_decl] = STATE(2461), + [sym_attributes] = STATE(3975), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2461), + [sym_do] = STATE(2488), + [sym_function_or_value_defn] = STATE(355), + [sym__expression] = STATE(23), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_definition] = STATE(2461), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_preproc_line] = STATE(343), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_file_repeat3] = STATE(338), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(13), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_POUNDnowarn] = ACTIONS(19), + [anon_sym_POUNDr] = ACTIONS(21), + [anon_sym_POUNDload] = ACTIONS(21), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -79173,270 +75007,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), + [anon_sym_POUNDif] = ACTIONS(111), }, - [353] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_type_arguments] = STATE(2514), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1265), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_preproc_line] = STATE(353), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym__compound_type_repeat1] = STATE(2481), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1899), - [anon_sym_GT_RBRACK] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_DASH_GT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [sym__newline] = ACTIONS(1901), - }, - [354] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(52), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_type_arguments] = STATE(2509), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1187), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_preproc_line] = STATE(354), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym__compound_type_repeat1] = STATE(2488), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(533), + [344] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_preproc_line] = STATE(344), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(334), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -79445,383 +75154,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), - }, - [355] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_preproc_line] = STATE(355), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_POUNDnowarn] = ACTIONS(1865), - [anon_sym_POUNDr] = ACTIONS(1865), - [anon_sym_POUNDload] = ACTIONS(1865), - [anon_sym_open] = ACTIONS(1867), - [anon_sym_LBRACK_LT] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_BANG] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_LBRACK_PIPE] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LBRACE_PIPE] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_return_BANG] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_yield_BANG] = ACTIONS(1865), - [anon_sym_lazy] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_upcast] = ACTIONS(1867), - [anon_sym_downcast] = ACTIONS(1867), - [anon_sym_LT_AT] = ACTIONS(1867), - [anon_sym_LT_AT_AT] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_fun] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_match_BANG] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_use_BANG] = ACTIONS(1865), - [anon_sym_do_BANG] = ACTIONS(1865), - [anon_sym_begin] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_AT_DQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [sym_bool] = ACTIONS(1867), - [sym_unit] = ACTIONS(1865), - [aux_sym__identifier_or_op_token1] = ACTIONS(1865), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(1865), - [anon_sym_DASH_DOT] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [aux_sym_prefix_op_token1] = ACTIONS(1865), - [sym_int] = ACTIONS(1867), - [sym_xint] = ACTIONS(1865), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1865), - [sym__dedent] = ACTIONS(1865), - }, - [356] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_preproc_line] = STATE(356), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_POUNDnowarn] = ACTIONS(1865), - [anon_sym_POUNDr] = ACTIONS(1865), - [anon_sym_POUNDload] = ACTIONS(1865), - [anon_sym_open] = ACTIONS(1867), - [anon_sym_LBRACK_LT] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_BANG] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_LBRACK_PIPE] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LBRACE_PIPE] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_return_BANG] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_yield_BANG] = ACTIONS(1865), - [anon_sym_lazy] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_upcast] = ACTIONS(1867), - [anon_sym_downcast] = ACTIONS(1867), - [anon_sym_LT_AT] = ACTIONS(1867), - [anon_sym_LT_AT_AT] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_fun] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_match_BANG] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_use_BANG] = ACTIONS(1865), - [anon_sym_do_BANG] = ACTIONS(1865), - [anon_sym_begin] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_AT_DQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [sym_bool] = ACTIONS(1867), - [sym_unit] = ACTIONS(1865), - [aux_sym__identifier_or_op_token1] = ACTIONS(1865), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(1865), - [anon_sym_DASH_DOT] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [aux_sym_prefix_op_token1] = ACTIONS(1865), - [sym_int] = ACTIONS(1867), - [sym_xint] = ACTIONS(1865), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1865), + [anon_sym_POUNDif] = ACTIONS(387), }, - [357] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4921), - [sym_object_expression] = STATE(4921), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [345] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4931), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4921), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_preproc_line] = STATE(357), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1167), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_preproc_line] = STATE(345), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(341), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -79829,8 +75279,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -79840,8 +75290,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -79851,7 +75301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -79859,103 +75309,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [358] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4890), - [sym_object_expression] = STATE(4890), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [346] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4900), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4890), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_preproc_line] = STATE(358), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1147), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_preproc_line] = STATE(346), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(340), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -79963,8 +75426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -79974,8 +75437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -79985,7 +75448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -79993,114 +75456,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [359] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(82), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [347] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(798), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_preproc_line] = STATE(359), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_preproc_line] = STATE(347), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(339), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(1941), [anon_sym_try] = ACTIONS(341), [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -80108,8 +75584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -80119,7 +75595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -80127,124 +75603,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [360] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(8), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(804), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_preproc_line] = STATE(360), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [348] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_preproc_line] = STATE(348), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(331), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -80253,132 +75742,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(387), }, - [361] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(185), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1294), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_preproc_line] = STATE(361), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [349] = { + [sym_module_abbrev] = STATE(2529), + [sym_module_defn] = STATE(2529), + [sym_compiler_directive_decl] = STATE(2529), + [sym_fsi_directive_decl] = STATE(2529), + [sym_import_decl] = STATE(2529), + [sym_attributes] = STATE(4020), + [sym_attribute_set] = STATE(3174), + [sym_value_declaration] = STATE(2529), + [sym_do] = STATE(2527), + [sym_function_or_value_defn] = STATE(353), + [sym__expression] = STATE(31), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_definition] = STATE(2529), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_preproc_line] = STATE(349), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_file_repeat3] = STATE(330), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_POUNDnowarn] = ACTIONS(1672), + [anon_sym_POUNDr] = ACTIONS(1674), + [anon_sym_POUNDload] = ACTIONS(1674), + [anon_sym_open] = ACTIONS(1676), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_let_BANG] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -80387,245 +75889,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(387), }, - [362] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(121), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1215), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_preproc_line] = STATE(362), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), + [350] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(15), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_preproc_line] = STATE(350), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_POUNDnowarn] = ACTIONS(1871), + [anon_sym_POUNDr] = ACTIONS(1871), + [anon_sym_POUNDload] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1873), + [anon_sym_LBRACK_LT] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_BANG] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LBRACK_PIPE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE_PIPE] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_return_BANG] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_yield_BANG] = ACTIONS(1871), + [anon_sym_lazy] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_upcast] = ACTIONS(1873), + [anon_sym_downcast] = ACTIONS(1873), + [anon_sym_LT_AT] = ACTIONS(1873), + [anon_sym_LT_AT_AT] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_fun] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_match_BANG] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_use_BANG] = ACTIONS(1871), + [anon_sym_do_BANG] = ACTIONS(1871), + [anon_sym_begin] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_AT_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [sym_bool] = ACTIONS(1873), + [sym_unit] = ACTIONS(1871), + [aux_sym__identifier_or_op_token1] = ACTIONS(1871), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PLUS_DOT] = ACTIONS(1871), + [anon_sym_DASH_DOT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [aux_sym_prefix_op_token1] = ACTIONS(1871), + [sym_int] = ACTIONS(1873), + [sym_xint] = ACTIONS(1871), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), + [anon_sym_POUNDif] = ACTIONS(1871), }, - [363] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4828), - [sym_object_expression] = STATE(4828), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [351] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(51), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4838), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4828), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_preproc_line] = STATE(363), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym__list_elements] = STATE(5112), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(5112), + [sym_short_comp_expression] = STATE(5058), + [sym_slice_ranges] = STATE(5112), + [sym__slice_range_special] = STATE(4463), + [sym_slice_range] = STATE(4342), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_preproc_line] = STATE(351), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1875), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -80633,10 +76138,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), + [anon_sym_DOT_DOT3] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1879), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -80644,8 +76151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -80655,132 +76162,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(1881), }, - [364] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(106), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1271), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_preproc_line] = STATE(364), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [352] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(65), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_type_arguments] = STATE(2571), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1175), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_preproc_line] = STATE(352), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym__compound_type_repeat1] = STATE(2537), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_with] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -80789,132 +76299,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(631), }, - [365] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(194), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1248), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_preproc_line] = STATE(365), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [353] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(39), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_preproc_line] = STATE(353), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_POUNDnowarn] = ACTIONS(1871), + [anon_sym_POUNDr] = ACTIONS(1871), + [anon_sym_POUNDload] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1873), + [anon_sym_LBRACK_LT] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_BANG] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LBRACK_PIPE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE_PIPE] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_return_BANG] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_yield_BANG] = ACTIONS(1871), + [anon_sym_lazy] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_upcast] = ACTIONS(1873), + [anon_sym_downcast] = ACTIONS(1873), + [anon_sym_LT_AT] = ACTIONS(1873), + [anon_sym_LT_AT_AT] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_fun] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_match_BANG] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_use_BANG] = ACTIONS(1871), + [anon_sym_do_BANG] = ACTIONS(1871), + [anon_sym_begin] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_AT_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [sym_bool] = ACTIONS(1873), + [sym_unit] = ACTIONS(1871), + [aux_sym__identifier_or_op_token1] = ACTIONS(1871), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PLUS_DOT] = ACTIONS(1871), + [anon_sym_DASH_DOT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [aux_sym_prefix_op_token1] = ACTIONS(1871), + [sym_int] = ACTIONS(1873), + [sym_xint] = ACTIONS(1871), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1871), + [sym__dedent] = ACTIONS(1871), + }, + [354] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(92), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_type_arguments] = STATE(2571), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1244), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_preproc_line] = STATE(354), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym__compound_type_repeat1] = STATE(2537), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(653), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_with] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -80923,17 +76571,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(727), }, - [366] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(10), + [355] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(21), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_preproc_line] = STATE(355), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_POUNDnowarn] = ACTIONS(1871), + [anon_sym_POUNDr] = ACTIONS(1871), + [anon_sym_POUNDload] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1873), + [anon_sym_LBRACK_LT] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_BANG] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LBRACK_PIPE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE_PIPE] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_return_BANG] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_yield_BANG] = ACTIONS(1871), + [anon_sym_lazy] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_upcast] = ACTIONS(1873), + [anon_sym_downcast] = ACTIONS(1873), + [anon_sym_LT_AT] = ACTIONS(1873), + [anon_sym_LT_AT_AT] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_fun] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_match_BANG] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_use_BANG] = ACTIONS(1871), + [anon_sym_do_BANG] = ACTIONS(1871), + [anon_sym_begin] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_AT_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [sym_bool] = ACTIONS(1873), + [sym_unit] = ACTIONS(1871), + [aux_sym__identifier_or_op_token1] = ACTIONS(1871), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PLUS_DOT] = ACTIONS(1871), + [anon_sym_DASH_DOT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [aux_sym_prefix_op_token1] = ACTIONS(1871), + [sym_int] = ACTIONS(1873), + [sym_xint] = ACTIONS(1871), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1871), + }, + [356] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(253), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -80964,91 +76748,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_type_arguments] = STATE(2552), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(797), + [sym_long_identifier] = STATE(1322), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_preproc_line] = STATE(366), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_preproc_line] = STATE(356), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym__compound_type_repeat1] = STATE(2548), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1917), + [anon_sym_GT_RBRACK] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -81057,122 +76842,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1919), }, - [367] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(38), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [357] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(5076), + [sym_object_expression] = STATE(5076), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(798), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_preproc_line] = STATE(367), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(5086), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5076), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_preproc_line] = STATE(357), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(305), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(1941), [anon_sym_try] = ACTIONS(341), [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -81180,8 +76966,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -81191,7 +76977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -81199,248 +76985,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [368] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(78), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(797), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_preproc_line] = STATE(368), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [369] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(129), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [358] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(4983), + [sym_object_expression] = STATE(4983), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(798), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_preproc_line] = STATE(369), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4993), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4983), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_preproc_line] = STATE(358), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(1941), [anon_sym_try] = ACTIONS(341), [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -81448,8 +77100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -81459,7 +77111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -81467,114 +77119,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [370] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4743), - [sym_object_expression] = STATE(4743), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [359] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(118), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1330), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_preproc_line] = STATE(359), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [360] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(52), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1190), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_preproc_line] = STATE(360), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + }, + [361] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(5), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(768), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_preproc_line] = STATE(361), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [362] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(95), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1265), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_preproc_line] = STATE(362), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [363] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(93), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4760), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4743), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_preproc_line] = STATE(370), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(794), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_preproc_line] = STATE(363), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(1953), [anon_sym_try] = ACTIONS(341), [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), [anon_sym_SQUOTE] = ACTIONS(367), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), [anon_sym_DQUOTE] = ACTIONS(371), @@ -81582,8 +77770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -81593,7 +77781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -81601,103 +77789,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [371] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(5100), - [sym_object_expression] = STATE(5100), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [364] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(5014), + [sym_object_expression] = STATE(5014), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4836), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(5100), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_preproc_line] = STATE(371), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(5024), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5014), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_preproc_line] = STATE(364), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -81705,8 +77893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -81716,8 +77904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -81727,7 +77915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -81735,124 +77923,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [372] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(56), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1163), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_preproc_line] = STATE(372), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [365] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(29), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(794), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_preproc_line] = STATE(365), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -81861,111 +78049,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(387), }, - [373] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4732), - [sym_object_expression] = STATE(4732), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [366] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(4837), + [sym_object_expression] = STATE(4837), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4713), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4732), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_preproc_line] = STATE(373), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4858), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4837), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_preproc_line] = STATE(366), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -81973,8 +78161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -81984,8 +78172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -81995,7 +78183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -82003,87 +78191,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [374] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(63), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1156), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_preproc_line] = STATE(374), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1987), + [367] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(4949), + [sym_object_expression] = STATE(4949), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4960), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4949), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_preproc_line] = STATE(367), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [368] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(167), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1269), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_preproc_line] = STATE(368), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [369] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(62), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1209), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_preproc_line] = STATE(369), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1991), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -82093,13 +78549,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), [anon_sym_fun] = ACTIONS(429), - [anon_sym_DASH_GT] = ACTIONS(1941), + [anon_sym_DASH_GT] = ACTIONS(1953), [anon_sym_try] = ACTIONS(431), [anon_sym_match] = ACTIONS(433), [anon_sym_match_BANG] = ACTIONS(435), @@ -82108,9 +78564,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(449), [anon_sym_do_BANG] = ACTIONS(451), [anon_sym_begin] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), [anon_sym_SQUOTE] = ACTIONS(457), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), [anon_sym_DQUOTE] = ACTIONS(461), @@ -82118,8 +78574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -82137,103 +78593,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [375] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4683), - [sym_object_expression] = STATE(4683), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [370] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(149), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1266), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_preproc_line] = STATE(370), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + }, + [371] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(4760), + [sym_object_expression] = STATE(4760), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4704), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4683), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_preproc_line] = STATE(375), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4751), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4760), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_preproc_line] = STATE(371), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -82241,8 +78831,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -82252,8 +78842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -82263,7 +78853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -82271,81 +78861,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [376] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(28), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(804), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_preproc_line] = STATE(376), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1949), + [372] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(73), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(794), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_preproc_line] = STATE(372), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [373] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(228), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1352), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_preproc_line] = STATE(373), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [374] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(24), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(815), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_preproc_line] = STATE(374), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2005), [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -82367,7 +79225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(65), - [anon_sym_DASH_GT] = ACTIONS(1941), + [anon_sym_DASH_GT] = ACTIONS(1953), [anon_sym_try] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), @@ -82376,9 +79234,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), [anon_sym_SQUOTE] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -82405,258 +79263,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [377] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(183), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1316), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_preproc_line] = STATE(377), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [378] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(141), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_type_arguments] = STATE(2531), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1221), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_preproc_line] = STATE(378), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym__compound_type_repeat1] = STATE(2522), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), + [375] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(17), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(815), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_preproc_line] = STATE(375), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -82665,111 +79389,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), + [anon_sym_POUNDif] = ACTIONS(111), }, - [379] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4794), - [sym_object_expression] = STATE(4794), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [376] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(5045), + [sym_object_expression] = STATE(5045), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4805), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4794), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_preproc_line] = STATE(379), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(5055), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5045), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_preproc_line] = STATE(376), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -82777,8 +79501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -82788,8 +79512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -82799,7 +79523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -82807,103 +79531,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [380] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4859), - [sym_object_expression] = STATE(4859), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [377] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(5096), + [sym_object_expression] = STATE(5096), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4869), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4859), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_preproc_line] = STATE(380), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4808), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5096), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_preproc_line] = STATE(377), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -82911,8 +79635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -82922,8 +79646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -82933,7 +79657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -82941,123 +79665,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [381] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_with_field_expression] = STATE(4952), - [sym_object_expression] = STATE(4952), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__comp_or_range_expression] = STATE(4962), - [sym_short_comp_expression] = STATE(5110), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4952), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(1426), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_preproc_line] = STATE(381), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), + [378] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(150), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(768), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_preproc_line] = STATE(378), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [379] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(5107), + [sym_object_expression] = STATE(5107), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4747), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5107), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_preproc_line] = STATE(379), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), [anon_sym_AT_DQUOTE] = ACTIONS(373), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -83067,7 +79925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -83075,9 +79933,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, + [380] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(136), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_with_field_expression] = STATE(4898), + [sym_object_expression] = STATE(4898), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__comp_or_range_expression] = STATE(4915), + [sym_short_comp_expression] = STATE(5058), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4898), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(1577), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_preproc_line] = STATE(380), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(1941), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [381] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(173), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_type_arguments] = STATE(2590), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(1326), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_preproc_line] = STATE(381), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym__compound_type_repeat1] = STATE(2579), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, [382] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83108,87 +80234,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(382), [sym_block_comment] = STATE(382), [sym_preproc_line] = STATE(382), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5166), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5212), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83197,20 +80323,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2013), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2019), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [383] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(83), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(125), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83241,90 +80367,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(4940), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(4746), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(383), [sym_block_comment] = STATE(383), [sym_preproc_line] = STATE(383), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83333,17 +80459,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [384] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(117), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(109), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83374,90 +80500,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(4951), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5087), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(384), [sym_block_comment] = STATE(384), [sym_preproc_line] = STATE(384), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83466,17 +80592,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [385] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83507,87 +80633,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(385), [sym_block_comment] = STATE(385), [sym_preproc_line] = STATE(385), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4987), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5274), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83596,20 +80722,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2023), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2029), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [386] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83640,87 +80766,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(386), [sym_block_comment] = STATE(386), [sym_preproc_line] = STATE(386), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4839), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(4811), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(401), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83729,20 +80855,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2025), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2031), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [387] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(93), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(145), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83773,90 +80899,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5238), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5370), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(387), [sym_block_comment] = STATE(387), [sym_preproc_line] = STATE(387), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83865,17 +80991,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [388] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(98), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(156), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -83906,90 +81032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5178), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5482), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(388), [sym_block_comment] = STATE(388), [sym_preproc_line] = STATE(388), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -83998,17 +81124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [389] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(146), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84039,90 +81165,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5085), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(389), [sym_block_comment] = STATE(389), [sym_preproc_line] = STATE(389), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5277), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(385), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84131,17 +81254,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2033), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [390] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84172,87 +81298,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(390), [sym_block_comment] = STATE(390), [sym_preproc_line] = STATE(390), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4980), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5451), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84261,20 +81387,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2027), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2035), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [391] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84305,87 +81431,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(391), [sym_block_comment] = STATE(391), [sym_preproc_line] = STATE(391), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5021), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5065), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84394,20 +81520,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2029), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2037), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [392] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(154), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(139), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84438,90 +81564,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5030), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5234), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(392), [sym_block_comment] = STATE(392), [sym_preproc_line] = STATE(392), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84530,17 +81656,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [393] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(120), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84571,87 +81697,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5139), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(393), [sym_block_comment] = STATE(393), [sym_preproc_line] = STATE(393), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5024), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84660,20 +81789,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2031), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), }, [394] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84704,87 +81830,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(394), [sym_block_comment] = STATE(394), [sym_preproc_line] = STATE(394), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5352), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5173), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84793,20 +81919,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2033), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2039), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [395] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84837,87 +81963,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(395), [sym_block_comment] = STATE(395), [sym_preproc_line] = STATE(395), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5070), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(4901), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -84926,20 +82052,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2035), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2041), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [396] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -84970,87 +82096,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(396), [sym_block_comment] = STATE(396), [sym_preproc_line] = STATE(396), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5076), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_else_in_expression] = STATE(4833), + [aux_sym_prefix_op_repeat1] = STATE(2596), [aux_sym_preproc_if_in_expression_repeat1] = STATE(395), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85059,20 +82185,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2037), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2043), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [397] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85103,87 +82229,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(397), [sym_block_comment] = STATE(397), [sym_preproc_line] = STATE(397), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4887), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5175), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85192,20 +82318,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2039), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2045), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [398] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(94), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85236,90 +82362,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5362), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(398), [sym_block_comment] = STATE(398), [sym_preproc_line] = STATE(398), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5350), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85328,17 +82451,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2047), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [399] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85369,87 +82495,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(399), [sym_block_comment] = STATE(399), [sym_preproc_line] = STATE(399), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4936), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5286), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85458,20 +82584,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2041), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2049), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [400] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(116), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(134), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85502,90 +82628,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5133), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(4797), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(400), [sym_block_comment] = STATE(400), [sym_preproc_line] = STATE(400), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85594,17 +82720,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [401] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85635,87 +82761,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(401), [sym_block_comment] = STATE(401), [sym_preproc_line] = STATE(401), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5119), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5066), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85724,20 +82850,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2043), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2051), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [402] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85768,87 +82894,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(402), [sym_block_comment] = STATE(402), [sym_preproc_line] = STATE(402), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5168), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5126), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85857,20 +82983,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2045), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2053), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [403] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -85901,87 +83027,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(403), [sym_block_comment] = STATE(403), [sym_preproc_line] = STATE(403), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5287), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5460), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -85990,20 +83116,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2047), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2055), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [404] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86034,87 +83160,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(404), [sym_block_comment] = STATE(404), [sym_preproc_line] = STATE(404), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5122), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5355), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(398), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86123,20 +83249,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2049), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2057), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [405] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(127), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86167,87 +83293,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5143), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(405), [sym_block_comment] = STATE(405), [sym_preproc_line] = STATE(405), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5220), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86256,20 +83385,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2051), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), }, [406] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(135), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86300,87 +83426,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5243), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(406), [sym_block_comment] = STATE(406), [sym_preproc_line] = STATE(406), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5128), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86389,20 +83518,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2053), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), }, [407] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86433,87 +83559,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(407), [sym_block_comment] = STATE(407), [sym_preproc_line] = STATE(407), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5294), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5123), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86522,20 +83648,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2055), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2059), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [408] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86566,87 +83692,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(408), [sym_block_comment] = STATE(408), [sym_preproc_line] = STATE(408), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(5339), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5073), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86655,20 +83781,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2057), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2061), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [409] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(87), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86699,90 +83825,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5055), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(409), [sym_block_comment] = STATE(409), [sym_preproc_line] = STATE(409), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5227), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86791,17 +83914,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2063), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [410] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86832,87 +83958,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(410), [sym_block_comment] = STATE(410), [sym_preproc_line] = STATE(410), [sym_preproc_if_in_expression] = STATE(972), - [sym_preproc_else_in_expression] = STATE(4682), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_else_in_expression] = STATE(5236), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -86921,20 +84047,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2059), - [anon_sym_POUNDelse] = ACTIONS(2015), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2065), + [anon_sym_POUNDelse] = ACTIONS(2021), + [sym__newline] = ACTIONS(2023), }, [411] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(150), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(154), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -86965,90 +84091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_slice_ranges] = STATE(5303), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4135), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_slice_ranges] = STATE(5054), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4227), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(411), [sym_block_comment] = STATE(411), [sym_preproc_line] = STATE(411), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87057,22 +84183,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [412] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4732), - [sym_object_expression] = STATE(4732), + [sym_with_field_expression] = STATE(5014), + [sym_object_expression] = STATE(5014), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87100,87 +84226,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4732), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5014), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(412), [sym_block_comment] = STATE(412), [sym_preproc_line] = STATE(412), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87189,22 +84315,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [413] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4828), - [sym_object_expression] = STATE(4828), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87232,111 +84356,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4828), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(413), [sym_block_comment] = STATE(413), [sym_preproc_line] = STATE(413), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_let_BANG] = ACTIONS(2083), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LBRACK_PIPE] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_LBRACE_PIPE] = ACTIONS(2104), + [anon_sym_new] = ACTIONS(2107), + [anon_sym_return_BANG] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_yield_BANG] = ACTIONS(2110), + [anon_sym_lazy] = ACTIONS(2074), + [anon_sym_assert] = ACTIONS(2074), + [anon_sym_upcast] = ACTIONS(2074), + [anon_sym_downcast] = ACTIONS(2074), + [anon_sym_LT_AT] = ACTIONS(2113), + [anon_sym_LT_AT_AT] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_fun] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_match_BANG] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2140), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_use_BANG] = ACTIONS(2146), + [anon_sym_do_BANG] = ACTIONS(2149), + [anon_sym_begin] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_AT_DQUOTE] = ACTIONS(2164), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2170), + [sym_bool] = ACTIONS(2173), + [sym_unit] = ACTIONS(2176), + [aux_sym__identifier_or_op_token1] = ACTIONS(2179), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_PLUS_DOT] = ACTIONS(2185), + [anon_sym_DASH_DOT] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2188), + [aux_sym_prefix_op_token1] = ACTIONS(2185), + [sym_int] = ACTIONS(2191), + [sym_xint] = ACTIONS(2194), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(2197), + [anon_sym_POUNDendif] = ACTIONS(971), + [anon_sym_POUNDelse] = ACTIONS(971), + [sym__newline] = ACTIONS(2200), }, [414] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4952), - [sym_object_expression] = STATE(4952), + [sym_with_field_expression] = STATE(4837), + [sym_object_expression] = STATE(4837), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87364,87 +84490,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4952), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4837), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(414), [sym_block_comment] = STATE(414), [sym_preproc_line] = STATE(414), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87453,22 +84579,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [415] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4921), - [sym_object_expression] = STATE(4921), + [sym_with_field_expression] = STATE(5076), + [sym_object_expression] = STATE(5076), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87496,87 +84622,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4921), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5076), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(415), [sym_block_comment] = STATE(415), [sym_preproc_line] = STATE(415), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87585,22 +84711,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [416] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4683), - [sym_object_expression] = STATE(4683), + [sym_with_field_expression] = STATE(4898), + [sym_object_expression] = STATE(4898), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87628,87 +84754,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4683), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4898), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(416), [sym_block_comment] = STATE(416), [sym_preproc_line] = STATE(416), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87717,20 +84843,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [417] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), + [sym_with_field_expression] = STATE(5096), + [sym_object_expression] = STATE(5096), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -87758,108 +84886,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5096), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(417), [sym_block_comment] = STATE(417), [sym_preproc_line] = STATE(417), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2074), - [anon_sym_let_BANG] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LBRACK_PIPE] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_LBRACE_PIPE] = ACTIONS(2098), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_return_BANG] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_yield_BANG] = ACTIONS(2104), - [anon_sym_lazy] = ACTIONS(2068), - [anon_sym_assert] = ACTIONS(2068), - [anon_sym_upcast] = ACTIONS(2068), - [anon_sym_downcast] = ACTIONS(2068), - [anon_sym_LT_AT] = ACTIONS(2107), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_fun] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_match_BANG] = ACTIONS(2131), - [anon_sym_function] = ACTIONS(2134), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_use_BANG] = ACTIONS(2140), - [anon_sym_do_BANG] = ACTIONS(2143), - [anon_sym_begin] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2161), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2164), - [sym_bool] = ACTIONS(2167), - [sym_unit] = ACTIONS(2170), - [aux_sym__identifier_or_op_token1] = ACTIONS(2173), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS_DOT] = ACTIONS(2179), - [anon_sym_DASH_DOT] = ACTIONS(2179), - [anon_sym_PERCENT] = ACTIONS(2179), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2182), - [aux_sym_prefix_op_token1] = ACTIONS(2179), - [sym_int] = ACTIONS(2185), - [sym_xint] = ACTIONS(2188), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2191), - [anon_sym_POUNDendif] = ACTIONS(887), - [anon_sym_POUNDelse] = ACTIONS(887), - [sym__newline] = ACTIONS(2194), + [anon_sym_POUNDif] = ACTIONS(217), }, [418] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(89), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(102), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -87890,89 +85016,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym__slice_range_special] = STATE(4461), - [sym_slice_range] = STATE(4401), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym__slice_range_special] = STATE(4482), + [sym_slice_range] = STATE(4460), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(418), [sym_block_comment] = STATE(418), [sym_preproc_line] = STATE(418), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_DOT_DOT3] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -87981,22 +85107,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [419] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4859), - [sym_object_expression] = STATE(4859), + [sym_with_field_expression] = STATE(5045), + [sym_object_expression] = STATE(5045), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -88024,87 +85150,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4859), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5045), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(419), [sym_block_comment] = STATE(419), [sym_preproc_line] = STATE(419), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88113,22 +85239,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [420] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4890), - [sym_object_expression] = STATE(4890), + [sym_with_field_expression] = STATE(4949), + [sym_object_expression] = STATE(4949), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -88156,87 +85282,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4890), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4949), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(420), [sym_block_comment] = STATE(420), [sym_preproc_line] = STATE(420), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88245,22 +85371,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [421] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4794), - [sym_object_expression] = STATE(4794), + [sym_with_field_expression] = STATE(4983), + [sym_object_expression] = STATE(4983), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -88288,87 +85414,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4794), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4983), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(421), [sym_block_comment] = STATE(421), [sym_preproc_line] = STATE(421), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88377,22 +85503,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [422] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(90), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym__slice_range_special] = STATE(4463), + [sym_slice_range] = STATE(4531), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(422), + [sym_block_comment] = STATE(422), + [sym_preproc_line] = STATE(422), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_DOT_DOT3] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [423] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(4743), - [sym_object_expression] = STATE(4743), + [sym_with_field_expression] = STATE(4760), + [sym_object_expression] = STATE(4760), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -88420,219 +85678,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(4743), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(4760), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(422), - [sym_block_comment] = STATE(422), - [sym_preproc_line] = STATE(422), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [423] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(126), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym__slice_range_special] = STATE(4577), - [sym_slice_range] = STATE(4634), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(423), [sym_block_comment] = STATE(423), [sym_preproc_line] = STATE(423), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_DOT_DOT3] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88641,22 +85767,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [424] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(179), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(223), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), - [sym_with_field_expression] = STATE(5100), - [sym_object_expression] = STATE(5100), + [sym_with_field_expression] = STATE(5107), + [sym_object_expression] = STATE(5107), [sym_prefixed_expression] = STATE(972), [sym_literal_expression] = STATE(972), [sym_typecast_expression] = STATE(972), @@ -88684,87 +85810,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_field_initializer] = STATE(4241), - [sym_field_initializers] = STATE(5100), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_field_initializer] = STATE(4353), + [sym_field_initializers] = STATE(5107), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(1778), + [sym_long_identifier] = STATE(1820), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(424), [sym_block_comment] = STATE(424), [sym_preproc_line] = STATE(424), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88773,17 +85899,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [425] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -88814,86 +85940,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(425), [sym_block_comment] = STATE(425), [sym_preproc_line] = STATE(425), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [aux_sym_prefix_op_repeat1] = STATE(2596), [aux_sym_preproc_if_in_expression_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -88902,19 +86028,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2197), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2203), + [sym__newline] = ACTIONS(2023), }, [426] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(114), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(143), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -88945,86 +86071,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(426), [sym_block_comment] = STATE(426), [sym_preproc_line] = STATE(426), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -89033,107 +86159,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - [anon_sym_POUNDendif] = ACTIONS(2199), - [sym__newline] = ACTIONS(2017), + [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDendif] = ACTIONS(2205), + [sym__newline] = ACTIONS(2023), }, [427] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(240), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(229), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(427), [sym_block_comment] = STATE(427), [sym_preproc_line] = STATE(427), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [428] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(272), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(428), + [sym_block_comment] = STATE(428), + [sym_preproc_line] = STATE(428), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2207), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -89142,8 +86398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -89153,8 +86409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -89164,18 +86420,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), - [sym__dedent] = ACTIONS(2201), + [sym__dedent] = ACTIONS(2207), }, - [428] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(261), + [429] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(212), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4822), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(429), + [sym_block_comment] = STATE(429), + [sym_preproc_line] = STATE(429), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [430] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -89206,345 +86591,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(428), - [sym_block_comment] = STATE(428), - [sym_preproc_line] = STATE(428), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [429] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(97), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_range_expression] = STATE(4516), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(429), - [sym_block_comment] = STATE(429), - [sym_preproc_line] = STATE(429), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [430] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(271), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4717), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(430), [sym_block_comment] = STATE(430), [sym_preproc_line] = STATE(430), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -89553,127 +86679,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(217), }, [431] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(176), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4835), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(242), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(5114), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(431), [sym_block_comment] = STATE(431), [sym_preproc_line] = STATE(431), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -89682,127 +86808,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [432] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(160), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4897), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(240), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(5083), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(432), [sym_block_comment] = STATE(432), [sym_preproc_line] = STATE(432), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -89811,127 +86937,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [433] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(207), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4866), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(239), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4990), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(433), [sym_block_comment] = STATE(433), [sym_preproc_line] = STATE(433), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -89940,127 +87066,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [434] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(234), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(5052), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(434), [sym_block_comment] = STATE(434), [sym_preproc_line] = STATE(434), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90069,127 +87195,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1233), }, [435] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(274), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4802), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(218), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(5021), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(435), [sym_block_comment] = STATE(435), [sym_preproc_line] = STATE(435), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90198,127 +87324,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [436] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(246), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4835), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(186), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4990), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(436), [sym_block_comment] = STATE(436), [sym_preproc_line] = STATE(436), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90327,127 +87453,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [437] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(188), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4959), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(180), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4957), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(437), [sym_block_comment] = STATE(437), [sym_preproc_line] = STATE(437), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90456,127 +87582,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [438] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(254), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4757), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(170), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4912), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(438), [sym_block_comment] = STATE(438), [sym_preproc_line] = STATE(438), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90585,127 +87711,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [439] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(169), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4717), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(162), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4748), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(439), [sym_block_comment] = STATE(439), [sym_preproc_line] = STATE(439), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90714,127 +87840,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [440] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(199), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4912), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(440), [sym_block_comment] = STATE(440), [sym_preproc_line] = STATE(440), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90843,127 +87969,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1233), }, [441] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(187), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4928), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(128), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_range_expression] = STATE(4649), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(441), [sym_block_comment] = STATE(441), [sym_preproc_line] = STATE(441), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -90972,127 +88098,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(941), }, [442] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(238), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4748), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(442), [sym_block_comment] = STATE(442), [sym_preproc_line] = STATE(442), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91101,127 +88227,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1233), }, [443] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(131), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_range_expression] = STATE(4649), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(443), [sym_block_comment] = STATE(443), [sym_preproc_line] = STATE(443), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91230,127 +88356,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, [444] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(225), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4701), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(208), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_range_expression] = STATE(4855), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), [sym_xml_doc] = STATE(444), [sym_block_comment] = STATE(444), [sym_preproc_line] = STATE(444), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91359,17 +88485,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(1233), }, [445] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -91400,86 +88526,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(445), [sym_block_comment] = STATE(445), [sym_preproc_line] = STATE(445), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), [anon_sym_with] = ACTIONS(2211), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91488,127 +88614,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [446] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(279), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4848), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(446), [sym_block_comment] = STATE(446), [sym_preproc_line] = STATE(446), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91617,17 +88743,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(217), }, [447] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -91658,86 +88784,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(447), [sym_block_comment] = STATE(447), [sym_preproc_line] = STATE(447), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91746,17 +88872,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [448] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -91787,86 +88913,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(448), [sym_block_comment] = STATE(448), [sym_preproc_line] = STATE(448), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -91875,127 +89001,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [449] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(92), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_range_expression] = STATE(4516), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(449), [sym_block_comment] = STATE(449), [sym_preproc_line] = STATE(449), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92004,127 +89130,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, [450] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(197), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_range_expression] = STATE(4757), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(450), [sym_block_comment] = STATE(450), [sym_preproc_line] = STATE(450), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92133,17 +89259,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(217), }, [451] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -92174,86 +89300,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(451), [sym_block_comment] = STATE(451), [sym_preproc_line] = STATE(451), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92262,17 +89388,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [452] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -92303,86 +89429,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(452), [sym_block_comment] = STATE(452), [sym_preproc_line] = STATE(452), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2219), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92391,17 +89517,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [453] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -92432,86 +89558,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(453), [sym_block_comment] = STATE(453), [sym_preproc_line] = STATE(453), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92520,126 +89646,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [454] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(248), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(126), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(454), [sym_block_comment] = STATE(454), [sym_preproc_line] = STATE(454), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92648,104 +89774,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, [455] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(79), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(153), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(455), [sym_block_comment] = STATE(455), [sym_preproc_line] = STATE(455), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -92754,8 +89880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -92765,8 +89891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -92776,7 +89902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -92785,8 +89911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(387), }, [456] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(74), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(189), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -92817,85 +89943,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(456), [sym_block_comment] = STATE(456), [sym_preproc_line] = STATE(456), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -92904,126 +90030,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [457] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(9), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(230), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(457), [sym_block_comment] = STATE(457), [sym_preproc_line] = STATE(457), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93032,126 +90158,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(941), }, [458] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(219), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(191), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(458), [sym_block_comment] = STATE(458), [sym_preproc_line] = STATE(458), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93160,87 +90286,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1131), }, [459] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(33), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(459), [sym_block_comment] = STATE(459), [sym_preproc_line] = STATE(459), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -93248,14 +90374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -93266,8 +90392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -93288,7 +90414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), + [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -93297,117 +90423,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(111), }, [460] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(229), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(47), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(460), [sym_block_comment] = STATE(460), [sym_preproc_line] = STATE(460), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93416,126 +90542,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(477), }, [461] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(209), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(217), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(461), [sym_block_comment] = STATE(461), [sym_preproc_line] = STATE(461), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93544,126 +90670,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(941), }, [462] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(136), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(314), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(462), [sym_block_comment] = STATE(462), [sym_preproc_line] = STATE(462), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93672,17 +90798,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), + [anon_sym_POUNDif] = ACTIONS(217), }, [463] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(296), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(310), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -93713,85 +90839,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(463), [sym_block_comment] = STATE(463), [sym_preproc_line] = STATE(463), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93800,126 +90926,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [464] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(221), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(188), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(464), [sym_block_comment] = STATE(464), [sym_preproc_line] = STATE(464), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93928,126 +91054,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1131), }, [465] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(218), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(184), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(465), [sym_block_comment] = STATE(465), [sym_preproc_line] = STATE(465), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94056,126 +91182,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1131), }, [466] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(217), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(45), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(466), [sym_block_comment] = STATE(466), [sym_preproc_line] = STATE(466), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94184,126 +91310,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(477), }, [467] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(186), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(168), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(467), [sym_block_comment] = STATE(467), [sym_preproc_line] = STATE(467), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94312,126 +91438,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1131), }, [468] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(184), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(244), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(468), [sym_block_comment] = STATE(468), [sym_preproc_line] = STATE(468), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94440,126 +91566,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1131), }, [469] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(307), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(37), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), [sym_xml_doc] = STATE(469), [sym_block_comment] = STATE(469), [sym_preproc_line] = STATE(469), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94568,17 +91694,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(111), }, [470] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(305), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(11), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -94609,85 +91735,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(470), [sym_block_comment] = STATE(470), [sym_preproc_line] = STATE(470), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94696,126 +91822,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [471] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(75), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(197), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(471), [sym_block_comment] = STATE(471), [sym_preproc_line] = STATE(471), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94824,104 +91950,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1131), }, [472] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(247), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(178), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(472), [sym_block_comment] = STATE(472), [sym_preproc_line] = STATE(472), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -94930,8 +92056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -94941,8 +92067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -94952,7 +92078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -94961,117 +92087,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(387), }, [473] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(250), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(177), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(473), [sym_block_comment] = STATE(473), [sym_preproc_line] = STATE(473), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95080,126 +92206,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [474] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(48), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(290), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(474), [sym_block_comment] = STATE(474), [sym_preproc_line] = STATE(474), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95208,126 +92334,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(217), }, [475] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(158), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(285), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(475), [sym_block_comment] = STATE(475), [sym_preproc_line] = STATE(475), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95336,126 +92462,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [476] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(71), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(166), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(476), [sym_block_comment] = STATE(476), [sym_preproc_line] = STATE(476), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95464,126 +92590,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(941), }, [477] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(105), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(233), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(477), [sym_block_comment] = STATE(477), [sym_preproc_line] = STATE(477), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95592,17 +92718,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(941), }, [478] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(312), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(281), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -95633,85 +92759,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(478), [sym_block_comment] = STATE(478), [sym_preproc_line] = STATE(478), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95720,17 +92846,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [479] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(298), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(286), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -95761,85 +92887,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(479), [sym_block_comment] = STATE(479), [sym_preproc_line] = STATE(479), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95848,17 +92974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [480] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(135), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(83), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -95889,85 +93015,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(480), [sym_block_comment] = STATE(480), [sym_preproc_line] = STATE(480), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95976,126 +93102,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [481] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(216), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(220), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(481), [sym_block_comment] = STATE(481), [sym_preproc_line] = STATE(481), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96104,17 +93230,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(1131), }, [482] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(297), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(289), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96145,85 +93271,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(482), [sym_block_comment] = STATE(482), [sym_preproc_line] = STATE(482), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96232,126 +93358,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [483] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(300), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(124), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(483), [sym_block_comment] = STATE(483), [sym_preproc_line] = STATE(483), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96360,17 +93486,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, [484] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(267), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(87), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96401,85 +93527,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(484), [sym_block_comment] = STATE(484), [sym_preproc_line] = STATE(484), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96488,17 +93614,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [485] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(313), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(231), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96529,85 +93655,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(485), [sym_block_comment] = STATE(485), [sym_preproc_line] = STATE(485), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96616,17 +93742,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [486] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(299), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(315), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96657,85 +93783,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(486), [sym_block_comment] = STATE(486), [sym_preproc_line] = STATE(486), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96744,17 +93870,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [487] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(145), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(320), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96785,85 +93911,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(487), [sym_block_comment] = STATE(487), [sym_preproc_line] = STATE(487), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96872,17 +93998,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [488] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(76), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(282), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -96913,85 +94039,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(488), [sym_block_comment] = STATE(488), [sym_preproc_line] = STATE(488), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97000,126 +94126,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [489] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(104), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(185), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(489), [sym_block_comment] = STATE(489), [sym_preproc_line] = STATE(489), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97128,126 +94254,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(1131), }, [490] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(239), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(49), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(490), [sym_block_comment] = STATE(490), [sym_preproc_line] = STATE(490), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97256,17 +94382,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(477), }, [491] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(174), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(267), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_preproc_line] = STATE(491), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [492] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(181), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -97297,85 +94551,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_preproc_line] = STATE(491), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(492), + [sym_block_comment] = STATE(492), + [sym_preproc_line] = STATE(492), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97384,104 +94638,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [492] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(181), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [493] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(28), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(492), - [sym_block_comment] = STATE(492), - [sym_preproc_line] = STATE(492), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(493), + [sym_block_comment] = STATE(493), + [sym_preproc_line] = STATE(493), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(305), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -97490,8 +94744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -97501,8 +94755,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -97512,7 +94766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -97520,118 +94774,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [493] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(301), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(493), - [sym_block_comment] = STATE(493), - [sym_preproc_line] = STATE(493), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [494] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(14), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(494), + [sym_block_comment] = STATE(494), + [sym_preproc_line] = STATE(494), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97640,126 +94894,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(111), }, - [494] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(299), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(494), - [sym_block_comment] = STATE(494), - [sym_preproc_line] = STATE(494), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [495] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(20), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(495), + [sym_block_comment] = STATE(495), + [sym_preproc_line] = STATE(495), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97768,17 +95022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(111), }, - [495] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(257), + [496] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(308), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -97809,85 +95063,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(495), - [sym_block_comment] = STATE(495), - [sym_preproc_line] = STATE(495), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(496), + [sym_block_comment] = STATE(496), + [sym_preproc_line] = STATE(496), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97896,126 +95150,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [496] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(54), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(496), - [sym_block_comment] = STATE(496), - [sym_preproc_line] = STATE(496), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [497] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(7), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(497), + [sym_block_comment] = STATE(497), + [sym_preproc_line] = STATE(497), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98024,126 +95278,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(111), }, - [497] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(49), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(497), - [sym_block_comment] = STATE(497), - [sym_preproc_line] = STATE(497), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [498] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(224), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(498), + [sym_block_comment] = STATE(498), + [sym_preproc_line] = STATE(498), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98152,126 +95406,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(387), }, - [498] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(498), - [sym_block_comment] = STATE(498), - [sym_preproc_line] = STATE(498), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [499] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(16), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(499), + [sym_block_comment] = STATE(499), + [sym_preproc_line] = STATE(499), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98280,126 +95534,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(111), }, - [499] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(251), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(499), - [sym_block_comment] = STATE(499), - [sym_preproc_line] = STATE(499), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [500] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(165), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(500), + [sym_block_comment] = STATE(500), + [sym_preproc_line] = STATE(500), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98408,104 +95662,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(1233), }, - [500] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(204), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [501] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(164), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(500), - [sym_block_comment] = STATE(500), - [sym_preproc_line] = STATE(500), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(501), + [sym_block_comment] = STATE(501), + [sym_preproc_line] = STATE(501), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -98514,8 +95768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -98525,8 +95779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -98536,7 +95790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -98544,137 +95798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [501] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(301), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(501), - [sym_block_comment] = STATE(501), - [sym_preproc_line] = STATE(501), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, [502] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(88), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(163), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -98705,85 +95831,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(502), [sym_block_comment] = STATE(502), [sym_preproc_line] = STATE(502), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98792,17 +95918,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [503] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(281), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(284), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -98833,85 +95959,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(503), [sym_block_comment] = STATE(503), [sym_preproc_line] = STATE(503), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98920,17 +96046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [504] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(13), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(300), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -98961,85 +96087,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(504), [sym_block_comment] = STATE(504), [sym_preproc_line] = STATE(504), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99048,104 +96174,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [505] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(265), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(505), [sym_block_comment] = STATE(505), [sym_preproc_line] = STATE(505), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -99154,8 +96280,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -99165,8 +96291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -99176,7 +96302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -99185,8 +96311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(387), }, [506] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(180), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(89), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -99217,85 +96343,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(506), [sym_block_comment] = STATE(506), [sym_preproc_line] = STATE(506), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99304,17 +96430,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [507] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(312), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(305), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -99345,85 +96471,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(507), [sym_block_comment] = STATE(507), [sym_preproc_line] = STATE(507), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99432,17 +96558,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [508] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(314), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(310), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -99473,85 +96599,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(508), [sym_block_comment] = STATE(508), [sym_preproc_line] = STATE(508), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99560,17 +96686,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [509] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(314), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(159), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -99601,85 +96727,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(509), [sym_block_comment] = STATE(509), [sym_preproc_line] = STATE(509), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99688,126 +96814,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [510] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(273), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(158), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(510), [sym_block_comment] = STATE(510), [sym_preproc_line] = STATE(510), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99816,233 +96942,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(1131), }, [511] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(220), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(35), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), [sym_xml_doc] = STATE(511), [sym_block_comment] = STATE(511), [sym_preproc_line] = STATE(511), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [512] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(123), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(512), - [sym_block_comment] = STATE(512), - [sym_preproc_line] = STATE(512), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(305), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -100050,8 +97048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -100061,8 +97059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -100072,7 +97070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -100080,9 +97078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [513] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(152), + [512] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(91), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -100113,85 +97111,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(512), + [sym_block_comment] = STATE(512), + [sym_preproc_line] = STATE(512), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [513] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(85), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), [sym_xml_doc] = STATE(513), [sym_block_comment] = STATE(513), [sym_preproc_line] = STATE(513), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100200,17 +97326,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, [514] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(12), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(245), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -100241,85 +97367,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(514), [sym_block_comment] = STATE(514), [sym_preproc_line] = STATE(514), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100328,93 +97454,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [515] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(44), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(280), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(515), [sym_block_comment] = STATE(515), [sym_preproc_line] = STATE(515), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [516] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(48), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(516), + [sym_block_comment] = STATE(516), + [sym_preproc_line] = STATE(516), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -100424,8 +97678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -100445,8 +97699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -100464,246 +97718,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [516] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(259), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(516), - [sym_block_comment] = STATE(516), - [sym_preproc_line] = STATE(516), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, [517] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(222), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(133), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(517), [sym_block_comment] = STATE(517), [sym_preproc_line] = STATE(517), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100712,145 +97838,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(941), }, [518] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(140), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(518), - [sym_block_comment] = STATE(518), - [sym_preproc_line] = STATE(518), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - }, - [519] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(315), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(99), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -100881,85 +97879,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(518), + [sym_block_comment] = STATE(518), + [sym_preproc_line] = STATE(518), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [519] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(222), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(519), [sym_block_comment] = STATE(519), [sym_preproc_line] = STATE(519), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100968,17 +98094,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, [520] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(305), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(112), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -101009,85 +98135,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(520), [sym_block_comment] = STATE(520), [sym_preproc_line] = STATE(520), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101096,17 +98222,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [521] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(307), + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(246), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(521), + [sym_block_comment] = STATE(521), + [sym_preproc_line] = STATE(521), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [522] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(160), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -101137,213 +98391,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(521), - [sym_block_comment] = STATE(521), - [sym_preproc_line] = STATE(521), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [522] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(249), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(522), [sym_block_comment] = STATE(522), [sym_preproc_line] = STATE(522), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101352,126 +98478,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [523] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(189), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(194), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(523), [sym_block_comment] = STATE(523), [sym_preproc_line] = STATE(523), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101480,126 +98606,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(941), }, [524] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(23), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(271), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(524), [sym_block_comment] = STATE(524), [sym_preproc_line] = STATE(524), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101608,126 +98734,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1131), }, [525] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(15), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(213), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), [sym_xml_doc] = STATE(525), [sym_block_comment] = STATE(525), [sym_preproc_line] = STATE(525), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101736,17 +98862,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(941), }, [526] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(191), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(12), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -101777,85 +98903,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(526), [sym_block_comment] = STATE(526), [sym_preproc_line] = STATE(526), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101864,17 +98990,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [527] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(130), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(101), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -101905,85 +99031,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(527), [sym_block_comment] = STATE(527), [sym_preproc_line] = STATE(527), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101992,93 +99118,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [528] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(41), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(270), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), [sym_xml_doc] = STATE(528), [sym_block_comment] = STATE(528), [sym_preproc_line] = STATE(528), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [529] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(144), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(529), + [sym_block_comment] = STATE(529), + [sym_preproc_line] = STATE(529), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [530] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(42), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(530), + [sym_block_comment] = STATE(530), + [sym_preproc_line] = STATE(530), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -102088,8 +99470,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -102109,8 +99491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -102128,96 +99510,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [529] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [531] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(241), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(529), - [sym_block_comment] = STATE(529), - [sym_preproc_line] = STATE(529), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(531), + [sym_block_comment] = STATE(531), + [sym_preproc_line] = STATE(531), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -102226,8 +99608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -102237,8 +99619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -102248,7 +99630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -102256,118 +99638,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [530] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(530), - [sym_block_comment] = STATE(530), - [sym_preproc_line] = STATE(530), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [532] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(195), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(532), + [sym_block_comment] = STATE(532), + [sym_preproc_line] = STATE(532), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102376,17 +99758,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(1233), }, - [531] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(11), + [533] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(142), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -102417,85 +99799,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(531), - [sym_block_comment] = STATE(531), - [sym_preproc_line] = STATE(531), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(533), + [sym_block_comment] = STATE(533), + [sym_preproc_line] = STATE(533), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102504,17 +99886,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [532] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(318), + [534] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(249), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -102545,341 +99927,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(532), - [sym_block_comment] = STATE(532), - [sym_preproc_line] = STATE(532), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [533] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(96), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(533), - [sym_block_comment] = STATE(533), - [sym_preproc_line] = STATE(533), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - }, - [534] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(265), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(534), [sym_block_comment] = STATE(534), [sym_preproc_line] = STATE(534), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102888,126 +100014,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(217), }, [535] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(230), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(46), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(535), [sym_block_comment] = STATE(535), [sym_preproc_line] = STATE(535), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103016,126 +100142,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(477), }, [536] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(228), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(536), - [sym_block_comment] = STATE(536), - [sym_preproc_line] = STATE(536), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(71), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(536), + [sym_block_comment] = STATE(536), + [sym_preproc_line] = STATE(536), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103144,126 +100270,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, [537] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(260), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(123), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(537), [sym_block_comment] = STATE(537), [sym_preproc_line] = STATE(537), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103272,17 +100398,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [538] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(318), + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(268), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(538), + [sym_block_comment] = STATE(538), + [sym_preproc_line] = STATE(538), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [539] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(294), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -103313,85 +100567,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(538), - [sym_block_comment] = STATE(538), - [sym_preproc_line] = STATE(538), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(539), + [sym_block_comment] = STATE(539), + [sym_preproc_line] = STATE(539), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103400,17 +100654,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [539] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(322), + [540] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(301), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -103441,85 +100695,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(539), - [sym_block_comment] = STATE(539), - [sym_preproc_line] = STATE(539), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(540), + [sym_block_comment] = STATE(540), + [sym_preproc_line] = STATE(540), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103528,17 +100782,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [540] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(2), + [541] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(313), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -103569,85 +100823,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(540), - [sym_block_comment] = STATE(540), - [sym_preproc_line] = STATE(540), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(541), + [sym_block_comment] = STATE(541), + [sym_preproc_line] = STATE(541), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103656,126 +100910,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [541] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(541), - [sym_block_comment] = STATE(541), - [sym_preproc_line] = STATE(541), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), + [542] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(312), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(542), + [sym_block_comment] = STATE(542), + [sym_preproc_line] = STATE(542), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103784,87 +101038,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), + [anon_sym_POUNDif] = ACTIONS(217), }, - [542] = { - [sym_function_or_value_defn] = STATE(530), + [543] = { + [sym_function_or_value_defn] = STATE(587), [sym__expression] = STATE(22), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(542), - [sym_block_comment] = STATE(542), - [sym_preproc_line] = STATE(542), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(543), + [sym_block_comment] = STATE(543), + [sym_preproc_line] = STATE(543), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(13), [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -103920,9 +101174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [543] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(322), + [544] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(298), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -103953,213 +101207,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(543), - [sym_block_comment] = STATE(543), - [sym_preproc_line] = STATE(543), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [544] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(66), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(544), [sym_block_comment] = STATE(544), [sym_preproc_line] = STATE(544), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104168,17 +101294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(217), }, [545] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(107), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(295), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -104209,85 +101335,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(545), [sym_block_comment] = STATE(545), [sym_preproc_line] = STATE(545), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104296,126 +101422,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, [546] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(31), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(108), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(546), [sym_block_comment] = STATE(546), [sym_preproc_line] = STATE(546), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104424,126 +101550,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [547] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(111), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(113), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), [sym_xml_doc] = STATE(547), [sym_block_comment] = STATE(547), [sym_preproc_line] = STATE(547), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104552,477 +101678,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), + [anon_sym_POUNDif] = ACTIONS(217), }, [548] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(270), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(44), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), [sym_xml_doc] = STATE(548), [sym_block_comment] = STATE(548), [sym_preproc_line] = STATE(548), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [549] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(103), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(549), - [sym_block_comment] = STATE(549), - [sym_preproc_line] = STATE(549), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - }, - [550] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(550), - [sym_block_comment] = STATE(550), - [sym_preproc_line] = STATE(550), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - }, - [551] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(46), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(551), - [sym_block_comment] = STATE(551), - [sym_preproc_line] = STATE(551), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -105032,8 +101774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -105053,8 +101795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -105072,137 +101814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [552] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(35), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(552), - [sym_block_comment] = STATE(552), - [sym_preproc_line] = STATE(552), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - }, - [553] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(148), + [549] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(111), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -105233,213 +101847,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(553), - [sym_block_comment] = STATE(553), - [sym_preproc_line] = STATE(553), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(549), + [sym_block_comment] = STATE(549), + [sym_preproc_line] = STATE(549), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [554] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(258), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(554), - [sym_block_comment] = STATE(554), - [sym_preproc_line] = STATE(554), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105448,126 +101934,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, - [555] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(32), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(555), - [sym_block_comment] = STATE(555), - [sym_preproc_line] = STATE(555), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [550] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(147), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(550), + [sym_block_comment] = STATE(550), + [sym_preproc_line] = STATE(550), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105576,105 +102062,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, - [556] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(27), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [551] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(79), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(556), - [sym_block_comment] = STATE(556), - [sym_preproc_line] = STATE(556), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(551), + [sym_block_comment] = STATE(551), + [sym_preproc_line] = STATE(551), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -105682,8 +102168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -105693,8 +102179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -105704,7 +102190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -105712,630 +102198,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [557] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(124), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(557), - [sym_block_comment] = STATE(557), - [sym_preproc_line] = STATE(557), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - }, - [558] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(138), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(558), - [sym_block_comment] = STATE(558), - [sym_preproc_line] = STATE(558), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - }, - [559] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(122), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(559), - [sym_block_comment] = STATE(559), - [sym_preproc_line] = STATE(559), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - }, - [560] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(100), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(560), - [sym_block_comment] = STATE(560), - [sym_preproc_line] = STATE(560), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - }, - [561] = { - [sym_function_or_value_defn] = STATE(529), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(524), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(561), - [sym_block_comment] = STATE(561), - [sym_preproc_line] = STATE(561), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(305), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [552] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(264), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(552), + [sym_block_comment] = STATE(552), + [sym_preproc_line] = STATE(552), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(323), - [anon_sym_return_BANG] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(305), - [anon_sym_yield_BANG] = ACTIONS(325), - [anon_sym_lazy] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(305), - [anon_sym_upcast] = ACTIONS(305), - [anon_sym_downcast] = ACTIONS(305), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(357), - [anon_sym_use_BANG] = ACTIONS(359), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106344,126 +102318,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1131), }, - [562] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(142), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(562), - [sym_block_comment] = STATE(562), - [sym_preproc_line] = STATE(562), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), + [553] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(297), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(553), + [sym_block_comment] = STATE(553), + [sym_preproc_line] = STATE(553), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106472,87 +102446,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), + [anon_sym_POUNDif] = ACTIONS(217), }, - [563] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(5), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(563), - [sym_block_comment] = STATE(563), - [sym_preproc_line] = STATE(563), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [554] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(32), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(554), + [sym_block_comment] = STATE(554), + [sym_preproc_line] = STATE(554), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -106560,14 +102534,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -106578,8 +102552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -106600,7 +102574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), + [sym_int] = ACTIONS(107), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -106608,137 +102582,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [564] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(231), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(564), - [sym_block_comment] = STATE(564), - [sym_preproc_line] = STATE(564), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - }, - [565] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(16), + [555] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(72), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -106769,85 +102615,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(565), - [sym_block_comment] = STATE(565), - [sym_preproc_line] = STATE(565), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(555), + [sym_block_comment] = STATE(555), + [sym_preproc_line] = STATE(555), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106856,17 +102702,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [566] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(320), + [556] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(283), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -106897,85 +102743,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(566), - [sym_block_comment] = STATE(566), - [sym_preproc_line] = STATE(566), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(556), + [sym_block_comment] = STATE(556), + [sym_preproc_line] = STATE(556), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106984,126 +102830,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [567] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(133), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(567), - [sym_block_comment] = STATE(567), - [sym_preproc_line] = STATE(567), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), + [557] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(8), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(557), + [sym_block_comment] = STATE(557), + [sym_preproc_line] = STATE(557), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107112,145 +102958,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), + [anon_sym_POUNDif] = ACTIONS(111), }, - [568] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(202), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(568), - [sym_block_comment] = STATE(568), - [sym_preproc_line] = STATE(568), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), - }, - [569] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(210), + [558] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(296), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -107281,213 +102999,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(569), - [sym_block_comment] = STATE(569), - [sym_preproc_line] = STATE(569), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(558), + [sym_block_comment] = STATE(558), + [sym_preproc_line] = STATE(558), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [570] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(55), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(570), - [sym_block_comment] = STATE(570), - [sym_preproc_line] = STATE(570), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107496,126 +103086,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(217), }, - [571] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(320), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(571), - [sym_block_comment] = STATE(571), - [sym_preproc_line] = STATE(571), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [559] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(237), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(559), + [sym_block_comment] = STATE(559), + [sym_preproc_line] = STATE(559), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107624,105 +103214,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(1131), }, - [572] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(266), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [560] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(80), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(572), - [sym_block_comment] = STATE(572), - [sym_preproc_line] = STATE(572), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(560), + [sym_block_comment] = STATE(560), + [sym_preproc_line] = STATE(560), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -107730,8 +103320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -107741,8 +103331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -107752,7 +103342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -107760,225 +103350,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [573] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(319), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(573), - [sym_block_comment] = STATE(573), - [sym_preproc_line] = STATE(573), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [574] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(112), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [561] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(74), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(574), - [sym_block_comment] = STATE(574), - [sym_preproc_line] = STATE(574), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(561), + [sym_block_comment] = STATE(561), + [sym_preproc_line] = STATE(561), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -107986,8 +103448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -107997,8 +103459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -108008,7 +103470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -108016,137 +103478,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [575] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(24), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(575), - [sym_block_comment] = STATE(575), - [sym_preproc_line] = STATE(575), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - }, - [576] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(73), + [562] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(257), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -108177,213 +103511,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(576), - [sym_block_comment] = STATE(576), - [sym_preproc_line] = STATE(576), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(562), + [sym_block_comment] = STATE(562), + [sym_preproc_line] = STATE(562), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [577] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(43), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(577), - [sym_block_comment] = STATE(577), - [sym_preproc_line] = STATE(577), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108392,104 +103598,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(217), }, - [578] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(238), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [563] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(259), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(578), - [sym_block_comment] = STATE(578), - [sym_preproc_line] = STATE(578), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(563), + [sym_block_comment] = STATE(563), + [sym_preproc_line] = STATE(563), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -108498,8 +103704,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -108509,8 +103715,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -108520,7 +103726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -108528,225 +103734,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [579] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(77), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(579), - [sym_block_comment] = STATE(579), - [sym_preproc_line] = STATE(579), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [580] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(196), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [564] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(81), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(580), - [sym_block_comment] = STATE(580), - [sym_preproc_line] = STATE(580), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(564), + [sym_block_comment] = STATE(564), + [sym_preproc_line] = STATE(564), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -108754,8 +103832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -108765,8 +103843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -108776,7 +103854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -108784,97 +103862,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [581] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(84), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [565] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(75), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(581), - [sym_block_comment] = STATE(581), - [sym_preproc_line] = STATE(581), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(565), + [sym_block_comment] = STATE(565), + [sym_preproc_line] = STATE(565), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -108882,8 +103960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -108893,8 +103971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -108904,7 +103982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -108912,137 +103990,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [582] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(193), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(582), - [sym_block_comment] = STATE(582), - [sym_preproc_line] = STATE(582), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [583] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(304), + [566] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(314), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -109073,85 +104023,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(583), - [sym_block_comment] = STATE(583), - [sym_preproc_line] = STATE(583), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(566), + [sym_block_comment] = STATE(566), + [sym_preproc_line] = STATE(566), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109160,126 +104110,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [584] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(584), - [sym_block_comment] = STATE(584), - [sym_preproc_line] = STATE(584), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [567] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(294), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(567), + [sym_block_comment] = STATE(567), + [sym_preproc_line] = STATE(567), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109288,105 +104238,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, - [585] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(252), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [568] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(293), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(568), + [sym_block_comment] = STATE(568), + [sym_preproc_line] = STATE(568), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [569] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(84), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(585), - [sym_block_comment] = STATE(585), - [sym_preproc_line] = STATE(585), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(569), + [sym_block_comment] = STATE(569), + [sym_preproc_line] = STATE(569), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(523), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -109394,8 +104472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -109405,8 +104483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -109416,7 +104494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(541), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -109424,9 +104502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [586] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(255), + [570] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(315), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -109457,85 +104535,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(586), - [sym_block_comment] = STATE(586), - [sym_preproc_line] = STATE(586), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(570), + [sym_block_comment] = STATE(570), + [sym_preproc_line] = STATE(570), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109544,126 +104622,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [587] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(292), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(587), - [sym_block_comment] = STATE(587), - [sym_preproc_line] = STATE(587), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [571] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(202), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(571), + [sym_block_comment] = STATE(571), + [sym_preproc_line] = STATE(571), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109672,17 +104750,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, - [588] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(290), + [572] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(54), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(572), + [sym_block_comment] = STATE(572), + [sym_preproc_line] = STATE(572), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(477), + }, + [573] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(316), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -109713,85 +104919,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(588), - [sym_block_comment] = STATE(588), - [sym_preproc_line] = STATE(588), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(573), + [sym_block_comment] = STATE(573), + [sym_preproc_line] = STATE(573), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109800,17 +105006,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [589] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(236), + [574] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(291), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -109841,85 +105047,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_preproc_line] = STATE(589), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(574), + [sym_block_comment] = STATE(574), + [sym_preproc_line] = STATE(574), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109928,104 +105134,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [590] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [575] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(148), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(590), - [sym_block_comment] = STATE(590), - [sym_preproc_line] = STATE(590), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(575), + [sym_block_comment] = STATE(575), + [sym_preproc_line] = STATE(575), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -110034,8 +105240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -110045,8 +105251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -110056,7 +105262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -110064,9 +105270,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [591] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(319), + [576] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(66), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(576), + [sym_block_comment] = STATE(576), + [sym_preproc_line] = STATE(576), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(477), + }, + [577] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(4), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -110097,85 +105431,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(591), - [sym_block_comment] = STATE(591), - [sym_preproc_line] = STATE(591), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(577), + [sym_block_comment] = STATE(577), + [sym_preproc_line] = STATE(577), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110184,93 +105518,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [592] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(59), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(592), - [sym_block_comment] = STATE(592), - [sym_preproc_line] = STATE(592), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [578] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(63), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(578), + [sym_block_comment] = STATE(578), + [sym_preproc_line] = STATE(578), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -110280,8 +105614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -110301,8 +105635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -110320,118 +105654,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [593] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(25), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(593), - [sym_block_comment] = STATE(593), - [sym_preproc_line] = STATE(593), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [579] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(3), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(579), + [sym_block_comment] = STATE(579), + [sym_preproc_line] = STATE(579), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110440,126 +105774,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(217), }, - [594] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(20), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(594), - [sym_block_comment] = STATE(594), - [sym_preproc_line] = STATE(594), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [580] = { + [sym_function_or_value_defn] = STATE(551), + [sym__expression] = STATE(77), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(580), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(580), + [sym_block_comment] = STATE(580), + [sym_preproc_line] = STATE(580), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(523), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(527), + [anon_sym_return_BANG] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_yield_BANG] = ACTIONS(529), + [anon_sym_lazy] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(523), + [anon_sym_upcast] = ACTIONS(523), + [anon_sym_downcast] = ACTIONS(523), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(531), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(535), + [anon_sym_use_BANG] = ACTIONS(537), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110568,93 +105902,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), + [sym_int] = ACTIONS(541), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), + [anon_sym_POUNDif] = ACTIONS(387), }, - [595] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(595), - [sym_block_comment] = STATE(595), - [sym_preproc_line] = STATE(595), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [581] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(19), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(581), + [sym_block_comment] = STATE(581), + [sym_preproc_line] = STATE(581), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [582] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(6), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(582), + [sym_block_comment] = STATE(582), + [sym_preproc_line] = STATE(582), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [583] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(60), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(583), + [sym_block_comment] = STATE(583), + [sym_preproc_line] = STATE(583), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -110664,8 +106254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -110685,8 +106275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -110704,118 +106294,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [596] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(224), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(596), - [sym_block_comment] = STATE(596), - [sym_preproc_line] = STATE(596), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [584] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(64), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(584), + [sym_block_comment] = STATE(584), + [sym_preproc_line] = STATE(584), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110824,93 +106414,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(477), }, - [597] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(62), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(597), - [sym_block_comment] = STATE(597), - [sym_preproc_line] = STATE(597), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [585] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(58), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(585), + [sym_block_comment] = STATE(585), + [sym_preproc_line] = STATE(585), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -110920,8 +106510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -110941,8 +106531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -110960,118 +106550,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [598] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(269), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(598), - [sym_block_comment] = STATE(598), - [sym_preproc_line] = STATE(598), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [586] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(103), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(586), + [sym_block_comment] = STATE(586), + [sym_preproc_line] = STATE(586), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111080,126 +106670,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(941), }, - [599] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(241), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(599), - [sym_block_comment] = STATE(599), - [sym_preproc_line] = STATE(599), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [587] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(21), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(587), + [sym_block_comment] = STATE(587), + [sym_preproc_line] = STATE(587), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111208,126 +106798,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(111), }, - [600] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(60), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(600), - [sym_block_comment] = STATE(600), - [sym_preproc_line] = STATE(600), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [588] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(105), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(588), + [sym_block_comment] = STATE(588), + [sym_preproc_line] = STATE(588), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111336,104 +106926,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(941), }, - [601] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(206), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [589] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(119), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(589), + [sym_block_comment] = STATE(589), + [sym_preproc_line] = STATE(589), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [590] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(155), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(590), + [sym_block_comment] = STATE(590), + [sym_preproc_line] = STATE(590), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + }, + [591] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(106), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(591), + [sym_block_comment] = STATE(591), + [sym_preproc_line] = STATE(591), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [592] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(130), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(592), + [sym_block_comment] = STATE(592), + [sym_preproc_line] = STATE(592), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [593] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(275), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(601), - [sym_block_comment] = STATE(601), - [sym_preproc_line] = STATE(601), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(593), + [sym_block_comment] = STATE(593), + [sym_preproc_line] = STATE(593), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -111442,8 +107544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -111453,8 +107555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -111464,7 +107566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -111472,118 +107574,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [602] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(131), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(602), - [sym_block_comment] = STATE(602), - [sym_preproc_line] = STATE(602), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [594] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(107), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(594), + [sym_block_comment] = STATE(594), + [sym_preproc_line] = STATE(594), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111592,17 +107694,529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [603] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(316), + [595] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(201), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(595), + [sym_block_comment] = STATE(595), + [sym_preproc_line] = STATE(595), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [596] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(43), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(596), + [sym_block_comment] = STATE(596), + [sym_preproc_line] = STATE(596), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(477), + }, + [597] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(171), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(597), + [sym_block_comment] = STATE(597), + [sym_preproc_line] = STATE(597), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [598] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(15), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(598), + [sym_block_comment] = STATE(598), + [sym_preproc_line] = STATE(598), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(269), + [sym_xint] = ACTIONS(109), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(111), + }, + [599] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(2), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -111633,85 +108247,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(603), - [sym_block_comment] = STATE(603), - [sym_preproc_line] = STATE(603), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(599), + [sym_block_comment] = STATE(599), + [sym_preproc_line] = STATE(599), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111720,126 +108334,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [604] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(276), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(604), - [sym_block_comment] = STATE(604), - [sym_preproc_line] = STATE(604), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [600] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(198), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(600), + [sym_block_comment] = STATE(600), + [sym_preproc_line] = STATE(600), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111848,17 +108462,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(941), }, - [605] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(278), + [601] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(225), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -111889,85 +108503,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(605), - [sym_block_comment] = STATE(605), - [sym_preproc_line] = STATE(605), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(601), + [sym_block_comment] = STATE(601), + [sym_preproc_line] = STATE(601), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111976,17 +108590,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [606] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(311), + [602] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(172), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(602), + [sym_block_comment] = STATE(602), + [sym_preproc_line] = STATE(602), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [603] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(295), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -112017,85 +108759,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(606), - [sym_block_comment] = STATE(606), - [sym_preproc_line] = STATE(606), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(603), + [sym_block_comment] = STATE(603), + [sym_preproc_line] = STATE(603), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112104,17 +108846,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [607] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(284), + [604] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(298), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -112145,213 +108887,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(607), - [sym_block_comment] = STATE(607), - [sym_preproc_line] = STATE(607), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(604), + [sym_block_comment] = STATE(604), + [sym_preproc_line] = STATE(604), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [608] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(61), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(608), - [sym_block_comment] = STATE(608), - [sym_preproc_line] = STATE(608), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112360,93 +108974,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(217), }, - [609] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(65), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(609), - [sym_block_comment] = STATE(609), - [sym_preproc_line] = STATE(609), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [605] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(41), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(605), + [sym_block_comment] = STATE(605), + [sym_preproc_line] = STATE(605), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(391), [anon_sym_return] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(405), [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1993), [anon_sym_LBRACE_PIPE] = ACTIONS(411), [anon_sym_new] = ACTIONS(413), [anon_sym_return_BANG] = ACTIONS(415), @@ -112456,8 +109070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(395), [anon_sym_upcast] = ACTIONS(395), [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), [anon_sym_for] = ACTIONS(423), [anon_sym_while] = ACTIONS(425), [anon_sym_if] = ACTIONS(427), @@ -112477,8 +109091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -112496,481 +109110,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(477), }, - [610] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(164), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(610), - [sym_block_comment] = STATE(610), - [sym_preproc_line] = STATE(610), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - }, - [611] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(234), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(611), - [sym_block_comment] = STATE(611), - [sym_preproc_line] = STATE(611), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [612] = { - [sym_function_or_value_defn] = STATE(612), - [sym__expression] = STATE(151), - [sym_tuple_expression] = STATE(1777), - [sym_brace_expression] = STATE(1777), - [sym_anon_record_expression] = STATE(1777), - [sym_prefixed_expression] = STATE(1777), - [sym_literal_expression] = STATE(1777), - [sym_typecast_expression] = STATE(1777), - [sym_for_expression] = STATE(1777), - [sym_while_expression] = STATE(1777), - [sym__if_then_else_expression] = STATE(1772), - [sym__if_then_expression] = STATE(1771), - [sym_if_expression] = STATE(1777), - [sym_fun_expression] = STATE(1777), - [sym_try_expression] = STATE(1777), - [sym_match_expression] = STATE(1777), - [sym_function_expression] = STATE(1777), - [sym_object_instantiation_expression] = STATE(1777), - [sym_mutate_expression] = STATE(1777), - [sym_index_expression] = STATE(1777), - [sym_dot_expression] = STATE(1777), - [sym_typed_expression] = STATE(1777), - [sym_declaration_expression] = STATE(1777), - [sym_do_expression] = STATE(1777), - [sym_list_expression] = STATE(1777), - [sym_array_expression] = STATE(1777), - [sym_begin_end_expression] = STATE(1777), - [sym_paren_expression] = STATE(1777), - [sym_application_expression] = STATE(1777), - [sym_infix_expression] = STATE(1777), - [sym_ce_expression] = STATE(1777), - [sym_sequential_expression] = STATE(1777), - [sym_char] = STATE(1622), - [sym_format_string] = STATE(1573), - [sym__string_literal] = STATE(1573), - [sym_string] = STATE(1622), - [sym_verbatim_string] = STATE(1622), - [sym_bytechar] = STATE(1622), - [sym_bytearray] = STATE(1622), - [sym_verbatim_bytearray] = STATE(1622), - [sym_format_triple_quoted_string] = STATE(1617), - [sym_triple_quoted_string] = STATE(1622), - [sym_const] = STATE(1777), - [sym_long_identifier_or_op] = STATE(1777), - [sym_long_identifier] = STATE(1638), - [sym__identifier_or_op] = STATE(1768), - [sym_prefix_op] = STATE(462), - [sym_sbyte] = STATE(1622), - [sym_byte] = STATE(1622), - [sym_int16] = STATE(1622), - [sym_uint16] = STATE(1622), - [sym_int32] = STATE(1622), - [sym_uint32] = STATE(1622), - [sym_nativeint] = STATE(1622), - [sym_unativeint] = STATE(1622), - [sym_int64] = STATE(1622), - [sym_uint64] = STATE(1622), - [sym_ieee32] = STATE(1622), - [sym_ieee64] = STATE(1622), - [sym_bignum] = STATE(1622), - [sym_decimal] = STATE(1622), - [sym_float] = STATE(4325), - [sym_xml_doc] = STATE(612), - [sym_block_comment] = STATE(612), - [sym_preproc_line] = STATE(612), - [sym_preproc_if_in_expression] = STATE(1777), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(915), - [anon_sym_return] = ACTIONS(919), - [anon_sym_do] = ACTIONS(921), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_LBRACK_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACE_PIPE] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_return_BANG] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_yield_BANG] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(919), - [anon_sym_upcast] = ACTIONS(919), - [anon_sym_downcast] = ACTIONS(919), - [anon_sym_LT_AT] = ACTIONS(1883), - [anon_sym_LT_AT_AT] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(947), - [anon_sym_while] = ACTIONS(949), - [anon_sym_if] = ACTIONS(951), - [anon_sym_fun] = ACTIONS(953), - [anon_sym_try] = ACTIONS(955), - [anon_sym_match] = ACTIONS(957), - [anon_sym_match_BANG] = ACTIONS(959), - [anon_sym_function] = ACTIONS(961), - [anon_sym_use] = ACTIONS(965), - [anon_sym_use_BANG] = ACTIONS(967), - [anon_sym_do_BANG] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_AT_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), - [sym_bool] = ACTIONS(987), - [sym_unit] = ACTIONS(1895), - [aux_sym__identifier_or_op_token1] = ACTIONS(1897), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(991), - [sym_xint] = ACTIONS(993), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(995), - }, - [613] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(95), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [606] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(205), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(613), - [sym_block_comment] = STATE(613), - [sym_preproc_line] = STATE(613), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(606), + [sym_block_comment] = STATE(606), + [sym_preproc_line] = STATE(606), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -112978,8 +109208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -112989,8 +109219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -113000,7 +109230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -113008,9 +109238,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [614] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(317), + [607] = { + [sym_function_or_value_defn] = STATE(471), + [sym__expression] = STATE(176), + [sym_tuple_expression] = STATE(2048), + [sym_brace_expression] = STATE(2048), + [sym_anon_record_expression] = STATE(2048), + [sym_prefixed_expression] = STATE(2048), + [sym_literal_expression] = STATE(2048), + [sym_typecast_expression] = STATE(2048), + [sym_for_expression] = STATE(2048), + [sym_while_expression] = STATE(2048), + [sym__if_then_else_expression] = STATE(2021), + [sym__if_then_expression] = STATE(2050), + [sym_if_expression] = STATE(2048), + [sym_fun_expression] = STATE(2048), + [sym_try_expression] = STATE(2048), + [sym_match_expression] = STATE(2048), + [sym_function_expression] = STATE(2048), + [sym_object_instantiation_expression] = STATE(2048), + [sym_mutate_expression] = STATE(2048), + [sym_index_expression] = STATE(2048), + [sym_dot_expression] = STATE(2048), + [sym_typed_expression] = STATE(2048), + [sym_declaration_expression] = STATE(2048), + [sym_do_expression] = STATE(2048), + [sym_list_expression] = STATE(2048), + [sym_array_expression] = STATE(2048), + [sym_begin_end_expression] = STATE(2048), + [sym_paren_expression] = STATE(2048), + [sym_application_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_ce_expression] = STATE(2048), + [sym_sequential_expression] = STATE(2048), + [sym_char] = STATE(2055), + [sym_format_string] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_string] = STATE(2055), + [sym_verbatim_string] = STATE(2055), + [sym_bytechar] = STATE(2055), + [sym_bytearray] = STATE(2055), + [sym_verbatim_bytearray] = STATE(2055), + [sym_format_triple_quoted_string] = STATE(2049), + [sym_triple_quoted_string] = STATE(2055), + [sym_const] = STATE(2048), + [sym_long_identifier_or_op] = STATE(2048), + [sym_long_identifier] = STATE(2051), + [sym__identifier_or_op] = STATE(2052), + [sym_prefix_op] = STATE(595), + [sym_sbyte] = STATE(2055), + [sym_byte] = STATE(2055), + [sym_int16] = STATE(2055), + [sym_uint16] = STATE(2055), + [sym_int32] = STATE(2055), + [sym_uint32] = STATE(2055), + [sym_nativeint] = STATE(2055), + [sym_unativeint] = STATE(2055), + [sym_int64] = STATE(2055), + [sym_uint64] = STATE(2055), + [sym_ieee32] = STATE(2055), + [sym_ieee64] = STATE(2055), + [sym_bignum] = STATE(2055), + [sym_decimal] = STATE(2055), + [sym_float] = STATE(1544), + [sym_xml_doc] = STATE(607), + [sym_block_comment] = STATE(607), + [sym_preproc_line] = STATE(607), + [sym_preproc_if_in_expression] = STATE(2048), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LBRACK_PIPE] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_LBRACE_PIPE] = ACTIONS(1065), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_return_BANG] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_yield_BANG] = ACTIONS(1069), + [anon_sym_lazy] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_upcast] = ACTIONS(1049), + [anon_sym_downcast] = ACTIONS(1049), + [anon_sym_LT_AT] = ACTIONS(2011), + [anon_sym_LT_AT_AT] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(1077), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_match_BANG] = ACTIONS(1089), + [anon_sym_function] = ACTIONS(1091), + [anon_sym_use] = ACTIONS(1101), + [anon_sym_use_BANG] = ACTIONS(1103), + [anon_sym_do_BANG] = ACTIONS(1105), + [anon_sym_begin] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [anon_sym_AT_DQUOTE] = ACTIONS(1117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [sym_bool] = ACTIONS(1123), + [sym_unit] = ACTIONS(2015), + [aux_sym__identifier_or_op_token1] = ACTIONS(2017), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1127), + [sym_xint] = ACTIONS(1129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1131), + }, + [608] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(174), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -113041,85 +109399,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(614), - [sym_block_comment] = STATE(614), - [sym_preproc_line] = STATE(614), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(608), + [sym_block_comment] = STATE(608), + [sym_preproc_line] = STATE(608), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113128,104 +109486,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [615] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(118), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [609] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(132), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(615), - [sym_block_comment] = STATE(615), - [sym_preproc_line] = STATE(615), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(609), + [sym_block_comment] = STATE(609), + [sym_preproc_line] = STATE(609), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -113234,8 +109592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -113245,8 +109603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -113256,7 +109614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -113264,502 +109622,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [616] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(163), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(616), - [sym_block_comment] = STATE(616), - [sym_preproc_line] = STATE(616), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [617] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(289), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(617), - [sym_block_comment] = STATE(617), - [sym_preproc_line] = STATE(617), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [618] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(293), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(618), - [sym_block_comment] = STATE(618), - [sym_preproc_line] = STATE(618), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [619] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(42), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(619), - [sym_block_comment] = STATE(619), - [sym_preproc_line] = STATE(619), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [610] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(273), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(610), + [sym_block_comment] = STATE(610), + [sym_preproc_line] = STATE(610), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113768,87 +109742,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(387), }, - [620] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(29), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(620), - [sym_block_comment] = STATE(620), - [sym_preproc_line] = STATE(620), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [611] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(26), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(611), + [sym_block_comment] = STATE(611), + [sym_preproc_line] = STATE(611), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(13), [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -113904,118 +109878,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [621] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(166), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(621), - [sym_block_comment] = STATE(621), - [sym_preproc_line] = STATE(621), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [612] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(137), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(612), + [sym_block_comment] = STATE(612), + [sym_preproc_line] = STATE(612), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114024,126 +109998,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(387), }, - [622] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(170), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(622), - [sym_block_comment] = STATE(622), - [sym_preproc_line] = STATE(622), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [613] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(122), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(613), + [sym_block_comment] = STATE(613), + [sym_preproc_line] = STATE(613), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114152,126 +110126,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(387), }, - [623] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(182), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(623), - [sym_block_comment] = STATE(623), - [sym_preproc_line] = STATE(623), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [614] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(276), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(614), + [sym_block_comment] = STATE(614), + [sym_preproc_line] = STATE(614), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114280,126 +110254,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(387), }, - [624] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(232), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(624), - [sym_block_comment] = STATE(624), - [sym_preproc_line] = STATE(624), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [615] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(278), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(615), + [sym_block_comment] = STATE(615), + [sym_preproc_line] = STATE(615), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114408,17 +110382,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(387), }, - [625] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(215), + [616] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(204), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -114449,85 +110423,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(625), - [sym_block_comment] = STATE(625), - [sym_preproc_line] = STATE(625), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(616), + [sym_block_comment] = STATE(616), + [sym_preproc_line] = STATE(616), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114536,126 +110510,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [626] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(101), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(626), - [sym_block_comment] = STATE(626), - [sym_preproc_line] = STATE(626), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), + [617] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(279), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(617), + [sym_block_comment] = STATE(617), + [sym_preproc_line] = STATE(617), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114664,254 +110638,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), + [anon_sym_POUNDif] = ACTIONS(387), }, - [627] = { - [sym_function_or_value_defn] = STATE(530), - [sym__expression] = STATE(30), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(550), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(627), - [sym_block_comment] = STATE(627), - [sym_preproc_line] = STATE(627), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [618] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(269), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(618), + [sym_block_comment] = STATE(618), + [sym_preproc_line] = STATE(618), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - }, - [628] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(235), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(628), - [sym_block_comment] = STATE(628), - [sym_preproc_line] = STATE(628), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114920,104 +110766,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(387), }, - [629] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(199), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [619] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(277), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(629), - [sym_block_comment] = STATE(629), - [sym_preproc_line] = STATE(629), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(619), + [sym_block_comment] = STATE(619), + [sym_preproc_line] = STATE(619), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -115026,8 +110872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -115037,8 +110883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -115048,7 +110894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -115056,96 +110902,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [630] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(242), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [620] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(266), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(630), - [sym_block_comment] = STATE(630), - [sym_preproc_line] = STATE(630), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(620), + [sym_block_comment] = STATE(620), + [sym_preproc_line] = STATE(620), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -115154,8 +111000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -115165,8 +111011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -115176,7 +111022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -115184,265 +111030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [631] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(190), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(631), - [sym_block_comment] = STATE(631), - [sym_preproc_line] = STATE(631), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [632] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(205), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(632), - [sym_block_comment] = STATE(632), - [sym_preproc_line] = STATE(632), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [633] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(308), + [621] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(318), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -115473,213 +111063,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(633), - [sym_block_comment] = STATE(633), - [sym_preproc_line] = STATE(633), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(621), + [sym_block_comment] = STATE(621), + [sym_preproc_line] = STATE(621), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [634] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(226), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(634), - [sym_block_comment] = STATE(634), - [sym_preproc_line] = STATE(634), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115688,104 +111150,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(217), }, - [635] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(157), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [622] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(221), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(635), - [sym_block_comment] = STATE(635), - [sym_preproc_line] = STATE(635), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(622), + [sym_block_comment] = STATE(622), + [sym_preproc_line] = STATE(622), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -115794,8 +111256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -115805,8 +111267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -115816,7 +111278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -115824,9 +111286,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [636] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(237), + [623] = { + [sym_function_or_value_defn] = STATE(520), + [sym__expression] = STATE(94), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -115857,85 +111319,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(636), - [sym_block_comment] = STATE(636), - [sym_preproc_line] = STATE(636), + [sym_prefix_op] = STATE(623), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(623), + [sym_block_comment] = STATE(623), + [sym_preproc_line] = STATE(623), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(837), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(841), + [anon_sym_return_BANG] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_yield_BANG] = ACTIONS(843), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(837), + [anon_sym_upcast] = ACTIONS(837), + [anon_sym_downcast] = ACTIONS(837), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(845), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(849), + [anon_sym_use_BANG] = ACTIONS(851), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115944,17 +111406,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(853), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [637] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(309), + [624] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(216), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -115985,85 +111447,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(637), - [sym_block_comment] = STATE(637), - [sym_preproc_line] = STATE(637), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(624), + [sym_block_comment] = STATE(624), + [sym_preproc_line] = STATE(624), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116072,17 +111534,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [638] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(310), + [625] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(175), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(625), + [sym_block_comment] = STATE(625), + [sym_preproc_line] = STATE(625), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [626] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(312), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -116113,85 +111703,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(638), - [sym_block_comment] = STATE(638), - [sym_preproc_line] = STATE(638), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(626), + [sym_block_comment] = STATE(626), + [sym_preproc_line] = STATE(626), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116200,17 +111790,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [639] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(306), + [627] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(320), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -116241,213 +111831,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(639), - [sym_block_comment] = STATE(639), - [sym_preproc_line] = STATE(639), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(627), + [sym_block_comment] = STATE(627), + [sym_preproc_line] = STATE(627), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [640] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(143), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(640), - [sym_block_comment] = STATE(640), - [sym_preproc_line] = STATE(640), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116456,17 +111918,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, - [641] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(310), + [628] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(286), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -116497,85 +111959,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(641), - [sym_block_comment] = STATE(641), - [sym_preproc_line] = STATE(641), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(628), + [sym_block_comment] = STATE(628), + [sym_preproc_line] = STATE(628), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116584,17 +112046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [642] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(309), + [629] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(226), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -116625,341 +112087,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(642), - [sym_block_comment] = STATE(642), - [sym_preproc_line] = STATE(642), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(629), + [sym_block_comment] = STATE(629), + [sym_preproc_line] = STATE(629), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [643] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(268), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(643), - [sym_block_comment] = STATE(643), - [sym_preproc_line] = STATE(643), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), - }, - [644] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(113), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(644), - [sym_block_comment] = STATE(644), - [sym_preproc_line] = STATE(644), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116968,17 +112174,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, - [645] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(175), + [630] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(281), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -117009,341 +112215,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(645), - [sym_block_comment] = STATE(645), - [sym_preproc_line] = STATE(645), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(630), + [sym_block_comment] = STATE(630), + [sym_preproc_line] = STATE(630), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [646] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(227), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(646), - [sym_block_comment] = STATE(646), - [sym_preproc_line] = STATE(646), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [647] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(198), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(647), - [sym_block_comment] = STATE(647), - [sym_preproc_line] = STATE(647), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117352,126 +112302,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, - [648] = { - [sym_function_or_value_defn] = STATE(502), - [sym__expression] = STATE(119), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(498), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(648), - [sym_block_comment] = STATE(648), - [sym_preproc_line] = STATE(648), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(739), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [631] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(39), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(631), + [sym_block_comment] = STATE(631), + [sym_preproc_line] = STATE(631), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(743), - [anon_sym_return_BANG] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(739), - [anon_sym_yield_BANG] = ACTIONS(745), - [anon_sym_lazy] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(739), - [anon_sym_upcast] = ACTIONS(739), - [anon_sym_downcast] = ACTIONS(739), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(747), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(751), - [anon_sym_use_BANG] = ACTIONS(753), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117480,232 +112430,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, - [649] = { - [sym_function_or_value_defn] = STATE(651), + [632] = { + [sym_function_or_value_defn] = STATE(483), [sym__expression] = STATE(263), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(649), - [sym_block_comment] = STATE(649), - [sym_preproc_line] = STATE(649), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [650] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(243), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(650), - [sym_block_comment] = STATE(650), - [sym_preproc_line] = STATE(650), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(632), + [sym_block_comment] = STATE(632), + [sym_preproc_line] = STATE(632), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -117714,8 +112536,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -117725,8 +112547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -117736,7 +112558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -117744,374 +112566,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [651] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(18), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(651), - [sym_block_comment] = STATE(651), - [sym_preproc_line] = STATE(651), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [652] = { - [sym_function_or_value_defn] = STATE(652), - [sym__expression] = STATE(102), - [sym_tuple_expression] = STATE(1633), - [sym_brace_expression] = STATE(1633), - [sym_anon_record_expression] = STATE(1633), - [sym_prefixed_expression] = STATE(1633), - [sym_literal_expression] = STATE(1633), - [sym_typecast_expression] = STATE(1633), - [sym_for_expression] = STATE(1633), - [sym_while_expression] = STATE(1633), - [sym__if_then_else_expression] = STATE(1635), - [sym__if_then_expression] = STATE(1636), - [sym_if_expression] = STATE(1633), - [sym_fun_expression] = STATE(1633), - [sym_try_expression] = STATE(1633), - [sym_match_expression] = STATE(1633), - [sym_function_expression] = STATE(1633), - [sym_object_instantiation_expression] = STATE(1633), - [sym_mutate_expression] = STATE(1633), - [sym_index_expression] = STATE(1633), - [sym_dot_expression] = STATE(1633), - [sym_typed_expression] = STATE(1633), - [sym_declaration_expression] = STATE(1633), - [sym_do_expression] = STATE(1633), - [sym_list_expression] = STATE(1633), - [sym_array_expression] = STATE(1633), - [sym_begin_end_expression] = STATE(1633), - [sym_paren_expression] = STATE(1633), - [sym_application_expression] = STATE(1633), - [sym_infix_expression] = STATE(1633), - [sym_ce_expression] = STATE(1633), - [sym_sequential_expression] = STATE(1633), - [sym_char] = STATE(1709), - [sym_format_string] = STATE(1776), - [sym__string_literal] = STATE(1776), - [sym_string] = STATE(1709), - [sym_verbatim_string] = STATE(1709), - [sym_bytechar] = STATE(1709), - [sym_bytearray] = STATE(1709), - [sym_verbatim_bytearray] = STATE(1709), - [sym_format_triple_quoted_string] = STATE(1717), - [sym_triple_quoted_string] = STATE(1709), - [sym_const] = STATE(1633), - [sym_long_identifier_or_op] = STATE(1633), - [sym_long_identifier] = STATE(1637), - [sym__identifier_or_op] = STATE(1640), - [sym_prefix_op] = STATE(549), - [sym_sbyte] = STATE(1709), - [sym_byte] = STATE(1709), - [sym_int16] = STATE(1709), - [sym_uint16] = STATE(1709), - [sym_int32] = STATE(1709), - [sym_uint32] = STATE(1709), - [sym_nativeint] = STATE(1709), - [sym_unativeint] = STATE(1709), - [sym_int64] = STATE(1709), - [sym_uint64] = STATE(1709), - [sym_ieee32] = STATE(1709), - [sym_ieee64] = STATE(1709), - [sym_bignum] = STATE(1709), - [sym_decimal] = STATE(1709), - [sym_float] = STATE(4414), - [sym_xml_doc] = STATE(652), - [sym_block_comment] = STATE(652), - [sym_preproc_line] = STATE(652), - [sym_preproc_if_in_expression] = STATE(1633), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(787), - [anon_sym_return] = ACTIONS(791), - [anon_sym_do] = ACTIONS(793), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(801), - [anon_sym_LBRACK_PIPE] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_LBRACE_PIPE] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_return_BANG] = ACTIONS(811), - [anon_sym_yield] = ACTIONS(791), - [anon_sym_yield_BANG] = ACTIONS(811), - [anon_sym_lazy] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_upcast] = ACTIONS(791), - [anon_sym_downcast] = ACTIONS(791), - [anon_sym_LT_AT] = ACTIONS(2005), - [anon_sym_LT_AT_AT] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(819), - [anon_sym_while] = ACTIONS(821), - [anon_sym_if] = ACTIONS(823), - [anon_sym_fun] = ACTIONS(825), - [anon_sym_try] = ACTIONS(827), - [anon_sym_match] = ACTIONS(829), - [anon_sym_match_BANG] = ACTIONS(831), - [anon_sym_function] = ACTIONS(833), - [anon_sym_use] = ACTIONS(843), - [anon_sym_use_BANG] = ACTIONS(845), - [anon_sym_do_BANG] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_AT_DQUOTE] = ACTIONS(859), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [sym_bool] = ACTIONS(865), - [sym_unit] = ACTIONS(2009), - [aux_sym__identifier_or_op_token1] = ACTIONS(2011), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(869), - [sym_xint] = ACTIONS(871), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(873), - }, - [653] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(109), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(653), - [sym_block_comment] = STATE(653), - [sym_preproc_line] = STATE(653), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [633] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(262), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(633), + [sym_block_comment] = STATE(633), + [sym_preproc_line] = STATE(633), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118120,126 +112686,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [654] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(72), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(654), - [sym_block_comment] = STATE(654), - [sym_preproc_line] = STATE(654), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [634] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(261), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(634), + [sym_block_comment] = STATE(634), + [sym_preproc_line] = STATE(634), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118248,126 +112814,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [655] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(108), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(655), - [sym_block_comment] = STATE(655), - [sym_preproc_line] = STATE(655), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [635] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(260), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(635), + [sym_block_comment] = STATE(635), + [sym_preproc_line] = STATE(635), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118376,126 +112942,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [656] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(125), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(656), - [sym_block_comment] = STATE(656), - [sym_preproc_line] = STATE(656), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [636] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(258), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(636), + [sym_block_comment] = STATE(636), + [sym_preproc_line] = STATE(636), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118504,105 +113070,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [657] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(155), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [637] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(256), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(657), - [sym_block_comment] = STATE(657), - [sym_preproc_line] = STATE(657), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(637), + [sym_block_comment] = STATE(637), + [sym_preproc_line] = STATE(637), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -118610,8 +113176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -118621,8 +113187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -118632,7 +113198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -118640,502 +113206,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [658] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(658), - [sym_block_comment] = STATE(658), - [sym_preproc_line] = STATE(658), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [aux_sym__identifier_or_op_token1] = ACTIONS(99), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(111), - }, - [659] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(171), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(659), - [sym_block_comment] = STATE(659), - [sym_preproc_line] = STATE(659), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), - }, - [660] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(45), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(660), - [sym_block_comment] = STATE(660), - [sym_preproc_line] = STATE(660), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), - }, - [661] = { - [sym_function_or_value_defn] = STATE(661), - [sym__expression] = STATE(139), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(640), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(661), - [sym_block_comment] = STATE(661), - [sym_preproc_line] = STATE(661), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(657), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [638] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(255), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(638), + [sym_block_comment] = STATE(638), + [sym_preproc_line] = STATE(638), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_return_BANG] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_yield_BANG] = ACTIONS(675), - [anon_sym_lazy] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_upcast] = ACTIONS(657), - [anon_sym_downcast] = ACTIONS(657), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(707), - [anon_sym_use_BANG] = ACTIONS(709), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119144,126 +113326,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [662] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(167), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(662), - [sym_block_comment] = STATE(662), - [sym_preproc_line] = STATE(662), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [639] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(254), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(639), + [sym_block_comment] = STATE(639), + [sym_preproc_line] = STATE(639), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119272,104 +113454,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(387), }, - [663] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(213), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [640] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(252), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(663), - [sym_block_comment] = STATE(663), - [sym_preproc_line] = STATE(663), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(640), + [sym_block_comment] = STATE(640), + [sym_preproc_line] = STATE(640), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -119378,8 +113560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -119389,8 +113571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -119400,7 +113582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -119408,9 +113590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [664] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(303), + [641] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(311), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -119441,341 +113623,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(664), - [sym_block_comment] = STATE(664), - [sym_preproc_line] = STATE(664), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(641), + [sym_block_comment] = STATE(641), + [sym_preproc_line] = STATE(641), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [665] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(262), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(665), - [sym_block_comment] = STATE(665), - [sym_preproc_line] = STATE(665), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [666] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(233), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(666), - [sym_block_comment] = STATE(666), - [sym_preproc_line] = STATE(666), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119784,17 +113710,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(217), }, - [667] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(291), + [642] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(303), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -119825,85 +113751,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(667), - [sym_block_comment] = STATE(667), - [sym_preproc_line] = STATE(667), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(642), + [sym_block_comment] = STATE(642), + [sym_preproc_line] = STATE(642), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119912,104 +113838,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [668] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(211), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [643] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(251), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(668), - [sym_block_comment] = STATE(668), - [sym_preproc_line] = STATE(668), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(643), + [sym_block_comment] = STATE(643), + [sym_preproc_line] = STATE(643), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -120018,8 +113944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -120029,8 +113955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -120040,7 +113966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -120048,246 +113974,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [669] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(302), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(669), - [sym_block_comment] = STATE(669), - [sym_preproc_line] = STATE(669), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [670] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(287), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(670), - [sym_block_comment] = STATE(670), - [sym_preproc_line] = STATE(670), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [644] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(250), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(644), + [sym_block_comment] = STATE(644), + [sym_preproc_line] = STATE(644), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120296,126 +114094,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, - [671] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(288), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(671), - [sym_block_comment] = STATE(671), - [sym_preproc_line] = STATE(671), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [645] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(219), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(645), + [sym_block_comment] = STATE(645), + [sym_preproc_line] = STATE(645), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120424,126 +114222,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [672] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(192), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(672), - [sym_block_comment] = STATE(672), - [sym_preproc_line] = STATE(672), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [646] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(129), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(646), + [sym_block_comment] = STATE(646), + [sym_preproc_line] = STATE(646), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120552,17 +114350,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(815), }, - [673] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(161), + [647] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(313), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -120593,85 +114391,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(673), - [sym_block_comment] = STATE(673), - [sym_preproc_line] = STATE(673), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(647), + [sym_block_comment] = STATE(647), + [sym_preproc_line] = STATE(647), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120680,114 +114478,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [674] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(85), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [648] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(38), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(674), - [sym_block_comment] = STATE(674), - [sym_preproc_line] = STATE(674), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(648), + [sym_block_comment] = STATE(648), + [sym_preproc_line] = STATE(648), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(305), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), [anon_sym_try] = ACTIONS(341), [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -120797,8 +114595,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -120808,7 +114606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -120816,225 +114614,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [675] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(162), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(675), - [sym_block_comment] = STATE(675), - [sym_preproc_line] = STATE(675), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [676] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(132), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [649] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(34), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(676), - [sym_block_comment] = STATE(676), - [sym_preproc_line] = STATE(676), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(649), + [sym_block_comment] = STATE(649), + [sym_preproc_line] = STATE(649), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(305), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -121042,8 +114712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -121053,8 +114723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -121064,7 +114734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -121072,96 +114742,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [677] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(208), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [650] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(215), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(677), - [sym_block_comment] = STATE(677), - [sym_preproc_line] = STATE(677), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(650), + [sym_block_comment] = STATE(650), + [sym_preproc_line] = STATE(650), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -121170,8 +114840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -121181,8 +114851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -121192,7 +114862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -121200,225 +114870,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [678] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(156), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(678), - [sym_block_comment] = STATE(678), - [sym_preproc_line] = STATE(678), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [679] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(91), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [651] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(190), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_preproc_line] = STATE(679), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(651), + [sym_block_comment] = STATE(651), + [sym_preproc_line] = STATE(651), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -121426,8 +114968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -121437,8 +114979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -121448,7 +114990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -121456,118 +114998,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [680] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_preproc_line] = STATE(680), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [652] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(274), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(652), + [sym_block_comment] = STATE(652), + [sym_preproc_line] = STATE(652), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121576,126 +115118,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(387), }, - [681] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(256), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(681), - [sym_block_comment] = STATE(681), - [sym_preproc_line] = STATE(681), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [653] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(116), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(653), + [sym_block_comment] = STATE(653), + [sym_preproc_line] = STATE(653), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121704,126 +115246,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(815), }, - [682] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(51), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(682), - [sym_block_comment] = STATE(682), - [sym_preproc_line] = STATE(682), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [654] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(27), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(654), + [sym_block_comment] = STATE(654), + [sym_preproc_line] = STATE(654), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121832,126 +115374,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(387), }, - [683] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(277), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(683), - [sym_block_comment] = STATE(683), - [sym_preproc_line] = STATE(683), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [655] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(57), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(655), + [sym_block_comment] = STATE(655), + [sym_preproc_line] = STATE(655), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121960,126 +115502,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(631), }, - [684] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(67), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(684), - [sym_block_comment] = STATE(684), - [sym_preproc_line] = STATE(684), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [656] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(248), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(656), + [sym_block_comment] = STATE(656), + [sym_preproc_line] = STATE(656), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122088,126 +115630,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(387), }, - [685] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(57), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(685), - [sym_block_comment] = STATE(685), - [sym_preproc_line] = STATE(685), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [657] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(304), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(657), + [sym_block_comment] = STATE(657), + [sym_preproc_line] = STATE(657), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122216,126 +115758,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(217), }, - [686] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(69), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_preproc_line] = STATE(686), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [658] = { + [sym_function_or_value_defn] = STATE(586), + [sym__expression] = STATE(96), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(658), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(658), + [sym_block_comment] = STATE(658), + [sym_preproc_line] = STATE(658), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(859), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(877), + [anon_sym_return_BANG] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_yield_BANG] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(859), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_upcast] = ACTIONS(859), + [anon_sym_downcast] = ACTIONS(859), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(887), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(911), + [anon_sym_use_BANG] = ACTIONS(913), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122344,126 +115886,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(937), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(941), }, - [687] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(58), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(687), - [sym_block_comment] = STATE(687), - [sym_preproc_line] = STATE(687), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [659] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(56), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(659), + [sym_block_comment] = STATE(659), + [sym_preproc_line] = STATE(659), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122472,126 +116014,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(631), }, - [688] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(201), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(688), - [sym_block_comment] = STATE(688), - [sym_preproc_line] = STATE(688), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [660] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(211), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(660), + [sym_block_comment] = STATE(660), + [sym_preproc_line] = STATE(660), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122600,126 +116142,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(217), }, - [689] = { - [sym_function_or_value_defn] = STATE(682), - [sym__expression] = STATE(70), - [sym_tuple_expression] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_anon_record_expression] = STATE(1557), - [sym_prefixed_expression] = STATE(1557), - [sym_literal_expression] = STATE(1557), - [sym_typecast_expression] = STATE(1557), - [sym_for_expression] = STATE(1557), - [sym_while_expression] = STATE(1557), - [sym__if_then_else_expression] = STATE(1555), - [sym__if_then_expression] = STATE(1554), - [sym_if_expression] = STATE(1557), - [sym_fun_expression] = STATE(1557), - [sym_try_expression] = STATE(1557), - [sym_match_expression] = STATE(1557), - [sym_function_expression] = STATE(1557), - [sym_object_instantiation_expression] = STATE(1557), - [sym_mutate_expression] = STATE(1557), - [sym_index_expression] = STATE(1557), - [sym_dot_expression] = STATE(1557), - [sym_typed_expression] = STATE(1557), - [sym_declaration_expression] = STATE(1557), - [sym_do_expression] = STATE(1557), - [sym_list_expression] = STATE(1557), - [sym_array_expression] = STATE(1557), - [sym_begin_end_expression] = STATE(1557), - [sym_paren_expression] = STATE(1557), - [sym_application_expression] = STATE(1557), - [sym_infix_expression] = STATE(1557), - [sym_ce_expression] = STATE(1557), - [sym_sequential_expression] = STATE(1557), - [sym_char] = STATE(1459), - [sym_format_string] = STATE(1390), - [sym__string_literal] = STATE(1390), - [sym_string] = STATE(1459), - [sym_verbatim_string] = STATE(1459), - [sym_bytechar] = STATE(1459), - [sym_bytearray] = STATE(1459), - [sym_verbatim_bytearray] = STATE(1459), - [sym_format_triple_quoted_string] = STATE(1458), - [sym_triple_quoted_string] = STATE(1459), - [sym_const] = STATE(1557), - [sym_long_identifier_or_op] = STATE(1557), - [sym_long_identifier] = STATE(1553), - [sym__identifier_or_op] = STATE(1548), - [sym_prefix_op] = STATE(544), - [sym_sbyte] = STATE(1459), - [sym_byte] = STATE(1459), - [sym_int16] = STATE(1459), - [sym_uint16] = STATE(1459), - [sym_int32] = STATE(1459), - [sym_uint32] = STATE(1459), - [sym_nativeint] = STATE(1459), - [sym_unativeint] = STATE(1459), - [sym_int64] = STATE(1459), - [sym_uint64] = STATE(1459), - [sym_ieee32] = STATE(1459), - [sym_ieee64] = STATE(1459), - [sym_bignum] = STATE(1459), - [sym_decimal] = STATE(1459), - [sym_float] = STATE(4364), - [sym_xml_doc] = STATE(689), - [sym_block_comment] = STATE(689), - [sym_preproc_line] = STATE(689), - [sym_preproc_if_in_expression] = STATE(1557), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(523), - [anon_sym_return] = ACTIONS(527), - [anon_sym_do] = ACTIONS(529), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(533), + [661] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(55), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(661), + [sym_block_comment] = STATE(661), + [sym_preproc_line] = STATE(661), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_LBRACK_PIPE] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LBRACE_PIPE] = ACTIONS(543), - [anon_sym_new] = ACTIONS(545), - [anon_sym_return_BANG] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_yield_BANG] = ACTIONS(547), - [anon_sym_lazy] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(527), - [anon_sym_upcast] = ACTIONS(527), - [anon_sym_downcast] = ACTIONS(527), - [anon_sym_LT_AT] = ACTIONS(1925), - [anon_sym_LT_AT_AT] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(555), - [anon_sym_while] = ACTIONS(557), - [anon_sym_if] = ACTIONS(559), - [anon_sym_fun] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_match] = ACTIONS(565), - [anon_sym_match_BANG] = ACTIONS(567), - [anon_sym_function] = ACTIONS(569), - [anon_sym_use] = ACTIONS(579), - [anon_sym_use_BANG] = ACTIONS(581), - [anon_sym_do_BANG] = ACTIONS(583), - [anon_sym_begin] = ACTIONS(585), - [anon_sym_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym_AT_DQUOTE] = ACTIONS(595), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), - [sym_bool] = ACTIONS(601), - [sym_unit] = ACTIONS(1929), - [aux_sym__identifier_or_op_token1] = ACTIONS(1931), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122728,17 +116270,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(605), - [sym_xint] = ACTIONS(607), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(609), + [anon_sym_POUNDif] = ACTIONS(477), }, - [690] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(178), + [662] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(243), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -122769,85 +116311,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(690), - [sym_block_comment] = STATE(690), - [sym_preproc_line] = STATE(690), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(662), + [sym_block_comment] = STATE(662), + [sym_preproc_line] = STATE(662), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122856,17 +116398,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [691] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(159), + [663] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(69), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(663), + [sym_block_comment] = STATE(663), + [sym_preproc_line] = STATE(663), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + }, + [664] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(302), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -122897,85 +116567,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(691), - [sym_block_comment] = STATE(691), - [sym_preproc_line] = STATE(691), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(664), + [sym_block_comment] = STATE(664), + [sym_preproc_line] = STATE(664), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122984,126 +116654,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [692] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(137), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(692), - [sym_block_comment] = STATE(692), - [sym_preproc_line] = STATE(692), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [665] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(70), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(665), + [sym_block_comment] = STATE(665), + [sym_preproc_line] = STATE(665), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123112,87 +116782,983 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(631), }, - [693] = { - [sym_function_or_value_defn] = STATE(563), - [sym__expression] = STATE(4), - [sym_tuple_expression] = STATE(1088), - [sym_brace_expression] = STATE(1088), - [sym_anon_record_expression] = STATE(1088), - [sym_prefixed_expression] = STATE(1088), - [sym_literal_expression] = STATE(1088), - [sym_typecast_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym__if_then_else_expression] = STATE(1124), - [sym__if_then_expression] = STATE(1123), - [sym_if_expression] = STATE(1088), - [sym_fun_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_function_expression] = STATE(1088), - [sym_object_instantiation_expression] = STATE(1088), - [sym_mutate_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_dot_expression] = STATE(1088), - [sym_typed_expression] = STATE(1088), - [sym_declaration_expression] = STATE(1088), - [sym_do_expression] = STATE(1088), - [sym_list_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_begin_end_expression] = STATE(1088), - [sym_paren_expression] = STATE(1088), - [sym_application_expression] = STATE(1088), - [sym_infix_expression] = STATE(1088), - [sym_ce_expression] = STATE(1088), - [sym_sequential_expression] = STATE(1088), - [sym_char] = STATE(1117), - [sym_format_string] = STATE(1120), - [sym__string_literal] = STATE(1120), - [sym_string] = STATE(1117), - [sym_verbatim_string] = STATE(1117), - [sym_bytechar] = STATE(1117), - [sym_bytearray] = STATE(1117), - [sym_verbatim_bytearray] = STATE(1117), - [sym_format_triple_quoted_string] = STATE(1115), - [sym_triple_quoted_string] = STATE(1117), - [sym_const] = STATE(1088), - [sym_long_identifier_or_op] = STATE(1088), - [sym_long_identifier] = STATE(1113), - [sym__identifier_or_op] = STATE(1103), - [sym_prefix_op] = STATE(693), - [sym_sbyte] = STATE(1117), - [sym_byte] = STATE(1117), - [sym_int16] = STATE(1117), - [sym_uint16] = STATE(1117), - [sym_int32] = STATE(1117), - [sym_uint32] = STATE(1117), - [sym_nativeint] = STATE(1117), - [sym_unativeint] = STATE(1117), - [sym_int64] = STATE(1117), - [sym_uint64] = STATE(1117), - [sym_ieee32] = STATE(1117), - [sym_ieee64] = STATE(1117), - [sym_bignum] = STATE(1117), - [sym_decimal] = STATE(1117), - [sym_float] = STATE(4446), - [sym_xml_doc] = STATE(693), - [sym_block_comment] = STATE(693), - [sym_preproc_line] = STATE(693), - [sym_preproc_if_in_expression] = STATE(1088), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [666] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(209), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(666), + [sym_block_comment] = STATE(666), + [sym_preproc_line] = STATE(666), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [667] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(117), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(667), + [sym_block_comment] = STATE(667), + [sym_preproc_line] = STATE(667), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + }, + [668] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(53), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(668), + [sym_block_comment] = STATE(668), + [sym_preproc_line] = STATE(668), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + }, + [669] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(301), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(669), + [sym_block_comment] = STATE(669), + [sym_preproc_line] = STATE(669), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [670] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(68), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(670), + [sym_block_comment] = STATE(670), + [sym_preproc_line] = STATE(670), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + }, + [671] = { + [sym_function_or_value_defn] = STATE(659), + [sym__expression] = STATE(59), + [sym_tuple_expression] = STATE(1546), + [sym_brace_expression] = STATE(1546), + [sym_anon_record_expression] = STATE(1546), + [sym_prefixed_expression] = STATE(1546), + [sym_literal_expression] = STATE(1546), + [sym_typecast_expression] = STATE(1546), + [sym_for_expression] = STATE(1546), + [sym_while_expression] = STATE(1546), + [sym__if_then_else_expression] = STATE(1400), + [sym__if_then_expression] = STATE(1538), + [sym_if_expression] = STATE(1546), + [sym_fun_expression] = STATE(1546), + [sym_try_expression] = STATE(1546), + [sym_match_expression] = STATE(1546), + [sym_function_expression] = STATE(1546), + [sym_object_instantiation_expression] = STATE(1546), + [sym_mutate_expression] = STATE(1546), + [sym_index_expression] = STATE(1546), + [sym_dot_expression] = STATE(1546), + [sym_typed_expression] = STATE(1546), + [sym_declaration_expression] = STATE(1546), + [sym_do_expression] = STATE(1546), + [sym_list_expression] = STATE(1546), + [sym_array_expression] = STATE(1546), + [sym_begin_end_expression] = STATE(1546), + [sym_paren_expression] = STATE(1546), + [sym_application_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_ce_expression] = STATE(1546), + [sym_sequential_expression] = STATE(1546), + [sym_char] = STATE(1590), + [sym_format_string] = STATE(1444), + [sym__string_literal] = STATE(1444), + [sym_string] = STATE(1590), + [sym_verbatim_string] = STATE(1590), + [sym_bytechar] = STATE(1590), + [sym_bytearray] = STATE(1590), + [sym_verbatim_bytearray] = STATE(1590), + [sym_format_triple_quoted_string] = STATE(1591), + [sym_triple_quoted_string] = STATE(1590), + [sym_const] = STATE(1546), + [sym_long_identifier_or_op] = STATE(1546), + [sym_long_identifier] = STATE(1530), + [sym__identifier_or_op] = STATE(1525), + [sym_prefix_op] = STATE(655), + [sym_sbyte] = STATE(1590), + [sym_byte] = STATE(1590), + [sym_int16] = STATE(1590), + [sym_uint16] = STATE(1590), + [sym_int32] = STATE(1590), + [sym_uint32] = STATE(1590), + [sym_nativeint] = STATE(1590), + [sym_unativeint] = STATE(1590), + [sym_int64] = STATE(1590), + [sym_uint64] = STATE(1590), + [sym_ieee32] = STATE(1590), + [sym_ieee64] = STATE(1590), + [sym_bignum] = STATE(1590), + [sym_decimal] = STATE(1590), + [sym_float] = STATE(1304), + [sym_xml_doc] = STATE(671), + [sym_block_comment] = STATE(671), + [sym_preproc_line] = STATE(671), + [sym_preproc_if_in_expression] = STATE(1546), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(553), + [anon_sym_return] = ACTIONS(557), + [anon_sym_do] = ACTIONS(559), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK_PIPE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LBRACE_PIPE] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_return_BANG] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_yield_BANG] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(557), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_upcast] = ACTIONS(557), + [anon_sym_downcast] = ACTIONS(557), + [anon_sym_LT_AT] = ACTIONS(1889), + [anon_sym_LT_AT_AT] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_fun] = ACTIONS(589), + [anon_sym_try] = ACTIONS(591), + [anon_sym_match] = ACTIONS(593), + [anon_sym_match_BANG] = ACTIONS(595), + [anon_sym_function] = ACTIONS(597), + [anon_sym_use] = ACTIONS(601), + [anon_sym_use_BANG] = ACTIONS(603), + [anon_sym_do_BANG] = ACTIONS(605), + [anon_sym_begin] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(615), + [anon_sym_AT_DQUOTE] = ACTIONS(617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(621), + [sym_bool] = ACTIONS(623), + [sym_unit] = ACTIONS(1901), + [aux_sym__identifier_or_op_token1] = ACTIONS(1903), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(627), + [sym_xint] = ACTIONS(629), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(631), + }, + [672] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(236), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(672), + [sym_block_comment] = STATE(672), + [sym_preproc_line] = STATE(672), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [673] = { + [sym_function_or_value_defn] = STATE(598), + [sym__expression] = STATE(10), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(673), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(673), + [sym_block_comment] = STATE(673), + [sym_preproc_line] = STATE(673), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(13), - [anon_sym_return] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), @@ -123200,14 +117766,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(161), - [anon_sym_return_BANG] = ACTIONS(163), - [anon_sym_yield] = ACTIONS(145), - [anon_sym_yield_BANG] = ACTIONS(163), - [anon_sym_lazy] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_upcast] = ACTIONS(145), - [anon_sym_downcast] = ACTIONS(145), + [anon_sym_new] = ACTIONS(245), + [anon_sym_return_BANG] = ACTIONS(247), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(247), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), [anon_sym_LT_AT] = ACTIONS(55), [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), @@ -123218,8 +117784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(173), - [anon_sym_use_BANG] = ACTIONS(175), + [anon_sym_use] = ACTIONS(263), + [anon_sym_use_BANG] = ACTIONS(265), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), @@ -123240,7 +117806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(179), + [sym_int] = ACTIONS(269), [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -123248,97 +117814,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(111), }, - [694] = { - [sym_function_or_value_defn] = STATE(657), - [sym__expression] = STATE(149), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [674] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(193), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(674), + [sym_block_comment] = STATE(674), + [sym_preproc_line] = STATE(674), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [675] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(98), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(694), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(694), - [sym_block_comment] = STATE(694), - [sym_preproc_line] = STATE(694), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(675), + [sym_block_comment] = STATE(675), + [sym_preproc_line] = STATE(675), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(615), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(619), - [anon_sym_return_BANG] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_yield_BANG] = ACTIONS(621), - [anon_sym_lazy] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_upcast] = ACTIONS(615), - [anon_sym_downcast] = ACTIONS(615), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(623), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), [anon_sym_fun] = ACTIONS(339), @@ -123346,8 +118040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(627), - [anon_sym_use_BANG] = ACTIONS(629), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -123357,8 +118051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -123368,7 +118062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -123376,118 +118070,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [695] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(282), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(695), - [sym_block_comment] = STATE(695), - [sym_preproc_line] = STATE(695), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [676] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(203), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(676), + [sym_block_comment] = STATE(676), + [sym_preproc_line] = STATE(676), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123496,17 +118190,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [696] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(6), + [677] = { + [sym_function_or_value_defn] = STATE(572), + [sym__expression] = STATE(50), + [sym_tuple_expression] = STATE(1570), + [sym_brace_expression] = STATE(1570), + [sym_anon_record_expression] = STATE(1570), + [sym_prefixed_expression] = STATE(1570), + [sym_literal_expression] = STATE(1570), + [sym_typecast_expression] = STATE(1570), + [sym_for_expression] = STATE(1570), + [sym_while_expression] = STATE(1570), + [sym__if_then_else_expression] = STATE(1565), + [sym__if_then_expression] = STATE(1564), + [sym_if_expression] = STATE(1570), + [sym_fun_expression] = STATE(1570), + [sym_try_expression] = STATE(1570), + [sym_match_expression] = STATE(1570), + [sym_function_expression] = STATE(1570), + [sym_object_instantiation_expression] = STATE(1570), + [sym_mutate_expression] = STATE(1570), + [sym_index_expression] = STATE(1570), + [sym_dot_expression] = STATE(1570), + [sym_typed_expression] = STATE(1570), + [sym_declaration_expression] = STATE(1570), + [sym_do_expression] = STATE(1570), + [sym_list_expression] = STATE(1570), + [sym_array_expression] = STATE(1570), + [sym_begin_end_expression] = STATE(1570), + [sym_paren_expression] = STATE(1570), + [sym_application_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_ce_expression] = STATE(1570), + [sym_sequential_expression] = STATE(1570), + [sym_char] = STATE(1537), + [sym_format_string] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_string] = STATE(1537), + [sym_verbatim_string] = STATE(1537), + [sym_bytechar] = STATE(1537), + [sym_bytearray] = STATE(1537), + [sym_verbatim_bytearray] = STATE(1537), + [sym_format_triple_quoted_string] = STATE(1539), + [sym_triple_quoted_string] = STATE(1537), + [sym_const] = STATE(1570), + [sym_long_identifier_or_op] = STATE(1570), + [sym_long_identifier] = STATE(1408), + [sym__identifier_or_op] = STATE(1549), + [sym_prefix_op] = STATE(661), + [sym_sbyte] = STATE(1537), + [sym_byte] = STATE(1537), + [sym_int16] = STATE(1537), + [sym_uint16] = STATE(1537), + [sym_int32] = STATE(1537), + [sym_uint32] = STATE(1537), + [sym_nativeint] = STATE(1537), + [sym_unativeint] = STATE(1537), + [sym_int64] = STATE(1537), + [sym_uint64] = STATE(1537), + [sym_ieee32] = STATE(1537), + [sym_ieee64] = STATE(1537), + [sym_bignum] = STATE(1537), + [sym_decimal] = STATE(1537), + [sym_float] = STATE(1280), + [sym_xml_doc] = STATE(677), + [sym_block_comment] = STATE(677), + [sym_preproc_line] = STATE(677), + [sym_preproc_if_in_expression] = STATE(1570), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(391), + [anon_sym_return] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_LBRACK_PIPE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_LBRACE_PIPE] = ACTIONS(411), + [anon_sym_new] = ACTIONS(413), + [anon_sym_return_BANG] = ACTIONS(415), + [anon_sym_yield] = ACTIONS(395), + [anon_sym_yield_BANG] = ACTIONS(415), + [anon_sym_lazy] = ACTIONS(395), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_upcast] = ACTIONS(395), + [anon_sym_downcast] = ACTIONS(395), + [anon_sym_LT_AT] = ACTIONS(1995), + [anon_sym_LT_AT_AT] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_fun] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_match] = ACTIONS(433), + [anon_sym_match_BANG] = ACTIONS(435), + [anon_sym_function] = ACTIONS(437), + [anon_sym_use] = ACTIONS(447), + [anon_sym_use_BANG] = ACTIONS(449), + [anon_sym_do_BANG] = ACTIONS(451), + [anon_sym_begin] = ACTIONS(453), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_AT_DQUOTE] = ACTIONS(463), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), + [sym_bool] = ACTIONS(469), + [sym_unit] = ACTIONS(1999), + [aux_sym__identifier_or_op_token1] = ACTIONS(2001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(473), + [sym_xint] = ACTIONS(475), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(477), + }, + [678] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(292), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -123537,85 +118359,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(696), - [sym_block_comment] = STATE(696), - [sym_preproc_line] = STATE(696), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(678), + [sym_block_comment] = STATE(678), + [sym_preproc_line] = STATE(678), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123624,17 +118446,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [697] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(286), + [679] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(317), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -123665,85 +118487,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(697), - [sym_block_comment] = STATE(697), - [sym_preproc_line] = STATE(697), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(679), + [sym_block_comment] = STATE(679), + [sym_preproc_line] = STATE(679), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123752,16 +118574,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [698] = { - [sym_function_or_value_defn] = STATE(651), + [680] = { + [sym_function_or_value_defn] = STATE(599), [sym__expression] = STATE(321), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), @@ -123793,341 +118615,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(698), - [sym_block_comment] = STATE(698), - [sym_preproc_line] = STATE(698), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(680), + [sym_block_comment] = STATE(680), + [sym_preproc_line] = STATE(680), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [699] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(214), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(699), - [sym_block_comment] = STATE(699), - [sym_preproc_line] = STATE(699), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [700] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(244), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(700), - [sym_block_comment] = STATE(700), - [sym_preproc_line] = STATE(700), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124136,17 +118702,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(217), }, - [701] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(292), + [681] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(206), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -124177,85 +118743,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(701), - [sym_block_comment] = STATE(701), - [sym_preproc_line] = STATE(701), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(681), + [sym_block_comment] = STATE(681), + [sym_preproc_line] = STATE(681), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124264,17 +118830,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [702] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(283), + [682] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(300), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -124305,213 +118871,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(702), - [sym_block_comment] = STATE(702), - [sym_preproc_line] = STATE(702), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), - }, - [703] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(298), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(703), - [sym_block_comment] = STATE(703), - [sym_preproc_line] = STATE(703), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(682), + [sym_block_comment] = STATE(682), + [sym_preproc_line] = STATE(682), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124520,126 +118958,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [704] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(200), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), - [sym__if_then_else_expression] = STATE(925), - [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(704), - [sym_block_comment] = STATE(704), - [sym_preproc_line] = STATE(704), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), - [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(311), + [683] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(30), + [sym_tuple_expression] = STATE(1136), + [sym_brace_expression] = STATE(1136), + [sym_anon_record_expression] = STATE(1136), + [sym_prefixed_expression] = STATE(1136), + [sym_literal_expression] = STATE(1136), + [sym_typecast_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym__if_then_else_expression] = STATE(1137), + [sym__if_then_expression] = STATE(1138), + [sym_if_expression] = STATE(1136), + [sym_fun_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_function_expression] = STATE(1136), + [sym_object_instantiation_expression] = STATE(1136), + [sym_mutate_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_dot_expression] = STATE(1136), + [sym_typed_expression] = STATE(1136), + [sym_declaration_expression] = STATE(1136), + [sym_do_expression] = STATE(1136), + [sym_list_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_begin_end_expression] = STATE(1136), + [sym_paren_expression] = STATE(1136), + [sym_application_expression] = STATE(1136), + [sym_infix_expression] = STATE(1136), + [sym_ce_expression] = STATE(1136), + [sym_sequential_expression] = STATE(1136), + [sym_char] = STATE(1078), + [sym_format_string] = STATE(1145), + [sym__string_literal] = STATE(1145), + [sym_string] = STATE(1078), + [sym_verbatim_string] = STATE(1078), + [sym_bytechar] = STATE(1078), + [sym_bytearray] = STATE(1078), + [sym_verbatim_bytearray] = STATE(1078), + [sym_format_triple_quoted_string] = STATE(1093), + [sym_triple_quoted_string] = STATE(1078), + [sym_const] = STATE(1136), + [sym_long_identifier_or_op] = STATE(1136), + [sym_long_identifier] = STATE(1057), + [sym__identifier_or_op] = STATE(1128), + [sym_prefix_op] = STATE(469), + [sym_sbyte] = STATE(1078), + [sym_byte] = STATE(1078), + [sym_int16] = STATE(1078), + [sym_uint16] = STATE(1078), + [sym_int32] = STATE(1078), + [sym_uint32] = STATE(1078), + [sym_nativeint] = STATE(1078), + [sym_unativeint] = STATE(1078), + [sym_int64] = STATE(1078), + [sym_uint64] = STATE(1078), + [sym_ieee32] = STATE(1078), + [sym_ieee64] = STATE(1078), + [sym_bignum] = STATE(1078), + [sym_decimal] = STATE(1078), + [sym_float] = STATE(840), + [sym_xml_doc] = STATE(683), + [sym_block_comment] = STATE(683), + [sym_preproc_line] = STATE(683), + [sym_preproc_if_in_expression] = STATE(1136), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(13), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(333), - [anon_sym_while] = ACTIONS(335), - [anon_sym_if] = ACTIONS(337), - [anon_sym_fun] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_match_BANG] = ACTIONS(345), - [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), - [anon_sym_do_BANG] = ACTIONS(361), - [anon_sym_begin] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_AT_DQUOTE] = ACTIONS(373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), - [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LBRACE_PIPE] = ACTIONS(49), + [anon_sym_new] = ACTIONS(51), + [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_LT_AT] = ACTIONS(55), + [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [aux_sym__identifier_or_op_token1] = ACTIONS(99), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124648,17 +119086,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), - [sym_xint] = ACTIONS(385), + [sym_int] = ACTIONS(107), + [sym_xint] = ACTIONS(109), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(111), }, - [705] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(300), + [684] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(284), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -124689,85 +119127,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(705), - [sym_block_comment] = STATE(705), - [sym_preproc_line] = STATE(705), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(684), + [sym_block_comment] = STATE(684), + [sym_preproc_line] = STATE(684), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124776,126 +119214,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [706] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(706), - [sym_block_comment] = STATE(706), - [sym_preproc_line] = STATE(706), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [685] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(196), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(685), + [sym_block_comment] = STATE(685), + [sym_preproc_line] = STATE(685), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124904,126 +119342,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [707] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(203), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(707), - [sym_block_comment] = STATE(707), - [sym_preproc_line] = STATE(707), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [686] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(140), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(686), + [sym_block_comment] = STATE(686), + [sym_preproc_line] = STATE(686), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125032,17 +119470,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(727), }, - [708] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(284), + [687] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(169), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -125073,85 +119511,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(708), - [sym_block_comment] = STATE(708), - [sym_preproc_line] = STATE(708), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(687), + [sym_block_comment] = STATE(687), + [sym_preproc_line] = STATE(687), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125160,17 +119598,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [709] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(311), + [688] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(287), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -125201,85 +119639,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(709), - [sym_block_comment] = STATE(709), - [sym_preproc_line] = STATE(709), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(688), + [sym_block_comment] = STATE(688), + [sym_preproc_line] = STATE(688), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125288,126 +119726,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [710] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(172), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(710), - [sym_block_comment] = STATE(710), - [sym_preproc_line] = STATE(710), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [689] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(247), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(689), + [sym_block_comment] = STATE(689), + [sym_preproc_line] = STATE(689), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125416,126 +119854,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [711] = { - [sym_function_or_value_defn] = STATE(628), - [sym__expression] = STATE(280), - [sym_tuple_expression] = STATE(2002), - [sym_brace_expression] = STATE(2002), - [sym_anon_record_expression] = STATE(2002), - [sym_prefixed_expression] = STATE(2002), - [sym_literal_expression] = STATE(2002), - [sym_typecast_expression] = STATE(2002), - [sym_for_expression] = STATE(2002), - [sym_while_expression] = STATE(2002), - [sym__if_then_else_expression] = STATE(2000), - [sym__if_then_expression] = STATE(1997), - [sym_if_expression] = STATE(2002), - [sym_fun_expression] = STATE(2002), - [sym_try_expression] = STATE(2002), - [sym_match_expression] = STATE(2002), - [sym_function_expression] = STATE(2002), - [sym_object_instantiation_expression] = STATE(2002), - [sym_mutate_expression] = STATE(2002), - [sym_index_expression] = STATE(2002), - [sym_dot_expression] = STATE(2002), - [sym_typed_expression] = STATE(2002), - [sym_declaration_expression] = STATE(2002), - [sym_do_expression] = STATE(2002), - [sym_list_expression] = STATE(2002), - [sym_array_expression] = STATE(2002), - [sym_begin_end_expression] = STATE(2002), - [sym_paren_expression] = STATE(2002), - [sym_application_expression] = STATE(2002), - [sym_infix_expression] = STATE(2002), - [sym_ce_expression] = STATE(2002), - [sym_sequential_expression] = STATE(2002), - [sym_char] = STATE(1967), - [sym_format_string] = STATE(1896), - [sym__string_literal] = STATE(1896), - [sym_string] = STATE(1967), - [sym_verbatim_string] = STATE(1967), - [sym_bytechar] = STATE(1967), - [sym_bytearray] = STATE(1967), - [sym_verbatim_bytearray] = STATE(1967), - [sym_format_triple_quoted_string] = STATE(1966), - [sym_triple_quoted_string] = STATE(1967), - [sym_const] = STATE(2002), - [sym_long_identifier_or_op] = STATE(2002), - [sym_long_identifier] = STATE(1996), - [sym__identifier_or_op] = STATE(1989), - [sym_prefix_op] = STATE(624), - [sym_sbyte] = STATE(1967), - [sym_byte] = STATE(1967), - [sym_int16] = STATE(1967), - [sym_uint16] = STATE(1967), - [sym_int32] = STATE(1967), - [sym_uint32] = STATE(1967), - [sym_nativeint] = STATE(1967), - [sym_unativeint] = STATE(1967), - [sym_int64] = STATE(1967), - [sym_uint64] = STATE(1967), - [sym_ieee32] = STATE(1967), - [sym_ieee64] = STATE(1967), - [sym_bignum] = STATE(1967), - [sym_decimal] = STATE(1967), - [sym_float] = STATE(4411), - [sym_xml_doc] = STATE(711), - [sym_block_comment] = STATE(711), - [sym_preproc_line] = STATE(711), - [sym_preproc_if_in_expression] = STATE(2002), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1035), + [690] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(76), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(690), + [sym_block_comment] = STATE(690), + [sym_preproc_line] = STATE(690), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LBRACE_PIPE] = ACTIONS(1045), - [anon_sym_new] = ACTIONS(1047), - [anon_sym_return_BANG] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_yield_BANG] = ACTIONS(1049), - [anon_sym_lazy] = ACTIONS(1029), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_upcast] = ACTIONS(1029), - [anon_sym_downcast] = ACTIONS(1029), - [anon_sym_LT_AT] = ACTIONS(1979), - [anon_sym_LT_AT_AT] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_fun] = ACTIONS(1063), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_match_BANG] = ACTIONS(1069), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1081), - [anon_sym_use_BANG] = ACTIONS(1083), - [anon_sym_do_BANG] = ACTIONS(1085), - [anon_sym_begin] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_AT_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [sym_bool] = ACTIONS(1105), - [sym_unit] = ACTIONS(1983), - [aux_sym__identifier_or_op_token1] = ACTIONS(1985), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125544,126 +119982,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1109), - [sym_xint] = ACTIONS(1111), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1113), + [anon_sym_POUNDif] = ACTIONS(727), }, - [712] = { - [sym_function_or_value_defn] = STATE(570), - [sym__expression] = STATE(47), - [sym_tuple_expression] = STATE(1432), - [sym_brace_expression] = STATE(1432), - [sym_anon_record_expression] = STATE(1432), - [sym_prefixed_expression] = STATE(1432), - [sym_literal_expression] = STATE(1432), - [sym_typecast_expression] = STATE(1432), - [sym_for_expression] = STATE(1432), - [sym_while_expression] = STATE(1432), - [sym__if_then_else_expression] = STATE(1435), - [sym__if_then_expression] = STATE(1436), - [sym_if_expression] = STATE(1432), - [sym_fun_expression] = STATE(1432), - [sym_try_expression] = STATE(1432), - [sym_match_expression] = STATE(1432), - [sym_function_expression] = STATE(1432), - [sym_object_instantiation_expression] = STATE(1432), - [sym_mutate_expression] = STATE(1432), - [sym_index_expression] = STATE(1432), - [sym_dot_expression] = STATE(1432), - [sym_typed_expression] = STATE(1432), - [sym_declaration_expression] = STATE(1432), - [sym_do_expression] = STATE(1432), - [sym_list_expression] = STATE(1432), - [sym_array_expression] = STATE(1432), - [sym_begin_end_expression] = STATE(1432), - [sym_paren_expression] = STATE(1432), - [sym_application_expression] = STATE(1432), - [sym_infix_expression] = STATE(1432), - [sym_ce_expression] = STATE(1432), - [sym_sequential_expression] = STATE(1432), - [sym_char] = STATE(1535), - [sym_format_string] = STATE(1489), - [sym__string_literal] = STATE(1489), - [sym_string] = STATE(1535), - [sym_verbatim_string] = STATE(1535), - [sym_bytechar] = STATE(1535), - [sym_bytearray] = STATE(1535), - [sym_verbatim_bytearray] = STATE(1535), - [sym_format_triple_quoted_string] = STATE(1537), - [sym_triple_quoted_string] = STATE(1535), - [sym_const] = STATE(1432), - [sym_long_identifier_or_op] = STATE(1432), - [sym_long_identifier] = STATE(1373), - [sym__identifier_or_op] = STATE(1437), - [sym_prefix_op] = STATE(496), - [sym_sbyte] = STATE(1535), - [sym_byte] = STATE(1535), - [sym_int16] = STATE(1535), - [sym_uint16] = STATE(1535), - [sym_int32] = STATE(1535), - [sym_uint32] = STATE(1535), - [sym_nativeint] = STATE(1535), - [sym_unativeint] = STATE(1535), - [sym_int64] = STATE(1535), - [sym_uint64] = STATE(1535), - [sym_ieee32] = STATE(1535), - [sym_ieee64] = STATE(1535), - [sym_bignum] = STATE(1535), - [sym_decimal] = STATE(1535), - [sym_float] = STATE(4313), - [sym_xml_doc] = STATE(712), - [sym_block_comment] = STATE(712), - [sym_preproc_line] = STATE(712), - [sym_preproc_if_in_expression] = STATE(1432), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(391), - [anon_sym_return] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(401), + [691] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(141), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(691), + [sym_block_comment] = STATE(691), + [sym_preproc_line] = STATE(691), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_LBRACK_PIPE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_LBRACE_PIPE] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_return_BANG] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_yield_BANG] = ACTIONS(415), - [anon_sym_lazy] = ACTIONS(395), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_upcast] = ACTIONS(395), - [anon_sym_downcast] = ACTIONS(395), - [anon_sym_LT_AT] = ACTIONS(1991), - [anon_sym_LT_AT_AT] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(423), - [anon_sym_while] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_fun] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_match] = ACTIONS(433), - [anon_sym_match_BANG] = ACTIONS(435), - [anon_sym_function] = ACTIONS(437), - [anon_sym_use] = ACTIONS(447), - [anon_sym_use_BANG] = ACTIONS(449), - [anon_sym_do_BANG] = ACTIONS(451), - [anon_sym_begin] = ACTIONS(453), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(461), - [anon_sym_AT_DQUOTE] = ACTIONS(463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(467), - [sym_bool] = ACTIONS(469), - [sym_unit] = ACTIONS(1995), - [aux_sym__identifier_or_op_token1] = ACTIONS(1997), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125672,17 +120110,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(473), - [sym_xint] = ACTIONS(475), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(477), + [anon_sym_POUNDif] = ACTIONS(727), }, - [713] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(165), + [692] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(82), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(692), + [sym_block_comment] = STATE(692), + [sym_preproc_line] = STATE(692), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + }, + [693] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(210), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -125713,85 +120279,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(713), - [sym_block_comment] = STATE(713), - [sym_preproc_line] = STATE(713), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(693), + [sym_block_comment] = STATE(693), + [sym_preproc_line] = STATE(693), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125800,126 +120366,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [714] = { - [sym_function_or_value_defn] = STATE(634), - [sym__expression] = STATE(168), - [sym_tuple_expression] = STATE(1921), - [sym_brace_expression] = STATE(1921), - [sym_anon_record_expression] = STATE(1921), - [sym_prefixed_expression] = STATE(1921), - [sym_literal_expression] = STATE(1921), - [sym_typecast_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym__if_then_else_expression] = STATE(1879), - [sym__if_then_expression] = STATE(1878), - [sym_if_expression] = STATE(1921), - [sym_fun_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_function_expression] = STATE(1921), - [sym_object_instantiation_expression] = STATE(1921), - [sym_mutate_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_dot_expression] = STATE(1921), - [sym_typed_expression] = STATE(1921), - [sym_declaration_expression] = STATE(1921), - [sym_do_expression] = STATE(1921), - [sym_list_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_begin_end_expression] = STATE(1921), - [sym_paren_expression] = STATE(1921), - [sym_application_expression] = STATE(1921), - [sym_infix_expression] = STATE(1921), - [sym_ce_expression] = STATE(1921), - [sym_sequential_expression] = STATE(1921), - [sym_char] = STATE(1912), - [sym_format_string] = STATE(1935), - [sym__string_literal] = STATE(1935), - [sym_string] = STATE(1912), - [sym_verbatim_string] = STATE(1912), - [sym_bytechar] = STATE(1912), - [sym_bytearray] = STATE(1912), - [sym_verbatim_bytearray] = STATE(1912), - [sym_format_triple_quoted_string] = STATE(1919), - [sym_triple_quoted_string] = STATE(1912), - [sym_const] = STATE(1921), - [sym_long_identifier_or_op] = STATE(1921), - [sym_long_identifier] = STATE(1877), - [sym__identifier_or_op] = STATE(1871), - [sym_prefix_op] = STATE(611), - [sym_sbyte] = STATE(1912), - [sym_byte] = STATE(1912), - [sym_int16] = STATE(1912), - [sym_uint16] = STATE(1912), - [sym_int32] = STATE(1912), - [sym_uint32] = STATE(1912), - [sym_nativeint] = STATE(1912), - [sym_unativeint] = STATE(1912), - [sym_int64] = STATE(1912), - [sym_uint64] = STATE(1912), - [sym_ieee32] = STATE(1912), - [sym_ieee64] = STATE(1912), - [sym_bignum] = STATE(1912), - [sym_decimal] = STATE(1912), - [sym_float] = STATE(4405), - [sym_xml_doc] = STATE(714), - [sym_block_comment] = STATE(714), - [sym_preproc_line] = STATE(714), - [sym_preproc_if_in_expression] = STATE(1921), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1163), + [694] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(157), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(694), + [sym_block_comment] = STATE(694), + [sym_preproc_line] = STATE(694), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LBRACK_PIPE] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_LBRACE_PIPE] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_return_BANG] = ACTIONS(1175), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_yield_BANG] = ACTIONS(1175), - [anon_sym_lazy] = ACTIONS(1157), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_upcast] = ACTIONS(1157), - [anon_sym_downcast] = ACTIONS(1157), - [anon_sym_LT_AT] = ACTIONS(1955), - [anon_sym_LT_AT_AT] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_fun] = ACTIONS(1189), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1193), - [anon_sym_match_BANG] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_use] = ACTIONS(1201), - [anon_sym_use_BANG] = ACTIONS(1203), - [anon_sym_do_BANG] = ACTIONS(1205), - [anon_sym_begin] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_AT_DQUOTE] = ACTIONS(1217), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), - [sym_bool] = ACTIONS(1223), - [sym_unit] = ACTIONS(1959), - [aux_sym__identifier_or_op_token1] = ACTIONS(1961), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125928,17 +120494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1227), - [sym_xint] = ACTIONS(1229), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1231), + [anon_sym_POUNDif] = ACTIONS(941), }, - [715] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(285), + [695] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(296), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -125969,85 +120535,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(715), - [sym_block_comment] = STATE(715), - [sym_preproc_line] = STATE(715), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(695), + [sym_block_comment] = STATE(695), + [sym_preproc_line] = STATE(695), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126056,17 +120622,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [716] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(295), + [696] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(297), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -126097,85 +120663,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(716), - [sym_block_comment] = STATE(716), - [sym_preproc_line] = STATE(716), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(696), + [sym_block_comment] = STATE(696), + [sym_preproc_line] = STATE(696), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126184,104 +120750,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [717] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(264), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [697] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(179), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(697), + [sym_block_comment] = STATE(697), + [sym_preproc_line] = STATE(697), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), + }, + [698] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(227), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(717), - [sym_block_comment] = STATE(717), - [sym_preproc_line] = STATE(717), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(698), + [sym_block_comment] = STATE(698), + [sym_preproc_line] = STATE(698), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -126290,8 +120984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -126301,8 +120995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -126312,7 +121006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -126320,118 +121014,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [718] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(972), - [sym_brace_expression] = STATE(972), - [sym_anon_record_expression] = STATE(972), - [sym_prefixed_expression] = STATE(972), - [sym_literal_expression] = STATE(972), - [sym_typecast_expression] = STATE(972), - [sym_for_expression] = STATE(972), - [sym_while_expression] = STATE(972), - [sym__if_then_else_expression] = STATE(982), - [sym__if_then_expression] = STATE(983), - [sym_if_expression] = STATE(972), - [sym_fun_expression] = STATE(972), - [sym_try_expression] = STATE(972), - [sym_match_expression] = STATE(972), - [sym_function_expression] = STATE(972), - [sym_object_instantiation_expression] = STATE(972), - [sym_mutate_expression] = STATE(972), - [sym_index_expression] = STATE(972), - [sym_dot_expression] = STATE(972), - [sym_typed_expression] = STATE(972), - [sym_declaration_expression] = STATE(972), - [sym_do_expression] = STATE(972), - [sym_list_expression] = STATE(972), - [sym_array_expression] = STATE(972), - [sym_begin_end_expression] = STATE(972), - [sym_paren_expression] = STATE(972), - [sym_application_expression] = STATE(972), - [sym_infix_expression] = STATE(972), - [sym_ce_expression] = STATE(972), - [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), - [sym_const] = STATE(972), - [sym_long_identifier_or_op] = STATE(972), - [sym_long_identifier] = STATE(986), - [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(718), - [sym_block_comment] = STATE(718), - [sym_preproc_line] = STATE(718), - [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [699] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(207), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(699), + [sym_block_comment] = STATE(699), + [sym_preproc_line] = STATE(699), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126440,17 +121134,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(941), }, - [719] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(290), + [700] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(235), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(700), + [sym_block_comment] = STATE(700), + [sym_preproc_line] = STATE(700), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(941), + }, + [701] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(183), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -126481,85 +121303,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(719), - [sym_block_comment] = STATE(719), - [sym_preproc_line] = STATE(719), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(701), + [sym_block_comment] = STATE(701), + [sym_preproc_line] = STATE(701), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126568,126 +121390,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [720] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(195), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(720), - [sym_block_comment] = STATE(720), - [sym_preproc_line] = STATE(720), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [702] = { + [sym_function_or_value_defn] = STATE(631), + [sym__expression] = STATE(40), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(702), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(974), + [sym_xml_doc] = STATE(702), + [sym_block_comment] = STATE(702), + [sym_preproc_line] = STATE(702), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(323), + [anon_sym_return_BANG] = ACTIONS(325), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(325), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(357), + [anon_sym_use_BANG] = ACTIONS(359), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(387), + }, + [703] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(78), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(703), + [sym_block_comment] = STATE(703), + [sym_preproc_line] = STATE(703), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126696,17 +121646,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), + [anon_sym_POUNDif] = ACTIONS(815), }, - [721] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(293), + [704] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(86), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(704), + [sym_block_comment] = STATE(704), + [sym_preproc_line] = STATE(704), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [705] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(138), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(705), + [sym_block_comment] = STATE(705), + [sym_preproc_line] = STATE(705), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [706] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(88), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(706), + [sym_block_comment] = STATE(706), + [sym_preproc_line] = STATE(706), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [707] = { + [sym_function_or_value_defn] = STATE(707), + [sym__expression] = STATE(115), + [sym_tuple_expression] = STATE(1883), + [sym_brace_expression] = STATE(1883), + [sym_anon_record_expression] = STATE(1883), + [sym_prefixed_expression] = STATE(1883), + [sym_literal_expression] = STATE(1883), + [sym_typecast_expression] = STATE(1883), + [sym_for_expression] = STATE(1883), + [sym_while_expression] = STATE(1883), + [sym__if_then_else_expression] = STATE(1886), + [sym__if_then_expression] = STATE(1887), + [sym_if_expression] = STATE(1883), + [sym_fun_expression] = STATE(1883), + [sym_try_expression] = STATE(1883), + [sym_match_expression] = STATE(1883), + [sym_function_expression] = STATE(1883), + [sym_object_instantiation_expression] = STATE(1883), + [sym_mutate_expression] = STATE(1883), + [sym_index_expression] = STATE(1883), + [sym_dot_expression] = STATE(1883), + [sym_typed_expression] = STATE(1883), + [sym_declaration_expression] = STATE(1883), + [sym_do_expression] = STATE(1883), + [sym_list_expression] = STATE(1883), + [sym_array_expression] = STATE(1883), + [sym_begin_end_expression] = STATE(1883), + [sym_paren_expression] = STATE(1883), + [sym_application_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_ce_expression] = STATE(1883), + [sym_sequential_expression] = STATE(1883), + [sym_char] = STATE(1807), + [sym_format_string] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_string] = STATE(1807), + [sym_verbatim_string] = STATE(1807), + [sym_bytechar] = STATE(1807), + [sym_bytearray] = STATE(1807), + [sym_verbatim_bytearray] = STATE(1807), + [sym_format_triple_quoted_string] = STATE(1804), + [sym_triple_quoted_string] = STATE(1807), + [sym_const] = STATE(1883), + [sym_long_identifier_or_op] = STATE(1883), + [sym_long_identifier] = STATE(1699), + [sym__identifier_or_op] = STATE(1890), + [sym_prefix_op] = STATE(667), + [sym_sbyte] = STATE(1807), + [sym_byte] = STATE(1807), + [sym_int16] = STATE(1807), + [sym_uint16] = STATE(1807), + [sym_int32] = STATE(1807), + [sym_uint32] = STATE(1807), + [sym_nativeint] = STATE(1807), + [sym_unativeint] = STATE(1807), + [sym_int64] = STATE(1807), + [sym_uint64] = STATE(1807), + [sym_ieee32] = STATE(1807), + [sym_ieee64] = STATE(1807), + [sym_bignum] = STATE(1807), + [sym_decimal] = STATE(1807), + [sym_float] = STATE(1374), + [sym_xml_doc] = STATE(707), + [sym_block_comment] = STATE(707), + [sym_preproc_line] = STATE(707), + [sym_preproc_if_in_expression] = STATE(1883), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(643), + [anon_sym_return] = ACTIONS(647), + [anon_sym_do] = ACTIONS(649), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_LBRACK_PIPE] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LBRACE_PIPE] = ACTIONS(661), + [anon_sym_new] = ACTIONS(663), + [anon_sym_return_BANG] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_yield_BANG] = ACTIONS(665), + [anon_sym_lazy] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(647), + [anon_sym_upcast] = ACTIONS(647), + [anon_sym_downcast] = ACTIONS(647), + [anon_sym_LT_AT] = ACTIONS(1909), + [anon_sym_LT_AT_AT] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_fun] = ACTIONS(679), + [anon_sym_try] = ACTIONS(681), + [anon_sym_match] = ACTIONS(683), + [anon_sym_match_BANG] = ACTIONS(685), + [anon_sym_function] = ACTIONS(687), + [anon_sym_use] = ACTIONS(697), + [anon_sym_use_BANG] = ACTIONS(699), + [anon_sym_do_BANG] = ACTIONS(701), + [anon_sym_begin] = ACTIONS(703), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [anon_sym_AT_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(717), + [sym_bool] = ACTIONS(719), + [sym_unit] = ACTIONS(1913), + [aux_sym__identifier_or_op_token1] = ACTIONS(1915), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(723), + [sym_xint] = ACTIONS(725), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(727), + }, + [708] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(146), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(708), + [sym_block_comment] = STATE(708), + [sym_preproc_line] = STATE(708), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [709] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(288), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -126737,85 +122327,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(721), - [sym_block_comment] = STATE(721), - [sym_preproc_line] = STATE(721), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(709), + [sym_block_comment] = STATE(709), + [sym_preproc_line] = STATE(709), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126824,104 +122414,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [722] = { - [sym_function_or_value_defn] = STATE(477), - [sym__expression] = STATE(245), - [sym_tuple_expression] = STATE(916), - [sym_brace_expression] = STATE(916), - [sym_anon_record_expression] = STATE(916), - [sym_prefixed_expression] = STATE(916), - [sym_literal_expression] = STATE(916), - [sym_typecast_expression] = STATE(916), - [sym_for_expression] = STATE(916), - [sym_while_expression] = STATE(916), + [710] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(306), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(710), + [sym_block_comment] = STATE(710), + [sym_preproc_line] = STATE(710), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [711] = { + [sym_function_or_value_defn] = STATE(703), + [sym__expression] = STATE(100), + [sym_tuple_expression] = STATE(1731), + [sym_brace_expression] = STATE(1731), + [sym_anon_record_expression] = STATE(1731), + [sym_prefixed_expression] = STATE(1731), + [sym_literal_expression] = STATE(1731), + [sym_typecast_expression] = STATE(1731), + [sym_for_expression] = STATE(1731), + [sym_while_expression] = STATE(1731), + [sym__if_then_else_expression] = STATE(1728), + [sym__if_then_expression] = STATE(1727), + [sym_if_expression] = STATE(1731), + [sym_fun_expression] = STATE(1731), + [sym_try_expression] = STATE(1731), + [sym_match_expression] = STATE(1731), + [sym_function_expression] = STATE(1731), + [sym_object_instantiation_expression] = STATE(1731), + [sym_mutate_expression] = STATE(1731), + [sym_index_expression] = STATE(1731), + [sym_dot_expression] = STATE(1731), + [sym_typed_expression] = STATE(1731), + [sym_declaration_expression] = STATE(1731), + [sym_do_expression] = STATE(1731), + [sym_list_expression] = STATE(1731), + [sym_array_expression] = STATE(1731), + [sym_begin_end_expression] = STATE(1731), + [sym_paren_expression] = STATE(1731), + [sym_application_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_ce_expression] = STATE(1731), + [sym_sequential_expression] = STATE(1731), + [sym_char] = STATE(1826), + [sym_format_string] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_string] = STATE(1826), + [sym_verbatim_string] = STATE(1826), + [sym_bytechar] = STATE(1826), + [sym_bytearray] = STATE(1826), + [sym_verbatim_bytearray] = STATE(1826), + [sym_format_triple_quoted_string] = STATE(1836), + [sym_triple_quoted_string] = STATE(1826), + [sym_const] = STATE(1731), + [sym_long_identifier_or_op] = STATE(1731), + [sym_long_identifier] = STATE(1725), + [sym__identifier_or_op] = STATE(1724), + [sym_prefix_op] = STATE(653), + [sym_sbyte] = STATE(1826), + [sym_byte] = STATE(1826), + [sym_int16] = STATE(1826), + [sym_uint16] = STATE(1826), + [sym_int32] = STATE(1826), + [sym_uint32] = STATE(1826), + [sym_nativeint] = STATE(1826), + [sym_unativeint] = STATE(1826), + [sym_int64] = STATE(1826), + [sym_uint64] = STATE(1826), + [sym_ieee32] = STATE(1826), + [sym_ieee64] = STATE(1826), + [sym_bignum] = STATE(1826), + [sym_decimal] = STATE(1826), + [sym_float] = STATE(1397), + [sym_xml_doc] = STATE(711), + [sym_block_comment] = STATE(711), + [sym_preproc_line] = STATE(711), + [sym_preproc_if_in_expression] = STATE(1731), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(729), + [anon_sym_return] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_LBRACK_PIPE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_LBRACE_PIPE] = ACTIONS(749), + [anon_sym_new] = ACTIONS(751), + [anon_sym_return_BANG] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_yield_BANG] = ACTIONS(753), + [anon_sym_lazy] = ACTIONS(733), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_upcast] = ACTIONS(733), + [anon_sym_downcast] = ACTIONS(733), + [anon_sym_LT_AT] = ACTIONS(1969), + [anon_sym_LT_AT_AT] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(761), + [anon_sym_while] = ACTIONS(763), + [anon_sym_if] = ACTIONS(765), + [anon_sym_fun] = ACTIONS(767), + [anon_sym_try] = ACTIONS(769), + [anon_sym_match] = ACTIONS(771), + [anon_sym_match_BANG] = ACTIONS(773), + [anon_sym_function] = ACTIONS(775), + [anon_sym_use] = ACTIONS(785), + [anon_sym_use_BANG] = ACTIONS(787), + [anon_sym_do_BANG] = ACTIONS(789), + [anon_sym_begin] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_AT_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [sym_bool] = ACTIONS(807), + [sym_unit] = ACTIONS(1973), + [aux_sym__identifier_or_op_token1] = ACTIONS(1975), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(811), + [sym_xint] = ACTIONS(813), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(815), + }, + [712] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(110), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), [sym__if_then_else_expression] = STATE(925), [sym__if_then_expression] = STATE(926), - [sym_if_expression] = STATE(916), - [sym_fun_expression] = STATE(916), - [sym_try_expression] = STATE(916), - [sym_match_expression] = STATE(916), - [sym_function_expression] = STATE(916), - [sym_object_instantiation_expression] = STATE(916), - [sym_mutate_expression] = STATE(916), - [sym_index_expression] = STATE(916), - [sym_dot_expression] = STATE(916), - [sym_typed_expression] = STATE(916), - [sym_declaration_expression] = STATE(916), - [sym_do_expression] = STATE(916), - [sym_list_expression] = STATE(916), - [sym_array_expression] = STATE(916), - [sym_begin_end_expression] = STATE(916), - [sym_paren_expression] = STATE(916), - [sym_application_expression] = STATE(916), - [sym_infix_expression] = STATE(916), - [sym_ce_expression] = STATE(916), - [sym_sequential_expression] = STATE(916), - [sym_char] = STATE(937), - [sym_format_string] = STATE(997), - [sym__string_literal] = STATE(997), - [sym_string] = STATE(937), - [sym_verbatim_string] = STATE(937), - [sym_bytechar] = STATE(937), - [sym_bytearray] = STATE(937), - [sym_verbatim_bytearray] = STATE(937), - [sym_format_triple_quoted_string] = STATE(948), - [sym_triple_quoted_string] = STATE(937), - [sym_const] = STATE(916), - [sym_long_identifier_or_op] = STATE(916), - [sym_long_identifier] = STATE(928), - [sym__identifier_or_op] = STATE(929), - [sym_prefix_op] = STATE(476), - [sym_sbyte] = STATE(937), - [sym_byte] = STATE(937), - [sym_int16] = STATE(937), - [sym_uint16] = STATE(937), - [sym_int32] = STATE(937), - [sym_uint32] = STATE(937), - [sym_nativeint] = STATE(937), - [sym_unativeint] = STATE(937), - [sym_int64] = STATE(937), - [sym_uint64] = STATE(937), - [sym_ieee32] = STATE(937), - [sym_ieee64] = STATE(937), - [sym_bignum] = STATE(937), - [sym_decimal] = STATE(937), - [sym_float] = STATE(4660), - [sym_xml_doc] = STATE(722), - [sym_block_comment] = STATE(722), - [sym_preproc_line] = STATE(722), - [sym_preproc_if_in_expression] = STATE(916), - [aux_sym_prefix_op_repeat1] = STATE(2541), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(712), + [sym_block_comment] = STATE(712), + [sym_preproc_line] = STATE(712), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), [sym_identifier] = ACTIONS(301), - [anon_sym_return] = ACTIONS(639), + [anon_sym_return] = ACTIONS(943), [anon_sym_do] = ACTIONS(307), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), [anon_sym_null] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_LBRACK_PIPE] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1686), [anon_sym_LBRACE_PIPE] = ACTIONS(321), - [anon_sym_new] = ACTIONS(643), - [anon_sym_return_BANG] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_yield_BANG] = ACTIONS(645), - [anon_sym_lazy] = ACTIONS(639), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_upcast] = ACTIONS(639), - [anon_sym_downcast] = ACTIONS(639), - [anon_sym_LT_AT] = ACTIONS(1819), - [anon_sym_LT_AT_AT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), [anon_sym_for] = ACTIONS(333), [anon_sym_while] = ACTIONS(335), [anon_sym_if] = ACTIONS(337), @@ -126930,8 +122776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(343), [anon_sym_match_BANG] = ACTIONS(345), [anon_sym_function] = ACTIONS(347), - [anon_sym_use] = ACTIONS(649), - [anon_sym_use_BANG] = ACTIONS(651), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), [anon_sym_do_BANG] = ACTIONS(361), [anon_sym_begin] = ACTIONS(363), [anon_sym_SQUOTE] = ACTIONS(367), @@ -126941,8 +122787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), [sym_bool] = ACTIONS(379), - [sym_unit] = ACTIONS(1823), - [aux_sym__identifier_or_op_token1] = ACTIONS(1825), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), @@ -126952,7 +122798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(633), + [sym_int] = ACTIONS(957), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -126960,9 +122806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(387), }, - [723] = { - [sym_function_or_value_defn] = STATE(651), - [sym__expression] = STATE(289), + [713] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(307), [sym_tuple_expression] = STATE(972), [sym_brace_expression] = STATE(972), [sym_anon_record_expression] = STATE(972), @@ -126993,85 +122839,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_infix_expression] = STATE(972), [sym_ce_expression] = STATE(972), [sym_sequential_expression] = STATE(972), - [sym_char] = STATE(896), - [sym_format_string] = STATE(863), - [sym__string_literal] = STATE(863), - [sym_string] = STATE(896), - [sym_verbatim_string] = STATE(896), - [sym_bytechar] = STATE(896), - [sym_bytearray] = STATE(896), - [sym_verbatim_bytearray] = STATE(896), - [sym_format_triple_quoted_string] = STATE(894), - [sym_triple_quoted_string] = STATE(896), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), [sym_const] = STATE(972), [sym_long_identifier_or_op] = STATE(972), [sym_long_identifier] = STATE(986), [sym__identifier_or_op] = STATE(987), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(896), - [sym_byte] = STATE(896), - [sym_int16] = STATE(896), - [sym_uint16] = STATE(896), - [sym_int32] = STATE(896), - [sym_uint32] = STATE(896), - [sym_nativeint] = STATE(896), - [sym_unativeint] = STATE(896), - [sym_int64] = STATE(896), - [sym_uint64] = STATE(896), - [sym_ieee32] = STATE(896), - [sym_ieee64] = STATE(896), - [sym_bignum] = STATE(896), - [sym_decimal] = STATE(896), - [sym_float] = STATE(4356), - [sym_xml_doc] = STATE(723), - [sym_block_comment] = STATE(723), - [sym_preproc_line] = STATE(723), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(713), + [sym_block_comment] = STATE(713), + [sym_preproc_line] = STATE(713), [sym_preproc_if_in_expression] = STATE(972), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(187), - [anon_sym_return] = ACTIONS(193), - [anon_sym_do] = ACTIONS(195), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LBRACK_PIPE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [anon_sym_new] = ACTIONS(213), - [anon_sym_return_BANG] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_yield_BANG] = ACTIONS(215), - [anon_sym_lazy] = ACTIONS(193), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_upcast] = ACTIONS(193), - [anon_sym_downcast] = ACTIONS(193), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_if] = ACTIONS(227), - [anon_sym_fun] = ACTIONS(229), - [anon_sym_try] = ACTIONS(231), - [anon_sym_match] = ACTIONS(233), - [anon_sym_match_BANG] = ACTIONS(235), - [anon_sym_function] = ACTIONS(237), - [anon_sym_use] = ACTIONS(241), - [anon_sym_use_BANG] = ACTIONS(243), - [anon_sym_do_BANG] = ACTIONS(245), - [anon_sym_begin] = ACTIONS(247), - [anon_sym_SQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(255), - [anon_sym_AT_DQUOTE] = ACTIONS(257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(261), - [sym_bool] = ACTIONS(263), - [sym_unit] = ACTIONS(1917), - [aux_sym__identifier_or_op_token1] = ACTIONS(1919), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127080,126 +122926,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(267), - [sym_xint] = ACTIONS(269), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(271), + [anon_sym_POUNDif] = ACTIONS(217), }, - [724] = { - [sym_function_or_value_defn] = STATE(665), - [sym__expression] = STATE(272), - [sym_tuple_expression] = STATE(1728), - [sym_brace_expression] = STATE(1728), - [sym_anon_record_expression] = STATE(1728), - [sym_prefixed_expression] = STATE(1728), - [sym_literal_expression] = STATE(1728), - [sym_typecast_expression] = STATE(1728), - [sym_for_expression] = STATE(1728), - [sym_while_expression] = STATE(1728), - [sym__if_then_else_expression] = STATE(1733), - [sym__if_then_expression] = STATE(1734), - [sym_if_expression] = STATE(1728), - [sym_fun_expression] = STATE(1728), - [sym_try_expression] = STATE(1728), - [sym_match_expression] = STATE(1728), - [sym_function_expression] = STATE(1728), - [sym_object_instantiation_expression] = STATE(1728), - [sym_mutate_expression] = STATE(1728), - [sym_index_expression] = STATE(1728), - [sym_dot_expression] = STATE(1728), - [sym_typed_expression] = STATE(1728), - [sym_declaration_expression] = STATE(1728), - [sym_do_expression] = STATE(1728), - [sym_list_expression] = STATE(1728), - [sym_array_expression] = STATE(1728), - [sym_begin_end_expression] = STATE(1728), - [sym_paren_expression] = STATE(1728), - [sym_application_expression] = STATE(1728), - [sym_infix_expression] = STATE(1728), - [sym_ce_expression] = STATE(1728), - [sym_sequential_expression] = STATE(1728), - [sym_char] = STATE(1786), - [sym_format_string] = STATE(1620), - [sym__string_literal] = STATE(1620), - [sym_string] = STATE(1786), - [sym_verbatim_string] = STATE(1786), - [sym_bytechar] = STATE(1786), - [sym_bytearray] = STATE(1786), - [sym_verbatim_bytearray] = STATE(1786), - [sym_format_triple_quoted_string] = STATE(1795), - [sym_triple_quoted_string] = STATE(1786), - [sym_const] = STATE(1728), - [sym_long_identifier_or_op] = STATE(1728), - [sym_long_identifier] = STATE(1737), - [sym__identifier_or_op] = STATE(1738), - [sym_prefix_op] = STATE(548), - [sym_sbyte] = STATE(1786), - [sym_byte] = STATE(1786), - [sym_int16] = STATE(1786), - [sym_uint16] = STATE(1786), - [sym_int32] = STATE(1786), - [sym_uint32] = STATE(1786), - [sym_nativeint] = STATE(1786), - [sym_unativeint] = STATE(1786), - [sym_int64] = STATE(1786), - [sym_uint64] = STATE(1786), - [sym_ieee32] = STATE(1786), - [sym_ieee64] = STATE(1786), - [sym_bignum] = STATE(1786), - [sym_decimal] = STATE(1786), - [sym_float] = STATE(4365), - [sym_xml_doc] = STATE(724), - [sym_block_comment] = STATE(724), - [sym_preproc_line] = STATE(724), - [sym_preproc_if_in_expression] = STATE(1728), - [aux_sym_prefix_op_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(653), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(659), - [anon_sym_let] = ACTIONS(149), - [anon_sym_let_BANG] = ACTIONS(151), - [anon_sym_null] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(663), + [714] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(299), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(714), + [sym_block_comment] = STATE(714), + [sym_preproc_line] = STATE(714), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_LBRACE_PIPE] = ACTIONS(671), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_return_BANG] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1123), - [anon_sym_yield_BANG] = ACTIONS(1129), - [anon_sym_lazy] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1123), - [anon_sym_upcast] = ACTIONS(1123), - [anon_sym_downcast] = ACTIONS(1123), - [anon_sym_LT_AT] = ACTIONS(1967), - [anon_sym_LT_AT_AT] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(685), - [anon_sym_if] = ACTIONS(687), - [anon_sym_fun] = ACTIONS(689), - [anon_sym_try] = ACTIONS(691), - [anon_sym_match] = ACTIONS(693), - [anon_sym_match_BANG] = ACTIONS(695), - [anon_sym_function] = ACTIONS(697), - [anon_sym_use] = ACTIONS(1139), - [anon_sym_use_BANG] = ACTIONS(1141), - [anon_sym_do_BANG] = ACTIONS(711), - [anon_sym_begin] = ACTIONS(713), - [anon_sym_SQUOTE] = ACTIONS(717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_AT_DQUOTE] = ACTIONS(723), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [sym_bool] = ACTIONS(729), - [sym_unit] = ACTIONS(1971), - [aux_sym__identifier_or_op_token1] = ACTIONS(1973), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127208,8612 +123054,4633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(733), - [sym_xint] = ACTIONS(735), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(737), - }, - [725] = { - [sym_xml_doc] = STATE(725), - [sym_block_comment] = STATE(725), - [sym_preproc_line] = STATE(725), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_GT_RBRACK] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_to] = ACTIONS(2223), - [anon_sym_downto] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_end] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2227), - [anon_sym_uy] = ACTIONS(2229), - [anon_sym_s] = ACTIONS(2231), - [anon_sym_us] = ACTIONS(2233), - [anon_sym_l] = ACTIONS(2235), - [aux_sym_uint32_token1] = ACTIONS(2237), - [anon_sym_n] = ACTIONS(2239), - [anon_sym_un] = ACTIONS(2241), - [anon_sym_L] = ACTIONS(2243), - [aux_sym_uint64_token1] = ACTIONS(2245), - [aux_sym_bignum_token1] = ACTIONS(2247), - [aux_sym_decimal_token1] = ACTIONS(2249), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [anon_sym_POUNDendif] = ACTIONS(2225), - [anon_sym_POUNDelse] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [726] = { - [sym_xml_doc] = STATE(726), - [sym_block_comment] = STATE(726), - [sym_preproc_line] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_POUNDnowarn] = ACTIONS(2225), - [anon_sym_POUNDr] = ACTIONS(2225), - [anon_sym_POUNDload] = ACTIONS(2225), - [anon_sym_open] = ACTIONS(2223), - [anon_sym_LBRACK_LT] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2255), - [anon_sym_uy] = ACTIONS(2257), - [anon_sym_s] = ACTIONS(2259), - [anon_sym_us] = ACTIONS(2261), - [anon_sym_l] = ACTIONS(2263), - [aux_sym_uint32_token1] = ACTIONS(2265), - [anon_sym_n] = ACTIONS(2267), - [anon_sym_un] = ACTIONS(2269), - [anon_sym_L] = ACTIONS(2271), - [aux_sym_uint64_token1] = ACTIONS(2273), - [aux_sym_bignum_token1] = ACTIONS(2275), - [aux_sym_decimal_token1] = ACTIONS(2277), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [727] = { - [sym_xml_doc] = STATE(727), - [sym_block_comment] = STATE(727), - [sym_preproc_line] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_POUNDnowarn] = ACTIONS(2225), - [anon_sym_POUNDr] = ACTIONS(2225), - [anon_sym_POUNDload] = ACTIONS(2225), - [anon_sym_open] = ACTIONS(2223), - [anon_sym_LBRACK_LT] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2255), - [anon_sym_uy] = ACTIONS(2257), - [anon_sym_s] = ACTIONS(2259), - [anon_sym_us] = ACTIONS(2261), - [anon_sym_l] = ACTIONS(2263), - [aux_sym_uint32_token1] = ACTIONS(2265), - [anon_sym_n] = ACTIONS(2267), - [anon_sym_un] = ACTIONS(2269), - [anon_sym_L] = ACTIONS(2271), - [aux_sym_uint64_token1] = ACTIONS(2273), - [aux_sym_bignum_token1] = ACTIONS(2275), - [aux_sym_decimal_token1] = ACTIONS(2277), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [728] = { - [sym_xml_doc] = STATE(728), - [sym_block_comment] = STATE(728), - [sym_preproc_line] = STATE(728), - [sym_identifier] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_POUNDnowarn] = ACTIONS(2225), - [anon_sym_POUNDr] = ACTIONS(2225), - [anon_sym_POUNDload] = ACTIONS(2225), - [anon_sym_open] = ACTIONS(2223), - [anon_sym_LBRACK_LT] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2279), - [anon_sym_uy] = ACTIONS(2281), - [anon_sym_s] = ACTIONS(2283), - [anon_sym_us] = ACTIONS(2285), - [anon_sym_l] = ACTIONS(2287), - [aux_sym_uint32_token1] = ACTIONS(2289), - [anon_sym_n] = ACTIONS(2291), - [anon_sym_un] = ACTIONS(2293), - [anon_sym_L] = ACTIONS(2295), - [aux_sym_uint64_token1] = ACTIONS(2297), - [aux_sym_bignum_token1] = ACTIONS(2299), - [aux_sym_decimal_token1] = ACTIONS(2301), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), - }, - [729] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(729), - [sym_block_comment] = STATE(729), - [sym_preproc_line] = STATE(729), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_GT_RBRACK] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_to] = ACTIONS(2307), - [anon_sym_downto] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_end] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_DOT_DOT2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [anon_sym_POUNDendif] = ACTIONS(2305), - [anon_sym_POUNDelse] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - }, - [730] = { - [sym_xml_doc] = STATE(730), - [sym_block_comment] = STATE(730), - [sym_preproc_line] = STATE(730), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2317), - [anon_sym_uy] = ACTIONS(2319), - [anon_sym_s] = ACTIONS(2321), - [anon_sym_us] = ACTIONS(2323), - [anon_sym_l] = ACTIONS(2325), - [aux_sym_uint32_token1] = ACTIONS(2327), - [anon_sym_n] = ACTIONS(2329), - [anon_sym_un] = ACTIONS(2331), - [anon_sym_L] = ACTIONS(2333), - [aux_sym_uint64_token1] = ACTIONS(2335), - [aux_sym_bignum_token1] = ACTIONS(2337), - [aux_sym_decimal_token1] = ACTIONS(2339), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), - [sym__else] = ACTIONS(2225), - [sym__elif] = ACTIONS(2225), - }, - [731] = { - [sym_type_arguments] = STATE(793), - [sym_long_identifier] = STATE(772), - [sym_xml_doc] = STATE(731), - [sym_block_comment] = STATE(731), - [sym_preproc_line] = STATE(731), - [aux_sym__compound_type_repeat1] = STATE(751), - [sym_identifier] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_DOT_DOT2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(217), }, - [732] = { - [sym_type_arguments] = STATE(793), - [sym_long_identifier] = STATE(772), - [sym_xml_doc] = STATE(732), - [sym_block_comment] = STATE(732), - [sym_preproc_line] = STATE(732), - [aux_sym__compound_type_repeat1] = STATE(751), - [sym_identifier] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_POUNDnowarn] = ACTIONS(2357), - [anon_sym_POUNDr] = ACTIONS(2357), - [anon_sym_POUNDload] = ACTIONS(2357), - [anon_sym_open] = ACTIONS(2355), - [anon_sym_LBRACK_LT] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_DOT_DOT2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - [sym__dedent] = ACTIONS(2357), - }, - [733] = { - [sym_type_arguments] = STATE(793), - [sym_long_identifier] = STATE(772), - [sym_xml_doc] = STATE(733), - [sym_block_comment] = STATE(733), - [sym_preproc_line] = STATE(733), - [aux_sym__compound_type_repeat1] = STATE(751), - [sym_identifier] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_POUNDnowarn] = ACTIONS(2361), - [anon_sym_POUNDr] = ACTIONS(2361), - [anon_sym_POUNDload] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2359), - [anon_sym_LBRACK_LT] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_DOT_DOT2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [715] = { + [sym_function_or_value_defn] = STATE(694), + [sym__expression] = STATE(182), + [sym_tuple_expression] = STATE(1743), + [sym_brace_expression] = STATE(1743), + [sym_anon_record_expression] = STATE(1743), + [sym_prefixed_expression] = STATE(1743), + [sym_literal_expression] = STATE(1743), + [sym_typecast_expression] = STATE(1743), + [sym_for_expression] = STATE(1743), + [sym_while_expression] = STATE(1743), + [sym__if_then_else_expression] = STATE(1748), + [sym__if_then_expression] = STATE(1749), + [sym_if_expression] = STATE(1743), + [sym_fun_expression] = STATE(1743), + [sym_try_expression] = STATE(1743), + [sym_match_expression] = STATE(1743), + [sym_function_expression] = STATE(1743), + [sym_object_instantiation_expression] = STATE(1743), + [sym_mutate_expression] = STATE(1743), + [sym_index_expression] = STATE(1743), + [sym_dot_expression] = STATE(1743), + [sym_typed_expression] = STATE(1743), + [sym_declaration_expression] = STATE(1743), + [sym_do_expression] = STATE(1743), + [sym_list_expression] = STATE(1743), + [sym_array_expression] = STATE(1743), + [sym_begin_end_expression] = STATE(1743), + [sym_paren_expression] = STATE(1743), + [sym_application_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_ce_expression] = STATE(1743), + [sym_sequential_expression] = STATE(1743), + [sym_char] = STATE(1827), + [sym_format_string] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_string] = STATE(1827), + [sym_verbatim_string] = STATE(1827), + [sym_bytechar] = STATE(1827), + [sym_bytearray] = STATE(1827), + [sym_verbatim_bytearray] = STATE(1827), + [sym_format_triple_quoted_string] = STATE(1843), + [sym_triple_quoted_string] = STATE(1827), + [sym_const] = STATE(1743), + [sym_long_identifier_or_op] = STATE(1743), + [sym_long_identifier] = STATE(1752), + [sym__identifier_or_op] = STATE(1753), + [sym_prefix_op] = STATE(676), + [sym_sbyte] = STATE(1827), + [sym_byte] = STATE(1827), + [sym_int16] = STATE(1827), + [sym_uint16] = STATE(1827), + [sym_int32] = STATE(1827), + [sym_uint32] = STATE(1827), + [sym_nativeint] = STATE(1827), + [sym_unativeint] = STATE(1827), + [sym_int64] = STATE(1827), + [sym_uint64] = STATE(1827), + [sym_ieee32] = STATE(1827), + [sym_ieee64] = STATE(1827), + [sym_bignum] = STATE(1827), + [sym_decimal] = STATE(1827), + [sym_float] = STATE(1368), + [sym_xml_doc] = STATE(715), + [sym_block_comment] = STATE(715), + [sym_preproc_line] = STATE(715), + [sym_preproc_if_in_expression] = STATE(1743), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(855), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(861), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LBRACK_PIPE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACE_PIPE] = ACTIONS(875), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_return_BANG] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_yield_BANG] = ACTIONS(1029), + [anon_sym_lazy] = ACTIONS(1023), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_upcast] = ACTIONS(1023), + [anon_sym_downcast] = ACTIONS(1023), + [anon_sym_LT_AT] = ACTIONS(1949), + [anon_sym_LT_AT_AT] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(889), + [anon_sym_if] = ACTIONS(891), + [anon_sym_fun] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_match] = ACTIONS(897), + [anon_sym_match_BANG] = ACTIONS(899), + [anon_sym_function] = ACTIONS(901), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_use_BANG] = ACTIONS(1039), + [anon_sym_do_BANG] = ACTIONS(915), + [anon_sym_begin] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_AT_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), + [sym_bool] = ACTIONS(933), + [sym_unit] = ACTIONS(1961), + [aux_sym__identifier_or_op_token1] = ACTIONS(1963), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1041), + [sym_xint] = ACTIONS(939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [sym__dedent] = ACTIONS(2361), + [anon_sym_POUNDif] = ACTIONS(941), }, - [734] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(734), - [sym_block_comment] = STATE(734), - [sym_preproc_line] = STATE(734), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_GT_RBRACK] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_RBRACK] = ACTIONS(2361), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_to] = ACTIONS(2359), - [anon_sym_downto] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_end] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_DOT_DOT2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [716] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(319), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(716), + [sym_block_comment] = STATE(716), + [sym_preproc_line] = STATE(716), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [anon_sym_POUNDendif] = ACTIONS(2361), - [anon_sym_POUNDelse] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - }, - [735] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(735), - [sym_block_comment] = STATE(735), - [sym_preproc_line] = STATE(735), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_GT_RBRACK] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2357), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_to] = ACTIONS(2355), - [anon_sym_downto] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_end] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_DOT_DOT2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [anon_sym_POUNDendif] = ACTIONS(2357), - [anon_sym_POUNDelse] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - }, - [736] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(736), - [sym_block_comment] = STATE(736), - [sym_preproc_line] = STATE(736), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_GT_RBRACK] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2345), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_to] = ACTIONS(2343), - [anon_sym_downto] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_end] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_DOT_DOT2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [anon_sym_POUNDendif] = ACTIONS(2345), - [anon_sym_POUNDelse] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - }, - [737] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(737), - [sym_block_comment] = STATE(737), - [sym_preproc_line] = STATE(737), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_GT_RBRACK] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_RBRACK] = ACTIONS(2363), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_to] = ACTIONS(2365), - [anon_sym_downto] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_end] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_DOT_DOT2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [anon_sym_POUNDendif] = ACTIONS(2363), - [anon_sym_POUNDelse] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - }, - [738] = { - [sym_xml_doc] = STATE(738), - [sym_block_comment] = STATE(738), - [sym_preproc_line] = STATE(738), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2367), - [anon_sym_uy] = ACTIONS(2369), - [anon_sym_s] = ACTIONS(2371), - [anon_sym_us] = ACTIONS(2373), - [anon_sym_l] = ACTIONS(2375), - [aux_sym_uint32_token1] = ACTIONS(2377), - [anon_sym_n] = ACTIONS(2379), - [anon_sym_un] = ACTIONS(2381), - [anon_sym_L] = ACTIONS(2383), - [aux_sym_uint64_token1] = ACTIONS(2385), - [aux_sym_bignum_token1] = ACTIONS(2387), - [aux_sym_decimal_token1] = ACTIONS(2389), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), - }, - [739] = { - [sym_xml_doc] = STATE(739), - [sym_block_comment] = STATE(739), - [sym_preproc_line] = STATE(739), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2279), - [anon_sym_uy] = ACTIONS(2281), - [anon_sym_s] = ACTIONS(2283), - [anon_sym_us] = ACTIONS(2285), - [anon_sym_l] = ACTIONS(2287), - [aux_sym_uint32_token1] = ACTIONS(2289), - [anon_sym_n] = ACTIONS(2291), - [anon_sym_un] = ACTIONS(2293), - [anon_sym_L] = ACTIONS(2295), - [aux_sym_uint64_token1] = ACTIONS(2297), - [aux_sym_bignum_token1] = ACTIONS(2299), - [aux_sym_decimal_token1] = ACTIONS(2301), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), - }, - [740] = { - [sym_type_arguments] = STATE(793), - [sym_long_identifier] = STATE(772), - [sym_xml_doc] = STATE(740), - [sym_block_comment] = STATE(740), - [sym_preproc_line] = STATE(740), - [aux_sym__compound_type_repeat1] = STATE(751), - [sym_identifier] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_POUNDnowarn] = ACTIONS(2363), - [anon_sym_POUNDr] = ACTIONS(2363), - [anon_sym_POUNDload] = ACTIONS(2363), - [anon_sym_open] = ACTIONS(2365), - [anon_sym_LBRACK_LT] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_DOT_DOT2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [sym__dedent] = ACTIONS(2363), + [anon_sym_POUNDif] = ACTIONS(217), }, - [741] = { - [sym_type_arguments] = STATE(793), - [sym_long_identifier] = STATE(772), - [sym_xml_doc] = STATE(741), - [sym_block_comment] = STATE(741), - [sym_preproc_line] = STATE(741), - [aux_sym__compound_type_repeat1] = STATE(751), - [sym_identifier] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_POUNDnowarn] = ACTIONS(2305), - [anon_sym_POUNDr] = ACTIONS(2305), - [anon_sym_POUNDload] = ACTIONS(2305), - [anon_sym_open] = ACTIONS(2307), - [anon_sym_LBRACK_LT] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_DOT_DOT2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [sym__dedent] = ACTIONS(2305), - }, - [742] = { - [sym_type_arguments] = STATE(802), - [sym_long_identifier] = STATE(806), - [sym_xml_doc] = STATE(742), - [sym_block_comment] = STATE(742), - [sym_preproc_line] = STATE(742), - [aux_sym__compound_type_repeat1] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2391), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_POUNDnowarn] = ACTIONS(2361), - [anon_sym_POUNDr] = ACTIONS(2361), - [anon_sym_POUNDload] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2359), - [anon_sym_LBRACK_LT] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2397), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [717] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(289), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(717), + [sym_block_comment] = STATE(717), + [sym_preproc_line] = STATE(717), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - }, - [743] = { - [sym_xml_doc] = STATE(743), - [sym_block_comment] = STATE(743), - [sym_preproc_line] = STATE(743), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2401), - [anon_sym_uy] = ACTIONS(2403), - [anon_sym_s] = ACTIONS(2405), - [anon_sym_us] = ACTIONS(2407), - [anon_sym_l] = ACTIONS(2409), - [aux_sym_uint32_token1] = ACTIONS(2411), - [anon_sym_n] = ACTIONS(2413), - [anon_sym_un] = ACTIONS(2415), - [anon_sym_L] = ACTIONS(2417), - [aux_sym_uint64_token1] = ACTIONS(2419), - [aux_sym_bignum_token1] = ACTIONS(2421), - [aux_sym_decimal_token1] = ACTIONS(2423), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [744] = { - [sym_xml_doc] = STATE(744), - [sym_block_comment] = STATE(744), - [sym_preproc_line] = STATE(744), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2425), - [anon_sym_uy] = ACTIONS(2427), - [anon_sym_s] = ACTIONS(2429), - [anon_sym_us] = ACTIONS(2431), - [anon_sym_l] = ACTIONS(2433), - [aux_sym_uint32_token1] = ACTIONS(2435), - [anon_sym_n] = ACTIONS(2437), - [anon_sym_un] = ACTIONS(2439), - [anon_sym_L] = ACTIONS(2441), - [aux_sym_uint64_token1] = ACTIONS(2443), - [aux_sym_bignum_token1] = ACTIONS(2445), - [aux_sym_decimal_token1] = ACTIONS(2447), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [745] = { - [sym_type_arguments] = STATE(802), - [sym_long_identifier] = STATE(806), - [sym_xml_doc] = STATE(745), - [sym_block_comment] = STATE(745), - [sym_preproc_line] = STATE(745), - [aux_sym__compound_type_repeat1] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2391), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_POUNDnowarn] = ACTIONS(2363), - [anon_sym_POUNDr] = ACTIONS(2363), - [anon_sym_POUNDload] = ACTIONS(2363), - [anon_sym_open] = ACTIONS(2365), - [anon_sym_LBRACK_LT] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2397), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - }, - [746] = { - [sym_type_arguments] = STATE(802), - [sym_long_identifier] = STATE(806), - [sym_xml_doc] = STATE(746), - [sym_block_comment] = STATE(746), - [sym_preproc_line] = STATE(746), - [aux_sym__compound_type_repeat1] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_POUNDnowarn] = ACTIONS(2357), - [anon_sym_POUNDr] = ACTIONS(2357), - [anon_sym_POUNDload] = ACTIONS(2357), - [anon_sym_open] = ACTIONS(2355), - [anon_sym_LBRACK_LT] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2397), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - }, - [747] = { - [sym_type_arguments] = STATE(802), - [sym_long_identifier] = STATE(806), - [sym_xml_doc] = STATE(747), - [sym_block_comment] = STATE(747), - [sym_preproc_line] = STATE(747), - [aux_sym__compound_type_repeat1] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2391), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2397), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - }, - [748] = { - [sym_type_arguments] = STATE(802), - [sym_long_identifier] = STATE(806), - [sym_xml_doc] = STATE(748), - [sym_block_comment] = STATE(748), - [sym_preproc_line] = STATE(748), - [aux_sym__compound_type_repeat1] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2391), - [anon_sym_namespace] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_POUNDnowarn] = ACTIONS(2305), - [anon_sym_POUNDr] = ACTIONS(2305), - [anon_sym_POUNDload] = ACTIONS(2305), - [anon_sym_open] = ACTIONS(2307), - [anon_sym_LBRACK_LT] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2397), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - }, - [749] = { - [sym_xml_doc] = STATE(749), - [sym_block_comment] = STATE(749), - [sym_preproc_line] = STATE(749), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2449), - [anon_sym_uy] = ACTIONS(2451), - [anon_sym_s] = ACTIONS(2453), - [anon_sym_us] = ACTIONS(2455), - [anon_sym_l] = ACTIONS(2457), - [aux_sym_uint32_token1] = ACTIONS(2459), - [anon_sym_n] = ACTIONS(2461), - [anon_sym_un] = ACTIONS(2463), - [anon_sym_L] = ACTIONS(2465), - [aux_sym_uint64_token1] = ACTIONS(2467), - [aux_sym_bignum_token1] = ACTIONS(2469), - [aux_sym_decimal_token1] = ACTIONS(2471), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__else] = ACTIONS(2225), - [sym__elif] = ACTIONS(2225), - }, - [750] = { - [sym_xml_doc] = STATE(750), - [sym_block_comment] = STATE(750), - [sym_preproc_line] = STATE(750), - [aux_sym_long_identifier_repeat1] = STATE(754), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_GT_RBRACK] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_to] = ACTIONS(2473), - [anon_sym_downto] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_end] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_DOT_DOT2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [anon_sym_POUNDendif] = ACTIONS(2475), - [anon_sym_POUNDelse] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - }, - [751] = { - [sym_xml_doc] = STATE(751), - [sym_block_comment] = STATE(751), - [sym_preproc_line] = STATE(751), - [aux_sym__compound_type_repeat1] = STATE(763), - [sym_identifier] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_POUNDnowarn] = ACTIONS(2481), - [anon_sym_POUNDr] = ACTIONS(2481), - [anon_sym_POUNDload] = ACTIONS(2481), - [anon_sym_open] = ACTIONS(2479), - [anon_sym_LBRACK_LT] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_DOT_DOT2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - [sym__dedent] = ACTIONS(2481), - }, - [752] = { - [sym_xml_doc] = STATE(752), - [sym_block_comment] = STATE(752), - [sym_preproc_line] = STATE(752), - [aux_sym_long_identifier_repeat1] = STATE(752), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_to] = ACTIONS(2483), - [anon_sym_downto] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_end] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [anon_sym_POUNDendif] = ACTIONS(2485), - [anon_sym_POUNDelse] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [753] = { - [sym_xml_doc] = STATE(753), - [sym_block_comment] = STATE(753), - [sym_preproc_line] = STATE(753), - [aux_sym_long_identifier_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_DOT_DOT2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), - }, - [754] = { - [sym_xml_doc] = STATE(754), - [sym_block_comment] = STATE(754), - [sym_preproc_line] = STATE(754), - [aux_sym_long_identifier_repeat1] = STATE(752), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_GT_RBRACK] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_RBRACK] = ACTIONS(2494), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_to] = ACTIONS(2492), - [anon_sym_downto] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_end] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_DOT_DOT2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [anon_sym_POUNDendif] = ACTIONS(2494), - [anon_sym_POUNDelse] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [anon_sym_POUNDif] = ACTIONS(217), }, - [755] = { - [sym_xml_doc] = STATE(755), - [sym_block_comment] = STATE(755), - [sym_preproc_line] = STATE(755), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2496), - [anon_sym_uy] = ACTIONS(2498), - [anon_sym_s] = ACTIONS(2500), - [anon_sym_us] = ACTIONS(2502), - [anon_sym_l] = ACTIONS(2504), - [aux_sym_uint32_token1] = ACTIONS(2506), - [anon_sym_n] = ACTIONS(2508), - [anon_sym_un] = ACTIONS(2510), - [anon_sym_L] = ACTIONS(2512), - [aux_sym_uint64_token1] = ACTIONS(2514), - [aux_sym_bignum_token1] = ACTIONS(2516), - [aux_sym_decimal_token1] = ACTIONS(2518), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__then] = ACTIONS(2225), - }, - [756] = { - [sym_xml_doc] = STATE(756), - [sym_block_comment] = STATE(756), - [sym_preproc_line] = STATE(756), - [aux_sym_long_identifier_repeat1] = STATE(758), - [sym_identifier] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_POUNDnowarn] = ACTIONS(2523), - [anon_sym_POUNDr] = ACTIONS(2523), - [anon_sym_POUNDload] = ACTIONS(2523), - [anon_sym_open] = ACTIONS(2520), - [anon_sym_LBRACK_LT] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_DOT_DOT2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [718] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(290), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(718), + [sym_block_comment] = STATE(718), + [sym_preproc_line] = STATE(718), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), - }, - [757] = { - [sym_xml_doc] = STATE(757), - [sym_block_comment] = STATE(757), - [sym_preproc_line] = STATE(757), - [aux_sym__compound_type_repeat1] = STATE(757), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_GT_RBRACK] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2345), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_to] = ACTIONS(2343), - [anon_sym_downto] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_end] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_DOT_DOT2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [anon_sym_POUNDendif] = ACTIONS(2345), - [anon_sym_POUNDelse] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - }, - [758] = { - [sym_xml_doc] = STATE(758), - [sym_block_comment] = STATE(758), - [sym_preproc_line] = STATE(758), - [aux_sym_long_identifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2490), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_DOT_DOT2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - }, - [759] = { - [sym_xml_doc] = STATE(759), - [sym_block_comment] = STATE(759), - [sym_preproc_line] = STATE(759), - [aux_sym__compound_type_repeat1] = STATE(757), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_GT_RBRACK] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_to] = ACTIONS(2479), - [anon_sym_downto] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_end] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_DOT_DOT2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [anon_sym_POUNDendif] = ACTIONS(2481), - [anon_sym_POUNDelse] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), + [anon_sym_POUNDif] = ACTIONS(217), }, - [760] = { - [sym_xml_doc] = STATE(760), - [sym_block_comment] = STATE(760), - [sym_preproc_line] = STATE(760), - [aux_sym_long_identifier_repeat1] = STATE(754), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_GT_RBRACK] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_to] = ACTIONS(2520), - [anon_sym_downto] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_end] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_DOT_DOT2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [719] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(309), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(719), + [sym_block_comment] = STATE(719), + [sym_preproc_line] = STATE(719), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [anon_sym_POUNDendif] = ACTIONS(2523), - [anon_sym_POUNDelse] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - }, - [761] = { - [sym_xml_doc] = STATE(761), - [sym_block_comment] = STATE(761), - [sym_preproc_line] = STATE(761), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_y] = ACTIONS(2537), - [anon_sym_uy] = ACTIONS(2539), - [anon_sym_s] = ACTIONS(2541), - [anon_sym_us] = ACTIONS(2543), - [anon_sym_l] = ACTIONS(2545), - [aux_sym_uint32_token1] = ACTIONS(2547), - [anon_sym_n] = ACTIONS(2549), - [anon_sym_un] = ACTIONS(2551), - [anon_sym_L] = ACTIONS(2553), - [aux_sym_uint64_token1] = ACTIONS(2555), - [aux_sym_bignum_token1] = ACTIONS(2557), - [aux_sym_decimal_token1] = ACTIONS(2559), - [anon_sym_DOT2] = ACTIONS(2251), - [aux_sym_float_token1] = ACTIONS(2253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [762] = { - [sym_xml_doc] = STATE(762), - [sym_block_comment] = STATE(762), - [sym_preproc_line] = STATE(762), - [aux_sym_long_identifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [763] = { - [sym_xml_doc] = STATE(763), - [sym_block_comment] = STATE(763), - [sym_preproc_line] = STATE(763), - [aux_sym__compound_type_repeat1] = STATE(763), - [sym_identifier] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_DOT_DOT2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), - }, - [764] = { - [sym_xml_doc] = STATE(764), - [sym_block_comment] = STATE(764), - [sym_preproc_line] = STATE(764), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_GT_RBRACK] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_RBRACK] = ACTIONS(2569), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_to] = ACTIONS(2567), - [anon_sym_downto] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_end] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_DOT_DOT2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [anon_sym_POUNDendif] = ACTIONS(2569), - [anon_sym_POUNDelse] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - }, - [765] = { - [sym_xml_doc] = STATE(765), - [sym_block_comment] = STATE(765), - [sym_preproc_line] = STATE(765), - [sym_identifier] = ACTIONS(2571), - [anon_sym_module] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_POUNDnowarn] = ACTIONS(2573), - [anon_sym_POUNDr] = ACTIONS(2573), - [anon_sym_POUNDload] = ACTIONS(2573), - [anon_sym_open] = ACTIONS(2571), - [anon_sym_LBRACK_LT] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_DOT_DOT2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [sym__dedent] = ACTIONS(2573), - }, - [766] = { - [sym_xml_doc] = STATE(766), - [sym_block_comment] = STATE(766), - [sym_preproc_line] = STATE(766), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_GT_RBRACK] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_to] = ACTIONS(2575), - [anon_sym_downto] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_end] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_DOT_DOT2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [anon_sym_POUNDendif] = ACTIONS(2577), - [anon_sym_POUNDelse] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - }, - [767] = { - [sym_xml_doc] = STATE(767), - [sym_block_comment] = STATE(767), - [sym_preproc_line] = STATE(767), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_GT_RBRACK] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_RBRACK] = ACTIONS(2581), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_to] = ACTIONS(2579), - [anon_sym_downto] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_end] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [anon_sym_POUNDendif] = ACTIONS(2581), - [anon_sym_POUNDelse] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), + [anon_sym_POUNDif] = ACTIONS(217), }, - [768] = { - [sym_xml_doc] = STATE(768), - [sym_block_comment] = STATE(768), - [sym_preproc_line] = STATE(768), - [sym_identifier] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_POUNDnowarn] = ACTIONS(2585), - [anon_sym_POUNDr] = ACTIONS(2585), - [anon_sym_POUNDload] = ACTIONS(2585), - [anon_sym_open] = ACTIONS(2583), - [anon_sym_LBRACK_LT] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DOT_DOT2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - [sym__dedent] = ACTIONS(2585), - }, - [769] = { - [sym_xml_doc] = STATE(769), - [sym_block_comment] = STATE(769), - [sym_preproc_line] = STATE(769), - [sym_identifier] = ACTIONS(2587), - [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_GT_RBRACK] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_QMARK] = ACTIONS(2587), - [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_RBRACK] = ACTIONS(2589), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_AT_GT] = ACTIONS(2589), - [anon_sym_LT_AT_AT] = ACTIONS(2587), - [anon_sym_AT_AT_GT] = ACTIONS(2589), - [anon_sym_COLON_GT] = ACTIONS(2589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_to] = ACTIONS(2587), - [anon_sym_downto] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_LT_DASH] = ACTIONS(2587), - [anon_sym_DOT_LBRACK] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_end] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_DOT_DOT2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_or] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2587), - [aux_sym__identifier_or_op_token1] = ACTIONS(2587), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2587), - [anon_sym_DASH_DOT] = ACTIONS(2587), - [anon_sym_PERCENT] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [aux_sym_infix_op_token1] = ACTIONS(2587), - [anon_sym_PIPE_PIPE] = ACTIONS(2587), - [anon_sym_BANG_EQ] = ACTIONS(2589), - [anon_sym_COLON_EQ] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [720] = { + [sym_function_or_value_defn] = STATE(483), + [sym__expression] = STATE(161), + [sym_tuple_expression] = STATE(897), + [sym_brace_expression] = STATE(897), + [sym_anon_record_expression] = STATE(897), + [sym_prefixed_expression] = STATE(897), + [sym_literal_expression] = STATE(897), + [sym_typecast_expression] = STATE(897), + [sym_for_expression] = STATE(897), + [sym_while_expression] = STATE(897), + [sym__if_then_else_expression] = STATE(925), + [sym__if_then_expression] = STATE(926), + [sym_if_expression] = STATE(897), + [sym_fun_expression] = STATE(897), + [sym_try_expression] = STATE(897), + [sym_match_expression] = STATE(897), + [sym_function_expression] = STATE(897), + [sym_object_instantiation_expression] = STATE(897), + [sym_mutate_expression] = STATE(897), + [sym_index_expression] = STATE(897), + [sym_dot_expression] = STATE(897), + [sym_typed_expression] = STATE(897), + [sym_declaration_expression] = STATE(897), + [sym_do_expression] = STATE(897), + [sym_list_expression] = STATE(897), + [sym_array_expression] = STATE(897), + [sym_begin_end_expression] = STATE(897), + [sym_paren_expression] = STATE(897), + [sym_application_expression] = STATE(897), + [sym_infix_expression] = STATE(897), + [sym_ce_expression] = STATE(897), + [sym_sequential_expression] = STATE(897), + [sym_char] = STATE(894), + [sym_format_string] = STATE(1030), + [sym__string_literal] = STATE(1030), + [sym_string] = STATE(894), + [sym_verbatim_string] = STATE(894), + [sym_bytechar] = STATE(894), + [sym_bytearray] = STATE(894), + [sym_verbatim_bytearray] = STATE(894), + [sym_format_triple_quoted_string] = STATE(893), + [sym_triple_quoted_string] = STATE(894), + [sym_const] = STATE(897), + [sym_long_identifier_or_op] = STATE(897), + [sym_long_identifier] = STATE(937), + [sym__identifier_or_op] = STATE(938), + [sym_prefix_op] = STATE(712), + [sym_sbyte] = STATE(894), + [sym_byte] = STATE(894), + [sym_int16] = STATE(894), + [sym_uint16] = STATE(894), + [sym_int32] = STATE(894), + [sym_uint32] = STATE(894), + [sym_nativeint] = STATE(894), + [sym_unativeint] = STATE(894), + [sym_int64] = STATE(894), + [sym_uint64] = STATE(894), + [sym_ieee32] = STATE(894), + [sym_ieee64] = STATE(894), + [sym_bignum] = STATE(894), + [sym_decimal] = STATE(894), + [sym_float] = STATE(1303), + [sym_xml_doc] = STATE(720), + [sym_block_comment] = STATE(720), + [sym_preproc_line] = STATE(720), + [sym_preproc_if_in_expression] = STATE(897), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(943), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACE_PIPE] = ACTIONS(321), + [anon_sym_new] = ACTIONS(947), + [anon_sym_return_BANG] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_yield_BANG] = ACTIONS(949), + [anon_sym_lazy] = ACTIONS(943), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_upcast] = ACTIONS(943), + [anon_sym_downcast] = ACTIONS(943), + [anon_sym_LT_AT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(953), + [anon_sym_use_BANG] = ACTIONS(955), + [anon_sym_do_BANG] = ACTIONS(361), + [anon_sym_begin] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_AT_DQUOTE] = ACTIONS(373), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [sym_bool] = ACTIONS(379), + [sym_unit] = ACTIONS(1692), + [aux_sym__identifier_or_op_token1] = ACTIONS(1694), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(957), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [anon_sym_POUNDendif] = ACTIONS(2589), - [anon_sym_POUNDelse] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), + [anon_sym_POUNDif] = ACTIONS(387), }, - [770] = { - [sym_xml_doc] = STATE(770), - [sym_block_comment] = STATE(770), - [sym_preproc_line] = STATE(770), - [sym_identifier] = ACTIONS(2587), - [anon_sym_module] = ACTIONS(2587), - [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_POUNDnowarn] = ACTIONS(2589), - [anon_sym_POUNDr] = ACTIONS(2589), - [anon_sym_POUNDload] = ACTIONS(2589), - [anon_sym_open] = ACTIONS(2587), - [anon_sym_LBRACK_LT] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_QMARK] = ACTIONS(2587), - [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_AT_GT] = ACTIONS(2589), - [anon_sym_LT_AT_AT] = ACTIONS(2587), - [anon_sym_AT_AT_GT] = ACTIONS(2589), - [anon_sym_COLON_GT] = ACTIONS(2589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_LT_DASH] = ACTIONS(2587), - [anon_sym_DOT_LBRACK] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_DOT_DOT2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_or] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2587), - [aux_sym__identifier_or_op_token1] = ACTIONS(2587), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2587), - [anon_sym_DASH_DOT] = ACTIONS(2587), - [anon_sym_PERCENT] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [aux_sym_infix_op_token1] = ACTIONS(2587), - [anon_sym_PIPE_PIPE] = ACTIONS(2587), - [anon_sym_BANG_EQ] = ACTIONS(2589), - [anon_sym_COLON_EQ] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [721] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(305), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(721), + [sym_block_comment] = STATE(721), + [sym_preproc_line] = STATE(721), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), - [sym__dedent] = ACTIONS(2589), - }, - [771] = { - [sym_xml_doc] = STATE(771), - [sym_block_comment] = STATE(771), - [sym_preproc_line] = STATE(771), - [sym_identifier] = ACTIONS(2575), - [anon_sym_module] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_POUNDnowarn] = ACTIONS(2577), - [anon_sym_POUNDr] = ACTIONS(2577), - [anon_sym_POUNDload] = ACTIONS(2577), - [anon_sym_open] = ACTIONS(2575), - [anon_sym_LBRACK_LT] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_DOT_DOT2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - [sym__dedent] = ACTIONS(2577), + [anon_sym_POUNDif] = ACTIONS(217), }, - [772] = { - [sym_xml_doc] = STATE(772), - [sym_block_comment] = STATE(772), - [sym_preproc_line] = STATE(772), - [sym_identifier] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_POUNDnowarn] = ACTIONS(2593), - [anon_sym_POUNDr] = ACTIONS(2593), - [anon_sym_POUNDload] = ACTIONS(2593), - [anon_sym_open] = ACTIONS(2591), - [anon_sym_LBRACK_LT] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_DOT_DOT2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [sym__dedent] = ACTIONS(2593), + [722] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(308), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(722), + [sym_block_comment] = STATE(722), + [sym_preproc_line] = STATE(722), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), }, - [773] = { - [sym_xml_doc] = STATE(773), - [sym_block_comment] = STATE(773), - [sym_preproc_line] = STATE(773), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_GT_RBRACK] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_RBRACK] = ACTIONS(2593), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_to] = ACTIONS(2591), - [anon_sym_downto] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_end] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_DOT_DOT2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [anon_sym_POUNDendif] = ACTIONS(2593), - [anon_sym_POUNDelse] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [723] = { + [sym_function_or_value_defn] = STATE(599), + [sym__expression] = STATE(200), + [sym_tuple_expression] = STATE(972), + [sym_brace_expression] = STATE(972), + [sym_anon_record_expression] = STATE(972), + [sym_prefixed_expression] = STATE(972), + [sym_literal_expression] = STATE(972), + [sym_typecast_expression] = STATE(972), + [sym_for_expression] = STATE(972), + [sym_while_expression] = STATE(972), + [sym__if_then_else_expression] = STATE(982), + [sym__if_then_expression] = STATE(983), + [sym_if_expression] = STATE(972), + [sym_fun_expression] = STATE(972), + [sym_try_expression] = STATE(972), + [sym_match_expression] = STATE(972), + [sym_function_expression] = STATE(972), + [sym_object_instantiation_expression] = STATE(972), + [sym_mutate_expression] = STATE(972), + [sym_index_expression] = STATE(972), + [sym_dot_expression] = STATE(972), + [sym_typed_expression] = STATE(972), + [sym_declaration_expression] = STATE(972), + [sym_do_expression] = STATE(972), + [sym_list_expression] = STATE(972), + [sym_array_expression] = STATE(972), + [sym_begin_end_expression] = STATE(972), + [sym_paren_expression] = STATE(972), + [sym_application_expression] = STATE(972), + [sym_infix_expression] = STATE(972), + [sym_ce_expression] = STATE(972), + [sym_sequential_expression] = STATE(972), + [sym_char] = STATE(932), + [sym_format_string] = STATE(936), + [sym__string_literal] = STATE(936), + [sym_string] = STATE(932), + [sym_verbatim_string] = STATE(932), + [sym_bytechar] = STATE(932), + [sym_bytearray] = STATE(932), + [sym_verbatim_bytearray] = STATE(932), + [sym_format_triple_quoted_string] = STATE(918), + [sym_triple_quoted_string] = STATE(932), + [sym_const] = STATE(972), + [sym_long_identifier_or_op] = STATE(972), + [sym_long_identifier] = STATE(986), + [sym__identifier_or_op] = STATE(987), + [sym_prefix_op] = STATE(470), + [sym_sbyte] = STATE(932), + [sym_byte] = STATE(932), + [sym_int16] = STATE(932), + [sym_uint16] = STATE(932), + [sym_int32] = STATE(932), + [sym_uint32] = STATE(932), + [sym_nativeint] = STATE(932), + [sym_unativeint] = STATE(932), + [sym_int64] = STATE(932), + [sym_uint64] = STATE(932), + [sym_ieee32] = STATE(932), + [sym_ieee64] = STATE(932), + [sym_bignum] = STATE(932), + [sym_decimal] = STATE(932), + [sym_float] = STATE(827), + [sym_xml_doc] = STATE(723), + [sym_block_comment] = STATE(723), + [sym_preproc_line] = STATE(723), + [sym_preproc_if_in_expression] = STATE(972), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(113), + [anon_sym_return] = ACTIONS(121), + [anon_sym_do] = ACTIONS(123), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_LBRACK_PIPE] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LBRACE_PIPE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(149), + [anon_sym_return_BANG] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(121), + [anon_sym_yield_BANG] = ACTIONS(151), + [anon_sym_lazy] = ACTIONS(121), + [anon_sym_assert] = ACTIONS(121), + [anon_sym_upcast] = ACTIONS(121), + [anon_sym_downcast] = ACTIONS(121), + [anon_sym_LT_AT] = ACTIONS(1923), + [anon_sym_LT_AT_AT] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_fun] = ACTIONS(165), + [anon_sym_try] = ACTIONS(167), + [anon_sym_match] = ACTIONS(169), + [anon_sym_match_BANG] = ACTIONS(171), + [anon_sym_function] = ACTIONS(173), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(1935), + [aux_sym__identifier_or_op_token1] = ACTIONS(1937), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(207), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(209), + [sym_xint] = ACTIONS(211), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(217), }, - [774] = { - [sym_xml_doc] = STATE(774), - [sym_block_comment] = STATE(774), - [sym_preproc_line] = STATE(774), - [aux_sym_long_identifier_repeat1] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2595), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [724] = { + [sym_function_or_value_defn] = STATE(697), + [sym__expression] = STATE(187), + [sym_tuple_expression] = STATE(1958), + [sym_brace_expression] = STATE(1958), + [sym_anon_record_expression] = STATE(1958), + [sym_prefixed_expression] = STATE(1958), + [sym_literal_expression] = STATE(1958), + [sym_typecast_expression] = STATE(1958), + [sym_for_expression] = STATE(1958), + [sym_while_expression] = STATE(1958), + [sym__if_then_else_expression] = STATE(1922), + [sym__if_then_expression] = STATE(1918), + [sym_if_expression] = STATE(1958), + [sym_fun_expression] = STATE(1958), + [sym_try_expression] = STATE(1958), + [sym_match_expression] = STATE(1958), + [sym_function_expression] = STATE(1958), + [sym_object_instantiation_expression] = STATE(1958), + [sym_mutate_expression] = STATE(1958), + [sym_index_expression] = STATE(1958), + [sym_dot_expression] = STATE(1958), + [sym_typed_expression] = STATE(1958), + [sym_declaration_expression] = STATE(1958), + [sym_do_expression] = STATE(1958), + [sym_list_expression] = STATE(1958), + [sym_array_expression] = STATE(1958), + [sym_begin_end_expression] = STATE(1958), + [sym_paren_expression] = STATE(1958), + [sym_application_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_ce_expression] = STATE(1958), + [sym_sequential_expression] = STATE(1958), + [sym_char] = STATE(2024), + [sym_format_string] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_string] = STATE(2024), + [sym_verbatim_string] = STATE(2024), + [sym_bytechar] = STATE(2024), + [sym_bytearray] = STATE(2024), + [sym_verbatim_bytearray] = STATE(2024), + [sym_format_triple_quoted_string] = STATE(2023), + [sym_triple_quoted_string] = STATE(2024), + [sym_const] = STATE(1958), + [sym_long_identifier_or_op] = STATE(1958), + [sym_long_identifier] = STATE(1917), + [sym__identifier_or_op] = STATE(1914), + [sym_prefix_op] = STATE(500), + [sym_sbyte] = STATE(2024), + [sym_byte] = STATE(2024), + [sym_int16] = STATE(2024), + [sym_uint16] = STATE(2024), + [sym_int32] = STATE(2024), + [sym_uint32] = STATE(2024), + [sym_nativeint] = STATE(2024), + [sym_unativeint] = STATE(2024), + [sym_int64] = STATE(2024), + [sym_uint64] = STATE(2024), + [sym_ieee32] = STATE(2024), + [sym_ieee64] = STATE(2024), + [sym_bignum] = STATE(2024), + [sym_decimal] = STATE(2024), + [sym_float] = STATE(1505), + [sym_xml_doc] = STATE(724), + [sym_block_comment] = STATE(724), + [sym_preproc_line] = STATE(724), + [sym_preproc_if_in_expression] = STATE(1958), + [aux_sym_prefix_op_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_let] = ACTIONS(125), + [anon_sym_let_BANG] = ACTIONS(127), + [anon_sym_null] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1159), + [anon_sym_LBRACK_PIPE] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACE_PIPE] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_return_BANG] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1149), + [anon_sym_yield_BANG] = ACTIONS(1169), + [anon_sym_lazy] = ACTIONS(1149), + [anon_sym_assert] = ACTIONS(1149), + [anon_sym_upcast] = ACTIONS(1149), + [anon_sym_downcast] = ACTIONS(1149), + [anon_sym_LT_AT] = ACTIONS(1983), + [anon_sym_LT_AT_AT] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_fun] = ACTIONS(1183), + [anon_sym_try] = ACTIONS(1185), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_match_BANG] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(1191), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_use_BANG] = ACTIONS(1203), + [anon_sym_do_BANG] = ACTIONS(1205), + [anon_sym_begin] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_AT_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), + [sym_bool] = ACTIONS(1225), + [sym_unit] = ACTIONS(1987), + [aux_sym__identifier_or_op_token1] = ACTIONS(1989), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(103), + [sym_int] = ACTIONS(1229), + [sym_xint] = ACTIONS(1231), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(1233), }, - [775] = { - [sym_xml_doc] = STATE(775), - [sym_block_comment] = STATE(775), - [sym_preproc_line] = STATE(775), - [sym_identifier] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_POUNDnowarn] = ACTIONS(2599), - [anon_sym_POUNDr] = ACTIONS(2599), - [anon_sym_POUNDload] = ACTIONS(2599), - [anon_sym_open] = ACTIONS(2597), - [anon_sym_LBRACK_LT] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_DOT_DOT2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [sym__dedent] = ACTIONS(2599), + [725] = { + [sym_xml_doc] = STATE(725), + [sym_block_comment] = STATE(725), + [sym_preproc_line] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_namespace] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2233), + [anon_sym_uy] = ACTIONS(2235), + [anon_sym_s] = ACTIONS(2237), + [anon_sym_us] = ACTIONS(2239), + [anon_sym_l] = ACTIONS(2241), + [aux_sym_uint32_token1] = ACTIONS(2243), + [anon_sym_n] = ACTIONS(2245), + [anon_sym_un] = ACTIONS(2247), + [anon_sym_L] = ACTIONS(2249), + [aux_sym_uint64_token1] = ACTIONS(2251), + [aux_sym_bignum_token1] = ACTIONS(2253), + [aux_sym_decimal_token1] = ACTIONS(2255), + [anon_sym_DOT2] = ACTIONS(2257), + [aux_sym_float_token1] = ACTIONS(2259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [776] = { - [sym_xml_doc] = STATE(776), - [sym_block_comment] = STATE(776), - [sym_preproc_line] = STATE(776), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_GT_RBRACK] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_RBRACK] = ACTIONS(2585), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_to] = ACTIONS(2583), - [anon_sym_downto] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_end] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_DOT_DOT2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [anon_sym_POUNDendif] = ACTIONS(2585), - [anon_sym_POUNDelse] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), + [726] = { + [sym_xml_doc] = STATE(726), + [sym_block_comment] = STATE(726), + [sym_preproc_line] = STATE(726), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_GT_RBRACK] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_to] = ACTIONS(2231), + [anon_sym_downto] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_end] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2261), + [anon_sym_uy] = ACTIONS(2263), + [anon_sym_s] = ACTIONS(2265), + [anon_sym_us] = ACTIONS(2267), + [anon_sym_l] = ACTIONS(2269), + [aux_sym_uint32_token1] = ACTIONS(2271), + [anon_sym_n] = ACTIONS(2273), + [anon_sym_un] = ACTIONS(2275), + [anon_sym_L] = ACTIONS(2277), + [aux_sym_uint64_token1] = ACTIONS(2279), + [aux_sym_bignum_token1] = ACTIONS(2281), + [aux_sym_decimal_token1] = ACTIONS(2283), + [anon_sym_DOT2] = ACTIONS(2285), + [aux_sym_float_token1] = ACTIONS(2287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [anon_sym_POUNDendif] = ACTIONS(2229), + [anon_sym_POUNDelse] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [777] = { - [sym_xml_doc] = STATE(777), - [sym_block_comment] = STATE(777), - [sym_preproc_line] = STATE(777), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_to] = ACTIONS(2483), - [anon_sym_downto] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_end] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [anon_sym_POUNDendif] = ACTIONS(2485), - [anon_sym_POUNDelse] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [727] = { + [sym_xml_doc] = STATE(727), + [sym_block_comment] = STATE(727), + [sym_preproc_line] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2233), + [anon_sym_uy] = ACTIONS(2235), + [anon_sym_s] = ACTIONS(2237), + [anon_sym_us] = ACTIONS(2239), + [anon_sym_l] = ACTIONS(2241), + [aux_sym_uint32_token1] = ACTIONS(2243), + [anon_sym_n] = ACTIONS(2245), + [anon_sym_un] = ACTIONS(2247), + [anon_sym_L] = ACTIONS(2249), + [aux_sym_uint64_token1] = ACTIONS(2251), + [aux_sym_bignum_token1] = ACTIONS(2253), + [aux_sym_decimal_token1] = ACTIONS(2255), + [anon_sym_DOT2] = ACTIONS(2257), + [aux_sym_float_token1] = ACTIONS(2259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [778] = { - [sym_xml_doc] = STATE(778), - [sym_block_comment] = STATE(778), - [sym_preproc_line] = STATE(778), - [sym_identifier] = ACTIONS(2579), - [anon_sym_module] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_POUNDnowarn] = ACTIONS(2581), - [anon_sym_POUNDr] = ACTIONS(2581), - [anon_sym_POUNDload] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2579), - [anon_sym_LBRACK_LT] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_DOT_DOT2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [sym__dedent] = ACTIONS(2581), + [728] = { + [sym_xml_doc] = STATE(728), + [sym_block_comment] = STATE(728), + [sym_preproc_line] = STATE(728), + [sym_identifier] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2289), + [anon_sym_uy] = ACTIONS(2291), + [anon_sym_s] = ACTIONS(2293), + [anon_sym_us] = ACTIONS(2295), + [anon_sym_l] = ACTIONS(2297), + [aux_sym_uint32_token1] = ACTIONS(2299), + [anon_sym_n] = ACTIONS(2301), + [anon_sym_un] = ACTIONS(2303), + [anon_sym_L] = ACTIONS(2305), + [aux_sym_uint64_token1] = ACTIONS(2307), + [aux_sym_bignum_token1] = ACTIONS(2309), + [aux_sym_decimal_token1] = ACTIONS(2311), + [anon_sym_DOT2] = ACTIONS(2313), + [aux_sym_float_token1] = ACTIONS(2315), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, - [779] = { - [sym_xml_doc] = STATE(779), - [sym_block_comment] = STATE(779), - [sym_preproc_line] = STATE(779), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_GT_RBRACK] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_RBRACK] = ACTIONS(2603), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_to] = ACTIONS(2601), - [anon_sym_downto] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_end] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_DOT_DOT2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [anon_sym_POUNDendif] = ACTIONS(2603), - [anon_sym_POUNDelse] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), + [729] = { + [sym_type_arguments] = STATE(801), + [sym_long_identifier] = STATE(796), + [sym_xml_doc] = STATE(729), + [sym_block_comment] = STATE(729), + [sym_preproc_line] = STATE(729), + [aux_sym__compound_type_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_DOT_DOT2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), }, - [780] = { - [sym_xml_doc] = STATE(780), - [sym_block_comment] = STATE(780), - [sym_preproc_line] = STATE(780), - [aux_sym__compound_type_repeat1] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_POUNDnowarn] = ACTIONS(2481), - [anon_sym_POUNDr] = ACTIONS(2481), - [anon_sym_POUNDload] = ACTIONS(2481), - [anon_sym_open] = ACTIONS(2479), - [anon_sym_LBRACK_LT] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), + [730] = { + [sym_xml_doc] = STATE(730), + [sym_block_comment] = STATE(730), + [sym_preproc_line] = STATE(730), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2331), + [anon_sym_uy] = ACTIONS(2333), + [anon_sym_s] = ACTIONS(2335), + [anon_sym_us] = ACTIONS(2337), + [anon_sym_l] = ACTIONS(2339), + [aux_sym_uint32_token1] = ACTIONS(2341), + [anon_sym_n] = ACTIONS(2343), + [anon_sym_un] = ACTIONS(2345), + [anon_sym_L] = ACTIONS(2347), + [aux_sym_uint64_token1] = ACTIONS(2349), + [aux_sym_bignum_token1] = ACTIONS(2351), + [aux_sym_decimal_token1] = ACTIONS(2353), + [anon_sym_DOT2] = ACTIONS(2355), + [aux_sym_float_token1] = ACTIONS(2357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), }, - [781] = { - [sym_xml_doc] = STATE(781), - [sym_block_comment] = STATE(781), - [sym_preproc_line] = STATE(781), - [sym_identifier] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_DOT_DOT2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), + [731] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), + [sym_xml_doc] = STATE(731), + [sym_block_comment] = STATE(731), + [sym_preproc_line] = STATE(731), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2359), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_GT_RBRACK] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2361), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_to] = ACTIONS(2363), + [anon_sym_downto] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_end] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_DOT_DOT2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [anon_sym_POUNDendif] = ACTIONS(2361), + [anon_sym_POUNDelse] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), }, - [782] = { - [sym_xml_doc] = STATE(782), - [sym_block_comment] = STATE(782), - [sym_preproc_line] = STATE(782), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_GT_RBRACK] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_RBRACK] = ACTIONS(2573), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_to] = ACTIONS(2571), - [anon_sym_downto] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_end] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_DOT_DOT2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [anon_sym_POUNDendif] = ACTIONS(2573), - [anon_sym_POUNDelse] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), + [732] = { + [sym_type_arguments] = STATE(801), + [sym_long_identifier] = STATE(796), + [sym_xml_doc] = STATE(732), + [sym_block_comment] = STATE(732), + [sym_preproc_line] = STATE(732), + [aux_sym__compound_type_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_POUNDnowarn] = ACTIONS(2375), + [anon_sym_POUNDr] = ACTIONS(2375), + [anon_sym_POUNDload] = ACTIONS(2375), + [anon_sym_open] = ACTIONS(2373), + [anon_sym_LBRACK_LT] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_DOT_DOT2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [sym__dedent] = ACTIONS(2375), }, - [783] = { - [sym_xml_doc] = STATE(783), - [sym_block_comment] = STATE(783), - [sym_preproc_line] = STATE(783), - [sym_identifier] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_POUNDnowarn] = ACTIONS(2611), - [anon_sym_POUNDr] = ACTIONS(2611), - [anon_sym_POUNDload] = ACTIONS(2611), - [anon_sym_open] = ACTIONS(2609), - [anon_sym_LBRACK_LT] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - [sym__dedent] = ACTIONS(2611), + [733] = { + [sym_xml_doc] = STATE(733), + [sym_block_comment] = STATE(733), + [sym_preproc_line] = STATE(733), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2377), + [anon_sym_uy] = ACTIONS(2379), + [anon_sym_s] = ACTIONS(2381), + [anon_sym_us] = ACTIONS(2383), + [anon_sym_l] = ACTIONS(2385), + [aux_sym_uint32_token1] = ACTIONS(2387), + [anon_sym_n] = ACTIONS(2389), + [anon_sym_un] = ACTIONS(2391), + [anon_sym_L] = ACTIONS(2393), + [aux_sym_uint64_token1] = ACTIONS(2395), + [aux_sym_bignum_token1] = ACTIONS(2397), + [aux_sym_decimal_token1] = ACTIONS(2399), + [anon_sym_DOT2] = ACTIONS(2401), + [aux_sym_float_token1] = ACTIONS(2403), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, - [784] = { - [sym_xml_doc] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_preproc_line] = STATE(784), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_GT_RBRACK] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_to] = ACTIONS(2609), - [anon_sym_downto] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_end] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [anon_sym_POUNDendif] = ACTIONS(2611), - [anon_sym_POUNDelse] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), + [734] = { + [sym_type_arguments] = STATE(801), + [sym_long_identifier] = STATE(796), + [sym_xml_doc] = STATE(734), + [sym_block_comment] = STATE(734), + [sym_preproc_line] = STATE(734), + [aux_sym__compound_type_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_POUNDnowarn] = ACTIONS(2407), + [anon_sym_POUNDr] = ACTIONS(2407), + [anon_sym_POUNDload] = ACTIONS(2407), + [anon_sym_open] = ACTIONS(2405), + [anon_sym_LBRACK_LT] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_DOT_DOT2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + [sym__dedent] = ACTIONS(2407), }, - [785] = { - [sym_xml_doc] = STATE(785), - [sym_block_comment] = STATE(785), - [sym_preproc_line] = STATE(785), - [sym_identifier] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_POUNDnowarn] = ACTIONS(2603), - [anon_sym_POUNDr] = ACTIONS(2603), - [anon_sym_POUNDload] = ACTIONS(2603), - [anon_sym_open] = ACTIONS(2601), - [anon_sym_LBRACK_LT] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_DOT_DOT2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [sym__dedent] = ACTIONS(2603), + [735] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), + [sym_xml_doc] = STATE(735), + [sym_block_comment] = STATE(735), + [sym_preproc_line] = STATE(735), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2359), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_GT_RBRACK] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_to] = ACTIONS(2411), + [anon_sym_downto] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_end] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_DOT_DOT2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [anon_sym_POUNDendif] = ACTIONS(2409), + [anon_sym_POUNDelse] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), }, - [786] = { - [sym_xml_doc] = STATE(786), - [sym_block_comment] = STATE(786), - [sym_preproc_line] = STATE(786), - [aux_sym_long_identifier_repeat1] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), + [736] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), + [sym_xml_doc] = STATE(736), + [sym_block_comment] = STATE(736), + [sym_preproc_line] = STATE(736), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2359), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_GT_RBRACK] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_to] = ACTIONS(2319), + [anon_sym_downto] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_end] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_DOT_DOT2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [anon_sym_POUNDendif] = ACTIONS(2321), + [anon_sym_POUNDelse] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [737] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), + [sym_xml_doc] = STATE(737), + [sym_block_comment] = STATE(737), + [sym_preproc_line] = STATE(737), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_GT_RBRACK] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_to] = ACTIONS(2405), + [anon_sym_downto] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_end] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_DOT_DOT2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [anon_sym_POUNDendif] = ACTIONS(2407), + [anon_sym_POUNDelse] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + }, + [738] = { + [sym_type_arguments] = STATE(801), + [sym_long_identifier] = STATE(796), + [sym_xml_doc] = STATE(738), + [sym_block_comment] = STATE(738), + [sym_preproc_line] = STATE(738), + [aux_sym__compound_type_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_POUNDnowarn] = ACTIONS(2409), + [anon_sym_POUNDr] = ACTIONS(2409), + [anon_sym_POUNDload] = ACTIONS(2409), + [anon_sym_open] = ACTIONS(2411), + [anon_sym_LBRACK_LT] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_DOT_DOT2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [sym__dedent] = ACTIONS(2409), + }, + [739] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), + [sym_xml_doc] = STATE(739), + [sym_block_comment] = STATE(739), + [sym_preproc_line] = STATE(739), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2359), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_GT_RBRACK] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_to] = ACTIONS(2373), + [anon_sym_downto] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_end] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_DOT_DOT2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [anon_sym_POUNDendif] = ACTIONS(2375), + [anon_sym_POUNDelse] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + }, + [740] = { + [sym_type_arguments] = STATE(801), + [sym_long_identifier] = STATE(796), + [sym_xml_doc] = STATE(740), + [sym_block_comment] = STATE(740), + [sym_preproc_line] = STATE(740), + [aux_sym__compound_type_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_POUNDnowarn] = ACTIONS(2361), + [anon_sym_POUNDr] = ACTIONS(2361), + [anon_sym_POUNDload] = ACTIONS(2361), + [anon_sym_open] = ACTIONS(2363), + [anon_sym_LBRACK_LT] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_DOT_DOT2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [sym__dedent] = ACTIONS(2361), + }, + [741] = { + [sym_type_arguments] = STATE(812), + [sym_long_identifier] = STATE(814), + [sym_xml_doc] = STATE(741), + [sym_block_comment] = STATE(741), + [sym_preproc_line] = STATE(741), + [aux_sym__compound_type_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_POUNDnowarn] = ACTIONS(2361), + [anon_sym_POUNDr] = ACTIONS(2361), + [anon_sym_POUNDload] = ACTIONS(2361), + [anon_sym_open] = ACTIONS(2363), + [anon_sym_LBRACK_LT] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + }, + [742] = { + [sym_xml_doc] = STATE(742), + [sym_block_comment] = STATE(742), + [sym_preproc_line] = STATE(742), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2423), + [anon_sym_uy] = ACTIONS(2425), + [anon_sym_s] = ACTIONS(2427), + [anon_sym_us] = ACTIONS(2429), + [anon_sym_l] = ACTIONS(2431), + [aux_sym_uint32_token1] = ACTIONS(2433), + [anon_sym_n] = ACTIONS(2435), + [anon_sym_un] = ACTIONS(2437), + [anon_sym_L] = ACTIONS(2439), + [aux_sym_uint64_token1] = ACTIONS(2441), + [aux_sym_bignum_token1] = ACTIONS(2443), + [aux_sym_decimal_token1] = ACTIONS(2445), + [anon_sym_DOT2] = ACTIONS(2447), + [aux_sym_float_token1] = ACTIONS(2449), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), + }, + [743] = { + [sym_type_arguments] = STATE(812), + [sym_long_identifier] = STATE(814), + [sym_xml_doc] = STATE(743), + [sym_block_comment] = STATE(743), + [sym_preproc_line] = STATE(743), + [aux_sym__compound_type_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [744] = { + [sym_xml_doc] = STATE(744), + [sym_block_comment] = STATE(744), + [sym_preproc_line] = STATE(744), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2261), + [anon_sym_uy] = ACTIONS(2263), + [anon_sym_s] = ACTIONS(2265), + [anon_sym_us] = ACTIONS(2267), + [anon_sym_l] = ACTIONS(2269), + [aux_sym_uint32_token1] = ACTIONS(2271), + [anon_sym_n] = ACTIONS(2273), + [anon_sym_un] = ACTIONS(2275), + [anon_sym_L] = ACTIONS(2277), + [aux_sym_uint64_token1] = ACTIONS(2279), + [aux_sym_bignum_token1] = ACTIONS(2281), + [aux_sym_decimal_token1] = ACTIONS(2283), + [anon_sym_DOT2] = ACTIONS(2285), + [aux_sym_float_token1] = ACTIONS(2287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [745] = { + [sym_xml_doc] = STATE(745), + [sym_block_comment] = STATE(745), + [sym_preproc_line] = STATE(745), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2451), + [anon_sym_uy] = ACTIONS(2453), + [anon_sym_s] = ACTIONS(2455), + [anon_sym_us] = ACTIONS(2457), + [anon_sym_l] = ACTIONS(2459), + [aux_sym_uint32_token1] = ACTIONS(2461), + [anon_sym_n] = ACTIONS(2463), + [anon_sym_un] = ACTIONS(2465), + [anon_sym_L] = ACTIONS(2467), + [aux_sym_uint64_token1] = ACTIONS(2469), + [aux_sym_bignum_token1] = ACTIONS(2471), + [aux_sym_decimal_token1] = ACTIONS(2473), + [anon_sym_DOT2] = ACTIONS(2475), + [aux_sym_float_token1] = ACTIONS(2477), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [746] = { + [sym_type_arguments] = STATE(812), + [sym_long_identifier] = STATE(814), + [sym_xml_doc] = STATE(746), + [sym_block_comment] = STATE(746), + [sym_preproc_line] = STATE(746), + [aux_sym__compound_type_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_POUNDnowarn] = ACTIONS(2407), + [anon_sym_POUNDr] = ACTIONS(2407), + [anon_sym_POUNDload] = ACTIONS(2407), + [anon_sym_open] = ACTIONS(2405), + [anon_sym_LBRACK_LT] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + }, + [747] = { + [sym_type_arguments] = STATE(812), + [sym_long_identifier] = STATE(814), + [sym_xml_doc] = STATE(747), + [sym_block_comment] = STATE(747), + [sym_preproc_line] = STATE(747), + [aux_sym__compound_type_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_POUNDnowarn] = ACTIONS(2375), + [anon_sym_POUNDr] = ACTIONS(2375), + [anon_sym_POUNDload] = ACTIONS(2375), + [anon_sym_open] = ACTIONS(2373), + [anon_sym_LBRACK_LT] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + }, + [748] = { + [sym_xml_doc] = STATE(748), + [sym_block_comment] = STATE(748), + [sym_preproc_line] = STATE(748), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_DASH_GT] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2479), + [anon_sym_uy] = ACTIONS(2481), + [anon_sym_s] = ACTIONS(2483), + [anon_sym_us] = ACTIONS(2485), + [anon_sym_l] = ACTIONS(2487), + [aux_sym_uint32_token1] = ACTIONS(2489), + [anon_sym_n] = ACTIONS(2491), + [anon_sym_un] = ACTIONS(2493), + [anon_sym_L] = ACTIONS(2495), + [aux_sym_uint64_token1] = ACTIONS(2497), + [aux_sym_bignum_token1] = ACTIONS(2499), + [aux_sym_decimal_token1] = ACTIONS(2501), + [anon_sym_DOT2] = ACTIONS(2503), + [aux_sym_float_token1] = ACTIONS(2505), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [749] = { + [sym_xml_doc] = STATE(749), + [sym_block_comment] = STATE(749), + [sym_preproc_line] = STATE(749), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2289), + [anon_sym_uy] = ACTIONS(2291), + [anon_sym_s] = ACTIONS(2293), + [anon_sym_us] = ACTIONS(2295), + [anon_sym_l] = ACTIONS(2297), + [aux_sym_uint32_token1] = ACTIONS(2299), + [anon_sym_n] = ACTIONS(2301), + [anon_sym_un] = ACTIONS(2303), + [anon_sym_L] = ACTIONS(2305), + [aux_sym_uint64_token1] = ACTIONS(2307), + [aux_sym_bignum_token1] = ACTIONS(2309), + [aux_sym_decimal_token1] = ACTIONS(2311), + [anon_sym_DOT2] = ACTIONS(2507), + [aux_sym_float_token1] = ACTIONS(2509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), + }, + [750] = { + [sym_xml_doc] = STATE(750), + [sym_block_comment] = STATE(750), + [sym_preproc_line] = STATE(750), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2289), + [anon_sym_uy] = ACTIONS(2291), + [anon_sym_s] = ACTIONS(2293), + [anon_sym_us] = ACTIONS(2295), + [anon_sym_l] = ACTIONS(2297), + [aux_sym_uint32_token1] = ACTIONS(2299), + [anon_sym_n] = ACTIONS(2301), + [anon_sym_un] = ACTIONS(2303), + [anon_sym_L] = ACTIONS(2305), + [aux_sym_uint64_token1] = ACTIONS(2307), + [aux_sym_bignum_token1] = ACTIONS(2309), + [aux_sym_decimal_token1] = ACTIONS(2311), + [anon_sym_DOT2] = ACTIONS(2507), + [aux_sym_float_token1] = ACTIONS(2509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), + }, + [751] = { + [sym_type_arguments] = STATE(812), + [sym_long_identifier] = STATE(814), + [sym_xml_doc] = STATE(751), + [sym_block_comment] = STATE(751), + [sym_preproc_line] = STATE(751), + [aux_sym__compound_type_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_POUNDnowarn] = ACTIONS(2409), + [anon_sym_POUNDr] = ACTIONS(2409), + [anon_sym_POUNDload] = ACTIONS(2409), + [anon_sym_open] = ACTIONS(2411), + [anon_sym_LBRACK_LT] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + }, + [752] = { + [sym_xml_doc] = STATE(752), + [sym_block_comment] = STATE(752), + [sym_preproc_line] = STATE(752), + [aux_sym_long_identifier_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_GT_RBRACK] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_to] = ACTIONS(2511), + [anon_sym_downto] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_end] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_DOT_DOT2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [anon_sym_POUNDendif] = ACTIONS(2514), + [anon_sym_POUNDelse] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + }, + [753] = { + [sym_xml_doc] = STATE(753), + [sym_block_comment] = STATE(753), + [sym_preproc_line] = STATE(753), + [aux_sym_long_identifier_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_POUNDnowarn] = ACTIONS(2523), - [anon_sym_POUNDr] = ACTIONS(2523), - [anon_sym_POUNDload] = ACTIONS(2523), - [anon_sym_open] = ACTIONS(2520), - [anon_sym_LBRACK_LT] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_GT_RBRACK] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2523), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2523), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_to] = ACTIONS(2517), + [anon_sym_downto] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_DOT] = ACTIONS(2525), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_end] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), + [anon_sym_DOT_DOT2] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), + [anon_sym_POUNDendif] = ACTIONS(2523), + [anon_sym_POUNDelse] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), }, - [787] = { - [sym_xml_doc] = STATE(787), - [sym_block_comment] = STATE(787), - [sym_preproc_line] = STATE(787), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_GT_RBRACK] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_to] = ACTIONS(2605), - [anon_sym_downto] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_end] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_DOT_DOT2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [anon_sym_POUNDendif] = ACTIONS(2607), - [anon_sym_POUNDelse] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - }, - [788] = { - [sym_xml_doc] = STATE(788), - [sym_block_comment] = STATE(788), - [sym_preproc_line] = STATE(788), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_GT_RBRACK] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_to] = ACTIONS(2605), - [anon_sym_downto] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_end] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_DOT_DOT2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [anon_sym_POUNDendif] = ACTIONS(2607), - [anon_sym_POUNDelse] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - }, - [789] = { - [sym_xml_doc] = STATE(789), - [sym_block_comment] = STATE(789), - [sym_preproc_line] = STATE(789), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [790] = { - [sym_xml_doc] = STATE(790), - [sym_block_comment] = STATE(790), - [sym_preproc_line] = STATE(790), - [sym_identifier] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_DOT_DOT2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), - }, - [791] = { - [sym_xml_doc] = STATE(791), - [sym_block_comment] = STATE(791), - [sym_preproc_line] = STATE(791), - [aux_sym_long_identifier_repeat1] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [792] = { - [sym_xml_doc] = STATE(792), - [sym_block_comment] = STATE(792), - [sym_preproc_line] = STATE(792), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_GT_RBRACK] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_RBRACK] = ACTIONS(2622), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_to] = ACTIONS(2620), - [anon_sym_downto] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_end] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_DOT_DOT2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(2624), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [anon_sym_POUNDendif] = ACTIONS(2622), - [anon_sym_POUNDelse] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - }, - [793] = { - [sym_xml_doc] = STATE(793), - [sym_block_comment] = STATE(793), - [sym_preproc_line] = STATE(793), - [sym_identifier] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_POUNDnowarn] = ACTIONS(2628), - [anon_sym_POUNDr] = ACTIONS(2628), - [anon_sym_POUNDload] = ACTIONS(2628), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_LBRACK_LT] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_DOT_DOT2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - [sym__dedent] = ACTIONS(2628), - }, - [794] = { - [sym_xml_doc] = STATE(794), - [sym_block_comment] = STATE(794), - [sym_preproc_line] = STATE(794), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_GT_RBRACK] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_to] = ACTIONS(2626), - [anon_sym_downto] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_end] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_DOT_DOT2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [anon_sym_POUNDendif] = ACTIONS(2628), - [anon_sym_POUNDelse] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - }, - [795] = { - [sym_xml_doc] = STATE(795), - [sym_block_comment] = STATE(795), - [sym_preproc_line] = STATE(795), - [aux_sym_long_identifier_repeat1] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2595), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - }, - [796] = { - [sym_xml_doc] = STATE(796), - [sym_block_comment] = STATE(796), - [sym_preproc_line] = STATE(796), - [sym_identifier] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_POUNDnowarn] = ACTIONS(2622), - [anon_sym_POUNDr] = ACTIONS(2622), - [anon_sym_POUNDload] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_LBRACK_LT] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_DOT_DOT2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(2630), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [sym__dedent] = ACTIONS(2622), - }, - [797] = { - [sym_xml_doc] = STATE(797), - [sym_block_comment] = STATE(797), - [sym_preproc_line] = STATE(797), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_GT_RBRACK] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_RBRACK] = ACTIONS(2632), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_to] = ACTIONS(2634), - [anon_sym_downto] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [anon_sym_POUNDendif] = ACTIONS(2632), - [anon_sym_POUNDelse] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - }, - [798] = { - [sym_xml_doc] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_preproc_line] = STATE(798), - [sym_identifier] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [799] = { - [sym_xml_doc] = STATE(799), - [sym_block_comment] = STATE(799), - [sym_preproc_line] = STATE(799), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_GT_RBRACK] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_RBRACK] = ACTIONS(2599), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_to] = ACTIONS(2597), - [anon_sym_downto] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_end] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_DOT_DOT2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [anon_sym_POUNDendif] = ACTIONS(2599), - [anon_sym_POUNDelse] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - }, - [800] = { - [sym_xml_doc] = STATE(800), - [sym_block_comment] = STATE(800), - [sym_preproc_line] = STATE(800), - [aux_sym__compound_type_repeat1] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2343), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - }, - [801] = { - [sym_xml_doc] = STATE(801), - [sym_block_comment] = STATE(801), - [sym_preproc_line] = STATE(801), - [sym_identifier] = ACTIONS(2567), - [anon_sym_module] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_POUNDnowarn] = ACTIONS(2569), - [anon_sym_POUNDr] = ACTIONS(2569), - [anon_sym_POUNDload] = ACTIONS(2569), - [anon_sym_open] = ACTIONS(2567), - [anon_sym_LBRACK_LT] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_DOT_DOT2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - [sym__dedent] = ACTIONS(2569), - }, - [802] = { - [sym_xml_doc] = STATE(802), - [sym_block_comment] = STATE(802), - [sym_preproc_line] = STATE(802), - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_POUNDnowarn] = ACTIONS(2628), - [anon_sym_POUNDr] = ACTIONS(2628), - [anon_sym_POUNDload] = ACTIONS(2628), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_LBRACK_LT] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - }, - [803] = { - [sym_xml_doc] = STATE(803), - [sym_block_comment] = STATE(803), - [sym_preproc_line] = STATE(803), - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - }, - [804] = { - [sym_xml_doc] = STATE(804), - [sym_block_comment] = STATE(804), - [sym_preproc_line] = STATE(804), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - }, - [805] = { - [sym_xml_doc] = STATE(805), - [sym_block_comment] = STATE(805), - [sym_preproc_line] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_module] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_POUNDnowarn] = ACTIONS(2569), - [anon_sym_POUNDr] = ACTIONS(2569), - [anon_sym_POUNDload] = ACTIONS(2569), - [anon_sym_open] = ACTIONS(2567), - [anon_sym_LBRACK_LT] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - }, - [806] = { - [sym_xml_doc] = STATE(806), - [sym_block_comment] = STATE(806), - [sym_preproc_line] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_POUNDnowarn] = ACTIONS(2593), - [anon_sym_POUNDr] = ACTIONS(2593), - [anon_sym_POUNDload] = ACTIONS(2593), - [anon_sym_open] = ACTIONS(2591), - [anon_sym_LBRACK_LT] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [754] = { + [sym_xml_doc] = STATE(754), + [sym_block_comment] = STATE(754), + [sym_preproc_line] = STATE(754), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2527), + [anon_sym_uy] = ACTIONS(2529), + [anon_sym_s] = ACTIONS(2531), + [anon_sym_us] = ACTIONS(2533), + [anon_sym_l] = ACTIONS(2535), + [aux_sym_uint32_token1] = ACTIONS(2537), + [anon_sym_n] = ACTIONS(2539), + [anon_sym_un] = ACTIONS(2541), + [anon_sym_L] = ACTIONS(2543), + [aux_sym_uint64_token1] = ACTIONS(2545), + [aux_sym_bignum_token1] = ACTIONS(2547), + [aux_sym_decimal_token1] = ACTIONS(2549), + [anon_sym_DOT2] = ACTIONS(2551), + [aux_sym_float_token1] = ACTIONS(2553), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__then] = ACTIONS(2229), }, - [807] = { - [sym_xml_doc] = STATE(807), - [sym_block_comment] = STATE(807), - [sym_preproc_line] = STATE(807), - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_identifier] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_POUNDnowarn] = ACTIONS(2622), - [anon_sym_POUNDr] = ACTIONS(2622), - [anon_sym_POUNDload] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_LBRACK_LT] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(2645), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), + [755] = { + [sym_xml_doc] = STATE(755), + [sym_block_comment] = STATE(755), + [sym_preproc_line] = STATE(755), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2555), + [anon_sym_uy] = ACTIONS(2557), + [anon_sym_s] = ACTIONS(2559), + [anon_sym_us] = ACTIONS(2561), + [anon_sym_l] = ACTIONS(2563), + [aux_sym_uint32_token1] = ACTIONS(2565), + [anon_sym_n] = ACTIONS(2567), + [anon_sym_un] = ACTIONS(2569), + [anon_sym_L] = ACTIONS(2571), + [aux_sym_uint64_token1] = ACTIONS(2573), + [aux_sym_bignum_token1] = ACTIONS(2575), + [aux_sym_decimal_token1] = ACTIONS(2577), + [anon_sym_DOT2] = ACTIONS(2579), + [aux_sym_float_token1] = ACTIONS(2581), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [808] = { - [sym_xml_doc] = STATE(808), - [sym_block_comment] = STATE(808), - [sym_preproc_line] = STATE(808), - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2579), - [anon_sym_namespace] = ACTIONS(2579), - [anon_sym_module] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_POUNDnowarn] = ACTIONS(2581), - [anon_sym_POUNDr] = ACTIONS(2581), - [anon_sym_POUNDload] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2579), - [anon_sym_LBRACK_LT] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), + [756] = { + [sym_xml_doc] = STATE(756), + [sym_block_comment] = STATE(756), + [sym_preproc_line] = STATE(756), + [aux_sym_long_identifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_POUNDnowarn] = ACTIONS(2514), + [anon_sym_POUNDr] = ACTIONS(2514), + [anon_sym_POUNDload] = ACTIONS(2514), + [anon_sym_open] = ACTIONS(2511), + [anon_sym_LBRACK_LT] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_DOT_DOT2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), }, - [809] = { - [sym_xml_doc] = STATE(809), - [sym_block_comment] = STATE(809), - [sym_preproc_line] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(2589), + [757] = { + [sym_xml_doc] = STATE(757), + [sym_block_comment] = STATE(757), + [sym_preproc_line] = STATE(757), + [aux_sym__compound_type_repeat1] = STATE(763), [sym_identifier] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_module] = ACTIONS(2587), [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_POUNDnowarn] = ACTIONS(2589), - [anon_sym_POUNDr] = ACTIONS(2589), - [anon_sym_POUNDload] = ACTIONS(2589), - [anon_sym_open] = ACTIONS(2587), - [anon_sym_LBRACK_LT] = ACTIONS(2589), + [anon_sym_GT_RBRACK] = ACTIONS(2589), [anon_sym_COLON] = ACTIONS(2587), [anon_sym_return] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), [anon_sym_do] = ACTIONS(2587), [anon_sym_let] = ACTIONS(2587), [anon_sym_let_BANG] = ACTIONS(2589), @@ -135825,9 +127692,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2589), [anon_sym_AMP] = ACTIONS(2587), [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_RBRACK] = ACTIONS(2589), [anon_sym_LBRACK_PIPE] = ACTIONS(2589), [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2589), [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), [anon_sym_new] = ACTIONS(2587), [anon_sym_return_BANG] = ACTIONS(2589), [anon_sym_yield] = ACTIONS(2587), @@ -135843,6 +127713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(2589), [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), [anon_sym_for] = ACTIONS(2587), + [anon_sym_to] = ACTIONS(2587), + [anon_sym_downto] = ACTIONS(2587), [anon_sym_while] = ACTIONS(2587), [anon_sym_if] = ACTIONS(2587), [anon_sym_fun] = ACTIONS(2587), @@ -135859,8 +127731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(2589), [anon_sym_do_BANG] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), + [anon_sym_end] = ACTIONS(2587), [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_DOT_DOT2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2367), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -135890,4558 +127764,6679 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), [sym_int] = ACTIONS(2587), [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), + [anon_sym_POUNDendif] = ACTIONS(2589), + [anon_sym_POUNDelse] = ACTIONS(2589), [sym__newline] = ACTIONS(2589), }, - [810] = { - [sym_xml_doc] = STATE(810), - [sym_block_comment] = STATE(810), - [sym_preproc_line] = STATE(810), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [811] = { - [sym_xml_doc] = STATE(811), - [sym_block_comment] = STATE(811), - [sym_preproc_line] = STATE(811), - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2575), - [anon_sym_namespace] = ACTIONS(2575), - [anon_sym_module] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_POUNDnowarn] = ACTIONS(2577), - [anon_sym_POUNDr] = ACTIONS(2577), - [anon_sym_POUNDload] = ACTIONS(2577), - [anon_sym_open] = ACTIONS(2575), - [anon_sym_LBRACK_LT] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - }, - [812] = { - [sym_xml_doc] = STATE(812), - [sym_block_comment] = STATE(812), - [sym_preproc_line] = STATE(812), - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [758] = { + [sym_xml_doc] = STATE(758), + [sym_block_comment] = STATE(758), + [sym_preproc_line] = STATE(758), + [aux_sym__compound_type_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_DOT_DOT2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), }, - [813] = { - [sym_xml_doc] = STATE(813), - [sym_block_comment] = STATE(813), - [sym_preproc_line] = STATE(813), - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_POUNDnowarn] = ACTIONS(2599), - [anon_sym_POUNDr] = ACTIONS(2599), - [anon_sym_POUNDload] = ACTIONS(2599), - [anon_sym_open] = ACTIONS(2597), - [anon_sym_LBRACK_LT] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - }, - [814] = { - [sym_xml_doc] = STATE(814), - [sym_block_comment] = STATE(814), - [sym_preproc_line] = STATE(814), - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_POUNDnowarn] = ACTIONS(2585), - [anon_sym_POUNDr] = ACTIONS(2585), - [anon_sym_POUNDload] = ACTIONS(2585), - [anon_sym_open] = ACTIONS(2583), - [anon_sym_LBRACK_LT] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - }, - [815] = { - [sym_xml_doc] = STATE(815), - [sym_block_comment] = STATE(815), - [sym_preproc_line] = STATE(815), - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_POUNDnowarn] = ACTIONS(2603), - [anon_sym_POUNDr] = ACTIONS(2603), - [anon_sym_POUNDload] = ACTIONS(2603), - [anon_sym_open] = ACTIONS(2601), - [anon_sym_LBRACK_LT] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - }, - [816] = { - [sym_xml_doc] = STATE(816), - [sym_block_comment] = STATE(816), - [sym_preproc_line] = STATE(816), - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_POUNDnowarn] = ACTIONS(2611), - [anon_sym_POUNDr] = ACTIONS(2611), - [anon_sym_POUNDload] = ACTIONS(2611), - [anon_sym_open] = ACTIONS(2609), - [anon_sym_LBRACK_LT] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - }, - [817] = { - [sym_xml_doc] = STATE(817), - [sym_block_comment] = STATE(817), - [sym_preproc_line] = STATE(817), - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2571), - [anon_sym_module] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_POUNDnowarn] = ACTIONS(2573), - [anon_sym_POUNDr] = ACTIONS(2573), - [anon_sym_POUNDload] = ACTIONS(2573), - [anon_sym_open] = ACTIONS(2571), - [anon_sym_LBRACK_LT] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - }, - [818] = { - [sym_xml_doc] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_preproc_line] = STATE(818), - [sym_identifier] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2647), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_DOT_DOT2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - }, - [819] = { - [sym_xml_doc] = STATE(819), - [sym_block_comment] = STATE(819), - [sym_preproc_line] = STATE(819), - [aux_sym_rules_repeat1] = STATE(823), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_GT_RBRACK] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_to] = ACTIONS(2651), - [anon_sym_downto] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_end] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_DOT_DOT2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [anon_sym_POUNDendif] = ACTIONS(2653), - [anon_sym_POUNDelse] = ACTIONS(2653), - [sym__newline] = ACTIONS(2657), - }, - [820] = { - [sym_xml_doc] = STATE(820), - [sym_block_comment] = STATE(820), - [sym_preproc_line] = STATE(820), - [aux_sym_rules_repeat1] = STATE(825), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_GT_RBRACK] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_RBRACK] = ACTIONS(2662), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2662), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_to] = ACTIONS(2660), - [anon_sym_downto] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_end] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_DOT_DOT2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [anon_sym_POUNDendif] = ACTIONS(2662), - [anon_sym_POUNDelse] = ACTIONS(2662), - [sym__newline] = ACTIONS(2664), - }, - [821] = { - [sym_xml_doc] = STATE(821), - [sym_block_comment] = STATE(821), - [sym_preproc_line] = STATE(821), - [aux_sym_rules_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2667), - [anon_sym_module] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_POUNDnowarn] = ACTIONS(2669), - [anon_sym_POUNDr] = ACTIONS(2669), - [anon_sym_POUNDload] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2667), - [anon_sym_LBRACK_LT] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_DOT_DOT2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2674), - [sym__dedent] = ACTIONS(2669), - }, - [822] = { - [sym_xml_doc] = STATE(822), - [sym_block_comment] = STATE(822), - [sym_preproc_line] = STATE(822), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_GT_RBRACK] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_to] = ACTIONS(2647), - [anon_sym_downto] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2647), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_end] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_DOT_DOT2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [anon_sym_POUNDendif] = ACTIONS(2649), - [anon_sym_POUNDelse] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - }, - [823] = { - [sym_xml_doc] = STATE(823), - [sym_block_comment] = STATE(823), - [sym_preproc_line] = STATE(823), - [aux_sym_rules_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_GT_RBRACK] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_to] = ACTIONS(2677), - [anon_sym_downto] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_end] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_DOT_DOT2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [anon_sym_POUNDendif] = ACTIONS(2679), - [anon_sym_POUNDelse] = ACTIONS(2679), - [sym__newline] = ACTIONS(2681), - }, - [824] = { - [sym_xml_doc] = STATE(824), - [sym_block_comment] = STATE(824), - [sym_preproc_line] = STATE(824), - [aux_sym_rules_repeat1] = STATE(828), - [sym_identifier] = ACTIONS(2651), - [anon_sym_module] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_POUNDnowarn] = ACTIONS(2653), - [anon_sym_POUNDr] = ACTIONS(2653), - [anon_sym_POUNDload] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2651), - [anon_sym_LBRACK_LT] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_DOT_DOT2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(2686), - [sym__dedent] = ACTIONS(2653), - }, - [825] = { - [sym_xml_doc] = STATE(825), - [sym_block_comment] = STATE(825), - [sym_preproc_line] = STATE(825), - [aux_sym_rules_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_GT_RBRACK] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_to] = ACTIONS(2651), - [anon_sym_downto] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_end] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_DOT_DOT2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [anon_sym_POUNDendif] = ACTIONS(2653), - [anon_sym_POUNDelse] = ACTIONS(2653), - [sym__newline] = ACTIONS(2657), - }, - [826] = { - [sym_xml_doc] = STATE(826), - [sym_block_comment] = STATE(826), - [sym_preproc_line] = STATE(826), - [aux_sym_rules_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2651), - [anon_sym_module] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_POUNDnowarn] = ACTIONS(2653), - [anon_sym_POUNDr] = ACTIONS(2653), - [anon_sym_POUNDload] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2651), - [anon_sym_LBRACK_LT] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_DOT_DOT2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(2686), - [sym__dedent] = ACTIONS(2653), - }, - [827] = { - [sym_xml_doc] = STATE(827), - [sym_block_comment] = STATE(827), - [sym_preproc_line] = STATE(827), - [aux_sym_rules_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_GT_RBRACK] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_to] = ACTIONS(2667), - [anon_sym_downto] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_end] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_DOT_DOT2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [anon_sym_POUNDendif] = ACTIONS(2669), - [anon_sym_POUNDelse] = ACTIONS(2669), - [sym__newline] = ACTIONS(2692), - }, - [828] = { - [sym_xml_doc] = STATE(828), - [sym_block_comment] = STATE(828), - [sym_preproc_line] = STATE(828), - [aux_sym_rules_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_POUNDnowarn] = ACTIONS(2679), - [anon_sym_POUNDr] = ACTIONS(2679), - [anon_sym_POUNDload] = ACTIONS(2679), - [anon_sym_open] = ACTIONS(2677), - [anon_sym_LBRACK_LT] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_DOT_DOT2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(2695), - [sym__dedent] = ACTIONS(2679), - }, - [829] = { - [sym_xml_doc] = STATE(829), - [sym_block_comment] = STATE(829), - [sym_preproc_line] = STATE(829), - [aux_sym_rules_repeat1] = STATE(826), - [sym_identifier] = ACTIONS(2660), - [anon_sym_module] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_POUNDnowarn] = ACTIONS(2662), - [anon_sym_POUNDr] = ACTIONS(2662), - [anon_sym_POUNDload] = ACTIONS(2662), - [anon_sym_open] = ACTIONS(2660), - [anon_sym_LBRACK_LT] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_DOT_DOT2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(2698), - [sym__dedent] = ACTIONS(2662), - }, - [830] = { - [sym_xml_doc] = STATE(830), - [sym_block_comment] = STATE(830), - [sym_preproc_line] = STATE(830), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_GT_RBRACK] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_to] = ACTIONS(2647), - [anon_sym_downto] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_end] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [anon_sym_POUNDendif] = ACTIONS(2649), - [anon_sym_POUNDelse] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - }, - [831] = { - [sym_xml_doc] = STATE(831), - [sym_block_comment] = STATE(831), - [sym_preproc_line] = STATE(831), - [sym_identifier] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_POUNDnowarn] = ACTIONS(2703), - [anon_sym_POUNDr] = ACTIONS(2703), - [anon_sym_POUNDload] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2701), - [anon_sym_LBRACK_LT] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - }, - [832] = { - [sym_xml_doc] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_preproc_line] = STATE(832), - [aux_sym_rules_repeat1] = STATE(840), - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_POUNDnowarn] = ACTIONS(2679), - [anon_sym_POUNDr] = ACTIONS(2679), - [anon_sym_POUNDload] = ACTIONS(2679), - [anon_sym_open] = ACTIONS(2677), - [anon_sym_LBRACK_LT] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(2711), - }, - [833] = { - [sym_xml_doc] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_preproc_line] = STATE(833), - [sym_identifier] = ACTIONS(2667), - [anon_sym_module] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_POUNDnowarn] = ACTIONS(2669), - [anon_sym_POUNDr] = ACTIONS(2669), - [anon_sym_POUNDload] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2667), - [anon_sym_LBRACK_LT] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_DOT_DOT2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - [sym__dedent] = ACTIONS(2669), - }, - [834] = { - [sym_xml_doc] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_preproc_line] = STATE(834), - [sym_identifier] = ACTIONS(2714), - [anon_sym_module] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_POUNDnowarn] = ACTIONS(2716), - [anon_sym_POUNDr] = ACTIONS(2716), - [anon_sym_POUNDload] = ACTIONS(2716), - [anon_sym_open] = ACTIONS(2714), - [anon_sym_LBRACK_LT] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_DOT_DOT2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__dedent] = ACTIONS(2716), - }, - [835] = { - [sym_xml_doc] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_preproc_line] = STATE(835), - [sym_identifier] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_POUNDnowarn] = ACTIONS(2720), - [anon_sym_POUNDr] = ACTIONS(2720), - [anon_sym_POUNDload] = ACTIONS(2720), - [anon_sym_open] = ACTIONS(2718), - [anon_sym_LBRACK_LT] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_DOT_DOT2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [759] = { + [sym_xml_doc] = STATE(759), + [sym_block_comment] = STATE(759), + [sym_preproc_line] = STATE(759), + [aux_sym__compound_type_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_POUNDnowarn] = ACTIONS(2589), + [anon_sym_POUNDr] = ACTIONS(2589), + [anon_sym_POUNDload] = ACTIONS(2589), + [anon_sym_open] = ACTIONS(2587), + [anon_sym_LBRACK_LT] = ACTIONS(2589), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_AT_GT] = ACTIONS(2589), + [anon_sym_LT_AT_AT] = ACTIONS(2587), + [anon_sym_AT_AT_GT] = ACTIONS(2589), + [anon_sym_COLON_GT] = ACTIONS(2589), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_LT_DASH] = ACTIONS(2587), + [anon_sym_DOT_LBRACK] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_DOT_DOT2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2587), + [aux_sym__identifier_or_op_token1] = ACTIONS(2587), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2587), + [anon_sym_DASH_DOT] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [aux_sym_infix_op_token1] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_COLON_EQ] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [sym__dedent] = ACTIONS(2720), - }, - [836] = { - [sym_xml_doc] = STATE(836), - [sym_block_comment] = STATE(836), - [sym_preproc_line] = STATE(836), - [sym_identifier] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_POUNDnowarn] = ACTIONS(2724), - [anon_sym_POUNDr] = ACTIONS(2724), - [anon_sym_POUNDload] = ACTIONS(2724), - [anon_sym_open] = ACTIONS(2722), - [anon_sym_LBRACK_LT] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_DOT_DOT2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [sym__dedent] = ACTIONS(2724), - }, - [837] = { - [sym_xml_doc] = STATE(837), - [sym_block_comment] = STATE(837), - [sym_preproc_line] = STATE(837), - [aux_sym_long_identifier_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_to] = ACTIONS(2483), - [anon_sym_downto] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_end] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [anon_sym_POUNDendif] = ACTIONS(2485), - [anon_sym_POUNDelse] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [838] = { - [sym_xml_doc] = STATE(838), - [sym_block_comment] = STATE(838), - [sym_preproc_line] = STATE(838), - [sym_identifier] = ACTIONS(2729), - [anon_sym_module] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_POUNDnowarn] = ACTIONS(2731), - [anon_sym_POUNDr] = ACTIONS(2731), - [anon_sym_POUNDload] = ACTIONS(2731), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_LBRACK_LT] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_DOT_DOT2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - [sym__dedent] = ACTIONS(2731), - }, - [839] = { - [sym_xml_doc] = STATE(839), - [sym_block_comment] = STATE(839), - [sym_preproc_line] = STATE(839), - [sym_identifier] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_POUNDnowarn] = ACTIONS(2703), - [anon_sym_POUNDr] = ACTIONS(2703), - [anon_sym_POUNDload] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2701), - [anon_sym_LBRACK_LT] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_DOT_DOT2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - }, - [840] = { - [sym_xml_doc] = STATE(840), - [sym_block_comment] = STATE(840), - [sym_preproc_line] = STATE(840), - [aux_sym_rules_repeat1] = STATE(840), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_module] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_POUNDnowarn] = ACTIONS(2669), - [anon_sym_POUNDr] = ACTIONS(2669), - [anon_sym_POUNDload] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2667), - [anon_sym_LBRACK_LT] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2738), - }, - [841] = { - [sym_xml_doc] = STATE(841), - [sym_block_comment] = STATE(841), - [sym_preproc_line] = STATE(841), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_GT_RBRACK] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_to] = ACTIONS(2667), - [anon_sym_downto] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_end] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_DOT_DOT2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [anon_sym_POUNDendif] = ACTIONS(2669), - [anon_sym_POUNDelse] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - }, - [842] = { - [sym_xml_doc] = STATE(842), - [sym_block_comment] = STATE(842), - [sym_preproc_line] = STATE(842), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_GT_RBRACK] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_RBRACK] = ACTIONS(2724), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_to] = ACTIONS(2722), - [anon_sym_downto] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_end] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_DOT_DOT2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [anon_sym_POUNDendif] = ACTIONS(2724), - [anon_sym_POUNDelse] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - }, - [843] = { - [sym_xml_doc] = STATE(843), - [sym_block_comment] = STATE(843), - [sym_preproc_line] = STATE(843), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_GT_RBRACK] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_RBRACK] = ACTIONS(2731), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_to] = ACTIONS(2729), - [anon_sym_downto] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_end] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_DOT_DOT2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [anon_sym_POUNDendif] = ACTIONS(2731), - [anon_sym_POUNDelse] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - }, - [844] = { - [sym_xml_doc] = STATE(844), - [sym_block_comment] = STATE(844), - [sym_preproc_line] = STATE(844), - [sym_identifier] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_DOT_DOT2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - }, - [845] = { - [sym_xml_doc] = STATE(845), - [sym_block_comment] = STATE(845), - [sym_preproc_line] = STATE(845), - [aux_sym_long_identifier_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_DOT_DOT2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - }, - [846] = { - [sym_xml_doc] = STATE(846), - [sym_block_comment] = STATE(846), - [sym_preproc_line] = STATE(846), - [aux_sym_rules_repeat1] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_module] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_POUNDnowarn] = ACTIONS(2653), - [anon_sym_POUNDr] = ACTIONS(2653), - [anon_sym_POUNDload] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2651), - [anon_sym_LBRACK_LT] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(2745), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [sym__dedent] = ACTIONS(2589), }, - [847] = { - [sym_xml_doc] = STATE(847), - [sym_block_comment] = STATE(847), - [sym_preproc_line] = STATE(847), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_GT_RBRACK] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_to] = ACTIONS(2647), - [anon_sym_downto] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_end] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_DOT_DOT2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [anon_sym_POUNDendif] = ACTIONS(2649), - [anon_sym_POUNDelse] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [760] = { + [sym_xml_doc] = STATE(760), + [sym_block_comment] = STATE(760), + [sym_preproc_line] = STATE(760), + [aux_sym_long_identifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_GT_RBRACK] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_RBRACK] = ACTIONS(2596), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_to] = ACTIONS(2594), + [anon_sym_downto] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_end] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_DOT_DOT2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [anon_sym_POUNDendif] = ACTIONS(2596), + [anon_sym_POUNDelse] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, - [848] = { - [sym_xml_doc] = STATE(848), - [sym_block_comment] = STATE(848), - [sym_preproc_line] = STATE(848), - [aux_sym_long_identifier_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), + [761] = { + [sym_xml_doc] = STATE(761), + [sym_block_comment] = STATE(761), + [sym_preproc_line] = STATE(761), + [aux_sym_long_identifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), [anon_sym_POUNDnowarn] = ACTIONS(2523), [anon_sym_POUNDr] = ACTIONS(2523), [anon_sym_POUNDload] = ACTIONS(2523), - [anon_sym_open] = ACTIONS(2520), + [anon_sym_open] = ACTIONS(2517), [anon_sym_LBRACK_LT] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2598), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), [anon_sym_DOT_DOT2] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), [sym__dedent] = ACTIONS(2523), }, - [849] = { - [sym_xml_doc] = STATE(849), - [sym_block_comment] = STATE(849), - [sym_preproc_line] = STATE(849), - [aux_sym_long_identifier_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_GT_RBRACK] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_RBRACK] = ACTIONS(2494), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_to] = ACTIONS(2492), - [anon_sym_downto] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_end] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_DOT_DOT2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [anon_sym_POUNDendif] = ACTIONS(2494), - [anon_sym_POUNDelse] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [762] = { + [sym_xml_doc] = STATE(762), + [sym_block_comment] = STATE(762), + [sym_preproc_line] = STATE(762), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_DASH_GT] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_y] = ACTIONS(2479), + [anon_sym_uy] = ACTIONS(2481), + [anon_sym_s] = ACTIONS(2483), + [anon_sym_us] = ACTIONS(2485), + [anon_sym_l] = ACTIONS(2487), + [aux_sym_uint32_token1] = ACTIONS(2489), + [anon_sym_n] = ACTIONS(2491), + [anon_sym_un] = ACTIONS(2493), + [anon_sym_L] = ACTIONS(2495), + [aux_sym_uint64_token1] = ACTIONS(2497), + [aux_sym_bignum_token1] = ACTIONS(2499), + [aux_sym_decimal_token1] = ACTIONS(2501), + [anon_sym_DOT2] = ACTIONS(2503), + [aux_sym_float_token1] = ACTIONS(2505), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [850] = { - [sym_xml_doc] = STATE(850), - [sym_block_comment] = STATE(850), - [sym_preproc_line] = STATE(850), - [sym_identifier] = ACTIONS(2754), - [anon_sym_module] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_POUNDnowarn] = ACTIONS(2756), - [anon_sym_POUNDr] = ACTIONS(2756), - [anon_sym_POUNDload] = ACTIONS(2756), - [anon_sym_open] = ACTIONS(2754), - [anon_sym_LBRACK_LT] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_DOT_DOT2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [sym__dedent] = ACTIONS(2756), + [763] = { + [sym_xml_doc] = STATE(763), + [sym_block_comment] = STATE(763), + [sym_preproc_line] = STATE(763), + [aux_sym__compound_type_repeat1] = STATE(763), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_GT_RBRACK] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_to] = ACTIONS(2319), + [anon_sym_downto] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_end] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_DOT_DOT2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2600), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [anon_sym_POUNDendif] = ACTIONS(2321), + [anon_sym_POUNDelse] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), }, - [851] = { - [sym_xml_doc] = STATE(851), - [sym_block_comment] = STATE(851), - [sym_preproc_line] = STATE(851), - [aux_sym_long_identifier_repeat1] = STATE(851), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), + [764] = { + [sym_xml_doc] = STATE(764), + [sym_block_comment] = STATE(764), + [sym_preproc_line] = STATE(764), + [aux_sym_long_identifier_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_to] = ACTIONS(2603), + [anon_sym_downto] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_end] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [anon_sym_POUNDendif] = ACTIONS(2605), + [anon_sym_POUNDelse] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [852] = { - [sym_xml_doc] = STATE(852), - [sym_block_comment] = STATE(852), - [sym_preproc_line] = STATE(852), - [aux_sym_rules_repeat1] = STATE(853), - [ts_builtin_sym_end] = ACTIONS(2662), - [sym_identifier] = ACTIONS(2660), - [anon_sym_namespace] = ACTIONS(2660), - [anon_sym_module] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_POUNDnowarn] = ACTIONS(2662), - [anon_sym_POUNDr] = ACTIONS(2662), - [anon_sym_POUNDload] = ACTIONS(2662), - [anon_sym_open] = ACTIONS(2660), - [anon_sym_LBRACK_LT] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(2763), + [765] = { + [sym_xml_doc] = STATE(765), + [sym_block_comment] = STATE(765), + [sym_preproc_line] = STATE(765), + [aux_sym_long_identifier_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_DOT_DOT2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, - [853] = { - [sym_xml_doc] = STATE(853), - [sym_block_comment] = STATE(853), - [sym_preproc_line] = STATE(853), - [aux_sym_rules_repeat1] = STATE(840), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_module] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_POUNDnowarn] = ACTIONS(2653), - [anon_sym_POUNDr] = ACTIONS(2653), - [anon_sym_POUNDload] = ACTIONS(2653), - [anon_sym_open] = ACTIONS(2651), - [anon_sym_LBRACK_LT] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(2745), + [766] = { + [sym_xml_doc] = STATE(766), + [sym_block_comment] = STATE(766), + [sym_preproc_line] = STATE(766), + [aux_sym_long_identifier_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, - [854] = { - [sym_xml_doc] = STATE(854), - [sym_block_comment] = STATE(854), - [sym_preproc_line] = STATE(854), - [aux_sym_long_identifier_repeat1] = STATE(849), - [sym_identifier] = ACTIONS(2520), + [767] = { + [sym_xml_doc] = STATE(767), + [sym_block_comment] = STATE(767), + [sym_preproc_line] = STATE(767), + [aux_sym_long_identifier_repeat1] = STATE(786), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_GT_RBRACK] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_to] = ACTIONS(2520), - [anon_sym_downto] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2766), + [anon_sym_DOT] = ACTIONS(2613), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_end] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_DOT_DOT2] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), - [anon_sym_POUNDendif] = ACTIONS(2523), - [anon_sym_POUNDelse] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), }, - [855] = { - [sym_xml_doc] = STATE(855), - [sym_block_comment] = STATE(855), - [sym_preproc_line] = STATE(855), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_GT_RBRACK] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_RBRACK] = ACTIONS(2756), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_to] = ACTIONS(2754), - [anon_sym_downto] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_end] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_DOT_DOT2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [anon_sym_POUNDendif] = ACTIONS(2756), - [anon_sym_POUNDelse] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), + [768] = { + [sym_xml_doc] = STATE(768), + [sym_block_comment] = STATE(768), + [sym_preproc_line] = STATE(768), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_GT_RBRACK] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_to] = ACTIONS(2619), + [anon_sym_downto] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [anon_sym_POUNDendif] = ACTIONS(2617), + [anon_sym_POUNDelse] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, - [856] = { - [sym_xml_doc] = STATE(856), - [sym_block_comment] = STATE(856), - [sym_preproc_line] = STATE(856), - [sym_identifier] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_GT_RBRACK] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), + [769] = { + [sym_xml_doc] = STATE(769), + [sym_block_comment] = STATE(769), + [sym_preproc_line] = STATE(769), + [aux_sym_long_identifier_repeat1] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [770] = { + [sym_xml_doc] = STATE(770), + [sym_block_comment] = STATE(770), + [sym_preproc_line] = STATE(770), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_GT_RBRACK] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_RBRACK] = ACTIONS(2630), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_to] = ACTIONS(2628), + [anon_sym_downto] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_end] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_DOT_DOT2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [anon_sym_POUNDendif] = ACTIONS(2630), + [anon_sym_POUNDelse] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + }, + [771] = { + [sym_xml_doc] = STATE(771), + [sym_block_comment] = STATE(771), + [sym_preproc_line] = STATE(771), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_GT_RBRACK] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_RBRACK] = ACTIONS(2634), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_to] = ACTIONS(2632), + [anon_sym_downto] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_end] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_DOT_DOT2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [anon_sym_POUNDendif] = ACTIONS(2634), + [anon_sym_POUNDelse] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + }, + [772] = { + [sym_xml_doc] = STATE(772), + [sym_block_comment] = STATE(772), + [sym_preproc_line] = STATE(772), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_GT_RBRACK] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_RBRACK] = ACTIONS(2638), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_to] = ACTIONS(2636), + [anon_sym_downto] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_end] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_DOT_DOT2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [anon_sym_POUNDendif] = ACTIONS(2638), + [anon_sym_POUNDelse] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + }, + [773] = { + [sym_xml_doc] = STATE(773), + [sym_block_comment] = STATE(773), + [sym_preproc_line] = STATE(773), + [sym_identifier] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_POUNDnowarn] = ACTIONS(2642), + [anon_sym_POUNDr] = ACTIONS(2642), + [anon_sym_POUNDload] = ACTIONS(2642), + [anon_sym_open] = ACTIONS(2640), + [anon_sym_LBRACK_LT] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_DOT_DOT2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + [sym__dedent] = ACTIONS(2642), + }, + [774] = { + [sym_xml_doc] = STATE(774), + [sym_block_comment] = STATE(774), + [sym_preproc_line] = STATE(774), + [sym_identifier] = ACTIONS(2644), + [anon_sym_module] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_POUNDnowarn] = ACTIONS(2646), + [anon_sym_POUNDr] = ACTIONS(2646), + [anon_sym_POUNDload] = ACTIONS(2646), + [anon_sym_open] = ACTIONS(2644), + [anon_sym_LBRACK_LT] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_DOT_DOT2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [sym__dedent] = ACTIONS(2646), + }, + [775] = { + [sym_xml_doc] = STATE(775), + [sym_block_comment] = STATE(775), + [sym_preproc_line] = STATE(775), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_GT_RBRACK] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_RBRACK] = ACTIONS(2650), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_to] = ACTIONS(2648), + [anon_sym_downto] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_end] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_DOT_DOT2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [anon_sym_POUNDendif] = ACTIONS(2650), + [anon_sym_POUNDelse] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + }, + [776] = { + [sym_xml_doc] = STATE(776), + [sym_block_comment] = STATE(776), + [sym_preproc_line] = STATE(776), + [aux_sym__compound_type_repeat1] = STATE(784), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_POUNDnowarn] = ACTIONS(2589), + [anon_sym_POUNDr] = ACTIONS(2589), + [anon_sym_POUNDload] = ACTIONS(2589), + [anon_sym_open] = ACTIONS(2587), + [anon_sym_LBRACK_LT] = ACTIONS(2589), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_AT_GT] = ACTIONS(2589), + [anon_sym_LT_AT_AT] = ACTIONS(2587), + [anon_sym_AT_AT_GT] = ACTIONS(2589), + [anon_sym_COLON_GT] = ACTIONS(2589), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_LT_DASH] = ACTIONS(2587), + [anon_sym_DOT_LBRACK] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2587), + [aux_sym__identifier_or_op_token1] = ACTIONS(2587), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2587), + [anon_sym_DASH_DOT] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [aux_sym_infix_op_token1] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_COLON_EQ] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + }, + [777] = { + [sym_xml_doc] = STATE(777), + [sym_block_comment] = STATE(777), + [sym_preproc_line] = STATE(777), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_GT_RBRACK] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_RBRACK] = ACTIONS(2654), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_to] = ACTIONS(2652), + [anon_sym_downto] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_end] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_DOT_DOT2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2656), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [anon_sym_POUNDendif] = ACTIONS(2654), + [anon_sym_POUNDelse] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + }, + [778] = { + [sym_xml_doc] = STATE(778), + [sym_block_comment] = STATE(778), + [sym_preproc_line] = STATE(778), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_GT_RBRACK] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_to] = ACTIONS(2615), + [anon_sym_downto] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_DOT_DOT2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [anon_sym_POUNDendif] = ACTIONS(2621), + [anon_sym_POUNDelse] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + }, + [779] = { + [sym_xml_doc] = STATE(779), + [sym_block_comment] = STATE(779), + [sym_preproc_line] = STATE(779), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_GT_RBRACK] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_RBRACK] = ACTIONS(2660), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_to] = ACTIONS(2658), + [anon_sym_downto] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_end] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_DOT_DOT2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [anon_sym_POUNDendif] = ACTIONS(2660), + [anon_sym_POUNDelse] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [780] = { + [sym_xml_doc] = STATE(780), + [sym_block_comment] = STATE(780), + [sym_preproc_line] = STATE(780), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_GT_RBRACK] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_RBRACK] = ACTIONS(2646), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_to] = ACTIONS(2644), + [anon_sym_downto] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_end] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_DOT_DOT2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [anon_sym_POUNDendif] = ACTIONS(2646), + [anon_sym_POUNDelse] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + }, + [781] = { + [sym_xml_doc] = STATE(781), + [sym_block_comment] = STATE(781), + [sym_preproc_line] = STATE(781), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_to] = ACTIONS(2603), + [anon_sym_downto] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_end] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [anon_sym_POUNDendif] = ACTIONS(2605), + [anon_sym_POUNDelse] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [782] = { + [sym_xml_doc] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_preproc_line] = STATE(782), + [sym_identifier] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_POUNDnowarn] = ACTIONS(2664), + [anon_sym_POUNDr] = ACTIONS(2664), + [anon_sym_POUNDload] = ACTIONS(2664), + [anon_sym_open] = ACTIONS(2662), + [anon_sym_LBRACK_LT] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_DOT_DOT2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [sym__dedent] = ACTIONS(2664), + }, + [783] = { + [sym_xml_doc] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_preproc_line] = STATE(783), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_GT_RBRACK] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_RBRACK] = ACTIONS(2660), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_to] = ACTIONS(2658), + [anon_sym_downto] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_end] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_DOT_DOT2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [anon_sym_POUNDendif] = ACTIONS(2660), + [anon_sym_POUNDelse] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [784] = { + [sym_xml_doc] = STATE(784), + [sym_block_comment] = STATE(784), + [sym_preproc_line] = STATE(784), + [aux_sym__compound_type_repeat1] = STATE(784), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [785] = { + [sym_xml_doc] = STATE(785), + [sym_block_comment] = STATE(785), + [sym_preproc_line] = STATE(785), + [sym_identifier] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_DOT_DOT2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), + }, + [786] = { + [sym_xml_doc] = STATE(786), + [sym_block_comment] = STATE(786), + [sym_preproc_line] = STATE(786), + [aux_sym_long_identifier_repeat1] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2594), + [anon_sym_namespace] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + }, + [787] = { + [sym_xml_doc] = STATE(787), + [sym_block_comment] = STATE(787), + [sym_preproc_line] = STATE(787), + [sym_identifier] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_DOT_DOT2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), + }, + [788] = { + [sym_xml_doc] = STATE(788), + [sym_block_comment] = STATE(788), + [sym_preproc_line] = STATE(788), + [aux_sym_long_identifier_repeat1] = STATE(786), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_POUNDnowarn] = ACTIONS(2514), + [anon_sym_POUNDr] = ACTIONS(2514), + [anon_sym_POUNDload] = ACTIONS(2514), + [anon_sym_open] = ACTIONS(2511), + [anon_sym_LBRACK_LT] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + }, + [789] = { + [sym_xml_doc] = STATE(789), + [sym_block_comment] = STATE(789), + [sym_preproc_line] = STATE(789), + [sym_identifier] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_POUNDnowarn] = ACTIONS(2654), + [anon_sym_POUNDr] = ACTIONS(2654), + [anon_sym_POUNDload] = ACTIONS(2654), + [anon_sym_open] = ACTIONS(2652), + [anon_sym_LBRACK_LT] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_DOT_DOT2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2673), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [sym__dedent] = ACTIONS(2654), + }, + [790] = { + [sym_xml_doc] = STATE(790), + [sym_block_comment] = STATE(790), + [sym_preproc_line] = STATE(790), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_GT_RBRACK] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_to] = ACTIONS(2675), + [anon_sym_downto] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_end] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_DOT_DOT2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [anon_sym_POUNDendif] = ACTIONS(2677), + [anon_sym_POUNDelse] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + }, + [791] = { + [sym_xml_doc] = STATE(791), + [sym_block_comment] = STATE(791), + [sym_preproc_line] = STATE(791), + [sym_identifier] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_POUNDnowarn] = ACTIONS(2630), + [anon_sym_POUNDr] = ACTIONS(2630), + [anon_sym_POUNDload] = ACTIONS(2630), + [anon_sym_open] = ACTIONS(2628), + [anon_sym_LBRACK_LT] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_DOT_DOT2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [sym__dedent] = ACTIONS(2630), + }, + [792] = { + [sym_xml_doc] = STATE(792), + [sym_block_comment] = STATE(792), + [sym_preproc_line] = STATE(792), + [sym_identifier] = ACTIONS(2679), + [anon_sym_module] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_POUNDnowarn] = ACTIONS(2681), + [anon_sym_POUNDr] = ACTIONS(2681), + [anon_sym_POUNDload] = ACTIONS(2681), + [anon_sym_open] = ACTIONS(2679), + [anon_sym_LBRACK_LT] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_DOT_DOT2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + [sym__dedent] = ACTIONS(2681), + }, + [793] = { + [sym_xml_doc] = STATE(793), + [sym_block_comment] = STATE(793), + [sym_preproc_line] = STATE(793), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_GT_RBRACK] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2681), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_to] = ACTIONS(2679), + [anon_sym_downto] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_DOT_DOT2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [anon_sym_POUNDendif] = ACTIONS(2681), + [anon_sym_POUNDelse] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + }, + [794] = { + [sym_xml_doc] = STATE(794), + [sym_block_comment] = STATE(794), + [sym_preproc_line] = STATE(794), + [sym_identifier] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), + }, + [795] = { + [sym_xml_doc] = STATE(795), + [sym_block_comment] = STATE(795), + [sym_preproc_line] = STATE(795), + [sym_identifier] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_POUNDnowarn] = ACTIONS(2650), + [anon_sym_POUNDr] = ACTIONS(2650), + [anon_sym_POUNDload] = ACTIONS(2650), + [anon_sym_open] = ACTIONS(2648), + [anon_sym_LBRACK_LT] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_DOT_DOT2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2650), + }, + [796] = { + [sym_xml_doc] = STATE(796), + [sym_block_comment] = STATE(796), + [sym_preproc_line] = STATE(796), + [sym_identifier] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_POUNDnowarn] = ACTIONS(2621), + [anon_sym_POUNDr] = ACTIONS(2621), + [anon_sym_POUNDload] = ACTIONS(2621), + [anon_sym_open] = ACTIONS(2615), + [anon_sym_LBRACK_LT] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_DOT_DOT2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + [sym__dedent] = ACTIONS(2621), + }, + [797] = { + [sym_xml_doc] = STATE(797), + [sym_block_comment] = STATE(797), + [sym_preproc_line] = STATE(797), + [sym_identifier] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_POUNDnowarn] = ACTIONS(2687), + [anon_sym_POUNDr] = ACTIONS(2687), + [anon_sym_POUNDload] = ACTIONS(2687), + [anon_sym_open] = ACTIONS(2685), + [anon_sym_LBRACK_LT] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_DOT_DOT2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [sym__dedent] = ACTIONS(2687), + }, + [798] = { + [sym_xml_doc] = STATE(798), + [sym_block_comment] = STATE(798), + [sym_preproc_line] = STATE(798), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_GT_RBRACK] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_RBRACK] = ACTIONS(2642), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_to] = ACTIONS(2640), + [anon_sym_downto] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_end] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_DOT_DOT2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [anon_sym_POUNDendif] = ACTIONS(2642), + [anon_sym_POUNDelse] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + }, + [799] = { + [sym_xml_doc] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_preproc_line] = STATE(799), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_GT_RBRACK] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_to] = ACTIONS(2685), + [anon_sym_downto] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_end] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_DOT_DOT2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [anon_sym_POUNDendif] = ACTIONS(2687), + [anon_sym_POUNDelse] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + }, + [800] = { + [sym_xml_doc] = STATE(800), + [sym_block_comment] = STATE(800), + [sym_preproc_line] = STATE(800), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_GT_RBRACK] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_RBRACK] = ACTIONS(2664), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_to] = ACTIONS(2662), + [anon_sym_downto] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_end] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_DOT_DOT2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [anon_sym_POUNDendif] = ACTIONS(2664), + [anon_sym_POUNDelse] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + }, + [801] = { + [sym_xml_doc] = STATE(801), + [sym_block_comment] = STATE(801), + [sym_preproc_line] = STATE(801), + [sym_identifier] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_POUNDnowarn] = ACTIONS(2677), + [anon_sym_POUNDr] = ACTIONS(2677), + [anon_sym_POUNDload] = ACTIONS(2677), + [anon_sym_open] = ACTIONS(2675), + [anon_sym_LBRACK_LT] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_DOT_DOT2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + [sym__dedent] = ACTIONS(2677), + }, + [802] = { + [sym_xml_doc] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_preproc_line] = STATE(802), + [sym_identifier] = ACTIONS(2636), + [anon_sym_module] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_POUNDnowarn] = ACTIONS(2638), + [anon_sym_POUNDr] = ACTIONS(2638), + [anon_sym_POUNDload] = ACTIONS(2638), + [anon_sym_open] = ACTIONS(2636), + [anon_sym_LBRACK_LT] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_DOT_DOT2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + [sym__dedent] = ACTIONS(2638), + }, + [803] = { + [sym_xml_doc] = STATE(803), + [sym_block_comment] = STATE(803), + [sym_preproc_line] = STATE(803), + [sym_identifier] = ACTIONS(2632), + [anon_sym_module] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_POUNDnowarn] = ACTIONS(2634), + [anon_sym_POUNDr] = ACTIONS(2634), + [anon_sym_POUNDload] = ACTIONS(2634), + [anon_sym_open] = ACTIONS(2632), + [anon_sym_LBRACK_LT] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_DOT_DOT2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + [sym__dedent] = ACTIONS(2634), + }, + [804] = { + [sym_xml_doc] = STATE(804), + [sym_block_comment] = STATE(804), + [sym_preproc_line] = STATE(804), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + }, + [805] = { + [sym_xml_doc] = STATE(805), + [sym_block_comment] = STATE(805), + [sym_preproc_line] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_module] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_POUNDnowarn] = ACTIONS(2681), + [anon_sym_POUNDr] = ACTIONS(2681), + [anon_sym_POUNDload] = ACTIONS(2681), + [anon_sym_open] = ACTIONS(2679), + [anon_sym_LBRACK_LT] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + }, + [806] = { + [sym_xml_doc] = STATE(806), + [sym_block_comment] = STATE(806), + [sym_preproc_line] = STATE(806), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2644), + [anon_sym_namespace] = ACTIONS(2644), + [anon_sym_module] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_POUNDnowarn] = ACTIONS(2646), + [anon_sym_POUNDr] = ACTIONS(2646), + [anon_sym_POUNDload] = ACTIONS(2646), + [anon_sym_open] = ACTIONS(2644), + [anon_sym_LBRACK_LT] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + }, + [807] = { + [sym_xml_doc] = STATE(807), + [sym_block_comment] = STATE(807), + [sym_preproc_line] = STATE(807), + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2648), + [anon_sym_namespace] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_POUNDnowarn] = ACTIONS(2650), + [anon_sym_POUNDr] = ACTIONS(2650), + [anon_sym_POUNDload] = ACTIONS(2650), + [anon_sym_open] = ACTIONS(2648), + [anon_sym_LBRACK_LT] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + }, + [808] = { + [sym_xml_doc] = STATE(808), + [sym_block_comment] = STATE(808), + [sym_preproc_line] = STATE(808), + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_POUNDnowarn] = ACTIONS(2654), + [anon_sym_POUNDr] = ACTIONS(2654), + [anon_sym_POUNDload] = ACTIONS(2654), + [anon_sym_open] = ACTIONS(2652), + [anon_sym_LBRACK_LT] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2689), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + }, + [809] = { + [sym_xml_doc] = STATE(809), + [sym_block_comment] = STATE(809), + [sym_preproc_line] = STATE(809), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [810] = { + [sym_xml_doc] = STATE(810), + [sym_block_comment] = STATE(810), + [sym_preproc_line] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2636), + [anon_sym_namespace] = ACTIONS(2636), + [anon_sym_module] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_POUNDnowarn] = ACTIONS(2638), + [anon_sym_POUNDr] = ACTIONS(2638), + [anon_sym_POUNDload] = ACTIONS(2638), + [anon_sym_open] = ACTIONS(2636), + [anon_sym_LBRACK_LT] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + }, + [811] = { + [sym_xml_doc] = STATE(811), + [sym_block_comment] = STATE(811), + [sym_preproc_line] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [812] = { + [sym_xml_doc] = STATE(812), + [sym_block_comment] = STATE(812), + [sym_preproc_line] = STATE(812), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_POUNDnowarn] = ACTIONS(2677), + [anon_sym_POUNDr] = ACTIONS(2677), + [anon_sym_POUNDload] = ACTIONS(2677), + [anon_sym_open] = ACTIONS(2675), + [anon_sym_LBRACK_LT] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + }, + [813] = { + [sym_xml_doc] = STATE(813), + [sym_block_comment] = STATE(813), + [sym_preproc_line] = STATE(813), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2662), + [anon_sym_namespace] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_POUNDnowarn] = ACTIONS(2664), + [anon_sym_POUNDr] = ACTIONS(2664), + [anon_sym_POUNDload] = ACTIONS(2664), + [anon_sym_open] = ACTIONS(2662), + [anon_sym_LBRACK_LT] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + }, + [814] = { + [sym_xml_doc] = STATE(814), + [sym_block_comment] = STATE(814), + [sym_preproc_line] = STATE(814), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_POUNDnowarn] = ACTIONS(2621), + [anon_sym_POUNDr] = ACTIONS(2621), + [anon_sym_POUNDload] = ACTIONS(2621), + [anon_sym_open] = ACTIONS(2615), + [anon_sym_LBRACK_LT] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + }, + [815] = { + [sym_xml_doc] = STATE(815), + [sym_block_comment] = STATE(815), + [sym_preproc_line] = STATE(815), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + }, + [816] = { + [sym_xml_doc] = STATE(816), + [sym_block_comment] = STATE(816), + [sym_preproc_line] = STATE(816), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_POUNDnowarn] = ACTIONS(2642), + [anon_sym_POUNDr] = ACTIONS(2642), + [anon_sym_POUNDload] = ACTIONS(2642), + [anon_sym_open] = ACTIONS(2640), + [anon_sym_LBRACK_LT] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + }, + [817] = { + [sym_xml_doc] = STATE(817), + [sym_block_comment] = STATE(817), + [sym_preproc_line] = STATE(817), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_GT_RBRACK] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_to] = ACTIONS(2693), + [anon_sym_downto] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_end] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_DOT_DOT2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(2697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [anon_sym_POUNDendif] = ACTIONS(2695), + [anon_sym_POUNDelse] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + }, + [818] = { + [sym_xml_doc] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_preproc_line] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2632), + [anon_sym_namespace] = ACTIONS(2632), + [anon_sym_module] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_POUNDnowarn] = ACTIONS(2634), + [anon_sym_POUNDr] = ACTIONS(2634), + [anon_sym_POUNDload] = ACTIONS(2634), + [anon_sym_open] = ACTIONS(2632), + [anon_sym_LBRACK_LT] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + }, + [819] = { + [sym_xml_doc] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_preproc_line] = STATE(819), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_POUNDnowarn] = ACTIONS(2687), + [anon_sym_POUNDr] = ACTIONS(2687), + [anon_sym_POUNDload] = ACTIONS(2687), + [anon_sym_open] = ACTIONS(2685), + [anon_sym_LBRACK_LT] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + }, + [820] = { + [sym_xml_doc] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_preproc_line] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2628), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_POUNDnowarn] = ACTIONS(2630), + [anon_sym_POUNDr] = ACTIONS(2630), + [anon_sym_POUNDload] = ACTIONS(2630), + [anon_sym_open] = ACTIONS(2628), + [anon_sym_LBRACK_LT] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + }, + [821] = { + [sym_xml_doc] = STATE(821), + [sym_block_comment] = STATE(821), + [sym_preproc_line] = STATE(821), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [822] = { + [sym_xml_doc] = STATE(822), + [sym_block_comment] = STATE(822), + [sym_preproc_line] = STATE(822), + [aux_sym_rules_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_GT_RBRACK] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_to] = ACTIONS(2699), + [anon_sym_downto] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_end] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_DOT_DOT2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [anon_sym_POUNDendif] = ACTIONS(2701), + [anon_sym_POUNDelse] = ACTIONS(2701), + [sym__newline] = ACTIONS(2705), + }, + [823] = { + [sym_xml_doc] = STATE(823), + [sym_block_comment] = STATE(823), + [sym_preproc_line] = STATE(823), + [aux_sym_rules_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_POUNDnowarn] = ACTIONS(2710), + [anon_sym_POUNDr] = ACTIONS(2710), + [anon_sym_POUNDload] = ACTIONS(2710), + [anon_sym_open] = ACTIONS(2708), + [anon_sym_LBRACK_LT] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_DOT_DOT2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2715), + [sym__dedent] = ACTIONS(2710), + }, + [824] = { + [sym_xml_doc] = STATE(824), + [sym_block_comment] = STATE(824), + [sym_preproc_line] = STATE(824), + [aux_sym_rules_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_GT_RBRACK] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), [anon_sym_do] = ACTIONS(2718), [anon_sym_let] = ACTIONS(2718), [anon_sym_let_BANG] = ACTIONS(2720), @@ -140451,7 +134446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2718), [anon_sym_COMMA] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2703), [anon_sym_AMP] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2718), [anon_sym_RBRACK] = ACTIONS(2720), @@ -140522,4002 +134517,6584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), [sym_int] = ACTIONS(2718), [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2720), [anon_sym_POUNDendif] = ACTIONS(2720), [anon_sym_POUNDelse] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - }, - [857] = { - [sym_xml_doc] = STATE(857), - [sym_block_comment] = STATE(857), - [sym_preproc_line] = STATE(857), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [sym__newline] = ACTIONS(2722), }, - [858] = { - [sym_xml_doc] = STATE(858), - [sym_block_comment] = STATE(858), - [sym_preproc_line] = STATE(858), - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_POUNDnowarn] = ACTIONS(2703), - [anon_sym_POUNDr] = ACTIONS(2703), - [anon_sym_POUNDload] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2701), - [anon_sym_LBRACK_LT] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [825] = { + [sym_xml_doc] = STATE(825), + [sym_block_comment] = STATE(825), + [sym_preproc_line] = STATE(825), + [aux_sym_rules_repeat1] = STATE(833), + [sym_identifier] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_POUNDnowarn] = ACTIONS(2701), + [anon_sym_POUNDr] = ACTIONS(2701), + [anon_sym_POUNDload] = ACTIONS(2701), + [anon_sym_open] = ACTIONS(2699), + [anon_sym_LBRACK_LT] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_DOT_DOT2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(2727), + [sym__dedent] = ACTIONS(2701), }, - [859] = { - [sym_xml_doc] = STATE(859), - [sym_block_comment] = STATE(859), - [sym_preproc_line] = STATE(859), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_GT_RBRACK] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_to] = ACTIONS(2701), - [anon_sym_downto] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_end] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_DOT_DOT2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [anon_sym_POUNDendif] = ACTIONS(2703), - [anon_sym_POUNDelse] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [826] = { + [sym_xml_doc] = STATE(826), + [sym_block_comment] = STATE(826), + [sym_preproc_line] = STATE(826), + [aux_sym_rules_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_POUNDnowarn] = ACTIONS(2701), + [anon_sym_POUNDr] = ACTIONS(2701), + [anon_sym_POUNDload] = ACTIONS(2701), + [anon_sym_open] = ACTIONS(2699), + [anon_sym_LBRACK_LT] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_DOT_DOT2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(2727), + [sym__dedent] = ACTIONS(2701), }, - [860] = { - [sym_xml_doc] = STATE(860), - [sym_block_comment] = STATE(860), - [sym_preproc_line] = STATE(860), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_GT_RBRACK] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_to] = ACTIONS(2701), - [anon_sym_downto] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_end] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [anon_sym_POUNDendif] = ACTIONS(2703), - [anon_sym_POUNDelse] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [827] = { + [sym_xml_doc] = STATE(827), + [sym_block_comment] = STATE(827), + [sym_preproc_line] = STATE(827), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_GT_RBRACK] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_to] = ACTIONS(2231), + [anon_sym_downto] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_end] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(2730), + [aux_sym_decimal_token1] = ACTIONS(2283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [anon_sym_POUNDendif] = ACTIONS(2229), + [anon_sym_POUNDelse] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [861] = { - [sym_xml_doc] = STATE(861), - [sym_block_comment] = STATE(861), - [sym_preproc_line] = STATE(861), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_GT_RBRACK] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_RBRACK] = ACTIONS(2716), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_to] = ACTIONS(2714), - [anon_sym_downto] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_end] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_DOT_DOT2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [anon_sym_POUNDendif] = ACTIONS(2716), - [anon_sym_POUNDelse] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), + [828] = { + [sym_xml_doc] = STATE(828), + [sym_block_comment] = STATE(828), + [sym_preproc_line] = STATE(828), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_GT_RBRACK] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_to] = ACTIONS(2693), + [anon_sym_downto] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_end] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_DOT_DOT2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [anon_sym_POUNDendif] = ACTIONS(2695), + [anon_sym_POUNDelse] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, - [862] = { - [sym_xml_doc] = STATE(862), - [sym_block_comment] = STATE(862), - [sym_preproc_line] = STATE(862), - [sym_identifier] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), + [829] = { + [sym_xml_doc] = STATE(829), + [sym_block_comment] = STATE(829), + [sym_preproc_line] = STATE(829), + [sym_identifier] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2732), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_DOT_DOT2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, - [863] = { - [sym_xml_doc] = STATE(863), - [sym_block_comment] = STATE(863), - [sym_preproc_line] = STATE(863), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_GT_RBRACK] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_RBRACK] = ACTIONS(2778), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_to] = ACTIONS(2776), - [anon_sym_downto] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_end] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_DOT_DOT2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [anon_sym_POUNDendif] = ACTIONS(2778), - [anon_sym_POUNDelse] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), + [830] = { + [sym_xml_doc] = STATE(830), + [sym_block_comment] = STATE(830), + [sym_preproc_line] = STATE(830), + [aux_sym_rules_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_GT_RBRACK] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_to] = ACTIONS(2708), + [anon_sym_downto] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_end] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_DOT_DOT2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [anon_sym_POUNDendif] = ACTIONS(2710), + [anon_sym_POUNDelse] = ACTIONS(2710), + [sym__newline] = ACTIONS(2739), + }, + [831] = { + [sym_xml_doc] = STATE(831), + [sym_block_comment] = STATE(831), + [sym_preproc_line] = STATE(831), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_GT_RBRACK] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_to] = ACTIONS(2732), + [anon_sym_downto] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2732), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_end] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_DOT_DOT2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [anon_sym_POUNDendif] = ACTIONS(2734), + [anon_sym_POUNDelse] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [832] = { + [sym_xml_doc] = STATE(832), + [sym_block_comment] = STATE(832), + [sym_preproc_line] = STATE(832), + [aux_sym_rules_repeat1] = STATE(822), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_GT_RBRACK] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_RBRACK] = ACTIONS(2744), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_to] = ACTIONS(2742), + [anon_sym_downto] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_end] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_DOT_DOT2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [anon_sym_POUNDendif] = ACTIONS(2744), + [anon_sym_POUNDelse] = ACTIONS(2744), + [sym__newline] = ACTIONS(2746), + }, + [833] = { + [sym_xml_doc] = STATE(833), + [sym_block_comment] = STATE(833), + [sym_preproc_line] = STATE(833), + [aux_sym_rules_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_POUNDnowarn] = ACTIONS(2720), + [anon_sym_POUNDr] = ACTIONS(2720), + [anon_sym_POUNDload] = ACTIONS(2720), + [anon_sym_open] = ACTIONS(2718), + [anon_sym_LBRACK_LT] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_DOT_DOT2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(2749), + [sym__dedent] = ACTIONS(2720), + }, + [834] = { + [sym_xml_doc] = STATE(834), + [sym_block_comment] = STATE(834), + [sym_preproc_line] = STATE(834), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_GT_RBRACK] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_RBRACK] = ACTIONS(2754), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_to] = ACTIONS(2752), + [anon_sym_downto] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_end] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_DOT_DOT2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [anon_sym_POUNDendif] = ACTIONS(2754), + [anon_sym_POUNDelse] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + }, + [835] = { + [sym_xml_doc] = STATE(835), + [sym_block_comment] = STATE(835), + [sym_preproc_line] = STATE(835), + [aux_sym_rules_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_GT_RBRACK] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_to] = ACTIONS(2699), + [anon_sym_downto] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_end] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_DOT_DOT2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [anon_sym_POUNDendif] = ACTIONS(2701), + [anon_sym_POUNDelse] = ACTIONS(2701), + [sym__newline] = ACTIONS(2705), + }, + [836] = { + [sym_xml_doc] = STATE(836), + [sym_block_comment] = STATE(836), + [sym_preproc_line] = STATE(836), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_POUNDnowarn] = ACTIONS(2695), + [anon_sym_POUNDr] = ACTIONS(2695), + [anon_sym_POUNDload] = ACTIONS(2695), + [anon_sym_open] = ACTIONS(2693), + [anon_sym_LBRACK_LT] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(2756), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + }, + [837] = { + [sym_xml_doc] = STATE(837), + [sym_block_comment] = STATE(837), + [sym_preproc_line] = STATE(837), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_GT_RBRACK] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_RBRACK] = ACTIONS(2760), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_to] = ACTIONS(2758), + [anon_sym_downto] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_end] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_DOT_DOT2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(2762), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [anon_sym_POUNDendif] = ACTIONS(2760), + [anon_sym_POUNDelse] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + }, + [838] = { + [sym_xml_doc] = STATE(838), + [sym_block_comment] = STATE(838), + [sym_preproc_line] = STATE(838), + [aux_sym_rules_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(2742), + [anon_sym_module] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_POUNDnowarn] = ACTIONS(2744), + [anon_sym_POUNDr] = ACTIONS(2744), + [anon_sym_POUNDload] = ACTIONS(2744), + [anon_sym_open] = ACTIONS(2742), + [anon_sym_LBRACK_LT] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_type] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_DOT_DOT2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(2764), + [sym__dedent] = ACTIONS(2744), + }, + [839] = { + [sym_xml_doc] = STATE(839), + [sym_block_comment] = STATE(839), + [sym_preproc_line] = STATE(839), + [aux_sym_rules_repeat1] = STATE(865), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_POUNDnowarn] = ACTIONS(2701), + [anon_sym_POUNDr] = ACTIONS(2701), + [anon_sym_POUNDload] = ACTIONS(2701), + [anon_sym_open] = ACTIONS(2699), + [anon_sym_LBRACK_LT] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(2769), + }, + [840] = { + [sym_xml_doc] = STATE(840), + [sym_block_comment] = STATE(840), + [sym_preproc_line] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_namespace] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(2772), + [aux_sym_decimal_token1] = ACTIONS(2255), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [841] = { + [sym_xml_doc] = STATE(841), + [sym_block_comment] = STATE(841), + [sym_preproc_line] = STATE(841), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_GT_RBRACK] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_to] = ACTIONS(2732), + [anon_sym_downto] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_end] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_DOT_DOT2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [anon_sym_POUNDendif] = ACTIONS(2734), + [anon_sym_POUNDelse] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [842] = { + [sym_xml_doc] = STATE(842), + [sym_block_comment] = STATE(842), + [sym_preproc_line] = STATE(842), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_GT_RBRACK] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_RBRACK] = ACTIONS(2776), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_to] = ACTIONS(2774), + [anon_sym_downto] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_end] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [anon_sym_POUNDendif] = ACTIONS(2776), + [anon_sym_POUNDelse] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [843] = { + [sym_xml_doc] = STATE(843), + [sym_block_comment] = STATE(843), + [sym_preproc_line] = STATE(843), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_GT_RBRACK] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_RBRACK] = ACTIONS(2776), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_to] = ACTIONS(2774), + [anon_sym_downto] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_end] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_DOT_DOT2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [anon_sym_POUNDendif] = ACTIONS(2776), + [anon_sym_POUNDelse] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [844] = { + [sym_xml_doc] = STATE(844), + [sym_block_comment] = STATE(844), + [sym_preproc_line] = STATE(844), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_GT_RBRACK] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_RBRACK] = ACTIONS(2784), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2782), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_to] = ACTIONS(2782), + [anon_sym_downto] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_end] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_DOT_DOT2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [anon_sym_POUNDendif] = ACTIONS(2784), + [anon_sym_POUNDelse] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + }, + [845] = { + [sym_xml_doc] = STATE(845), + [sym_block_comment] = STATE(845), + [sym_preproc_line] = STATE(845), + [aux_sym_long_identifier_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_GT_RBRACK] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_RBRACK] = ACTIONS(2596), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_to] = ACTIONS(2594), + [anon_sym_downto] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_end] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_DOT_DOT2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [anon_sym_POUNDendif] = ACTIONS(2596), + [anon_sym_POUNDelse] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + }, + [846] = { + [sym_xml_doc] = STATE(846), + [sym_block_comment] = STATE(846), + [sym_preproc_line] = STATE(846), + [aux_sym_long_identifier_repeat1] = STATE(849), + [sym_identifier] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_DOT_DOT2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), + }, + [847] = { + [sym_xml_doc] = STATE(847), + [sym_block_comment] = STATE(847), + [sym_preproc_line] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_POUNDnowarn] = ACTIONS(2695), + [anon_sym_POUNDr] = ACTIONS(2695), + [anon_sym_POUNDload] = ACTIONS(2695), + [anon_sym_open] = ACTIONS(2693), + [anon_sym_LBRACK_LT] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + }, + [848] = { + [sym_xml_doc] = STATE(848), + [sym_block_comment] = STATE(848), + [sym_preproc_line] = STATE(848), + [sym_identifier] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_DOT_DOT2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), + }, + [849] = { + [sym_xml_doc] = STATE(849), + [sym_block_comment] = STATE(849), + [sym_preproc_line] = STATE(849), + [aux_sym_long_identifier_repeat1] = STATE(849), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + }, + [850] = { + [sym_xml_doc] = STATE(850), + [sym_block_comment] = STATE(850), + [sym_preproc_line] = STATE(850), + [sym_identifier] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_POUNDnowarn] = ACTIONS(2710), + [anon_sym_POUNDr] = ACTIONS(2710), + [anon_sym_POUNDload] = ACTIONS(2710), + [anon_sym_open] = ACTIONS(2708), + [anon_sym_LBRACK_LT] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_DOT_DOT2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [sym__dedent] = ACTIONS(2710), + }, + [851] = { + [sym_xml_doc] = STATE(851), + [sym_block_comment] = STATE(851), + [sym_preproc_line] = STATE(851), + [sym_identifier] = ACTIONS(2774), + [anon_sym_module] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_POUNDnowarn] = ACTIONS(2776), + [anon_sym_POUNDr] = ACTIONS(2776), + [anon_sym_POUNDload] = ACTIONS(2776), + [anon_sym_open] = ACTIONS(2774), + [anon_sym_LBRACK_LT] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), + }, + [852] = { + [sym_xml_doc] = STATE(852), + [sym_block_comment] = STATE(852), + [sym_preproc_line] = STATE(852), + [sym_identifier] = ACTIONS(2795), + [anon_sym_module] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_POUNDnowarn] = ACTIONS(2797), + [anon_sym_POUNDr] = ACTIONS(2797), + [anon_sym_POUNDload] = ACTIONS(2797), + [anon_sym_open] = ACTIONS(2795), + [anon_sym_LBRACK_LT] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_type] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_DOT_DOT2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + [sym__dedent] = ACTIONS(2797), + }, + [853] = { + [sym_xml_doc] = STATE(853), + [sym_block_comment] = STATE(853), + [sym_preproc_line] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_module] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_POUNDnowarn] = ACTIONS(2776), + [anon_sym_POUNDr] = ACTIONS(2776), + [anon_sym_POUNDload] = ACTIONS(2776), + [anon_sym_open] = ACTIONS(2774), + [anon_sym_LBRACK_LT] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [854] = { + [sym_xml_doc] = STATE(854), + [sym_block_comment] = STATE(854), + [sym_preproc_line] = STATE(854), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_GT_RBRACK] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_RBRACK] = ACTIONS(2710), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_to] = ACTIONS(2708), + [anon_sym_downto] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_end] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_DOT_DOT2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [anon_sym_POUNDendif] = ACTIONS(2710), + [anon_sym_POUNDelse] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + }, + [855] = { + [sym_xml_doc] = STATE(855), + [sym_block_comment] = STATE(855), + [sym_preproc_line] = STATE(855), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_GT_RBRACK] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_RBRACK] = ACTIONS(2803), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_to] = ACTIONS(2801), + [anon_sym_downto] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_end] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_DOT_DOT2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [anon_sym_POUNDendif] = ACTIONS(2803), + [anon_sym_POUNDelse] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + }, + [856] = { + [sym_xml_doc] = STATE(856), + [sym_block_comment] = STATE(856), + [sym_preproc_line] = STATE(856), + [sym_identifier] = ACTIONS(2807), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_POUNDnowarn] = ACTIONS(2809), + [anon_sym_POUNDr] = ACTIONS(2809), + [anon_sym_POUNDload] = ACTIONS(2809), + [anon_sym_open] = ACTIONS(2807), + [anon_sym_LBRACK_LT] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_DOT_DOT2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), + [sym__dedent] = ACTIONS(2809), + }, + [857] = { + [sym_xml_doc] = STATE(857), + [sym_block_comment] = STATE(857), + [sym_preproc_line] = STATE(857), + [sym_identifier] = ACTIONS(2801), + [anon_sym_module] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_POUNDnowarn] = ACTIONS(2803), + [anon_sym_POUNDr] = ACTIONS(2803), + [anon_sym_POUNDload] = ACTIONS(2803), + [anon_sym_open] = ACTIONS(2801), + [anon_sym_LBRACK_LT] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_DOT_DOT2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + [sym__dedent] = ACTIONS(2803), + }, + [858] = { + [sym_xml_doc] = STATE(858), + [sym_block_comment] = STATE(858), + [sym_preproc_line] = STATE(858), + [aux_sym_rules_repeat1] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_POUNDnowarn] = ACTIONS(2701), + [anon_sym_POUNDr] = ACTIONS(2701), + [anon_sym_POUNDload] = ACTIONS(2701), + [anon_sym_open] = ACTIONS(2699), + [anon_sym_LBRACK_LT] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(2769), + }, + [859] = { + [sym_xml_doc] = STATE(859), + [sym_block_comment] = STATE(859), + [sym_preproc_line] = STATE(859), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_GT_RBRACK] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_to] = ACTIONS(2732), + [anon_sym_downto] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_end] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [anon_sym_POUNDendif] = ACTIONS(2734), + [anon_sym_POUNDelse] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [860] = { + [sym_xml_doc] = STATE(860), + [sym_block_comment] = STATE(860), + [sym_preproc_line] = STATE(860), + [sym_identifier] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), + }, + [861] = { + [sym_xml_doc] = STATE(861), + [sym_block_comment] = STATE(861), + [sym_preproc_line] = STATE(861), + [sym_identifier] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_POUNDnowarn] = ACTIONS(2695), + [anon_sym_POUNDr] = ACTIONS(2695), + [anon_sym_POUNDload] = ACTIONS(2695), + [anon_sym_open] = ACTIONS(2693), + [anon_sym_LBRACK_LT] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(2815), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + }, + [862] = { + [sym_xml_doc] = STATE(862), + [sym_block_comment] = STATE(862), + [sym_preproc_line] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [863] = { + [sym_xml_doc] = STATE(863), + [sym_block_comment] = STATE(863), + [sym_preproc_line] = STATE(863), + [aux_sym_rules_repeat1] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_POUNDnowarn] = ACTIONS(2710), + [anon_sym_POUNDr] = ACTIONS(2710), + [anon_sym_POUNDload] = ACTIONS(2710), + [anon_sym_open] = ACTIONS(2708), + [anon_sym_LBRACK_LT] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2820), }, [864] = { [sym_xml_doc] = STATE(864), [sym_block_comment] = STATE(864), [sym_preproc_line] = STATE(864), - [sym_identifier] = ACTIONS(2780), - [anon_sym_module] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_POUNDnowarn] = ACTIONS(2782), - [anon_sym_POUNDr] = ACTIONS(2782), - [anon_sym_POUNDload] = ACTIONS(2782), - [anon_sym_open] = ACTIONS(2780), - [anon_sym_LBRACK_LT] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_DOT_DOT2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [sym__dedent] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_POUNDnowarn] = ACTIONS(2784), + [anon_sym_POUNDr] = ACTIONS(2784), + [anon_sym_POUNDload] = ACTIONS(2784), + [anon_sym_open] = ACTIONS(2782), + [anon_sym_LBRACK_LT] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2782), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_DOT_DOT2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [sym__dedent] = ACTIONS(2784), }, [865] = { [sym_xml_doc] = STATE(865), [sym_block_comment] = STATE(865), [sym_preproc_line] = STATE(865), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_GT_RBRACK] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_to] = ACTIONS(2784), - [anon_sym_downto] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_end] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_DOT_DOT2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [anon_sym_POUNDendif] = ACTIONS(2786), - [anon_sym_POUNDelse] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), + [aux_sym_rules_repeat1] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_POUNDnowarn] = ACTIONS(2720), + [anon_sym_POUNDr] = ACTIONS(2720), + [anon_sym_POUNDload] = ACTIONS(2720), + [anon_sym_open] = ACTIONS(2718), + [anon_sym_LBRACK_LT] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(2823), }, [866] = { - [sym_type_arguments] = STATE(1199), - [sym_long_identifier] = STATE(1184), [sym_xml_doc] = STATE(866), [sym_block_comment] = STATE(866), [sym_preproc_line] = STATE(866), - [aux_sym__compound_type_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), + [aux_sym_long_identifier_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_GT_RBRACK] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_to] = ACTIONS(2511), + [anon_sym_downto] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_end] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_DOT_DOT2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [anon_sym_POUNDendif] = ACTIONS(2514), + [anon_sym_POUNDelse] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, [867] = { - [sym_type_arguments] = STATE(1199), - [sym_long_identifier] = STATE(1184), [sym_xml_doc] = STATE(867), [sym_block_comment] = STATE(867), [sym_preproc_line] = STATE(867), - [aux_sym__compound_type_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [sym__dedent] = ACTIONS(2305), + [aux_sym_rules_repeat1] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(2744), + [sym_identifier] = ACTIONS(2742), + [anon_sym_namespace] = ACTIONS(2742), + [anon_sym_module] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_POUNDnowarn] = ACTIONS(2744), + [anon_sym_POUNDr] = ACTIONS(2744), + [anon_sym_POUNDload] = ACTIONS(2744), + [anon_sym_open] = ACTIONS(2742), + [anon_sym_LBRACK_LT] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_type] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(2830), }, [868] = { [sym_xml_doc] = STATE(868), [sym_block_comment] = STATE(868), [sym_preproc_line] = STATE(868), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_GT_RBRACK] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_RBRACK] = ACTIONS(2800), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_to] = ACTIONS(2798), - [anon_sym_downto] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_end] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_DOT_DOT2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [anon_sym_POUNDendif] = ACTIONS(2800), - [anon_sym_POUNDelse] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_POUNDnowarn] = ACTIONS(2754), + [anon_sym_POUNDr] = ACTIONS(2754), + [anon_sym_POUNDload] = ACTIONS(2754), + [anon_sym_open] = ACTIONS(2752), + [anon_sym_LBRACK_LT] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), }, [869] = { [sym_xml_doc] = STATE(869), [sym_block_comment] = STATE(869), [sym_preproc_line] = STATE(869), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_GT_RBRACK] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_to] = ACTIONS(2802), - [anon_sym_downto] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_end] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_DOT_DOT2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [anon_sym_POUNDendif] = ACTIONS(2804), - [anon_sym_POUNDelse] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2833), + [anon_sym_module] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_POUNDnowarn] = ACTIONS(2835), + [anon_sym_POUNDr] = ACTIONS(2835), + [anon_sym_POUNDload] = ACTIONS(2835), + [anon_sym_open] = ACTIONS(2833), + [anon_sym_LBRACK_LT] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_DOT_DOT2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + [sym__dedent] = ACTIONS(2835), }, [870] = { [sym_xml_doc] = STATE(870), [sym_block_comment] = STATE(870), [sym_preproc_line] = STATE(870), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_GT_RBRACK] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_to] = ACTIONS(2806), - [anon_sym_downto] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_end] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [anon_sym_POUNDendif] = ACTIONS(2808), - [anon_sym_POUNDelse] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_module] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_POUNDnowarn] = ACTIONS(2760), + [anon_sym_POUNDr] = ACTIONS(2760), + [anon_sym_POUNDload] = ACTIONS(2760), + [anon_sym_open] = ACTIONS(2758), + [anon_sym_LBRACK_LT] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(2837), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), }, [871] = { [sym_xml_doc] = STATE(871), [sym_block_comment] = STATE(871), [sym_preproc_line] = STATE(871), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_GT_RBRACK] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_to] = ACTIONS(2810), - [anon_sym_downto] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_end] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_DOT_DOT2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [anon_sym_POUNDendif] = ACTIONS(2812), - [anon_sym_POUNDelse] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_GT_RBRACK] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_RBRACK] = ACTIONS(2835), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_to] = ACTIONS(2833), + [anon_sym_downto] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_end] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_DOT_DOT2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [anon_sym_POUNDendif] = ACTIONS(2835), + [anon_sym_POUNDelse] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), }, [872] = { [sym_xml_doc] = STATE(872), [sym_block_comment] = STATE(872), [sym_preproc_line] = STATE(872), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_GT_RBRACK] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2816), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_to] = ACTIONS(2814), - [anon_sym_downto] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_end] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DOT_DOT2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [anon_sym_POUNDendif] = ACTIONS(2816), - [anon_sym_POUNDelse] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), + [aux_sym_long_identifier_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_to] = ACTIONS(2603), + [anon_sym_downto] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_end] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [anon_sym_POUNDendif] = ACTIONS(2605), + [anon_sym_POUNDelse] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [873] = { [sym_xml_doc] = STATE(873), [sym_block_comment] = STATE(873), [sym_preproc_line] = STATE(873), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_GT_RBRACK] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2820), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_to] = ACTIONS(2818), - [anon_sym_downto] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_end] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_DOT_DOT2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [anon_sym_POUNDendif] = ACTIONS(2820), - [anon_sym_POUNDelse] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_GT_RBRACK] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_RBRACK] = ACTIONS(2797), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_to] = ACTIONS(2795), + [anon_sym_downto] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_end] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_DOT_DOT2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [anon_sym_POUNDendif] = ACTIONS(2797), + [anon_sym_POUNDelse] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), }, [874] = { [sym_xml_doc] = STATE(874), [sym_block_comment] = STATE(874), [sym_preproc_line] = STATE(874), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_GT_RBRACK] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_RBRACK] = ACTIONS(2824), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_to] = ACTIONS(2822), - [anon_sym_downto] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_end] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_DOT_DOT2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [anon_sym_POUNDendif] = ACTIONS(2824), - [anon_sym_POUNDelse] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_GT_RBRACK] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_RBRACK] = ACTIONS(2809), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_to] = ACTIONS(2807), + [anon_sym_downto] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_end] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_DOT_DOT2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [anon_sym_POUNDendif] = ACTIONS(2809), + [anon_sym_POUNDelse] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), }, [875] = { [sym_xml_doc] = STATE(875), [sym_block_comment] = STATE(875), [sym_preproc_line] = STATE(875), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_GT_RBRACK] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2828), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_to] = ACTIONS(2826), - [anon_sym_downto] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_end] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_DOT_DOT2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [anon_sym_POUNDendif] = ACTIONS(2828), - [anon_sym_POUNDelse] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), + [aux_sym_long_identifier_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_POUNDnowarn] = ACTIONS(2514), + [anon_sym_POUNDr] = ACTIONS(2514), + [anon_sym_POUNDload] = ACTIONS(2514), + [anon_sym_open] = ACTIONS(2511), + [anon_sym_LBRACK_LT] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_DOT_DOT2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), }, [876] = { [sym_xml_doc] = STATE(876), [sym_block_comment] = STATE(876), [sym_preproc_line] = STATE(876), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_GT_RBRACK] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2832), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_to] = ACTIONS(2830), - [anon_sym_downto] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_end] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_DOT_DOT2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [anon_sym_POUNDendif] = ACTIONS(2832), - [anon_sym_POUNDelse] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2774), + [anon_sym_module] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_POUNDnowarn] = ACTIONS(2776), + [anon_sym_POUNDr] = ACTIONS(2776), + [anon_sym_POUNDload] = ACTIONS(2776), + [anon_sym_open] = ACTIONS(2774), + [anon_sym_LBRACK_LT] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_DOT_DOT2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), }, [877] = { [sym_xml_doc] = STATE(877), [sym_block_comment] = STATE(877), [sym_preproc_line] = STATE(877), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_GT_RBRACK] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_RBRACK] = ACTIONS(2836), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_to] = ACTIONS(2834), - [anon_sym_downto] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_end] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_DOT_DOT2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [anon_sym_POUNDendif] = ACTIONS(2836), - [anon_sym_POUNDelse] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2848), + [anon_sym_module] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_POUNDnowarn] = ACTIONS(2850), + [anon_sym_POUNDr] = ACTIONS(2850), + [anon_sym_POUNDload] = ACTIONS(2850), + [anon_sym_open] = ACTIONS(2848), + [anon_sym_LBRACK_LT] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_DOT_DOT2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + [sym__dedent] = ACTIONS(2850), }, [878] = { [sym_xml_doc] = STATE(878), [sym_block_comment] = STATE(878), [sym_preproc_line] = STATE(878), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_GT_RBRACK] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_RBRACK] = ACTIONS(2840), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_to] = ACTIONS(2838), - [anon_sym_downto] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_end] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_DOT_DOT2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [anon_sym_POUNDendif] = ACTIONS(2840), - [anon_sym_POUNDelse] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_GT_RBRACK] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2854), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_to] = ACTIONS(2852), + [anon_sym_downto] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_end] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_DOT_DOT2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [anon_sym_POUNDendif] = ACTIONS(2854), + [anon_sym_POUNDelse] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), }, [879] = { [sym_xml_doc] = STATE(879), [sym_block_comment] = STATE(879), [sym_preproc_line] = STATE(879), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_GT_RBRACK] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_to] = ACTIONS(2842), - [anon_sym_downto] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_end] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_DOT_DOT2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [anon_sym_POUNDendif] = ACTIONS(2844), - [anon_sym_POUNDelse] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_POUNDnowarn] = ACTIONS(2858), + [anon_sym_POUNDr] = ACTIONS(2858), + [anon_sym_POUNDload] = ACTIONS(2858), + [anon_sym_open] = ACTIONS(2856), + [anon_sym_LBRACK_LT] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_DOT_DOT2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + [sym__dedent] = ACTIONS(2858), }, [880] = { [sym_xml_doc] = STATE(880), [sym_block_comment] = STATE(880), [sym_preproc_line] = STATE(880), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_GT_RBRACK] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_to] = ACTIONS(2846), - [anon_sym_downto] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_end] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_DOT_DOT2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [anon_sym_POUNDendif] = ACTIONS(2848), - [anon_sym_POUNDelse] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_POUNDnowarn] = ACTIONS(2862), + [anon_sym_POUNDr] = ACTIONS(2862), + [anon_sym_POUNDload] = ACTIONS(2862), + [anon_sym_open] = ACTIONS(2860), + [anon_sym_LBRACK_LT] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_DOT_DOT2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + [sym__dedent] = ACTIONS(2862), }, [881] = { [sym_xml_doc] = STATE(881), [sym_block_comment] = STATE(881), [sym_preproc_line] = STATE(881), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_GT_RBRACK] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_RBRACK] = ACTIONS(2852), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_to] = ACTIONS(2850), - [anon_sym_downto] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_end] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_DOT_DOT2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [anon_sym_POUNDendif] = ACTIONS(2852), - [anon_sym_POUNDelse] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_GT_RBRACK] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_RBRACK] = ACTIONS(2866), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_to] = ACTIONS(2864), + [anon_sym_downto] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_end] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_DOT_DOT2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [anon_sym_POUNDendif] = ACTIONS(2866), + [anon_sym_POUNDelse] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), }, [882] = { [sym_xml_doc] = STATE(882), [sym_block_comment] = STATE(882), [sym_preproc_line] = STATE(882), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_GT_RBRACK] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2856), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_to] = ACTIONS(2854), - [anon_sym_downto] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_end] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [anon_sym_POUNDendif] = ACTIONS(2856), - [anon_sym_POUNDelse] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_GT_RBRACK] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_RBRACK] = ACTIONS(2870), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_to] = ACTIONS(2868), + [anon_sym_downto] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_end] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_DOT_DOT2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [anon_sym_POUNDendif] = ACTIONS(2870), + [anon_sym_POUNDelse] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), }, [883] = { [sym_xml_doc] = STATE(883), [sym_block_comment] = STATE(883), [sym_preproc_line] = STATE(883), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_GT_RBRACK] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_RBRACK] = ACTIONS(2860), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_to] = ACTIONS(2858), - [anon_sym_downto] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_end] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_DOT_DOT2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [anon_sym_POUNDendif] = ACTIONS(2860), - [anon_sym_POUNDelse] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2872), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_POUNDnowarn] = ACTIONS(2874), + [anon_sym_POUNDr] = ACTIONS(2874), + [anon_sym_POUNDload] = ACTIONS(2874), + [anon_sym_open] = ACTIONS(2872), + [anon_sym_LBRACK_LT] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_DOT_DOT2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + [sym__dedent] = ACTIONS(2874), }, [884] = { [sym_xml_doc] = STATE(884), [sym_block_comment] = STATE(884), [sym_preproc_line] = STATE(884), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_GT_RBRACK] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_RBRACK] = ACTIONS(2864), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_to] = ACTIONS(2862), - [anon_sym_downto] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_end] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_DOT_DOT2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [anon_sym_POUNDendif] = ACTIONS(2864), - [anon_sym_POUNDelse] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_POUNDnowarn] = ACTIONS(2878), + [anon_sym_POUNDr] = ACTIONS(2878), + [anon_sym_POUNDload] = ACTIONS(2878), + [anon_sym_open] = ACTIONS(2876), + [anon_sym_LBRACK_LT] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_DOT_DOT2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + [sym__dedent] = ACTIONS(2878), }, [885] = { [sym_xml_doc] = STATE(885), [sym_block_comment] = STATE(885), [sym_preproc_line] = STATE(885), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_GT_RBRACK] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_RBRACK] = ACTIONS(2868), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_to] = ACTIONS(2866), - [anon_sym_downto] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_end] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_DOT_DOT2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [anon_sym_POUNDendif] = ACTIONS(2868), - [anon_sym_POUNDelse] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_POUNDnowarn] = ACTIONS(2882), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), + [anon_sym_open] = ACTIONS(2880), + [anon_sym_LBRACK_LT] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), }, [886] = { [sym_xml_doc] = STATE(886), [sym_block_comment] = STATE(886), [sym_preproc_line] = STATE(886), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_GT_RBRACK] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_RBRACK] = ACTIONS(2872), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_to] = ACTIONS(2870), - [anon_sym_downto] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_end] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_DOT_DOT2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [anon_sym_POUNDendif] = ACTIONS(2872), - [anon_sym_POUNDelse] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_POUNDnowarn] = ACTIONS(2886), + [anon_sym_POUNDr] = ACTIONS(2886), + [anon_sym_POUNDload] = ACTIONS(2886), + [anon_sym_open] = ACTIONS(2884), + [anon_sym_LBRACK_LT] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_DOT_DOT2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [sym__dedent] = ACTIONS(2886), }, [887] = { [sym_xml_doc] = STATE(887), [sym_block_comment] = STATE(887), [sym_preproc_line] = STATE(887), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_GT_RBRACK] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_to] = ACTIONS(2874), - [anon_sym_downto] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_end] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_DOT_DOT2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [anon_sym_POUNDendif] = ACTIONS(2876), - [anon_sym_POUNDelse] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_POUNDnowarn] = ACTIONS(2890), + [anon_sym_POUNDr] = ACTIONS(2890), + [anon_sym_POUNDload] = ACTIONS(2890), + [anon_sym_open] = ACTIONS(2888), + [anon_sym_LBRACK_LT] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_DOT_DOT2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [sym__dedent] = ACTIONS(2890), }, [888] = { [sym_xml_doc] = STATE(888), [sym_block_comment] = STATE(888), [sym_preproc_line] = STATE(888), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_GT_RBRACK] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2880), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_to] = ACTIONS(2878), - [anon_sym_downto] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_end] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_DOT_DOT2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [anon_sym_POUNDendif] = ACTIONS(2880), - [anon_sym_POUNDelse] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2892), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_POUNDnowarn] = ACTIONS(2894), + [anon_sym_POUNDr] = ACTIONS(2894), + [anon_sym_POUNDload] = ACTIONS(2894), + [anon_sym_open] = ACTIONS(2892), + [anon_sym_LBRACK_LT] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_DOT_DOT2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + [sym__dedent] = ACTIONS(2894), }, [889] = { [sym_xml_doc] = STATE(889), [sym_block_comment] = STATE(889), [sym_preproc_line] = STATE(889), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_GT_RBRACK] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(2884), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_to] = ACTIONS(2882), - [anon_sym_downto] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_end] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_DOT_DOT2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [anon_sym_POUNDendif] = ACTIONS(2884), - [anon_sym_POUNDelse] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2864), + [anon_sym_module] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_POUNDnowarn] = ACTIONS(2866), + [anon_sym_POUNDr] = ACTIONS(2866), + [anon_sym_POUNDload] = ACTIONS(2866), + [anon_sym_open] = ACTIONS(2864), + [anon_sym_LBRACK_LT] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_DOT_DOT2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + [sym__dedent] = ACTIONS(2866), }, [890] = { [sym_xml_doc] = STATE(890), [sym_block_comment] = STATE(890), [sym_preproc_line] = STATE(890), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_GT_RBRACK] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_RBRACK] = ACTIONS(2888), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_to] = ACTIONS(2886), - [anon_sym_downto] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_end] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_DOT_DOT2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [anon_sym_POUNDendif] = ACTIONS(2888), - [anon_sym_POUNDelse] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_GT_RBRACK] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_RBRACK] = ACTIONS(2898), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_to] = ACTIONS(2896), + [anon_sym_downto] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_end] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_DOT_DOT2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [anon_sym_POUNDendif] = ACTIONS(2898), + [anon_sym_POUNDelse] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), }, [891] = { [sym_xml_doc] = STATE(891), [sym_block_comment] = STATE(891), [sym_preproc_line] = STATE(891), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_GT_RBRACK] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_to] = ACTIONS(2890), - [anon_sym_downto] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_end] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_DOT_DOT2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [anon_sym_POUNDendif] = ACTIONS(2892), - [anon_sym_POUNDelse] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_POUNDnowarn] = ACTIONS(2902), + [anon_sym_POUNDr] = ACTIONS(2902), + [anon_sym_POUNDload] = ACTIONS(2902), + [anon_sym_open] = ACTIONS(2900), + [anon_sym_LBRACK_LT] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_DOT_DOT2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [sym__dedent] = ACTIONS(2902), }, [892] = { [sym_xml_doc] = STATE(892), [sym_block_comment] = STATE(892), [sym_preproc_line] = STATE(892), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_module] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_POUNDnowarn] = ACTIONS(2669), - [anon_sym_POUNDr] = ACTIONS(2669), - [anon_sym_POUNDload] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2667), - [anon_sym_LBRACK_LT] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - }, - [893] = { - [sym_xml_doc] = STATE(893), - [sym_block_comment] = STATE(893), - [sym_preproc_line] = STATE(893), - [ts_builtin_sym_end] = ACTIONS(2724), - [sym_identifier] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_POUNDnowarn] = ACTIONS(2724), - [anon_sym_POUNDr] = ACTIONS(2724), - [anon_sym_POUNDload] = ACTIONS(2724), - [anon_sym_open] = ACTIONS(2722), - [anon_sym_LBRACK_LT] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - }, - [894] = { - [sym_xml_doc] = STATE(894), - [sym_block_comment] = STATE(894), - [sym_preproc_line] = STATE(894), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_GT_RBRACK] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_RBRACK] = ACTIONS(2896), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_to] = ACTIONS(2894), - [anon_sym_downto] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_end] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_DOT_DOT2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [anon_sym_POUNDendif] = ACTIONS(2896), - [anon_sym_POUNDelse] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - }, - [895] = { - [sym_xml_doc] = STATE(895), - [sym_block_comment] = STATE(895), - [sym_preproc_line] = STATE(895), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_GT_RBRACK] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_RBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_to] = ACTIONS(2898), - [anon_sym_downto] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_end] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [anon_sym_POUNDendif] = ACTIONS(2900), - [anon_sym_POUNDelse] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - }, - [896] = { - [sym_xml_doc] = STATE(896), - [sym_block_comment] = STATE(896), - [sym_preproc_line] = STATE(896), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_GT_RBRACK] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_to] = ACTIONS(2223), - [anon_sym_downto] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_end] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [anon_sym_POUNDendif] = ACTIONS(2225), - [anon_sym_POUNDelse] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [897] = { - [sym_xml_doc] = STATE(897), - [sym_block_comment] = STATE(897), - [sym_preproc_line] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_module] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_POUNDnowarn] = ACTIONS(2731), - [anon_sym_POUNDr] = ACTIONS(2731), - [anon_sym_POUNDload] = ACTIONS(2731), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_LBRACK_LT] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - }, - [898] = { - [sym_xml_doc] = STATE(898), - [sym_block_comment] = STATE(898), - [sym_preproc_line] = STATE(898), [sym_identifier] = ACTIONS(2904), [anon_sym_EQ] = ACTIONS(2906), [anon_sym_GT_RBRACK] = ACTIONS(2906), @@ -144602,121 +141179,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2904), [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2906), [anon_sym_POUNDendif] = ACTIONS(2906), [anon_sym_POUNDelse] = ACTIONS(2906), [sym__newline] = ACTIONS(2906), }, - [899] = { - [sym_xml_doc] = STATE(899), - [sym_block_comment] = STATE(899), - [sym_preproc_line] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2714), - [anon_sym_namespace] = ACTIONS(2714), - [anon_sym_module] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_POUNDnowarn] = ACTIONS(2716), - [anon_sym_POUNDr] = ACTIONS(2716), - [anon_sym_POUNDload] = ACTIONS(2716), - [anon_sym_open] = ACTIONS(2714), - [anon_sym_LBRACK_LT] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - }, - [900] = { - [sym_xml_doc] = STATE(900), - [sym_block_comment] = STATE(900), - [sym_preproc_line] = STATE(900), + [893] = { + [sym_xml_doc] = STATE(893), + [sym_block_comment] = STATE(893), + [sym_preproc_line] = STATE(893), [sym_identifier] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_GT_RBRACK] = ACTIONS(2910), + [anon_sym_POUNDnowarn] = ACTIONS(2910), + [anon_sym_POUNDr] = ACTIONS(2910), + [anon_sym_POUNDload] = ACTIONS(2910), + [anon_sym_open] = ACTIONS(2908), + [anon_sym_LBRACK_LT] = ACTIONS(2910), [anon_sym_COLON] = ACTIONS(2908), [anon_sym_return] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), [anon_sym_do] = ACTIONS(2908), [anon_sym_let] = ACTIONS(2908), [anon_sym_let_BANG] = ACTIONS(2910), @@ -144728,10 +141214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2910), [anon_sym_AMP] = ACTIONS(2908), [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_RBRACK] = ACTIONS(2910), [anon_sym_LBRACK_PIPE] = ACTIONS(2910), [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2910), [anon_sym_LBRACE_PIPE] = ACTIONS(2910), [anon_sym_with] = ACTIONS(2908), [anon_sym_new] = ACTIONS(2908), @@ -144749,8 +141233,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(2910), [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), [anon_sym_for] = ACTIONS(2908), - [anon_sym_to] = ACTIONS(2908), - [anon_sym_downto] = ACTIONS(2908), [anon_sym_while] = ACTIONS(2908), [anon_sym_if] = ACTIONS(2908), [anon_sym_fun] = ACTIONS(2908), @@ -144766,7 +141248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(2910), [anon_sym_do_BANG] = ACTIONS(2910), [anon_sym_begin] = ACTIONS(2908), - [anon_sym_end] = ACTIONS(2908), [anon_sym_LPAREN2] = ACTIONS(2910), [anon_sym_DOT_DOT2] = ACTIONS(2910), [anon_sym_SQUOTE] = ACTIONS(2910), @@ -144796,116 +141277,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), [sym_int] = ACTIONS(2908), [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2910), - [anon_sym_POUNDendif] = ACTIONS(2910), - [anon_sym_POUNDelse] = ACTIONS(2910), [sym__newline] = ACTIONS(2910), + [sym__dedent] = ACTIONS(2910), }, - [901] = { - [sym_type_arguments] = STATE(1199), - [sym_long_identifier] = STATE(1184), - [sym_xml_doc] = STATE(901), - [sym_block_comment] = STATE(901), - [sym_preproc_line] = STATE(901), - [aux_sym__compound_type_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [sym__dedent] = ACTIONS(2361), + [894] = { + [sym_xml_doc] = STATE(894), + [sym_block_comment] = STATE(894), + [sym_preproc_line] = STATE(894), + [sym_identifier] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, - [902] = { - [sym_xml_doc] = STATE(902), - [sym_block_comment] = STATE(902), - [sym_preproc_line] = STATE(902), + [895] = { + [sym_xml_doc] = STATE(895), + [sym_block_comment] = STATE(895), + [sym_preproc_line] = STATE(895), [sym_identifier] = ACTIONS(2912), [anon_sym_EQ] = ACTIONS(2914), [anon_sym_GT_RBRACK] = ACTIONS(2914), @@ -144990,509 +141470,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), [sym_int] = ACTIONS(2912), [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2914), [anon_sym_POUNDendif] = ACTIONS(2914), [anon_sym_POUNDelse] = ACTIONS(2914), [sym__newline] = ACTIONS(2914), }, - [903] = { - [sym_xml_doc] = STATE(903), - [sym_block_comment] = STATE(903), - [sym_preproc_line] = STATE(903), - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_module] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_POUNDnowarn] = ACTIONS(2756), - [anon_sym_POUNDr] = ACTIONS(2756), - [anon_sym_POUNDload] = ACTIONS(2756), - [anon_sym_open] = ACTIONS(2754), - [anon_sym_LBRACK_LT] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), + [896] = { + [sym_xml_doc] = STATE(896), + [sym_block_comment] = STATE(896), + [sym_preproc_line] = STATE(896), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_GT_RBRACK] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2918), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_to] = ACTIONS(2916), + [anon_sym_downto] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_end] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_DOT_DOT2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [anon_sym_POUNDendif] = ACTIONS(2918), + [anon_sym_POUNDelse] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), }, - [904] = { - [sym_xml_doc] = STATE(904), - [sym_block_comment] = STATE(904), - [sym_preproc_line] = STATE(904), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_GT_RBRACK] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_to] = ACTIONS(2918), - [anon_sym_downto] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_end] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_DOT_DOT2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [anon_sym_POUNDendif] = ACTIONS(2920), - [anon_sym_POUNDelse] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), + [897] = { + [sym_xml_doc] = STATE(897), + [sym_block_comment] = STATE(897), + [sym_preproc_line] = STATE(897), + [sym_identifier] = ACTIONS(2920), + [anon_sym_module] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_POUNDnowarn] = ACTIONS(2922), + [anon_sym_POUNDr] = ACTIONS(2922), + [anon_sym_POUNDload] = ACTIONS(2922), + [anon_sym_open] = ACTIONS(2920), + [anon_sym_LBRACK_LT] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_DOT_DOT2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__dedent] = ACTIONS(2922), }, - [905] = { - [sym_xml_doc] = STATE(905), - [sym_block_comment] = STATE(905), - [sym_preproc_line] = STATE(905), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [898] = { + [sym_xml_doc] = STATE(898), + [sym_block_comment] = STATE(898), + [sym_preproc_line] = STATE(898), + [aux_sym_long_identifier_repeat1] = STATE(1046), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_POUNDnowarn] = ACTIONS(2514), + [anon_sym_POUNDr] = ACTIONS(2514), + [anon_sym_POUNDload] = ACTIONS(2514), + [anon_sym_open] = ACTIONS(2511), + [anon_sym_LBRACK_LT] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, - [906] = { - [sym_xml_doc] = STATE(906), - [sym_block_comment] = STATE(906), - [sym_preproc_line] = STATE(906), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_GT_RBRACK] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_RBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_to] = ACTIONS(2922), - [anon_sym_downto] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_end] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_DOT_DOT2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [anon_sym_POUNDendif] = ACTIONS(2924), - [anon_sym_POUNDelse] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), + [899] = { + [sym_xml_doc] = STATE(899), + [sym_block_comment] = STATE(899), + [sym_preproc_line] = STATE(899), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_POUNDnowarn] = ACTIONS(2809), + [anon_sym_POUNDr] = ACTIONS(2809), + [anon_sym_POUNDload] = ACTIONS(2809), + [anon_sym_open] = ACTIONS(2807), + [anon_sym_LBRACK_LT] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), }, - [907] = { - [sym_xml_doc] = STATE(907), - [sym_block_comment] = STATE(907), - [sym_preproc_line] = STATE(907), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_GT_RBRACK] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_RBRACK] = ACTIONS(2928), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_to] = ACTIONS(2926), - [anon_sym_downto] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_end] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_DOT_DOT2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [anon_sym_POUNDendif] = ACTIONS(2928), - [anon_sym_POUNDelse] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - }, - [908] = { - [sym_xml_doc] = STATE(908), - [sym_block_comment] = STATE(908), - [sym_preproc_line] = STATE(908), + [900] = { + [sym_xml_doc] = STATE(900), + [sym_block_comment] = STATE(900), + [sym_preproc_line] = STATE(900), [sym_identifier] = ACTIONS(2930), + [anon_sym_module] = ACTIONS(2930), [anon_sym_EQ] = ACTIONS(2932), - [anon_sym_GT_RBRACK] = ACTIONS(2932), + [anon_sym_POUNDnowarn] = ACTIONS(2932), + [anon_sym_POUNDr] = ACTIONS(2932), + [anon_sym_POUNDload] = ACTIONS(2932), + [anon_sym_open] = ACTIONS(2930), + [anon_sym_LBRACK_LT] = ACTIONS(2932), [anon_sym_COLON] = ACTIONS(2930), [anon_sym_return] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), [anon_sym_do] = ACTIONS(2930), [anon_sym_let] = ACTIONS(2930), [anon_sym_let_BANG] = ACTIONS(2932), @@ -145504,10 +141893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2932), [anon_sym_AMP] = ACTIONS(2930), [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_RBRACK] = ACTIONS(2932), [anon_sym_LBRACK_PIPE] = ACTIONS(2932), [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2932), [anon_sym_LBRACE_PIPE] = ACTIONS(2932), [anon_sym_with] = ACTIONS(2930), [anon_sym_new] = ACTIONS(2930), @@ -145525,8 +141912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_GT] = ACTIONS(2932), [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), [anon_sym_for] = ACTIONS(2930), - [anon_sym_to] = ACTIONS(2930), - [anon_sym_downto] = ACTIONS(2930), [anon_sym_while] = ACTIONS(2930), [anon_sym_if] = ACTIONS(2930), [anon_sym_fun] = ACTIONS(2930), @@ -145542,7 +141927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(2932), [anon_sym_do_BANG] = ACTIONS(2932), [anon_sym_begin] = ACTIONS(2930), - [anon_sym_end] = ACTIONS(2930), [anon_sym_LPAREN2] = ACTIONS(2932), [anon_sym_DOT_DOT2] = ACTIONS(2932), [anon_sym_SQUOTE] = ACTIONS(2932), @@ -145572,19 +141956,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), - [anon_sym_POUNDendif] = ACTIONS(2932), - [anon_sym_POUNDelse] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), + [sym__dedent] = ACTIONS(2932), }, - [909] = { - [sym_xml_doc] = STATE(909), - [sym_block_comment] = STATE(909), - [sym_preproc_line] = STATE(909), + [901] = { + [sym_xml_doc] = STATE(901), + [sym_block_comment] = STATE(901), + [sym_preproc_line] = STATE(901), [sym_identifier] = ACTIONS(2934), [anon_sym_EQ] = ACTIONS(2936), [anon_sym_GT_RBRACK] = ACTIONS(2936), @@ -145669,1539 +142052,1928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), [sym_int] = ACTIONS(2934), [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2936), [anon_sym_POUNDendif] = ACTIONS(2936), [anon_sym_POUNDelse] = ACTIONS(2936), [sym__newline] = ACTIONS(2936), }, + [902] = { + [sym_xml_doc] = STATE(902), + [sym_block_comment] = STATE(902), + [sym_preproc_line] = STATE(902), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_GT_RBRACK] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_RBRACK] = ACTIONS(2940), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_to] = ACTIONS(2938), + [anon_sym_downto] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_end] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_DOT_DOT2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [anon_sym_POUNDendif] = ACTIONS(2940), + [anon_sym_POUNDelse] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + }, + [903] = { + [sym_xml_doc] = STATE(903), + [sym_block_comment] = STATE(903), + [sym_preproc_line] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_module] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_POUNDnowarn] = ACTIONS(2803), + [anon_sym_POUNDr] = ACTIONS(2803), + [anon_sym_POUNDload] = ACTIONS(2803), + [anon_sym_open] = ACTIONS(2801), + [anon_sym_LBRACK_LT] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + }, + [904] = { + [sym_xml_doc] = STATE(904), + [sym_block_comment] = STATE(904), + [sym_preproc_line] = STATE(904), + [sym_identifier] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_POUNDnowarn] = ACTIONS(2946), + [anon_sym_POUNDr] = ACTIONS(2946), + [anon_sym_POUNDload] = ACTIONS(2946), + [anon_sym_open] = ACTIONS(2944), + [anon_sym_LBRACK_LT] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_DOT_DOT2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [sym__dedent] = ACTIONS(2946), + }, + [905] = { + [sym_xml_doc] = STATE(905), + [sym_block_comment] = STATE(905), + [sym_preproc_line] = STATE(905), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_GT_RBRACK] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_RBRACK] = ACTIONS(2950), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_to] = ACTIONS(2948), + [anon_sym_downto] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_end] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_DOT_DOT2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [anon_sym_POUNDendif] = ACTIONS(2950), + [anon_sym_POUNDelse] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + }, + [906] = { + [sym_type_arguments] = STATE(1173), + [sym_long_identifier] = STATE(1197), + [sym_xml_doc] = STATE(906), + [sym_block_comment] = STATE(906), + [sym_preproc_line] = STATE(906), + [aux_sym__compound_type_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2958), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [sym__dedent] = ACTIONS(2409), + [sym__else] = ACTIONS(2409), + [sym__elif] = ACTIONS(2409), + }, + [907] = { + [sym_xml_doc] = STATE(907), + [sym_block_comment] = STATE(907), + [sym_preproc_line] = STATE(907), + [sym_identifier] = ACTIONS(2962), + [anon_sym_module] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_POUNDnowarn] = ACTIONS(2964), + [anon_sym_POUNDr] = ACTIONS(2964), + [anon_sym_POUNDload] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2962), + [anon_sym_LBRACK_LT] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + [sym__dedent] = ACTIONS(2964), + }, + [908] = { + [sym_type_arguments] = STATE(1173), + [sym_long_identifier] = STATE(1197), + [sym_xml_doc] = STATE(908), + [sym_block_comment] = STATE(908), + [sym_preproc_line] = STATE(908), + [aux_sym__compound_type_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2958), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), + [sym__else] = ACTIONS(2321), + [sym__elif] = ACTIONS(2321), + }, + [909] = { + [sym_xml_doc] = STATE(909), + [sym_block_comment] = STATE(909), + [sym_preproc_line] = STATE(909), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_GT_RBRACK] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_RBRACK] = ACTIONS(2968), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_to] = ACTIONS(2966), + [anon_sym_downto] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_end] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_DOT_DOT2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [anon_sym_POUNDendif] = ACTIONS(2968), + [anon_sym_POUNDelse] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + }, [910] = { - [sym_type_arguments] = STATE(1186), - [sym_long_identifier] = STATE(1191), + [sym_type_arguments] = STATE(1173), + [sym_long_identifier] = STATE(1197), [sym_xml_doc] = STATE(910), [sym_block_comment] = STATE(910), [sym_preproc_line] = STATE(910), - [aux_sym__compound_type_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2938), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [sym__dedent] = ACTIONS(2363), - [sym__else] = ACTIONS(2363), - [sym__elif] = ACTIONS(2363), + [aux_sym__compound_type_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2958), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [sym__dedent] = ACTIONS(2375), + [sym__else] = ACTIONS(2375), + [sym__elif] = ACTIONS(2375), }, [911] = { - [sym_type_arguments] = STATE(1186), - [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(911), [sym_block_comment] = STATE(911), [sym_preproc_line] = STATE(911), - [aux_sym__compound_type_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2938), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), - [sym__else] = ACTIONS(2345), - [sym__elif] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_GT_RBRACK] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_RBRACK] = ACTIONS(2972), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_to] = ACTIONS(2970), + [anon_sym_downto] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_end] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_DOT_DOT2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [anon_sym_POUNDendif] = ACTIONS(2972), + [anon_sym_POUNDelse] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), }, [912] = { - [sym_type_arguments] = STATE(1186), - [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(912), [sym_block_comment] = STATE(912), [sym_preproc_line] = STATE(912), - [aux_sym__compound_type_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2938), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [sym__dedent] = ACTIONS(2305), - [sym__else] = ACTIONS(2305), - [sym__elif] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_POUNDnowarn] = ACTIONS(2754), + [anon_sym_POUNDr] = ACTIONS(2754), + [anon_sym_POUNDload] = ACTIONS(2754), + [anon_sym_open] = ACTIONS(2752), + [anon_sym_LBRACK_LT] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__dedent] = ACTIONS(2754), }, [913] = { [sym_xml_doc] = STATE(913), [sym_block_comment] = STATE(913), [sym_preproc_line] = STATE(913), - [aux_sym_sequential_expression_repeat1] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_namespace] = ACTIONS(2950), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_POUNDnowarn] = ACTIONS(2948), - [anon_sym_POUNDr] = ACTIONS(2948), - [anon_sym_POUNDload] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2950), - [anon_sym_LBRACK_LT] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_GT_RBRACK] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_RBRACK] = ACTIONS(2894), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_to] = ACTIONS(2892), + [anon_sym_downto] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_end] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_DOT_DOT2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [anon_sym_POUNDendif] = ACTIONS(2894), + [anon_sym_POUNDelse] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), }, [914] = { - [sym_type_arguments] = STATE(1199), - [sym_long_identifier] = STATE(1184), [sym_xml_doc] = STATE(914), [sym_block_comment] = STATE(914), [sym_preproc_line] = STATE(914), - [aux_sym__compound_type_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - [sym__dedent] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_module] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_POUNDnowarn] = ACTIONS(2835), + [anon_sym_POUNDr] = ACTIONS(2835), + [anon_sym_POUNDload] = ACTIONS(2835), + [anon_sym_open] = ACTIONS(2833), + [anon_sym_LBRACK_LT] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), }, [915] = { + [sym_type_arguments] = STATE(1173), + [sym_long_identifier] = STATE(1197), [sym_xml_doc] = STATE(915), [sym_block_comment] = STATE(915), [sym_preproc_line] = STATE(915), - [sym_identifier] = ACTIONS(2952), - [anon_sym_module] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_POUNDnowarn] = ACTIONS(2954), - [anon_sym_POUNDr] = ACTIONS(2954), - [anon_sym_POUNDload] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2952), - [anon_sym_LBRACK_LT] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2952), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_DOT_DOT2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - [sym__dedent] = ACTIONS(2954), + [aux_sym__compound_type_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2958), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + [sym__dedent] = ACTIONS(2407), + [sym__else] = ACTIONS(2407), + [sym__elif] = ACTIONS(2407), }, [916] = { [sym_xml_doc] = STATE(916), [sym_block_comment] = STATE(916), [sym_preproc_line] = STATE(916), - [sym_identifier] = ACTIONS(2956), - [anon_sym_module] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_POUNDnowarn] = ACTIONS(2958), - [anon_sym_POUNDr] = ACTIONS(2958), - [anon_sym_POUNDload] = ACTIONS(2958), - [anon_sym_open] = ACTIONS(2956), - [anon_sym_LBRACK_LT] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_type] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_DOT_DOT2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__dedent] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_POUNDnowarn] = ACTIONS(2976), + [anon_sym_POUNDr] = ACTIONS(2976), + [anon_sym_POUNDload] = ACTIONS(2976), + [anon_sym_open] = ACTIONS(2974), + [anon_sym_LBRACK_LT] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_DOT_DOT2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + [sym__dedent] = ACTIONS(2976), }, [917] = { [sym_xml_doc] = STATE(917), [sym_block_comment] = STATE(917), [sym_preproc_line] = STATE(917), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_GT_RBRACK] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_RBRACK] = ACTIONS(2962), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_to] = ACTIONS(2960), - [anon_sym_downto] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_end] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_DOT_DOT2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [anon_sym_POUNDendif] = ACTIONS(2962), - [anon_sym_POUNDelse] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_POUNDnowarn] = ACTIONS(2980), + [anon_sym_POUNDr] = ACTIONS(2980), + [anon_sym_POUNDload] = ACTIONS(2980), + [anon_sym_open] = ACTIONS(2978), + [anon_sym_LBRACK_LT] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_DOT_DOT2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + [sym__dedent] = ACTIONS(2980), }, [918] = { [sym_xml_doc] = STATE(918), [sym_block_comment] = STATE(918), [sym_preproc_line] = STATE(918), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_GT_RBRACK] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_RBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2964), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_to] = ACTIONS(2964), - [anon_sym_downto] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_end] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_DOT_DOT2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [anon_sym_POUNDendif] = ACTIONS(2966), - [anon_sym_POUNDelse] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_GT_RBRACK] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_RBRACK] = ACTIONS(2910), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_to] = ACTIONS(2908), + [anon_sym_downto] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_end] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_DOT_DOT2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2910), + [anon_sym_POUNDendif] = ACTIONS(2910), + [anon_sym_POUNDelse] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), }, [919] = { [sym_xml_doc] = STATE(919), [sym_block_comment] = STATE(919), [sym_preproc_line] = STATE(919), - [sym_identifier] = ACTIONS(2818), - [anon_sym_module] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_POUNDnowarn] = ACTIONS(2820), - [anon_sym_POUNDr] = ACTIONS(2820), - [anon_sym_POUNDload] = ACTIONS(2820), - [anon_sym_open] = ACTIONS(2818), - [anon_sym_LBRACK_LT] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_DOT_DOT2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - [sym__dedent] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2982), + [anon_sym_module] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_POUNDnowarn] = ACTIONS(2984), + [anon_sym_POUNDr] = ACTIONS(2984), + [anon_sym_POUNDload] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2982), + [anon_sym_LBRACK_LT] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_DOT_DOT2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + [sym__dedent] = ACTIONS(2984), }, [920] = { [sym_xml_doc] = STATE(920), [sym_block_comment] = STATE(920), [sym_preproc_line] = STATE(920), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_GT_RBRACK] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_RBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_to] = ACTIONS(2968), - [anon_sym_downto] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_end] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_DOT_DOT2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [anon_sym_POUNDendif] = ACTIONS(2970), - [anon_sym_POUNDelse] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_module] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_POUNDnowarn] = ACTIONS(2797), + [anon_sym_POUNDr] = ACTIONS(2797), + [anon_sym_POUNDload] = ACTIONS(2797), + [anon_sym_open] = ACTIONS(2795), + [anon_sym_LBRACK_LT] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_type] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), }, [921] = { [sym_xml_doc] = STATE(921), [sym_block_comment] = STATE(921), [sym_preproc_line] = STATE(921), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_GT_RBRACK] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_RBRACK] = ACTIONS(2974), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_to] = ACTIONS(2972), - [anon_sym_downto] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_end] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_DOT_DOT2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [anon_sym_POUNDendif] = ACTIONS(2974), - [anon_sym_POUNDelse] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - }, - [922] = { - [sym_xml_doc] = STATE(922), - [sym_block_comment] = STATE(922), - [sym_preproc_line] = STATE(922), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_GT_RBRACK] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_RBRACK] = ACTIONS(2978), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2976), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_to] = ACTIONS(2976), - [anon_sym_downto] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_end] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_DOT_DOT2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [anon_sym_POUNDendif] = ACTIONS(2978), - [anon_sym_POUNDelse] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - }, - [923] = { - [sym_xml_doc] = STATE(923), - [sym_block_comment] = STATE(923), - [sym_preproc_line] = STATE(923), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_GT_RBRACK] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2980), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_to] = ACTIONS(2980), - [anon_sym_downto] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_end] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_DOT_DOT2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [anon_sym_POUNDendif] = ACTIONS(2982), - [anon_sym_POUNDelse] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - }, - [924] = { - [sym_xml_doc] = STATE(924), - [sym_block_comment] = STATE(924), - [sym_preproc_line] = STATE(924), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_GT_RBRACK] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_RBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_to] = ACTIONS(2984), - [anon_sym_downto] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_end] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DOT_DOT2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [anon_sym_POUNDendif] = ACTIONS(2986), - [anon_sym_POUNDelse] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - }, - [925] = { - [sym_xml_doc] = STATE(925), - [sym_block_comment] = STATE(925), - [sym_preproc_line] = STATE(925), + [aux_sym_sequential_expression_repeat1] = STATE(921), + [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_POUNDnowarn] = ACTIONS(2990), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_POUNDnowarn] = ACTIONS(2986), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), + [anon_sym_LBRACK_LT] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_type] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2986), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), [sym_unit] = ACTIONS(2988), [aux_sym__identifier_or_op_token1] = ACTIONS(2988), @@ -147212,599 +143984,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token1] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), + }, + [922] = { + [sym_xml_doc] = STATE(922), + [sym_block_comment] = STATE(922), + [sym_preproc_line] = STATE(922), + [sym_identifier] = ACTIONS(2993), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_POUNDnowarn] = ACTIONS(2995), + [anon_sym_POUNDr] = ACTIONS(2995), + [anon_sym_POUNDload] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2993), + [anon_sym_LBRACK_LT] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_DOT_DOT2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + [sym__dedent] = ACTIONS(2995), + }, + [923] = { + [sym_xml_doc] = STATE(923), + [sym_block_comment] = STATE(923), + [sym_preproc_line] = STATE(923), + [sym_identifier] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_POUNDnowarn] = ACTIONS(2999), + [anon_sym_POUNDr] = ACTIONS(2999), + [anon_sym_POUNDload] = ACTIONS(2999), + [anon_sym_open] = ACTIONS(2997), + [anon_sym_LBRACK_LT] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_DOT_DOT2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + [sym__dedent] = ACTIONS(2999), + }, + [924] = { + [sym_xml_doc] = STATE(924), + [sym_block_comment] = STATE(924), + [sym_preproc_line] = STATE(924), + [sym_identifier] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_POUNDnowarn] = ACTIONS(2950), + [anon_sym_POUNDr] = ACTIONS(2950), + [anon_sym_POUNDload] = ACTIONS(2950), + [anon_sym_open] = ACTIONS(2948), + [anon_sym_LBRACK_LT] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_DOT_DOT2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [sym__dedent] = ACTIONS(2950), + }, + [925] = { + [sym_xml_doc] = STATE(925), + [sym_block_comment] = STATE(925), + [sym_preproc_line] = STATE(925), + [sym_identifier] = ACTIONS(3001), + [anon_sym_module] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_POUNDnowarn] = ACTIONS(3003), + [anon_sym_POUNDr] = ACTIONS(3003), + [anon_sym_POUNDload] = ACTIONS(3003), + [anon_sym_open] = ACTIONS(3001), + [anon_sym_LBRACK_LT] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_with] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_DOT_DOT2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), + [sym__dedent] = ACTIONS(3003), }, [926] = { [sym_xml_doc] = STATE(926), [sym_block_comment] = STATE(926), [sym_preproc_line] = STATE(926), - [sym_identifier] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_POUNDnowarn] = ACTIONS(2994), - [anon_sym_POUNDr] = ACTIONS(2994), - [anon_sym_POUNDload] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_LBRACK_LT] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_DOT_DOT2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__dedent] = ACTIONS(2994), + [sym_identifier] = ACTIONS(3005), + [anon_sym_module] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_POUNDnowarn] = ACTIONS(3007), + [anon_sym_POUNDr] = ACTIONS(3007), + [anon_sym_POUNDload] = ACTIONS(3007), + [anon_sym_open] = ACTIONS(3005), + [anon_sym_LBRACK_LT] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_DOT_DOT2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), + [sym__dedent] = ACTIONS(3007), }, [927] = { - [sym_type_arguments] = STATE(1199), - [sym_long_identifier] = STATE(1184), [sym_xml_doc] = STATE(927), [sym_block_comment] = STATE(927), [sym_preproc_line] = STATE(927), - [aux_sym__compound_type_repeat1] = STATE(1134), - [sym_identifier] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [sym__dedent] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_GT_RBRACK] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_RBRACK] = ACTIONS(2890), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_to] = ACTIONS(2888), + [anon_sym_downto] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_end] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_DOT_DOT2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [anon_sym_POUNDendif] = ACTIONS(2890), + [anon_sym_POUNDelse] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), }, [928] = { + [sym_type_arguments] = STATE(1173), + [sym_long_identifier] = STATE(1197), [sym_xml_doc] = STATE(928), [sym_block_comment] = STATE(928), [sym_preproc_line] = STATE(928), - [sym_identifier] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [929] = { - [sym_xml_doc] = STATE(929), - [sym_block_comment] = STATE(929), - [sym_preproc_line] = STATE(929), - [sym_identifier] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [930] = { - [sym_xml_doc] = STATE(930), - [sym_block_comment] = STATE(930), - [sym_preproc_line] = STATE(930), - [aux_sym_long_identifier_repeat1] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - }, - [931] = { - [sym_type_arguments] = STATE(1186), - [sym_long_identifier] = STATE(1191), - [sym_xml_doc] = STATE(931), - [sym_block_comment] = STATE(931), - [sym_preproc_line] = STATE(931), - [aux_sym__compound_type_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2938), + [aux_sym__compound_type_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(2952), [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_COMMA] = ACTIONS(2361), [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2363), [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2363), [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2363), [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), + [anon_sym_LT_AT_AT] = ACTIONS(2363), [anon_sym_AT_AT_GT] = ACTIONS(2361), [anon_sym_COLON_GT] = ACTIONS(2361), [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), + [anon_sym_DOT] = ACTIONS(2363), [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2363), [anon_sym_use_BANG] = ACTIONS(2361), [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), + [anon_sym_begin] = ACTIONS(2363), [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_LT2] = ACTIONS(2958), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2960), [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), [anon_sym_AT_DQUOTE] = ACTIONS(2361), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), [anon_sym_TILDE] = ACTIONS(2361), [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), [anon_sym_BANG_EQ] = ACTIONS(2361), [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2363), [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), + [sym_int] = ACTIONS(2363), [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2361), [sym__newline] = ACTIONS(2361), @@ -147812,3599 +144680,3987 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__else] = ACTIONS(2361), [sym__elif] = ACTIONS(2361), }, + [929] = { + [sym_xml_doc] = STATE(929), + [sym_block_comment] = STATE(929), + [sym_preproc_line] = STATE(929), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_GT_RBRACK] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2886), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_to] = ACTIONS(2884), + [anon_sym_downto] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_end] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_DOT_DOT2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [anon_sym_POUNDendif] = ACTIONS(2886), + [anon_sym_POUNDelse] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + }, + [930] = { + [sym_xml_doc] = STATE(930), + [sym_block_comment] = STATE(930), + [sym_preproc_line] = STATE(930), + [sym_identifier] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_POUNDnowarn] = ACTIONS(2695), + [anon_sym_POUNDr] = ACTIONS(2695), + [anon_sym_POUNDload] = ACTIONS(2695), + [anon_sym_open] = ACTIONS(2693), + [anon_sym_LBRACK_LT] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + }, + [931] = { + [sym_xml_doc] = STATE(931), + [sym_block_comment] = STATE(931), + [sym_preproc_line] = STATE(931), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_GT_RBRACK] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_RBRACK] = ACTIONS(3011), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_to] = ACTIONS(3009), + [anon_sym_downto] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_end] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_DOT_DOT2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [anon_sym_POUNDendif] = ACTIONS(3011), + [anon_sym_POUNDelse] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + }, [932] = { [sym_xml_doc] = STATE(932), [sym_block_comment] = STATE(932), [sym_preproc_line] = STATE(932), - [sym_identifier] = ACTIONS(2998), - [anon_sym_module] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_POUNDnowarn] = ACTIONS(3000), - [anon_sym_POUNDr] = ACTIONS(3000), - [anon_sym_POUNDload] = ACTIONS(3000), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_LBRACK_LT] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_type] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_DOT_DOT2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - [sym__dedent] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_GT_RBRACK] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_to] = ACTIONS(2231), + [anon_sym_downto] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_end] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [anon_sym_POUNDendif] = ACTIONS(2229), + [anon_sym_POUNDelse] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, [933] = { [sym_xml_doc] = STATE(933), [sym_block_comment] = STATE(933), [sym_preproc_line] = STATE(933), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_GT_RBRACK] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_RBRACK] = ACTIONS(3004), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_to] = ACTIONS(3002), - [anon_sym_downto] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_end] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [anon_sym_POUNDendif] = ACTIONS(3004), - [anon_sym_POUNDelse] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_GT_RBRACK] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_RBRACK] = ACTIONS(2882), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_to] = ACTIONS(2880), + [anon_sym_downto] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_end] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_DOT_DOT2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [anon_sym_POUNDendif] = ACTIONS(2882), + [anon_sym_POUNDelse] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, [934] = { + [sym_type_arguments] = STATE(1214), + [sym_long_identifier] = STATE(1210), [sym_xml_doc] = STATE(934), [sym_block_comment] = STATE(934), [sym_preproc_line] = STATE(934), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_GT_RBRACK] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_RBRACK] = ACTIONS(2782), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_to] = ACTIONS(2780), - [anon_sym_downto] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_end] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_DOT_DOT2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [anon_sym_POUNDendif] = ACTIONS(2782), - [anon_sym_POUNDelse] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), + [aux_sym__compound_type_repeat1] = STATE(1151), + [sym_identifier] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LT2] = ACTIONS(3019), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [sym__dedent] = ACTIONS(2375), }, [935] = { [sym_xml_doc] = STATE(935), [sym_block_comment] = STATE(935), [sym_preproc_line] = STATE(935), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_GT_RBRACK] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_RBRACK] = ACTIONS(3008), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_to] = ACTIONS(3006), - [anon_sym_downto] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_end] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_DOT_DOT2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [anon_sym_POUNDendif] = ACTIONS(3008), - [anon_sym_POUNDelse] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_GT_RBRACK] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_to] = ACTIONS(3023), + [anon_sym_downto] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_end] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_DOT_DOT2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [anon_sym_POUNDendif] = ACTIONS(3025), + [anon_sym_POUNDelse] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), }, [936] = { [sym_xml_doc] = STATE(936), [sym_block_comment] = STATE(936), [sym_preproc_line] = STATE(936), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_GT_RBRACK] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_RBRACK] = ACTIONS(3012), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_to] = ACTIONS(3010), - [anon_sym_downto] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_end] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_DOT_DOT2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [anon_sym_POUNDendif] = ACTIONS(3012), - [anon_sym_POUNDelse] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_GT_RBRACK] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_RBRACK] = ACTIONS(3029), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_to] = ACTIONS(3027), + [anon_sym_downto] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_end] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_DOT_DOT2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [anon_sym_POUNDendif] = ACTIONS(3029), + [anon_sym_POUNDelse] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), }, [937] = { [sym_xml_doc] = STATE(937), [sym_block_comment] = STATE(937), [sym_preproc_line] = STATE(937), - [sym_identifier] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_POUNDnowarn] = ACTIONS(2225), - [anon_sym_POUNDr] = ACTIONS(2225), - [anon_sym_POUNDload] = ACTIONS(2225), - [anon_sym_open] = ACTIONS(2223), - [anon_sym_LBRACK_LT] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, [938] = { [sym_xml_doc] = STATE(938), [sym_block_comment] = STATE(938), [sym_preproc_line] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_POUNDnowarn] = ACTIONS(2703), - [anon_sym_POUNDr] = ACTIONS(2703), - [anon_sym_POUNDload] = ACTIONS(2703), - [anon_sym_open] = ACTIONS(2701), - [anon_sym_LBRACK_LT] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, [939] = { [sym_xml_doc] = STATE(939), [sym_block_comment] = STATE(939), [sym_preproc_line] = STATE(939), - [sym_identifier] = ACTIONS(3014), - [anon_sym_module] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_POUNDnowarn] = ACTIONS(3016), - [anon_sym_POUNDr] = ACTIONS(3016), - [anon_sym_POUNDload] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3014), - [anon_sym_LBRACK_LT] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_DOT_DOT2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__dedent] = ACTIONS(3016), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_POUNDnowarn] = ACTIONS(2710), + [anon_sym_POUNDr] = ACTIONS(2710), + [anon_sym_POUNDload] = ACTIONS(2710), + [anon_sym_open] = ACTIONS(2708), + [anon_sym_LBRACK_LT] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), }, [940] = { [sym_xml_doc] = STATE(940), [sym_block_comment] = STATE(940), [sym_preproc_line] = STATE(940), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_GT_RBRACK] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_to] = ACTIONS(3018), - [anon_sym_downto] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_end] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_DOT_DOT2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [anon_sym_POUNDendif] = ACTIONS(3020), - [anon_sym_POUNDelse] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_GT_RBRACK] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_RBRACK] = ACTIONS(3033), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_to] = ACTIONS(3031), + [anon_sym_downto] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_end] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_DOT_DOT2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [anon_sym_POUNDendif] = ACTIONS(3033), + [anon_sym_POUNDelse] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), }, [941] = { [sym_xml_doc] = STATE(941), [sym_block_comment] = STATE(941), [sym_preproc_line] = STATE(941), - [sym_identifier] = ACTIONS(3022), - [anon_sym_module] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_POUNDnowarn] = ACTIONS(3024), - [anon_sym_POUNDr] = ACTIONS(3024), - [anon_sym_POUNDload] = ACTIONS(3024), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_LBRACK_LT] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_type] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__dedent] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3035), + [anon_sym_module] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_POUNDnowarn] = ACTIONS(3037), + [anon_sym_POUNDr] = ACTIONS(3037), + [anon_sym_POUNDload] = ACTIONS(3037), + [anon_sym_open] = ACTIONS(3035), + [anon_sym_LBRACK_LT] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + [sym__dedent] = ACTIONS(3037), }, [942] = { [sym_xml_doc] = STATE(942), [sym_block_comment] = STATE(942), [sym_preproc_line] = STATE(942), - [sym_identifier] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_POUNDnowarn] = ACTIONS(3028), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_GT_RBRACK] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_to] = ACTIONS(2993), + [anon_sym_downto] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_end] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_DOT_DOT2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [anon_sym_POUNDendif] = ACTIONS(2995), + [anon_sym_POUNDelse] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), }, [943] = { [sym_xml_doc] = STATE(943), [sym_block_comment] = STATE(943), [sym_preproc_line] = STATE(943), - [sym_identifier] = ACTIONS(3030), - [anon_sym_module] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_POUNDnowarn] = ACTIONS(2707), - [anon_sym_POUNDr] = ACTIONS(2707), - [anon_sym_POUNDload] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(3030), - [anon_sym_LBRACK_LT] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_type] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_with] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_DOT_DOT2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - [sym__dedent] = ACTIONS(2707), + [sym_identifier] = ACTIONS(3039), + [anon_sym_module] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_POUNDnowarn] = ACTIONS(3041), + [anon_sym_POUNDr] = ACTIONS(3041), + [anon_sym_POUNDload] = ACTIONS(3041), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_LBRACK_LT] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_type] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_DOT_DOT2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), + [sym__dedent] = ACTIONS(3041), }, [944] = { [sym_xml_doc] = STATE(944), [sym_block_comment] = STATE(944), [sym_preproc_line] = STATE(944), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_GT_RBRACK] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_RBRACK] = ACTIONS(3034), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3032), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_to] = ACTIONS(3032), - [anon_sym_downto] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_end] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_DOT_DOT2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [anon_sym_POUNDendif] = ACTIONS(3034), - [anon_sym_POUNDelse] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_GT_RBRACK] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_RBRACK] = ACTIONS(2878), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_to] = ACTIONS(2876), + [anon_sym_downto] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_end] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_DOT_DOT2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [anon_sym_POUNDendif] = ACTIONS(2878), + [anon_sym_POUNDelse] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), }, [945] = { [sym_xml_doc] = STATE(945), [sym_block_comment] = STATE(945), [sym_preproc_line] = STATE(945), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_GT_RBRACK] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_RBRACK] = ACTIONS(3038), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3036), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_to] = ACTIONS(3036), - [anon_sym_downto] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_end] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_DOT_DOT2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [anon_sym_POUNDendif] = ACTIONS(3038), - [anon_sym_POUNDelse] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_GT_RBRACK] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2874), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_to] = ACTIONS(2872), + [anon_sym_downto] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_end] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_DOT_DOT2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [anon_sym_POUNDendif] = ACTIONS(2874), + [anon_sym_POUNDelse] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), }, [946] = { [sym_xml_doc] = STATE(946), [sym_block_comment] = STATE(946), [sym_preproc_line] = STATE(946), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_GT_RBRACK] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_to] = ACTIONS(3040), - [anon_sym_downto] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_end] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_DOT_DOT2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [anon_sym_POUNDendif] = ACTIONS(3042), - [anon_sym_POUNDelse] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_GT_RBRACK] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_RBRACK] = ACTIONS(3045), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_to] = ACTIONS(3043), + [anon_sym_downto] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_end] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_DOT_DOT2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [anon_sym_POUNDendif] = ACTIONS(3045), + [anon_sym_POUNDelse] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), }, [947] = { [sym_xml_doc] = STATE(947), [sym_block_comment] = STATE(947), [sym_preproc_line] = STATE(947), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_GT_RBRACK] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_to] = ACTIONS(3044), - [anon_sym_downto] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_end] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_DOT_DOT2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [anon_sym_POUNDendif] = ACTIONS(3046), - [anon_sym_POUNDelse] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [aux_sym_sequential_expression_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_GT_RBRACK] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_to] = ACTIONS(2988), + [anon_sym_downto] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_end] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [anon_sym_POUNDendif] = ACTIONS(2986), + [anon_sym_POUNDelse] = ACTIONS(2986), + [sym__newline] = ACTIONS(3047), }, [948] = { [sym_xml_doc] = STATE(948), [sym_block_comment] = STATE(948), [sym_preproc_line] = STATE(948), - [sym_identifier] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_POUNDnowarn] = ACTIONS(2896), - [anon_sym_POUNDr] = ACTIONS(2896), - [anon_sym_POUNDload] = ACTIONS(2896), - [anon_sym_open] = ACTIONS(2894), - [anon_sym_LBRACK_LT] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_DOT_DOT2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - [sym__dedent] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_GT_RBRACK] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_RBRACK] = ACTIONS(2984), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_to] = ACTIONS(2982), + [anon_sym_downto] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_end] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_DOT_DOT2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [anon_sym_POUNDendif] = ACTIONS(2984), + [anon_sym_POUNDelse] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), }, [949] = { [sym_xml_doc] = STATE(949), [sym_block_comment] = STATE(949), [sym_preproc_line] = STATE(949), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_GT_RBRACK] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_to] = ACTIONS(2998), - [anon_sym_downto] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_end] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_DOT_DOT2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [anon_sym_POUNDendif] = ACTIONS(3000), - [anon_sym_POUNDelse] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_GT_RBRACK] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_RBRACK] = ACTIONS(2980), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2980), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_to] = ACTIONS(2978), + [anon_sym_downto] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_end] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_DOT_DOT2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [anon_sym_POUNDendif] = ACTIONS(2980), + [anon_sym_POUNDelse] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), }, [950] = { [sym_xml_doc] = STATE(950), [sym_block_comment] = STATE(950), [sym_preproc_line] = STATE(950), - [sym_identifier] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_POUNDnowarn] = ACTIONS(2892), - [anon_sym_POUNDr] = ACTIONS(2892), - [anon_sym_POUNDload] = ACTIONS(2892), - [anon_sym_open] = ACTIONS(2890), - [anon_sym_LBRACK_LT] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_DOT_DOT2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - [sym__dedent] = ACTIONS(2892), - }, - [951] = { - [sym_xml_doc] = STATE(951), - [sym_block_comment] = STATE(951), - [sym_preproc_line] = STATE(951), - [sym_identifier] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), + [aux_sym_sequential_expression_repeat1] = STATE(921), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), [anon_sym_EQ] = ACTIONS(3050), [anon_sym_POUNDnowarn] = ACTIONS(3050), [anon_sym_POUNDr] = ACTIONS(3050), [anon_sym_POUNDload] = ACTIONS(3050), - [anon_sym_open] = ACTIONS(3048), + [anon_sym_open] = ACTIONS(3052), [anon_sym_LBRACK_LT] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), [anon_sym_COMMA] = ACTIONS(3050), [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3052), [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3052), [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield] = ACTIONS(3052), [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3052), [anon_sym_AT_AT_GT] = ACTIONS(3050), [anon_sym_COLON_GT] = ACTIONS(3050), [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3052), [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3052), [anon_sym_use_BANG] = ACTIONS(3050), [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), + [anon_sym_begin] = ACTIONS(3052), [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_DOT_DOT2] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), [anon_sym_AT_DQUOTE] = ACTIONS(3050), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_TILDE] = ACTIONS(3050), [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), [anon_sym_BANG_EQ] = ACTIONS(3050), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), + [sym_int] = ACTIONS(3052), [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3050), [sym__newline] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), + }, + [951] = { + [sym_xml_doc] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_preproc_line] = STATE(951), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_GT_RBRACK] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_RBRACK] = ACTIONS(2976), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_to] = ACTIONS(2974), + [anon_sym_downto] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_end] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_DOT_DOT2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [anon_sym_POUNDendif] = ACTIONS(2976), + [anon_sym_POUNDelse] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), }, [952] = { [sym_xml_doc] = STATE(952), [sym_block_comment] = STATE(952), [sym_preproc_line] = STATE(952), - [sym_identifier] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_POUNDnowarn] = ACTIONS(3054), - [anon_sym_POUNDr] = ACTIONS(3054), - [anon_sym_POUNDload] = ACTIONS(3054), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_LBRACK_LT] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_DOT_DOT2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__dedent] = ACTIONS(3054), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_GT_RBRACK] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_RBRACK] = ACTIONS(2862), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_to] = ACTIONS(2860), + [anon_sym_downto] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_end] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_DOT_DOT2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [anon_sym_POUNDendif] = ACTIONS(2862), + [anon_sym_POUNDelse] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), }, [953] = { [sym_xml_doc] = STATE(953), [sym_block_comment] = STATE(953), [sym_preproc_line] = STATE(953), - [sym_identifier] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_POUNDnowarn] = ACTIONS(3058), - [anon_sym_POUNDr] = ACTIONS(3058), - [anon_sym_POUNDload] = ACTIONS(3058), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_LBRACK_LT] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_DOT_DOT2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__dedent] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_POUNDnowarn] = ACTIONS(3056), + [anon_sym_POUNDr] = ACTIONS(3056), + [anon_sym_POUNDload] = ACTIONS(3056), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_LBRACK_LT] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_DOT_DOT2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + [sym__dedent] = ACTIONS(3056), }, [954] = { [sym_xml_doc] = STATE(954), [sym_block_comment] = STATE(954), [sym_preproc_line] = STATE(954), - [sym_identifier] = ACTIONS(3060), - [anon_sym_module] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_POUNDnowarn] = ACTIONS(3062), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_GT_RBRACK] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_to] = ACTIONS(3058), + [anon_sym_downto] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_end] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [anon_sym_POUNDendif] = ACTIONS(3060), + [anon_sym_POUNDelse] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), }, [955] = { - [sym_type_arguments] = STATE(1186), - [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(955), [sym_block_comment] = STATE(955), [sym_preproc_line] = STATE(955), - [aux_sym__compound_type_repeat1] = STATE(1136), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2944), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - [sym__dedent] = ACTIONS(2357), - [sym__else] = ACTIONS(2357), - [sym__elif] = ACTIONS(2357), + [sym_identifier] = ACTIONS(3062), + [anon_sym_module] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_POUNDnowarn] = ACTIONS(3064), + [anon_sym_POUNDr] = ACTIONS(3064), + [anon_sym_POUNDload] = ACTIONS(3064), + [anon_sym_open] = ACTIONS(3062), + [anon_sym_LBRACK_LT] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), }, [956] = { [sym_xml_doc] = STATE(956), [sym_block_comment] = STATE(956), [sym_preproc_line] = STATE(956), - [sym_identifier] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_POUNDnowarn] = ACTIONS(2884), - [anon_sym_POUNDr] = ACTIONS(2884), - [anon_sym_POUNDload] = ACTIONS(2884), - [anon_sym_open] = ACTIONS(2882), - [anon_sym_LBRACK_LT] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_DOT_DOT2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), + [aux_sym_long_identifier_repeat1] = STATE(956), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [957] = { + [sym_type_arguments] = STATE(1214), + [sym_long_identifier] = STATE(1210), [sym_xml_doc] = STATE(957), [sym_block_comment] = STATE(957), [sym_preproc_line] = STATE(957), - [sym_identifier] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_POUNDnowarn] = ACTIONS(2880), - [anon_sym_POUNDr] = ACTIONS(2880), - [anon_sym_POUNDload] = ACTIONS(2880), - [anon_sym_open] = ACTIONS(2878), - [anon_sym_LBRACK_LT] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_DOT_DOT2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - [sym__dedent] = ACTIONS(2880), + [aux_sym__compound_type_repeat1] = STATE(1151), + [sym_identifier] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LT2] = ACTIONS(3019), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), }, [958] = { [sym_xml_doc] = STATE(958), [sym_block_comment] = STATE(958), [sym_preproc_line] = STATE(958), - [sym_identifier] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_POUNDnowarn] = ACTIONS(2876), - [anon_sym_POUNDr] = ACTIONS(2876), - [anon_sym_POUNDload] = ACTIONS(2876), - [anon_sym_open] = ACTIONS(2874), - [anon_sym_LBRACK_LT] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_DOT_DOT2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - [sym__dedent] = ACTIONS(2876), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_GT_RBRACK] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_to] = ACTIONS(3069), + [anon_sym_downto] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_end] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_DOT_DOT2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [anon_sym_POUNDendif] = ACTIONS(3071), + [anon_sym_POUNDelse] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), }, [959] = { [sym_xml_doc] = STATE(959), [sym_block_comment] = STATE(959), [sym_preproc_line] = STATE(959), - [sym_identifier] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_POUNDnowarn] = ACTIONS(2816), - [anon_sym_POUNDr] = ACTIONS(2816), - [anon_sym_POUNDload] = ACTIONS(2816), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_DOT_DOT2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), - [sym__dedent] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_POUNDnowarn] = ACTIONS(2968), + [anon_sym_POUNDr] = ACTIONS(2968), + [anon_sym_POUNDload] = ACTIONS(2968), + [anon_sym_open] = ACTIONS(2966), + [anon_sym_LBRACK_LT] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_DOT_DOT2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + [sym__dedent] = ACTIONS(2968), }, [960] = { [sym_xml_doc] = STATE(960), [sym_block_comment] = STATE(960), [sym_preproc_line] = STATE(960), - [sym_identifier] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_POUNDnowarn] = ACTIONS(3066), - [anon_sym_POUNDr] = ACTIONS(3066), - [anon_sym_POUNDload] = ACTIONS(3066), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_DOT_DOT2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - [sym__dedent] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_GT_RBRACK] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_to] = ACTIONS(3073), + [anon_sym_downto] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_end] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_DOT_DOT2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [anon_sym_POUNDendif] = ACTIONS(3075), + [anon_sym_POUNDelse] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), }, [961] = { [sym_xml_doc] = STATE(961), [sym_block_comment] = STATE(961), [sym_preproc_line] = STATE(961), - [sym_identifier] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_POUNDnowarn] = ACTIONS(3070), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3068), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_POUNDnowarn] = ACTIONS(3025), + [anon_sym_POUNDr] = ACTIONS(3025), + [anon_sym_POUNDload] = ACTIONS(3025), + [anon_sym_open] = ACTIONS(3023), + [anon_sym_LBRACK_LT] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_DOT_DOT2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + [sym__dedent] = ACTIONS(3025), }, [962] = { + [sym_type_arguments] = STATE(1214), + [sym_long_identifier] = STATE(1210), [sym_xml_doc] = STATE(962), [sym_block_comment] = STATE(962), [sym_preproc_line] = STATE(962), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_GT_RBRACK] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_RBRACK] = ACTIONS(3070), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_to] = ACTIONS(3068), - [anon_sym_downto] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_end] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_DOT_DOT2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [anon_sym_POUNDendif] = ACTIONS(3070), - [anon_sym_POUNDelse] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [aux_sym__compound_type_repeat1] = STATE(1151), + [sym_identifier] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LT2] = ACTIONS(3019), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [sym__dedent] = ACTIONS(2361), }, [963] = { + [sym_type_arguments] = STATE(1214), + [sym_long_identifier] = STATE(1210), [sym_xml_doc] = STATE(963), [sym_block_comment] = STATE(963), [sym_preproc_line] = STATE(963), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_GT_RBRACK] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_RBRACK] = ACTIONS(2954), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2952), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_to] = ACTIONS(2952), - [anon_sym_downto] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_end] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_DOT_DOT2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [anon_sym_POUNDendif] = ACTIONS(2954), - [anon_sym_POUNDelse] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), + [aux_sym__compound_type_repeat1] = STATE(1151), + [sym_identifier] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LT2] = ACTIONS(3019), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [sym__dedent] = ACTIONS(2409), }, [964] = { [sym_xml_doc] = STATE(964), [sym_block_comment] = STATE(964), [sym_preproc_line] = STATE(964), - [sym_identifier] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_POUNDnowarn] = ACTIONS(2888), - [anon_sym_POUNDr] = ACTIONS(2888), - [anon_sym_POUNDload] = ACTIONS(2888), - [anon_sym_open] = ACTIONS(2886), - [anon_sym_LBRACK_LT] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_DOT_DOT2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - [sym__dedent] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_GT_RBRACK] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_RBRACK] = ACTIONS(2858), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_to] = ACTIONS(2856), + [anon_sym_downto] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_end] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_DOT_DOT2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [anon_sym_POUNDendif] = ACTIONS(2858), + [anon_sym_POUNDelse] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), }, [965] = { [sym_xml_doc] = STATE(965), [sym_block_comment] = STATE(965), [sym_preproc_line] = STATE(965), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_GT_RBRACK] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_RBRACK] = ACTIONS(3074), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_to] = ACTIONS(3072), - [anon_sym_downto] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_end] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [anon_sym_POUNDendif] = ACTIONS(3074), - [anon_sym_POUNDelse] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_GT_RBRACK] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_to] = ACTIONS(3077), + [anon_sym_downto] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_end] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_DOT_DOT2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [anon_sym_POUNDendif] = ACTIONS(3079), + [anon_sym_POUNDelse] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), }, [966] = { [sym_xml_doc] = STATE(966), [sym_block_comment] = STATE(966), [sym_preproc_line] = STATE(966), - [aux_sym_sequential_expression_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_GT_RBRACK] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_RBRACK] = ACTIONS(3078), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_to] = ACTIONS(3076), - [anon_sym_downto] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_end] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [anon_sym_POUNDendif] = ACTIONS(3078), - [anon_sym_POUNDelse] = ACTIONS(3078), - [sym__newline] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_GT_RBRACK] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_RBRACK] = ACTIONS(3083), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_to] = ACTIONS(3081), + [anon_sym_downto] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_end] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_DOT_DOT2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [anon_sym_POUNDendif] = ACTIONS(3083), + [anon_sym_POUNDelse] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), }, [967] = { + [sym_type_arguments] = STATE(1214), + [sym_long_identifier] = STATE(1210), [sym_xml_doc] = STATE(967), [sym_block_comment] = STATE(967), [sym_preproc_line] = STATE(967), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_GT_RBRACK] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3085), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_to] = ACTIONS(3083), - [anon_sym_downto] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_end] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_DOT_DOT2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [anon_sym_POUNDendif] = ACTIONS(3085), - [anon_sym_POUNDelse] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), + [aux_sym__compound_type_repeat1] = STATE(1151), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LT2] = ACTIONS(3019), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + [sym__dedent] = ACTIONS(2407), }, [968] = { [sym_xml_doc] = STATE(968), [sym_block_comment] = STATE(968), [sym_preproc_line] = STATE(968), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_GT_RBRACK] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_to] = ACTIONS(3087), - [anon_sym_downto] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_end] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_DOT_DOT2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [anon_sym_POUNDendif] = ACTIONS(3089), - [anon_sym_POUNDelse] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_POUNDnowarn] = ACTIONS(3087), + [anon_sym_POUNDr] = ACTIONS(3087), + [anon_sym_POUNDload] = ACTIONS(3087), + [anon_sym_open] = ACTIONS(3085), + [anon_sym_LBRACK_LT] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_DOT_DOT2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + [sym__dedent] = ACTIONS(3087), }, [969] = { [sym_xml_doc] = STATE(969), [sym_block_comment] = STATE(969), [sym_preproc_line] = STATE(969), + [sym_identifier] = ACTIONS(2758), + [anon_sym_module] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_POUNDnowarn] = ACTIONS(2760), + [anon_sym_POUNDr] = ACTIONS(2760), + [anon_sym_POUNDload] = ACTIONS(2760), + [anon_sym_open] = ACTIONS(2758), + [anon_sym_LBRACK_LT] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3089), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__dedent] = ACTIONS(2760), + }, + [970] = { + [sym_xml_doc] = STATE(970), + [sym_block_comment] = STATE(970), + [sym_preproc_line] = STATE(970), [sym_identifier] = ACTIONS(3091), [anon_sym_EQ] = ACTIONS(3093), [anon_sym_GT_RBRACK] = ACTIONS(3093), @@ -151489,9080 +148745,8037 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), [sym_int] = ACTIONS(3091), [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3093), [anon_sym_POUNDendif] = ACTIONS(3093), [anon_sym_POUNDelse] = ACTIONS(3093), [sym__newline] = ACTIONS(3093), }, - [970] = { - [sym_xml_doc] = STATE(970), - [sym_block_comment] = STATE(970), - [sym_preproc_line] = STATE(970), - [sym_identifier] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_POUNDnowarn] = ACTIONS(3093), - [anon_sym_POUNDr] = ACTIONS(3093), - [anon_sym_POUNDload] = ACTIONS(3093), - [anon_sym_open] = ACTIONS(3091), - [anon_sym_LBRACK_LT] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_DOT_DOT2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - [sym__dedent] = ACTIONS(3093), - }, [971] = { [sym_xml_doc] = STATE(971), [sym_block_comment] = STATE(971), [sym_preproc_line] = STATE(971), - [sym_identifier] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_POUNDnowarn] = ACTIONS(3089), - [anon_sym_POUNDr] = ACTIONS(3089), - [anon_sym_POUNDload] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3087), - [anon_sym_LBRACK_LT] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_DOT_DOT2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - [sym__dedent] = ACTIONS(3089), + [sym_identifier] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_POUNDnowarn] = ACTIONS(2914), + [anon_sym_POUNDr] = ACTIONS(2914), + [anon_sym_POUNDload] = ACTIONS(2914), + [anon_sym_open] = ACTIONS(2912), + [anon_sym_LBRACK_LT] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_DOT_DOT2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), + [sym__dedent] = ACTIONS(2914), }, [972] = { [sym_xml_doc] = STATE(972), [sym_block_comment] = STATE(972), [sym_preproc_line] = STATE(972), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_GT_RBRACK] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_RBRACK] = ACTIONS(2958), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_to] = ACTIONS(2956), - [anon_sym_downto] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_end] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_DOT_DOT2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [anon_sym_POUNDendif] = ACTIONS(2958), - [anon_sym_POUNDelse] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_GT_RBRACK] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_RBRACK] = ACTIONS(2922), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_to] = ACTIONS(2920), + [anon_sym_downto] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_end] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_DOT_DOT2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [anon_sym_POUNDendif] = ACTIONS(2922), + [anon_sym_POUNDelse] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [973] = { [sym_xml_doc] = STATE(973), [sym_block_comment] = STATE(973), [sym_preproc_line] = STATE(973), - [sym_identifier] = ACTIONS(3083), - [anon_sym_module] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_POUNDnowarn] = ACTIONS(3085), - [anon_sym_POUNDr] = ACTIONS(3085), - [anon_sym_POUNDload] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3083), - [anon_sym_LBRACK_LT] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_type] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_DOT_DOT2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - [sym__dedent] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_POUNDnowarn] = ACTIONS(3097), + [anon_sym_POUNDr] = ACTIONS(3097), + [anon_sym_POUNDload] = ACTIONS(3097), + [anon_sym_open] = ACTIONS(3095), + [anon_sym_LBRACK_LT] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_DOT_DOT2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), + [sym__dedent] = ACTIONS(3097), }, [974] = { [sym_xml_doc] = STATE(974), [sym_block_comment] = STATE(974), [sym_preproc_line] = STATE(974), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3099), + [aux_sym_decimal_token1] = ACTIONS(2311), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, [975] = { [sym_xml_doc] = STATE(975), [sym_block_comment] = STATE(975), [sym_preproc_line] = STATE(975), - [sym_identifier] = ACTIONS(2870), - [anon_sym_module] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_POUNDnowarn] = ACTIONS(2872), - [anon_sym_POUNDr] = ACTIONS(2872), - [anon_sym_POUNDload] = ACTIONS(2872), - [anon_sym_open] = ACTIONS(2870), - [anon_sym_LBRACK_LT] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_DOT_DOT2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), - [sym__dedent] = ACTIONS(2872), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_GT_RBRACK] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_to] = ACTIONS(3101), + [anon_sym_downto] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_end] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_DOT_DOT2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [anon_sym_POUNDendif] = ACTIONS(3103), + [anon_sym_POUNDelse] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), }, [976] = { [sym_xml_doc] = STATE(976), [sym_block_comment] = STATE(976), [sym_preproc_line] = STATE(976), - [sym_identifier] = ACTIONS(2866), - [anon_sym_module] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_POUNDnowarn] = ACTIONS(2868), - [anon_sym_POUNDr] = ACTIONS(2868), - [anon_sym_POUNDload] = ACTIONS(2868), - [anon_sym_open] = ACTIONS(2866), - [anon_sym_LBRACK_LT] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_DOT_DOT2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - [sym__dedent] = ACTIONS(2868), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_GT_RBRACK] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3107), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_to] = ACTIONS(3105), + [anon_sym_downto] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_end] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_DOT_DOT2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [anon_sym_POUNDendif] = ACTIONS(3107), + [anon_sym_POUNDelse] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), }, [977] = { [sym_xml_doc] = STATE(977), [sym_block_comment] = STATE(977), [sym_preproc_line] = STATE(977), - [sym_identifier] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_POUNDnowarn] = ACTIONS(2864), - [anon_sym_POUNDr] = ACTIONS(2864), - [anon_sym_POUNDload] = ACTIONS(2864), - [anon_sym_open] = ACTIONS(2862), - [anon_sym_LBRACK_LT] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_DOT_DOT2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__dedent] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_GT_RBRACK] = ACTIONS(2932), + [anon_sym_COLON] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_let_BANG] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_COLON_QMARK] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_LBRACK_PIPE] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym_LBRACE_PIPE] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2930), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_return_BANG] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2930), + [anon_sym_yield_BANG] = ACTIONS(2932), + [anon_sym_lazy] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_upcast] = ACTIONS(2930), + [anon_sym_downcast] = ACTIONS(2930), + [anon_sym_LT_AT] = ACTIONS(2930), + [anon_sym_AT_GT] = ACTIONS(2932), + [anon_sym_LT_AT_AT] = ACTIONS(2930), + [anon_sym_AT_AT_GT] = ACTIONS(2932), + [anon_sym_COLON_GT] = ACTIONS(2932), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_to] = ACTIONS(2930), + [anon_sym_downto] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_fun] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_match_BANG] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_DOT_LBRACK] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_use_BANG] = ACTIONS(2932), + [anon_sym_do_BANG] = ACTIONS(2932), + [anon_sym_begin] = ACTIONS(2930), + [anon_sym_end] = ACTIONS(2930), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_DOT_DOT2] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_or] = ACTIONS(2930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_AT_DQUOTE] = ACTIONS(2932), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [sym_bool] = ACTIONS(2930), + [sym_unit] = ACTIONS(2930), + [aux_sym__identifier_or_op_token1] = ACTIONS(2930), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_DOT] = ACTIONS(2930), + [anon_sym_DASH_DOT] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [aux_sym_prefix_op_token1] = ACTIONS(2932), + [aux_sym_infix_op_token1] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_COLON_EQ] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), + [sym_int] = ACTIONS(2930), + [sym_xint] = ACTIONS(2932), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2932), + [anon_sym_POUNDendif] = ACTIONS(2932), + [anon_sym_POUNDelse] = ACTIONS(2932), + [sym__newline] = ACTIONS(2932), }, [978] = { [sym_xml_doc] = STATE(978), [sym_block_comment] = STATE(978), [sym_preproc_line] = STATE(978), - [aux_sym_long_identifier_repeat1] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_POUNDnowarn] = ACTIONS(2523), - [anon_sym_POUNDr] = ACTIONS(2523), - [anon_sym_POUNDload] = ACTIONS(2523), - [anon_sym_open] = ACTIONS(2520), - [anon_sym_LBRACK_LT] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_GT_RBRACK] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_RBRACK] = ACTIONS(2964), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_to] = ACTIONS(2962), + [anon_sym_downto] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_end] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_DOT_DOT2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [anon_sym_POUNDendif] = ACTIONS(2964), + [anon_sym_POUNDelse] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), }, [979] = { [sym_xml_doc] = STATE(979), [sym_block_comment] = STATE(979), [sym_preproc_line] = STATE(979), - [sym_identifier] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_POUNDnowarn] = ACTIONS(2860), - [anon_sym_POUNDr] = ACTIONS(2860), - [anon_sym_POUNDload] = ACTIONS(2860), - [anon_sym_open] = ACTIONS(2858), - [anon_sym_LBRACK_LT] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_DOT_DOT2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__dedent] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_POUNDnowarn] = ACTIONS(2906), + [anon_sym_POUNDr] = ACTIONS(2906), + [anon_sym_POUNDload] = ACTIONS(2906), + [anon_sym_open] = ACTIONS(2904), + [anon_sym_LBRACK_LT] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_DOT_DOT2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), + [sym__dedent] = ACTIONS(2906), }, [980] = { [sym_xml_doc] = STATE(980), [sym_block_comment] = STATE(980), [sym_preproc_line] = STATE(980), - [sym_identifier] = ACTIONS(2854), - [anon_sym_module] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_POUNDnowarn] = ACTIONS(2856), - [anon_sym_POUNDr] = ACTIONS(2856), - [anon_sym_POUNDload] = ACTIONS(2856), - [anon_sym_open] = ACTIONS(2854), - [anon_sym_LBRACK_LT] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_DOT_DOT2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__dedent] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2896), + [anon_sym_module] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_POUNDnowarn] = ACTIONS(2898), + [anon_sym_POUNDr] = ACTIONS(2898), + [anon_sym_POUNDload] = ACTIONS(2898), + [anon_sym_open] = ACTIONS(2896), + [anon_sym_LBRACK_LT] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_DOT_DOT2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + [sym__dedent] = ACTIONS(2898), }, [981] = { [sym_xml_doc] = STATE(981), [sym_block_comment] = STATE(981), [sym_preproc_line] = STATE(981), - [sym_identifier] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_POUNDnowarn] = ACTIONS(2852), - [anon_sym_POUNDr] = ACTIONS(2852), - [anon_sym_POUNDload] = ACTIONS(2852), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_DOT_DOT2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - [sym__dedent] = ACTIONS(2852), + [sym_identifier] = ACTIONS(3109), + [anon_sym_module] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_POUNDnowarn] = ACTIONS(3111), + [anon_sym_POUNDr] = ACTIONS(3111), + [anon_sym_POUNDload] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3109), + [anon_sym_LBRACK_LT] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_type] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_DOT_DOT2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + [sym__dedent] = ACTIONS(3111), }, [982] = { [sym_xml_doc] = STATE(982), [sym_block_comment] = STATE(982), [sym_preproc_line] = STATE(982), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_to] = ACTIONS(2988), - [anon_sym_downto] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_end] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_DOT_DOT2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2988), - [aux_sym__identifier_or_op_token1] = ACTIONS(2988), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [anon_sym_POUNDendif] = ACTIONS(2990), - [anon_sym_POUNDelse] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_GT_RBRACK] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_with] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_to] = ACTIONS(3001), + [anon_sym_downto] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_end] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_DOT_DOT2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [anon_sym_POUNDendif] = ACTIONS(3003), + [anon_sym_POUNDelse] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), }, [983] = { [sym_xml_doc] = STATE(983), [sym_block_comment] = STATE(983), [sym_preproc_line] = STATE(983), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_GT_RBRACK] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_RBRACK] = ACTIONS(2994), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_to] = ACTIONS(2992), - [anon_sym_downto] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_end] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_DOT_DOT2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [anon_sym_POUNDendif] = ACTIONS(2994), - [anon_sym_POUNDelse] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_GT_RBRACK] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_to] = ACTIONS(3005), + [anon_sym_downto] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_end] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_DOT_DOT2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [anon_sym_POUNDendif] = ACTIONS(3007), + [anon_sym_POUNDelse] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), }, [984] = { [sym_xml_doc] = STATE(984), [sym_block_comment] = STATE(984), [sym_preproc_line] = STATE(984), - [sym_identifier] = ACTIONS(3032), - [anon_sym_module] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_POUNDnowarn] = ACTIONS(3034), - [anon_sym_POUNDr] = ACTIONS(3034), - [anon_sym_POUNDload] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3032), - [anon_sym_LBRACK_LT] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3032), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_DOT_DOT2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__dedent] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_module] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_POUNDnowarn] = ACTIONS(2776), + [anon_sym_POUNDr] = ACTIONS(2776), + [anon_sym_POUNDload] = ACTIONS(2776), + [anon_sym_open] = ACTIONS(2774), + [anon_sym_LBRACK_LT] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, [985] = { [sym_xml_doc] = STATE(985), [sym_block_comment] = STATE(985), [sym_preproc_line] = STATE(985), - [sym_identifier] = ACTIONS(2846), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_POUNDnowarn] = ACTIONS(2848), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [anon_sym_open] = ACTIONS(2846), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_DOT_DOT2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3113), + [anon_sym_module] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_POUNDnowarn] = ACTIONS(2780), + [anon_sym_POUNDr] = ACTIONS(2780), + [anon_sym_POUNDload] = ACTIONS(2780), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_LBRACK_LT] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_type] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_DOT_DOT2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [sym__dedent] = ACTIONS(2780), }, [986] = { [sym_xml_doc] = STATE(986), [sym_block_comment] = STATE(986), [sym_preproc_line] = STATE(986), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_GT_RBRACK] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2632), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_to] = ACTIONS(2634), - [anon_sym_downto] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [anon_sym_POUNDendif] = ACTIONS(2632), - [anon_sym_POUNDelse] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_GT_RBRACK] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_to] = ACTIONS(2619), + [anon_sym_downto] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_end] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [anon_sym_POUNDendif] = ACTIONS(2617), + [anon_sym_POUNDelse] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [987] = { [sym_xml_doc] = STATE(987), [sym_block_comment] = STATE(987), [sym_preproc_line] = STATE(987), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_GT_RBRACK] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2632), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_to] = ACTIONS(2634), - [anon_sym_downto] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_DOT_DOT2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [anon_sym_POUNDendif] = ACTIONS(2632), - [anon_sym_POUNDelse] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_GT_RBRACK] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_to] = ACTIONS(2619), + [anon_sym_downto] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_end] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_DOT_DOT2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [anon_sym_POUNDendif] = ACTIONS(2617), + [anon_sym_POUNDelse] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [988] = { [sym_xml_doc] = STATE(988), [sym_block_comment] = STATE(988), [sym_preproc_line] = STATE(988), - [sym_identifier] = ACTIONS(2842), - [anon_sym_module] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_POUNDnowarn] = ACTIONS(2844), - [anon_sym_POUNDr] = ACTIONS(2844), - [anon_sym_POUNDload] = ACTIONS(2844), - [anon_sym_open] = ACTIONS(2842), - [anon_sym_LBRACK_LT] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_DOT_DOT2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__dedent] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_POUNDnowarn] = ACTIONS(2936), + [anon_sym_POUNDr] = ACTIONS(2936), + [anon_sym_POUNDload] = ACTIONS(2936), + [anon_sym_open] = ACTIONS(2934), + [anon_sym_LBRACK_LT] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2934), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_DOT_DOT2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), + [sym__dedent] = ACTIONS(2936), }, [989] = { [sym_xml_doc] = STATE(989), [sym_block_comment] = STATE(989), [sym_preproc_line] = STATE(989), - [sym_identifier] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_POUNDnowarn] = ACTIONS(2840), - [anon_sym_POUNDr] = ACTIONS(2840), - [anon_sym_POUNDload] = ACTIONS(2840), - [anon_sym_open] = ACTIONS(2838), - [anon_sym_LBRACK_LT] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_DOT_DOT2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - [sym__dedent] = ACTIONS(2840), + [sym_identifier] = ACTIONS(3115), + [anon_sym_module] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_POUNDnowarn] = ACTIONS(3117), + [anon_sym_POUNDr] = ACTIONS(3117), + [anon_sym_POUNDload] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_LBRACK_LT] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_DOT_DOT2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + [sym__dedent] = ACTIONS(3117), }, [990] = { [sym_xml_doc] = STATE(990), [sym_block_comment] = STATE(990), [sym_preproc_line] = STATE(990), - [sym_identifier] = ACTIONS(2834), - [anon_sym_module] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_POUNDnowarn] = ACTIONS(2836), - [anon_sym_POUNDr] = ACTIONS(2836), - [anon_sym_POUNDload] = ACTIONS(2836), - [anon_sym_open] = ACTIONS(2834), - [anon_sym_LBRACK_LT] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_DOT_DOT2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [sym__dedent] = ACTIONS(2836), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_GT_RBRACK] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_RBRACK] = ACTIONS(3121), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_with] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_to] = ACTIONS(3119), + [anon_sym_downto] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_end] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_DOT_DOT2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [anon_sym_POUNDendif] = ACTIONS(3121), + [anon_sym_POUNDelse] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), }, [991] = { [sym_xml_doc] = STATE(991), [sym_block_comment] = STATE(991), [sym_preproc_line] = STATE(991), - [sym_identifier] = ACTIONS(2830), - [anon_sym_module] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_POUNDnowarn] = ACTIONS(2832), - [anon_sym_POUNDr] = ACTIONS(2832), - [anon_sym_POUNDload] = ACTIONS(2832), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_LBRACK_LT] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_DOT_DOT2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - [sym__dedent] = ACTIONS(2832), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_GT_RBRACK] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_RBRACK] = ACTIONS(3125), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_to] = ACTIONS(3123), + [anon_sym_downto] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_end] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_DOT_DOT2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [anon_sym_POUNDendif] = ACTIONS(3125), + [anon_sym_POUNDelse] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), }, [992] = { [sym_xml_doc] = STATE(992), [sym_block_comment] = STATE(992), [sym_preproc_line] = STATE(992), - [sym_identifier] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_POUNDnowarn] = ACTIONS(2828), - [anon_sym_POUNDr] = ACTIONS(2828), - [anon_sym_POUNDload] = ACTIONS(2828), - [anon_sym_open] = ACTIONS(2826), - [anon_sym_LBRACK_LT] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_DOT_DOT2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - [sym__dedent] = ACTIONS(2828), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_GT_RBRACK] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_RBRACK] = ACTIONS(3129), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_RBRACE] = ACTIONS(3129), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_to] = ACTIONS(3127), + [anon_sym_downto] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_end] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_DOT_DOT2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [anon_sym_POUNDendif] = ACTIONS(3129), + [anon_sym_POUNDelse] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), }, [993] = { [sym_xml_doc] = STATE(993), [sym_block_comment] = STATE(993), [sym_preproc_line] = STATE(993), - [aux_sym_sequential_expression_repeat1] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_module] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_POUNDnowarn] = ACTIONS(3078), - [anon_sym_POUNDr] = ACTIONS(3078), - [anon_sym_POUNDload] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3076), - [anon_sym_LBRACK_LT] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_type] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3099), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_GT_RBRACK] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_RBRACK] = ACTIONS(2946), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_to] = ACTIONS(2944), + [anon_sym_downto] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_end] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_DOT_DOT2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [anon_sym_POUNDendif] = ACTIONS(2946), + [anon_sym_POUNDelse] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), }, [994] = { [sym_xml_doc] = STATE(994), [sym_block_comment] = STATE(994), [sym_preproc_line] = STATE(994), - [sym_identifier] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_POUNDnowarn] = ACTIONS(3074), - [anon_sym_POUNDr] = ACTIONS(3074), - [anon_sym_POUNDload] = ACTIONS(3074), - [anon_sym_open] = ACTIONS(3072), - [anon_sym_LBRACK_LT] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_DOT_DOT2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - [sym__dedent] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_GT_RBRACK] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_RBRACK] = ACTIONS(3133), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_to] = ACTIONS(3131), + [anon_sym_downto] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_end] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_DOT_DOT2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [anon_sym_POUNDendif] = ACTIONS(3133), + [anon_sym_POUNDelse] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), }, [995] = { [sym_xml_doc] = STATE(995), [sym_block_comment] = STATE(995), [sym_preproc_line] = STATE(995), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_GT_RBRACK] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_RBRACK] = ACTIONS(3066), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_to] = ACTIONS(3064), - [anon_sym_downto] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_end] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_DOT_DOT2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [anon_sym_POUNDendif] = ACTIONS(3066), - [anon_sym_POUNDelse] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_GT_RBRACK] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3137), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_to] = ACTIONS(3135), + [anon_sym_downto] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_end] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_DOT_DOT2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [anon_sym_POUNDendif] = ACTIONS(3137), + [anon_sym_POUNDelse] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), }, [996] = { [sym_xml_doc] = STATE(996), [sym_block_comment] = STATE(996), [sym_preproc_line] = STATE(996), - [sym_identifier] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_POUNDnowarn] = ACTIONS(2900), - [anon_sym_POUNDr] = ACTIONS(2900), - [anon_sym_POUNDload] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2898), - [anon_sym_LBRACK_LT] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - [sym__dedent] = ACTIONS(2900), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_GT_RBRACK] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_RBRACK] = ACTIONS(3037), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_to] = ACTIONS(3035), + [anon_sym_downto] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_end] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [anon_sym_POUNDendif] = ACTIONS(3037), + [anon_sym_POUNDelse] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), }, [997] = { [sym_xml_doc] = STATE(997), [sym_block_comment] = STATE(997), [sym_preproc_line] = STATE(997), - [sym_identifier] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_POUNDnowarn] = ACTIONS(2778), - [anon_sym_POUNDr] = ACTIONS(2778), - [anon_sym_POUNDload] = ACTIONS(2778), - [anon_sym_open] = ACTIONS(2776), - [anon_sym_LBRACK_LT] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_DOT_DOT2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [sym__dedent] = ACTIONS(2778), + [sym_identifier] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_POUNDnowarn] = ACTIONS(3141), + [anon_sym_POUNDr] = ACTIONS(3141), + [anon_sym_POUNDload] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3139), + [anon_sym_LBRACK_LT] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_DOT_DOT2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3141), }, [998] = { [sym_xml_doc] = STATE(998), [sym_block_comment] = STATE(998), [sym_preproc_line] = STATE(998), - [aux_sym_long_identifier_repeat1] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_GT_RBRACK] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_to] = ACTIONS(3062), + [anon_sym_downto] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_end] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [anon_sym_POUNDendif] = ACTIONS(3064), + [anon_sym_POUNDelse] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [999] = { [sym_xml_doc] = STATE(999), [sym_block_comment] = STATE(999), [sym_preproc_line] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2720), - [sym_identifier] = ACTIONS(2718), - [anon_sym_namespace] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_POUNDnowarn] = ACTIONS(2720), - [anon_sym_POUNDr] = ACTIONS(2720), - [anon_sym_POUNDload] = ACTIONS(2720), - [anon_sym_open] = ACTIONS(2718), - [anon_sym_LBRACK_LT] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_GT_RBRACK] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3141), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_to] = ACTIONS(3139), + [anon_sym_downto] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_end] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_DOT_DOT2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [anon_sym_POUNDendif] = ACTIONS(3141), + [anon_sym_POUNDelse] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), }, [1000] = { [sym_xml_doc] = STATE(1000), [sym_block_comment] = STATE(1000), [sym_preproc_line] = STATE(1000), - [sym_identifier] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_POUNDnowarn] = ACTIONS(2800), - [anon_sym_POUNDr] = ACTIONS(2800), - [anon_sym_POUNDload] = ACTIONS(2800), - [anon_sym_open] = ACTIONS(2798), - [anon_sym_LBRACK_LT] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_DOT_DOT2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [sym__dedent] = ACTIONS(2800), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_GT_RBRACK] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_to] = ACTIONS(3039), + [anon_sym_downto] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_end] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_DOT_DOT2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [anon_sym_POUNDendif] = ACTIONS(3041), + [anon_sym_POUNDelse] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), }, [1001] = { [sym_xml_doc] = STATE(1001), [sym_block_comment] = STATE(1001), [sym_preproc_line] = STATE(1001), - [sym_identifier] = ACTIONS(2784), - [anon_sym_module] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_POUNDnowarn] = ACTIONS(2786), - [anon_sym_POUNDr] = ACTIONS(2786), - [anon_sym_POUNDload] = ACTIONS(2786), - [anon_sym_open] = ACTIONS(2784), - [anon_sym_LBRACK_LT] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_DOT_DOT2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [sym__dedent] = ACTIONS(2786), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_GT_RBRACK] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_RBRACK] = ACTIONS(3145), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_to] = ACTIONS(3143), + [anon_sym_downto] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_end] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_DOT_DOT2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [anon_sym_POUNDendif] = ACTIONS(3145), + [anon_sym_POUNDelse] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), }, [1002] = { [sym_xml_doc] = STATE(1002), [sym_block_comment] = STATE(1002), [sym_preproc_line] = STATE(1002), - [sym_identifier] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_POUNDnowarn] = ACTIONS(2906), - [anon_sym_POUNDr] = ACTIONS(2906), - [anon_sym_POUNDload] = ACTIONS(2906), - [anon_sym_open] = ACTIONS(2904), - [anon_sym_LBRACK_LT] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_DOT_DOT2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), - [sym__dedent] = ACTIONS(2906), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_GT_RBRACK] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_to] = ACTIONS(3054), + [anon_sym_downto] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_end] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_DOT_DOT2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [anon_sym_POUNDendif] = ACTIONS(3056), + [anon_sym_POUNDelse] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), }, [1003] = { [sym_xml_doc] = STATE(1003), [sym_block_comment] = STATE(1003), [sym_preproc_line] = STATE(1003), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_GT_RBRACK] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_to] = ACTIONS(3060), - [anon_sym_downto] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_end] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_DOT_DOT2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [anon_sym_POUNDendif] = ACTIONS(3062), - [anon_sym_POUNDelse] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), }, [1004] = { [sym_xml_doc] = STATE(1004), [sym_block_comment] = STATE(1004), [sym_preproc_line] = STATE(1004), - [sym_identifier] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_POUNDnowarn] = ACTIONS(2824), - [anon_sym_POUNDr] = ACTIONS(2824), - [anon_sym_POUNDload] = ACTIONS(2824), - [anon_sym_open] = ACTIONS(2822), - [anon_sym_LBRACK_LT] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_DOT_DOT2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__dedent] = ACTIONS(2824), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_GT_RBRACK] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_to] = ACTIONS(3147), + [anon_sym_downto] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_end] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_DOT_DOT2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [anon_sym_POUNDendif] = ACTIONS(3149), + [anon_sym_POUNDelse] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), }, [1005] = { [sym_xml_doc] = STATE(1005), [sym_block_comment] = STATE(1005), [sym_preproc_line] = STATE(1005), - [sym_identifier] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_POUNDnowarn] = ACTIONS(2812), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_DOT_DOT2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2938), + [anon_sym_module] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_POUNDnowarn] = ACTIONS(2940), + [anon_sym_POUNDr] = ACTIONS(2940), + [anon_sym_POUNDload] = ACTIONS(2940), + [anon_sym_open] = ACTIONS(2938), + [anon_sym_LBRACK_LT] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_DOT_DOT2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [sym__dedent] = ACTIONS(2940), }, [1006] = { [sym_xml_doc] = STATE(1006), [sym_block_comment] = STATE(1006), [sym_preproc_line] = STATE(1006), - [sym_identifier] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_POUNDnowarn] = ACTIONS(2808), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_GT_RBRACK] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_RBRACK] = ACTIONS(2902), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_to] = ACTIONS(2900), + [anon_sym_downto] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_end] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_DOT_DOT2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [anon_sym_POUNDendif] = ACTIONS(2902), + [anon_sym_POUNDelse] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), }, [1007] = { [sym_xml_doc] = STATE(1007), [sym_block_comment] = STATE(1007), [sym_preproc_line] = STATE(1007), - [sym_identifier] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_POUNDnowarn] = ACTIONS(2804), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [anon_sym_open] = ACTIONS(2802), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_DOT_DOT2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_POUNDnowarn] = ACTIONS(3107), + [anon_sym_POUNDr] = ACTIONS(3107), + [anon_sym_POUNDload] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3105), + [anon_sym_LBRACK_LT] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_DOT_DOT2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + [sym__dedent] = ACTIONS(3107), }, [1008] = { [sym_xml_doc] = STATE(1008), [sym_block_comment] = STATE(1008), [sym_preproc_line] = STATE(1008), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_to] = ACTIONS(2483), - [anon_sym_downto] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_end] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_DOT_DOT2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [anon_sym_POUNDendif] = ACTIONS(2485), - [anon_sym_POUNDelse] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(2784), + [sym_identifier] = ACTIONS(2782), + [anon_sym_namespace] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_POUNDnowarn] = ACTIONS(2784), + [anon_sym_POUNDr] = ACTIONS(2784), + [anon_sym_POUNDload] = ACTIONS(2784), + [anon_sym_open] = ACTIONS(2782), + [anon_sym_LBRACK_LT] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), }, [1009] = { [sym_xml_doc] = STATE(1009), [sym_block_comment] = STATE(1009), [sym_preproc_line] = STATE(1009), - [sym_identifier] = ACTIONS(3044), - [anon_sym_module] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_POUNDnowarn] = ACTIONS(3046), - [anon_sym_POUNDr] = ACTIONS(3046), - [anon_sym_POUNDload] = ACTIONS(3046), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_LBRACK_LT] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_DOT_DOT2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3009), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_POUNDnowarn] = ACTIONS(3011), + [anon_sym_POUNDr] = ACTIONS(3011), + [anon_sym_POUNDload] = ACTIONS(3011), + [anon_sym_open] = ACTIONS(3009), + [anon_sym_LBRACK_LT] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_DOT_DOT2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + [sym__dedent] = ACTIONS(3011), }, [1010] = { [sym_xml_doc] = STATE(1010), [sym_block_comment] = STATE(1010), [sym_preproc_line] = STATE(1010), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_GT_RBRACK] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(3058), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_to] = ACTIONS(3056), - [anon_sym_downto] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_end] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_DOT_DOT2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [anon_sym_POUNDendif] = ACTIONS(3058), - [anon_sym_POUNDelse] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_GT_RBRACK] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_to] = ACTIONS(3151), + [anon_sym_downto] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_end] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_DOT_DOT2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [anon_sym_POUNDendif] = ACTIONS(3153), + [anon_sym_POUNDelse] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [1011] = { [sym_xml_doc] = STATE(1011), [sym_block_comment] = STATE(1011), [sym_preproc_line] = STATE(1011), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_GT_RBRACK] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_to] = ACTIONS(3052), - [anon_sym_downto] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_end] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_DOT_DOT2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [anon_sym_POUNDendif] = ACTIONS(3054), - [anon_sym_POUNDelse] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3043), + [anon_sym_module] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_POUNDnowarn] = ACTIONS(3045), + [anon_sym_POUNDr] = ACTIONS(3045), + [anon_sym_POUNDload] = ACTIONS(3045), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_LBRACK_LT] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_DOT_DOT2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + [sym__dedent] = ACTIONS(3045), }, [1012] = { [sym_xml_doc] = STATE(1012), [sym_block_comment] = STATE(1012), [sym_preproc_line] = STATE(1012), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_GT_RBRACK] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_RBRACK] = ACTIONS(3016), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(3016), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_to] = ACTIONS(3014), - [anon_sym_downto] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_end] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_DOT_DOT2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [anon_sym_POUNDendif] = ACTIONS(3016), - [anon_sym_POUNDelse] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), + [sym_identifier] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_POUNDnowarn] = ACTIONS(2918), + [anon_sym_POUNDr] = ACTIONS(2918), + [anon_sym_POUNDload] = ACTIONS(2918), + [anon_sym_open] = ACTIONS(2916), + [anon_sym_LBRACK_LT] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_DOT_DOT2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + [sym__dedent] = ACTIONS(2918), }, [1013] = { [sym_xml_doc] = STATE(1013), [sym_block_comment] = STATE(1013), [sym_preproc_line] = STATE(1013), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_GT_RBRACK] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_to] = ACTIONS(3022), - [anon_sym_downto] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_end] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_DOT_DOT2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [anon_sym_POUNDendif] = ACTIONS(3024), - [anon_sym_POUNDelse] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_GT_RBRACK] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_RBRACK] = ACTIONS(3087), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_to] = ACTIONS(3085), + [anon_sym_downto] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_end] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_DOT_DOT2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [anon_sym_POUNDendif] = ACTIONS(3087), + [anon_sym_POUNDelse] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), }, [1014] = { [sym_xml_doc] = STATE(1014), [sym_block_comment] = STATE(1014), [sym_preproc_line] = STATE(1014), - [sym_identifier] = ACTIONS(3040), - [anon_sym_module] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_POUNDnowarn] = ACTIONS(3042), - [anon_sym_POUNDr] = ACTIONS(3042), - [anon_sym_POUNDload] = ACTIONS(3042), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_LBRACK_LT] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_type] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_DOT_DOT2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__dedent] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_GT_RBRACK] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_RBRACK] = ACTIONS(3097), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_to] = ACTIONS(3095), + [anon_sym_downto] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_end] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_DOT_DOT2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [anon_sym_POUNDendif] = ACTIONS(3097), + [anon_sym_POUNDelse] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), }, [1015] = { [sym_xml_doc] = STATE(1015), [sym_block_comment] = STATE(1015), [sym_preproc_line] = STATE(1015), - [sym_identifier] = ACTIONS(3036), - [anon_sym_module] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_POUNDnowarn] = ACTIONS(3038), - [anon_sym_POUNDr] = ACTIONS(3038), - [anon_sym_POUNDload] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_LBRACK_LT] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3036), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_DOT_DOT2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__dedent] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3058), + [anon_sym_module] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_POUNDnowarn] = ACTIONS(3060), + [anon_sym_POUNDr] = ACTIONS(3060), + [anon_sym_POUNDload] = ACTIONS(3060), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_LBRACK_LT] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_DOT_DOT2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), + [sym__dedent] = ACTIONS(3060), }, [1016] = { [sym_xml_doc] = STATE(1016), [sym_block_comment] = STATE(1016), [sym_preproc_line] = STATE(1016), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_GT_RBRACK] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_RBRACK] = ACTIONS(3028), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3028), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_to] = ACTIONS(3026), - [anon_sym_downto] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_end] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_DOT_DOT2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [anon_sym_POUNDendif] = ACTIONS(3028), - [anon_sym_POUNDelse] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3091), + [anon_sym_module] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_POUNDnowarn] = ACTIONS(3093), + [anon_sym_POUNDr] = ACTIONS(3093), + [anon_sym_POUNDload] = ACTIONS(3093), + [anon_sym_open] = ACTIONS(3091), + [anon_sym_LBRACK_LT] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_with] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_DOT_DOT2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + [sym__dedent] = ACTIONS(3093), }, [1017] = { [sym_xml_doc] = STATE(1017), [sym_block_comment] = STATE(1017), [sym_preproc_line] = STATE(1017), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_GT_RBRACK] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_RBRACK] = ACTIONS(2707), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_with] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_to] = ACTIONS(3030), - [anon_sym_downto] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_end] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_DOT_DOT2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [anon_sym_POUNDendif] = ACTIONS(2707), - [anon_sym_POUNDelse] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_GT_RBRACK] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_RBRACK] = ACTIONS(3111), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_to] = ACTIONS(3109), + [anon_sym_downto] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_end] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_DOT_DOT2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [anon_sym_POUNDendif] = ACTIONS(3111), + [anon_sym_POUNDelse] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), }, [1018] = { [sym_xml_doc] = STATE(1018), [sym_block_comment] = STATE(1018), [sym_preproc_line] = STATE(1018), - [sym_identifier] = ACTIONS(2908), - [anon_sym_module] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_POUNDnowarn] = ACTIONS(2910), - [anon_sym_POUNDr] = ACTIONS(2910), - [anon_sym_POUNDload] = ACTIONS(2910), - [anon_sym_open] = ACTIONS(2908), - [anon_sym_LBRACK_LT] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_DOT_DOT2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_GT_RBRACK] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_RBRACK] = ACTIONS(2780), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_to] = ACTIONS(3113), + [anon_sym_downto] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_end] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_DOT_DOT2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [anon_sym_POUNDendif] = ACTIONS(2780), + [anon_sym_POUNDelse] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), }, [1019] = { [sym_xml_doc] = STATE(1019), [sym_block_comment] = STATE(1019), [sym_preproc_line] = STATE(1019), - [sym_identifier] = ACTIONS(2912), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_POUNDnowarn] = ACTIONS(2914), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [anon_sym_open] = ACTIONS(2912), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_DOT_DOT2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_POUNDnowarn] = ACTIONS(3071), + [anon_sym_POUNDr] = ACTIONS(3071), + [anon_sym_POUNDload] = ACTIONS(3071), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_LBRACK_LT] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_DOT_DOT2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + [sym__dedent] = ACTIONS(3071), }, [1020] = { [sym_xml_doc] = STATE(1020), [sym_block_comment] = STATE(1020), [sym_preproc_line] = STATE(1020), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_GT_RBRACK] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_to] = ACTIONS(3048), - [anon_sym_downto] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_end] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_DOT_DOT2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [anon_sym_POUNDendif] = ACTIONS(3050), - [anon_sym_POUNDelse] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3073), + [anon_sym_module] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_POUNDnowarn] = ACTIONS(3075), + [anon_sym_POUNDr] = ACTIONS(3075), + [anon_sym_POUNDload] = ACTIONS(3075), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_LBRACK_LT] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_type] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_DOT_DOT2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + [sym__dedent] = ACTIONS(3075), }, [1021] = { [sym_xml_doc] = STATE(1021), [sym_block_comment] = STATE(1021), [sym_preproc_line] = STATE(1021), - [sym_identifier] = ACTIONS(2918), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_POUNDnowarn] = ACTIONS(2920), - [anon_sym_POUNDr] = ACTIONS(2920), - [anon_sym_POUNDload] = ACTIONS(2920), - [anon_sym_open] = ACTIONS(2918), - [anon_sym_LBRACK_LT] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_DOT_DOT2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - [sym__dedent] = ACTIONS(2920), + [sym_identifier] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_POUNDnowarn] = ACTIONS(3083), + [anon_sym_POUNDr] = ACTIONS(3083), + [anon_sym_POUNDload] = ACTIONS(3083), + [anon_sym_open] = ACTIONS(3081), + [anon_sym_LBRACK_LT] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_DOT_DOT2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + [sym__dedent] = ACTIONS(3083), }, [1022] = { [sym_xml_doc] = STATE(1022), [sym_block_comment] = STATE(1022), [sym_preproc_line] = STATE(1022), - [sym_identifier] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_POUNDnowarn] = ACTIONS(3020), - [anon_sym_POUNDr] = ACTIONS(3020), - [anon_sym_POUNDload] = ACTIONS(3020), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_LBRACK_LT] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_DOT_DOT2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - [sym__dedent] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_POUNDnowarn] = ACTIONS(3125), + [anon_sym_POUNDr] = ACTIONS(3125), + [anon_sym_POUNDload] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3123), + [anon_sym_LBRACK_LT] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_DOT_DOT2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + [sym__dedent] = ACTIONS(3125), }, [1023] = { [sym_xml_doc] = STATE(1023), [sym_block_comment] = STATE(1023), [sym_preproc_line] = STATE(1023), - [sym_identifier] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_POUNDnowarn] = ACTIONS(3012), - [anon_sym_POUNDr] = ACTIONS(3012), - [anon_sym_POUNDload] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3010), - [anon_sym_LBRACK_LT] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_DOT_DOT2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - [sym__dedent] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3127), + [anon_sym_module] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_POUNDnowarn] = ACTIONS(3129), + [anon_sym_POUNDr] = ACTIONS(3129), + [anon_sym_POUNDload] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3127), + [anon_sym_LBRACK_LT] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_DOT_DOT2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + [sym__dedent] = ACTIONS(3129), }, [1024] = { [sym_xml_doc] = STATE(1024), [sym_block_comment] = STATE(1024), [sym_preproc_line] = STATE(1024), - [sym_identifier] = ACTIONS(2926), - [anon_sym_module] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_POUNDnowarn] = ACTIONS(2928), - [anon_sym_POUNDr] = ACTIONS(2928), - [anon_sym_POUNDload] = ACTIONS(2928), - [anon_sym_open] = ACTIONS(2926), - [anon_sym_LBRACK_LT] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_DOT_DOT2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [sym__dedent] = ACTIONS(2928), + [sym_identifier] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_POUNDnowarn] = ACTIONS(3103), + [anon_sym_POUNDr] = ACTIONS(3103), + [anon_sym_POUNDload] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_LBRACK_LT] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_DOT_DOT2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + [sym__dedent] = ACTIONS(3103), }, [1025] = { [sym_xml_doc] = STATE(1025), [sym_block_comment] = STATE(1025), [sym_preproc_line] = STATE(1025), - [sym_identifier] = ACTIONS(2972), - [anon_sym_module] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_POUNDnowarn] = ACTIONS(2974), - [anon_sym_POUNDr] = ACTIONS(2974), - [anon_sym_POUNDload] = ACTIONS(2974), - [anon_sym_open] = ACTIONS(2972), - [anon_sym_LBRACK_LT] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_DOT_DOT2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__dedent] = ACTIONS(2974), + [sym_identifier] = ACTIONS(3119), + [anon_sym_module] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_POUNDnowarn] = ACTIONS(3121), + [anon_sym_POUNDr] = ACTIONS(3121), + [anon_sym_POUNDload] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3119), + [anon_sym_LBRACK_LT] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_with] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_DOT_DOT2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + [sym__dedent] = ACTIONS(3121), }, [1026] = { [sym_xml_doc] = STATE(1026), [sym_block_comment] = STATE(1026), [sym_preproc_line] = STATE(1026), - [sym_identifier] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_POUNDnowarn] = ACTIONS(3008), - [anon_sym_POUNDr] = ACTIONS(3008), - [anon_sym_POUNDload] = ACTIONS(3008), - [anon_sym_open] = ACTIONS(3006), - [anon_sym_LBRACK_LT] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_DOT_DOT2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - [sym__dedent] = ACTIONS(3008), + [sym_identifier] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_POUNDnowarn] = ACTIONS(2854), + [anon_sym_POUNDr] = ACTIONS(2854), + [anon_sym_POUNDload] = ACTIONS(2854), + [anon_sym_open] = ACTIONS(2852), + [anon_sym_LBRACK_LT] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_DOT_DOT2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [sym__dedent] = ACTIONS(2854), }, [1027] = { [sym_xml_doc] = STATE(1027), [sym_block_comment] = STATE(1027), [sym_preproc_line] = STATE(1027), - [sym_identifier] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_POUNDnowarn] = ACTIONS(3004), - [anon_sym_POUNDr] = ACTIONS(3004), - [anon_sym_POUNDload] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3002), - [anon_sym_LBRACK_LT] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_DOT_DOT2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - [sym__dedent] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_POUNDnowarn] = ACTIONS(3145), + [anon_sym_POUNDr] = ACTIONS(3145), + [anon_sym_POUNDload] = ACTIONS(3145), + [anon_sym_open] = ACTIONS(3143), + [anon_sym_LBRACK_LT] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_DOT_DOT2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + [sym__dedent] = ACTIONS(3145), }, [1028] = { [sym_xml_doc] = STATE(1028), [sym_block_comment] = STATE(1028), [sym_preproc_line] = STATE(1028), - [sym_identifier] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_POUNDnowarn] = ACTIONS(2970), - [anon_sym_POUNDr] = ACTIONS(2970), - [anon_sym_POUNDload] = ACTIONS(2970), - [anon_sym_open] = ACTIONS(2968), - [anon_sym_LBRACK_LT] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_DOT_DOT2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__dedent] = ACTIONS(2970), + [sym_identifier] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_POUNDnowarn] = ACTIONS(3149), + [anon_sym_POUNDr] = ACTIONS(3149), + [anon_sym_POUNDload] = ACTIONS(3149), + [anon_sym_open] = ACTIONS(3147), + [anon_sym_LBRACK_LT] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_DOT_DOT2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + [sym__dedent] = ACTIONS(3149), }, [1029] = { [sym_xml_doc] = STATE(1029), [sym_block_comment] = STATE(1029), [sym_preproc_line] = STATE(1029), - [sym_identifier] = ACTIONS(2930), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2932), - [anon_sym_POUNDnowarn] = ACTIONS(2932), - [anon_sym_POUNDr] = ACTIONS(2932), - [anon_sym_POUNDload] = ACTIONS(2932), - [anon_sym_open] = ACTIONS(2930), - [anon_sym_LBRACK_LT] = ACTIONS(2932), - [anon_sym_COLON] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_let_BANG] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_COLON_QMARK] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2932), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACK_PIPE] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_LBRACE_PIPE] = ACTIONS(2932), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_return_BANG] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_yield_BANG] = ACTIONS(2932), - [anon_sym_lazy] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_upcast] = ACTIONS(2930), - [anon_sym_downcast] = ACTIONS(2930), - [anon_sym_LT_AT] = ACTIONS(2930), - [anon_sym_AT_GT] = ACTIONS(2932), - [anon_sym_LT_AT_AT] = ACTIONS(2930), - [anon_sym_AT_AT_GT] = ACTIONS(2932), - [anon_sym_COLON_GT] = ACTIONS(2932), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_fun] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_match_BANG] = ACTIONS(2932), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_DOT_LBRACK] = ACTIONS(2932), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2930), - [anon_sym_use_BANG] = ACTIONS(2932), - [anon_sym_do_BANG] = ACTIONS(2932), - [anon_sym_begin] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(2932), - [anon_sym_DOT_DOT2] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_or] = ACTIONS(2930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(2930), - [anon_sym_AT_DQUOTE] = ACTIONS(2932), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [sym_bool] = ACTIONS(2930), - [sym_unit] = ACTIONS(2930), - [aux_sym__identifier_or_op_token1] = ACTIONS(2930), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_DOT] = ACTIONS(2930), - [anon_sym_DASH_DOT] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_prefix_op_token1] = ACTIONS(2932), - [aux_sym_infix_op_token1] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_COLON_EQ] = ACTIONS(2932), - [anon_sym_DOLLAR] = ACTIONS(2930), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), - [sym_int] = ACTIONS(2930), - [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2932), - [sym__newline] = ACTIONS(2932), - [sym__dedent] = ACTIONS(2932), + [sym_identifier] = ACTIONS(3131), + [anon_sym_module] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_POUNDnowarn] = ACTIONS(3133), + [anon_sym_POUNDr] = ACTIONS(3133), + [anon_sym_POUNDload] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3131), + [anon_sym_LBRACK_LT] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_type] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_DOT_DOT2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3133), }, [1030] = { [sym_xml_doc] = STATE(1030), [sym_block_comment] = STATE(1030), [sym_preproc_line] = STATE(1030), - [sym_identifier] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_POUNDnowarn] = ACTIONS(2966), - [anon_sym_POUNDr] = ACTIONS(2966), - [anon_sym_POUNDload] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2964), - [anon_sym_LBRACK_LT] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2964), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_DOT_DOT2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__dedent] = ACTIONS(2966), + [sym_identifier] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_POUNDnowarn] = ACTIONS(3029), + [anon_sym_POUNDr] = ACTIONS(3029), + [anon_sym_POUNDload] = ACTIONS(3029), + [anon_sym_open] = ACTIONS(3027), + [anon_sym_LBRACK_LT] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_DOT_DOT2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + [sym__dedent] = ACTIONS(3029), }, [1031] = { [sym_xml_doc] = STATE(1031), [sym_block_comment] = STATE(1031), [sym_preproc_line] = STATE(1031), - [sym_identifier] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_POUNDnowarn] = ACTIONS(2936), - [anon_sym_POUNDr] = ACTIONS(2936), - [anon_sym_POUNDload] = ACTIONS(2936), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_LBRACK_LT] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_DOT_DOT2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), - [sym__dedent] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_POUNDnowarn] = ACTIONS(2870), + [anon_sym_POUNDr] = ACTIONS(2870), + [anon_sym_POUNDload] = ACTIONS(2870), + [anon_sym_open] = ACTIONS(2868), + [anon_sym_LBRACK_LT] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_DOT_DOT2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [sym__dedent] = ACTIONS(2870), }, [1032] = { [sym_xml_doc] = STATE(1032), [sym_block_comment] = STATE(1032), [sym_preproc_line] = STATE(1032), - [sym_identifier] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_POUNDnowarn] = ACTIONS(2978), - [anon_sym_POUNDr] = ACTIONS(2978), - [anon_sym_POUNDload] = ACTIONS(2978), - [anon_sym_open] = ACTIONS(2976), - [anon_sym_LBRACK_LT] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2976), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_DOT_DOT2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__dedent] = ACTIONS(2978), + [sym_identifier] = ACTIONS(3077), + [anon_sym_module] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_POUNDnowarn] = ACTIONS(3079), + [anon_sym_POUNDr] = ACTIONS(3079), + [anon_sym_POUNDload] = ACTIONS(3079), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_LBRACK_LT] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_type] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_DOT_DOT2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + [sym__dedent] = ACTIONS(3079), }, [1033] = { [sym_xml_doc] = STATE(1033), [sym_block_comment] = STATE(1033), [sym_preproc_line] = STATE(1033), - [sym_identifier] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_POUNDnowarn] = ACTIONS(2982), - [anon_sym_POUNDr] = ACTIONS(2982), - [anon_sym_POUNDload] = ACTIONS(2982), - [anon_sym_open] = ACTIONS(2980), - [anon_sym_LBRACK_LT] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2980), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_DOT_DOT2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__dedent] = ACTIONS(2982), + [sym_identifier] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_POUNDnowarn] = ACTIONS(3153), + [anon_sym_POUNDr] = ACTIONS(3153), + [anon_sym_POUNDload] = ACTIONS(3153), + [anon_sym_open] = ACTIONS(3151), + [anon_sym_LBRACK_LT] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_DOT_DOT2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__dedent] = ACTIONS(3153), }, [1034] = { [sym_xml_doc] = STATE(1034), [sym_block_comment] = STATE(1034), [sym_preproc_line] = STATE(1034), - [sym_identifier] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_POUNDnowarn] = ACTIONS(2962), - [anon_sym_POUNDr] = ACTIONS(2962), - [anon_sym_POUNDload] = ACTIONS(2962), - [anon_sym_open] = ACTIONS(2960), - [anon_sym_LBRACK_LT] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_DOT_DOT2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__dedent] = ACTIONS(2962), + [sym_identifier] = ACTIONS(3031), + [anon_sym_module] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_POUNDnowarn] = ACTIONS(3033), + [anon_sym_POUNDr] = ACTIONS(3033), + [anon_sym_POUNDload] = ACTIONS(3033), + [anon_sym_open] = ACTIONS(3031), + [anon_sym_LBRACK_LT] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_DOT_DOT2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + [sym__dedent] = ACTIONS(3033), }, [1035] = { [sym_xml_doc] = STATE(1035), [sym_block_comment] = STATE(1035), [sym_preproc_line] = STATE(1035), - [aux_sym_sequential_expression_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_GT_RBRACK] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_to] = ACTIONS(2950), - [anon_sym_downto] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_end] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [anon_sym_POUNDendif] = ACTIONS(2948), - [anon_sym_POUNDelse] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2970), + [anon_sym_module] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_POUNDnowarn] = ACTIONS(2972), + [anon_sym_POUNDr] = ACTIONS(2972), + [anon_sym_POUNDload] = ACTIONS(2972), + [anon_sym_open] = ACTIONS(2970), + [anon_sym_LBRACK_LT] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_DOT_DOT2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + [sym__dedent] = ACTIONS(2972), }, [1036] = { [sym_xml_doc] = STATE(1036), [sym_block_comment] = STATE(1036), [sym_preproc_line] = STATE(1036), - [sym_identifier] = ACTIONS(2922), - [anon_sym_module] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_POUNDnowarn] = ACTIONS(2924), - [anon_sym_POUNDr] = ACTIONS(2924), - [anon_sym_POUNDload] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2922), - [anon_sym_LBRACK_LT] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_DOT_DOT2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - [sym__dedent] = ACTIONS(2924), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_GT_RBRACK] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_to] = ACTIONS(3155), + [anon_sym_downto] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_end] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_DOT_DOT2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [anon_sym_POUNDendif] = ACTIONS(3157), + [anon_sym_POUNDelse] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), }, [1037] = { [sym_xml_doc] = STATE(1037), [sym_block_comment] = STATE(1037), [sym_preproc_line] = STATE(1037), - [sym_identifier] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_POUNDnowarn] = ACTIONS(2986), - [anon_sym_POUNDr] = ACTIONS(2986), - [anon_sym_POUNDload] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2984), - [anon_sym_LBRACK_LT] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_DOT_DOT2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - [sym__dedent] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [1038] = { [sym_xml_doc] = STATE(1038), [sym_block_comment] = STATE(1038), [sym_preproc_line] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3091), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_POUNDnowarn] = ACTIONS(3093), - [anon_sym_POUNDr] = ACTIONS(3093), - [anon_sym_POUNDload] = ACTIONS(3093), - [anon_sym_open] = ACTIONS(3091), - [anon_sym_LBRACK_LT] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_GT_RBRACK] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_to] = ACTIONS(3115), + [anon_sym_downto] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_end] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_DOT_DOT2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [anon_sym_POUNDendif] = ACTIONS(3117), + [anon_sym_POUNDelse] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), }, [1039] = { [sym_xml_doc] = STATE(1039), [sym_block_comment] = STATE(1039), [sym_preproc_line] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(3046), - [sym_identifier] = ACTIONS(3044), - [anon_sym_namespace] = ACTIONS(3044), - [anon_sym_module] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_POUNDnowarn] = ACTIONS(3046), - [anon_sym_POUNDr] = ACTIONS(3046), - [anon_sym_POUNDload] = ACTIONS(3046), - [anon_sym_open] = ACTIONS(3044), - [anon_sym_LBRACK_LT] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_GT_RBRACK] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_to] = ACTIONS(3159), + [anon_sym_downto] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_end] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_DOT_DOT2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [anon_sym_POUNDendif] = ACTIONS(3161), + [anon_sym_POUNDelse] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), }, [1040] = { [sym_xml_doc] = STATE(1040), [sym_block_comment] = STATE(1040), [sym_preproc_line] = STATE(1040), - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2918), - [anon_sym_namespace] = ACTIONS(2918), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_POUNDnowarn] = ACTIONS(2920), - [anon_sym_POUNDr] = ACTIONS(2920), - [anon_sym_POUNDload] = ACTIONS(2920), - [anon_sym_open] = ACTIONS(2918), - [anon_sym_LBRACK_LT] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), + [sym_identifier] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_POUNDnowarn] = ACTIONS(3165), + [anon_sym_POUNDr] = ACTIONS(3165), + [anon_sym_POUNDload] = ACTIONS(3165), + [anon_sym_open] = ACTIONS(3163), + [anon_sym_LBRACK_LT] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_DOT_DOT2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + [sym__dedent] = ACTIONS(3165), }, [1041] = { [sym_xml_doc] = STATE(1041), [sym_block_comment] = STATE(1041), [sym_preproc_line] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2912), - [anon_sym_namespace] = ACTIONS(2912), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_POUNDnowarn] = ACTIONS(2914), - [anon_sym_POUNDr] = ACTIONS(2914), - [anon_sym_POUNDload] = ACTIONS(2914), - [anon_sym_open] = ACTIONS(2912), - [anon_sym_LBRACK_LT] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_POUNDnowarn] = ACTIONS(3169), + [anon_sym_POUNDr] = ACTIONS(3169), + [anon_sym_POUNDload] = ACTIONS(3169), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_LBRACK_LT] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + [sym__dedent] = ACTIONS(3169), }, [1042] = { [sym_xml_doc] = STATE(1042), [sym_block_comment] = STATE(1042), [sym_preproc_line] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_POUNDnowarn] = ACTIONS(2840), - [anon_sym_POUNDr] = ACTIONS(2840), - [anon_sym_POUNDload] = ACTIONS(2840), - [anon_sym_open] = ACTIONS(2838), - [anon_sym_LBRACK_LT] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), + [sym_identifier] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_POUNDnowarn] = ACTIONS(3173), + [anon_sym_POUNDr] = ACTIONS(3173), + [anon_sym_POUNDload] = ACTIONS(3173), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_LBRACK_LT] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_DOT_DOT2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [sym__dedent] = ACTIONS(3173), }, [1043] = { [sym_xml_doc] = STATE(1043), [sym_block_comment] = STATE(1043), [sym_preproc_line] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_module] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_POUNDnowarn] = ACTIONS(2836), - [anon_sym_POUNDr] = ACTIONS(2836), - [anon_sym_POUNDload] = ACTIONS(2836), - [anon_sym_open] = ACTIONS(2834), - [anon_sym_LBRACK_LT] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), + [sym_identifier] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_POUNDnowarn] = ACTIONS(3137), + [anon_sym_POUNDr] = ACTIONS(3137), + [anon_sym_POUNDload] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3135), + [anon_sym_LBRACK_LT] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_DOT_DOT2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + [sym__dedent] = ACTIONS(3137), }, [1044] = { [sym_xml_doc] = STATE(1044), [sym_block_comment] = STATE(1044), [sym_preproc_line] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2908), - [anon_sym_namespace] = ACTIONS(2908), - [anon_sym_module] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_POUNDnowarn] = ACTIONS(2910), - [anon_sym_POUNDr] = ACTIONS(2910), - [anon_sym_POUNDload] = ACTIONS(2910), - [anon_sym_open] = ACTIONS(2908), - [anon_sym_LBRACK_LT] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_GT_RBRACK] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_to] = ACTIONS(2997), + [anon_sym_downto] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_end] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_DOT_DOT2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [anon_sym_POUNDendif] = ACTIONS(2999), + [anon_sym_POUNDelse] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), }, [1045] = { - [sym_type_arguments] = STATE(1236), - [sym_long_identifier] = STATE(1214), [sym_xml_doc] = STATE(1045), [sym_block_comment] = STATE(1045), [sym_preproc_line] = STATE(1045), - [aux_sym__compound_type_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(3111), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), + [sym_identifier] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_POUNDnowarn] = ACTIONS(3177), + [anon_sym_POUNDr] = ACTIONS(3177), + [anon_sym_POUNDload] = ACTIONS(3177), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_LBRACK_LT] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_DOT_DOT2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [sym__dedent] = ACTIONS(3177), }, [1046] = { [sym_xml_doc] = STATE(1046), [sym_block_comment] = STATE(1046), [sym_preproc_line] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3022), - [anon_sym_namespace] = ACTIONS(3022), - [anon_sym_module] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_POUNDnowarn] = ACTIONS(3024), - [anon_sym_POUNDr] = ACTIONS(3024), - [anon_sym_POUNDload] = ACTIONS(3024), - [anon_sym_open] = ACTIONS(3022), - [anon_sym_LBRACK_LT] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_type] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), + [aux_sym_long_identifier_repeat1] = STATE(956), + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2594), + [anon_sym_namespace] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, [1047] = { - [sym_type_arguments] = STATE(1212), - [sym_long_identifier] = STATE(1205), [sym_xml_doc] = STATE(1047), [sym_block_comment] = STATE(1047), [sym_preproc_line] = STATE(1047), - [aux_sym__compound_type_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(3119), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - [sym__else] = ACTIONS(2357), - [sym__elif] = ACTIONS(2357), + [sym_identifier] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_POUNDnowarn] = ACTIONS(3161), + [anon_sym_POUNDr] = ACTIONS(3161), + [anon_sym_POUNDload] = ACTIONS(3161), + [anon_sym_open] = ACTIONS(3159), + [anon_sym_LBRACK_LT] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_DOT_DOT2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + [sym__dedent] = ACTIONS(3161), }, [1048] = { - [sym_type_arguments] = STATE(1236), - [sym_long_identifier] = STATE(1214), [sym_xml_doc] = STATE(1048), [sym_block_comment] = STATE(1048), [sym_preproc_line] = STATE(1048), - [aux_sym__compound_type_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(3111), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_to] = ACTIONS(2603), + [anon_sym_downto] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_end] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_DOT_DOT2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [anon_sym_POUNDendif] = ACTIONS(2605), + [anon_sym_POUNDelse] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [1049] = { - [sym_type_arguments] = STATE(1212), - [sym_long_identifier] = STATE(1205), [sym_xml_doc] = STATE(1049), [sym_block_comment] = STATE(1049), [sym_preproc_line] = STATE(1049), - [aux_sym__compound_type_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(3119), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [sym__else] = ACTIONS(2361), - [sym__elif] = ACTIONS(2361), + [sym_identifier] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_POUNDnowarn] = ACTIONS(3157), + [anon_sym_POUNDr] = ACTIONS(3157), + [anon_sym_POUNDload] = ACTIONS(3157), + [anon_sym_open] = ACTIONS(3155), + [anon_sym_LBRACK_LT] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_DOT_DOT2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + [sym__dedent] = ACTIONS(3157), }, [1050] = { - [sym_type_arguments] = STATE(1212), - [sym_long_identifier] = STATE(1205), [sym_xml_doc] = STATE(1050), [sym_block_comment] = STATE(1050), [sym_preproc_line] = STATE(1050), - [aux_sym__compound_type_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(3119), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [sym__else] = ACTIONS(2305), - [sym__elif] = ACTIONS(2305), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_GT_RBRACK] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_to] = ACTIONS(3175), + [anon_sym_downto] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_end] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_DOT_DOT2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [anon_sym_POUNDendif] = ACTIONS(3177), + [anon_sym_POUNDelse] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), }, [1051] = { - [sym_type_arguments] = STATE(1212), - [sym_long_identifier] = STATE(1205), [sym_xml_doc] = STATE(1051), [sym_block_comment] = STATE(1051), [sym_preproc_line] = STATE(1051), - [aux_sym__compound_type_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(3119), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__else] = ACTIONS(2345), - [sym__elif] = ACTIONS(2345), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_GT_RBRACK] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_to] = ACTIONS(3163), + [anon_sym_downto] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_end] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_DOT_DOT2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [anon_sym_POUNDendif] = ACTIONS(3165), + [anon_sym_POUNDelse] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), }, [1052] = { - [sym_type_arguments] = STATE(1236), - [sym_long_identifier] = STATE(1214), [sym_xml_doc] = STATE(1052), [sym_block_comment] = STATE(1052), [sym_preproc_line] = STATE(1052), - [aux_sym__compound_type_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(3111), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_GT_RBRACK] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_to] = ACTIONS(3167), + [anon_sym_downto] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_end] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_DOT_DOT2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [anon_sym_POUNDendif] = ACTIONS(3169), + [anon_sym_POUNDelse] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), }, [1053] = { - [sym_type_arguments] = STATE(1212), - [sym_long_identifier] = STATE(1205), [sym_xml_doc] = STATE(1053), [sym_block_comment] = STATE(1053), [sym_preproc_line] = STATE(1053), - [aux_sym__compound_type_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(3119), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [sym__else] = ACTIONS(2363), - [sym__elif] = ACTIONS(2363), - }, - [1054] = { - [sym_xml_doc] = STATE(1054), - [sym_block_comment] = STATE(1054), - [sym_preproc_line] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_identifier] = ACTIONS(3056), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_POUNDnowarn] = ACTIONS(3058), - [anon_sym_POUNDr] = ACTIONS(3058), - [anon_sym_POUNDload] = ACTIONS(3058), - [anon_sym_open] = ACTIONS(3056), - [anon_sym_LBRACK_LT] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - }, - [1055] = { - [sym_xml_doc] = STATE(1055), - [sym_block_comment] = STATE(1055), - [sym_preproc_line] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_module] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_POUNDnowarn] = ACTIONS(2832), - [anon_sym_POUNDr] = ACTIONS(2832), - [anon_sym_POUNDload] = ACTIONS(2832), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_LBRACK_LT] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - }, - [1056] = { - [sym_xml_doc] = STATE(1056), - [sym_block_comment] = STATE(1056), - [sym_preproc_line] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_POUNDnowarn] = ACTIONS(2828), - [anon_sym_POUNDr] = ACTIONS(2828), - [anon_sym_POUNDload] = ACTIONS(2828), - [anon_sym_open] = ACTIONS(2826), - [anon_sym_LBRACK_LT] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - }, - [1057] = { - [sym_xml_doc] = STATE(1057), - [sym_block_comment] = STATE(1057), - [sym_preproc_line] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3060), - [anon_sym_namespace] = ACTIONS(3060), - [anon_sym_module] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_POUNDnowarn] = ACTIONS(3062), - [anon_sym_POUNDr] = ACTIONS(3062), - [anon_sym_POUNDload] = ACTIONS(3062), - [anon_sym_open] = ACTIONS(3060), - [anon_sym_LBRACK_LT] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - }, - [1058] = { - [sym_xml_doc] = STATE(1058), - [sym_block_comment] = STATE(1058), - [sym_preproc_line] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_identifier] = ACTIONS(3064), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_POUNDnowarn] = ACTIONS(3066), - [anon_sym_POUNDr] = ACTIONS(3066), - [anon_sym_POUNDload] = ACTIONS(3066), - [anon_sym_open] = ACTIONS(3064), - [anon_sym_LBRACK_LT] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - }, - [1059] = { - [sym_xml_doc] = STATE(1059), - [sym_block_comment] = STATE(1059), - [sym_preproc_line] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2904), - [anon_sym_namespace] = ACTIONS(2904), - [anon_sym_module] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_POUNDnowarn] = ACTIONS(2906), - [anon_sym_POUNDr] = ACTIONS(2906), - [anon_sym_POUNDload] = ACTIONS(2906), - [anon_sym_open] = ACTIONS(2904), - [anon_sym_LBRACK_LT] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), - }, - [1060] = { - [sym_xml_doc] = STATE(1060), - [sym_block_comment] = STATE(1060), - [sym_preproc_line] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_POUNDnowarn] = ACTIONS(2800), - [anon_sym_POUNDr] = ACTIONS(2800), - [anon_sym_POUNDload] = ACTIONS(2800), - [anon_sym_open] = ACTIONS(2798), - [anon_sym_LBRACK_LT] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - }, - [1061] = { - [sym_xml_doc] = STATE(1061), - [sym_block_comment] = STATE(1061), - [sym_preproc_line] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2784), - [anon_sym_namespace] = ACTIONS(2784), - [anon_sym_module] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_POUNDnowarn] = ACTIONS(2786), - [anon_sym_POUNDr] = ACTIONS(2786), - [anon_sym_POUNDload] = ACTIONS(2786), - [anon_sym_open] = ACTIONS(2784), - [anon_sym_LBRACK_LT] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - }, - [1062] = { - [sym_xml_doc] = STATE(1062), - [sym_block_comment] = STATE(1062), - [sym_preproc_line] = STATE(1062), - [aux_sym_sequential_expression_repeat1] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_POUNDnowarn] = ACTIONS(2948), - [anon_sym_POUNDr] = ACTIONS(2948), - [anon_sym_POUNDload] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2950), - [anon_sym_LBRACK_LT] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - }, - [1063] = { - [sym_xml_doc] = STATE(1063), - [sym_block_comment] = STATE(1063), - [sym_preproc_line] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(3054), + [aux_sym_sequential_expression_repeat1] = STATE(947), [sym_identifier] = ACTIONS(3052), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_POUNDnowarn] = ACTIONS(3054), - [anon_sym_POUNDr] = ACTIONS(3054), - [anon_sym_POUNDload] = ACTIONS(3054), - [anon_sym_open] = ACTIONS(3052), - [anon_sym_LBRACK_LT] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_GT_RBRACK] = ACTIONS(3050), [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), [anon_sym_do] = ACTIONS(3052), [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3052), [anon_sym_QMARK] = ACTIONS(3052), [anon_sym_COLON_QMARK] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3052), [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3050), [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3050), [anon_sym_lazy] = ACTIONS(3052), [anon_sym_assert] = ACTIONS(3052), [anon_sym_upcast] = ACTIONS(3052), [anon_sym_downcast] = ACTIONS(3052), [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3050), [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), [anon_sym_for] = ACTIONS(3052), + [anon_sym_to] = ACTIONS(3052), + [anon_sym_downto] = ACTIONS(3052), [anon_sym_while] = ACTIONS(3052), [anon_sym_if] = ACTIONS(3052), [anon_sym_fun] = ACTIONS(3052), [anon_sym_try] = ACTIONS(3052), [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3050), [anon_sym_function] = ACTIONS(3052), [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3050), [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_end] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), [anon_sym_or] = ACTIONS(3052), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), [sym_bool] = ACTIONS(3052), [sym_unit] = ACTIONS(3052), [aux_sym__identifier_or_op_token1] = ACTIONS(3052), @@ -160573,3291 +156786,5695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3052), [anon_sym_PERCENT] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), [aux_sym_infix_op_token1] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), + [anon_sym_POUNDif] = ACTIONS(3050), + [anon_sym_POUNDendif] = ACTIONS(3050), + [anon_sym_POUNDelse] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, - [1064] = { - [sym_xml_doc] = STATE(1064), - [sym_block_comment] = STATE(1064), - [sym_preproc_line] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_POUNDnowarn] = ACTIONS(2848), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [anon_sym_open] = ACTIONS(2846), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [1054] = { + [sym_xml_doc] = STATE(1054), + [sym_block_comment] = STATE(1054), + [sym_preproc_line] = STATE(1054), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_GT_RBRACK] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_to] = ACTIONS(3171), + [anon_sym_downto] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_end] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_DOT_DOT2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [anon_sym_POUNDendif] = ACTIONS(3173), + [anon_sym_POUNDelse] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), }, - [1065] = { - [sym_xml_doc] = STATE(1065), - [sym_block_comment] = STATE(1065), - [sym_preproc_line] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2850), - [anon_sym_namespace] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_POUNDnowarn] = ACTIONS(2852), - [anon_sym_POUNDr] = ACTIONS(2852), - [anon_sym_POUNDload] = ACTIONS(2852), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), + [1055] = { + [sym_xml_doc] = STATE(1055), + [sym_block_comment] = STATE(1055), + [sym_preproc_line] = STATE(1055), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_GT_RBRACK] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_RBRACK] = ACTIONS(2850), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_to] = ACTIONS(2848), + [anon_sym_downto] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_end] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_DOT_DOT2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [anon_sym_POUNDendif] = ACTIONS(2850), + [anon_sym_POUNDelse] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), }, - [1066] = { - [sym_xml_doc] = STATE(1066), - [sym_block_comment] = STATE(1066), - [sym_preproc_line] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3014), - [anon_sym_namespace] = ACTIONS(3014), - [anon_sym_module] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_POUNDnowarn] = ACTIONS(3016), - [anon_sym_POUNDr] = ACTIONS(3016), - [anon_sym_POUNDload] = ACTIONS(3016), - [anon_sym_open] = ACTIONS(3014), - [anon_sym_LBRACK_LT] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), + [1056] = { + [sym_xml_doc] = STATE(1056), + [sym_block_comment] = STATE(1056), + [sym_preproc_line] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2888), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_POUNDnowarn] = ACTIONS(2890), + [anon_sym_POUNDr] = ACTIONS(2890), + [anon_sym_POUNDload] = ACTIONS(2890), + [anon_sym_open] = ACTIONS(2888), + [anon_sym_LBRACK_LT] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), }, - [1067] = { - [sym_xml_doc] = STATE(1067), - [sym_block_comment] = STATE(1067), - [sym_preproc_line] = STATE(1067), - [aux_sym_sequential_expression_repeat1] = STATE(1067), - [sym_identifier] = ACTIONS(3076), - [anon_sym_module] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_POUNDnowarn] = ACTIONS(3078), - [anon_sym_POUNDr] = ACTIONS(3078), - [anon_sym_POUNDload] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3076), - [anon_sym_LBRACK_LT] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_type] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3125), - [sym__dedent] = ACTIONS(3078), + [1057] = { + [sym_xml_doc] = STATE(1057), + [sym_block_comment] = STATE(1057), + [sym_preproc_line] = STATE(1057), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, - [1068] = { - [sym_xml_doc] = STATE(1068), - [sym_block_comment] = STATE(1068), - [sym_preproc_line] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_POUNDnowarn] = ACTIONS(2860), - [anon_sym_POUNDr] = ACTIONS(2860), - [anon_sym_POUNDload] = ACTIONS(2860), - [anon_sym_open] = ACTIONS(2858), - [anon_sym_LBRACK_LT] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), + [1058] = { + [sym_type_arguments] = STATE(1264), + [sym_long_identifier] = STATE(1231), + [sym_xml_doc] = STATE(1058), + [sym_block_comment] = STATE(1058), + [sym_preproc_line] = STATE(1058), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(3185), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), }, - [1069] = { - [sym_xml_doc] = STATE(1069), - [sym_block_comment] = STATE(1069), - [sym_preproc_line] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_POUNDnowarn] = ACTIONS(2864), - [anon_sym_POUNDr] = ACTIONS(2864), - [anon_sym_POUNDload] = ACTIONS(2864), - [anon_sym_open] = ACTIONS(2862), - [anon_sym_LBRACK_LT] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), + [1059] = { + [sym_xml_doc] = STATE(1059), + [sym_block_comment] = STATE(1059), + [sym_preproc_line] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3035), + [anon_sym_namespace] = ACTIONS(3035), + [anon_sym_module] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_POUNDnowarn] = ACTIONS(3037), + [anon_sym_POUNDr] = ACTIONS(3037), + [anon_sym_POUNDload] = ACTIONS(3037), + [anon_sym_open] = ACTIONS(3035), + [anon_sym_LBRACK_LT] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), }, - [1070] = { - [sym_xml_doc] = STATE(1070), - [sym_block_comment] = STATE(1070), - [sym_preproc_line] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2866), - [anon_sym_namespace] = ACTIONS(2866), - [anon_sym_module] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_POUNDnowarn] = ACTIONS(2868), - [anon_sym_POUNDr] = ACTIONS(2868), - [anon_sym_POUNDload] = ACTIONS(2868), - [anon_sym_open] = ACTIONS(2866), - [anon_sym_LBRACK_LT] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), + [1060] = { + [sym_xml_doc] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_preproc_line] = STATE(1060), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_POUNDnowarn] = ACTIONS(2950), + [anon_sym_POUNDr] = ACTIONS(2950), + [anon_sym_POUNDload] = ACTIONS(2950), + [anon_sym_open] = ACTIONS(2948), + [anon_sym_LBRACK_LT] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), }, - [1071] = { + [1061] = { + [sym_type_arguments] = STATE(1220), + [sym_long_identifier] = STATE(1219), + [sym_xml_doc] = STATE(1061), + [sym_block_comment] = STATE(1061), + [sym_preproc_line] = STATE(1061), + [aux_sym__compound_type_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(3195), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [sym__else] = ACTIONS(2361), + [sym__elif] = ACTIONS(2361), + }, + [1062] = { + [sym_xml_doc] = STATE(1062), + [sym_block_comment] = STATE(1062), + [sym_preproc_line] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_module] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_POUNDnowarn] = ACTIONS(2964), + [anon_sym_POUNDr] = ACTIONS(2964), + [anon_sym_POUNDload] = ACTIONS(2964), + [anon_sym_open] = ACTIONS(2962), + [anon_sym_LBRACK_LT] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + }, + [1063] = { + [sym_xml_doc] = STATE(1063), + [sym_block_comment] = STATE(1063), + [sym_preproc_line] = STATE(1063), + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_POUNDnowarn] = ACTIONS(2968), + [anon_sym_POUNDr] = ACTIONS(2968), + [anon_sym_POUNDload] = ACTIONS(2968), + [anon_sym_open] = ACTIONS(2966), + [anon_sym_LBRACK_LT] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + }, + [1064] = { + [sym_xml_doc] = STATE(1064), + [sym_block_comment] = STATE(1064), + [sym_preproc_line] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3054), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_POUNDnowarn] = ACTIONS(3056), + [anon_sym_POUNDr] = ACTIONS(3056), + [anon_sym_POUNDload] = ACTIONS(3056), + [anon_sym_open] = ACTIONS(3054), + [anon_sym_LBRACK_LT] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + }, + [1065] = { + [sym_xml_doc] = STATE(1065), + [sym_block_comment] = STATE(1065), + [sym_preproc_line] = STATE(1065), + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_POUNDnowarn] = ACTIONS(2918), + [anon_sym_POUNDr] = ACTIONS(2918), + [anon_sym_POUNDload] = ACTIONS(2918), + [anon_sym_open] = ACTIONS(2916), + [anon_sym_LBRACK_LT] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + }, + [1066] = { + [sym_xml_doc] = STATE(1066), + [sym_block_comment] = STATE(1066), + [sym_preproc_line] = STATE(1066), + [ts_builtin_sym_end] = ACTIONS(3117), + [sym_identifier] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_module] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_POUNDnowarn] = ACTIONS(3117), + [anon_sym_POUNDr] = ACTIONS(3117), + [anon_sym_POUNDload] = ACTIONS(3117), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_LBRACK_LT] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + }, + [1067] = { + [sym_type_arguments] = STATE(1264), + [sym_long_identifier] = STATE(1231), + [sym_xml_doc] = STATE(1067), + [sym_block_comment] = STATE(1067), + [sym_preproc_line] = STATE(1067), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(3185), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + }, + [1068] = { + [sym_xml_doc] = STATE(1068), + [sym_block_comment] = STATE(1068), + [sym_preproc_line] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_POUNDnowarn] = ACTIONS(2995), + [anon_sym_POUNDr] = ACTIONS(2995), + [anon_sym_POUNDload] = ACTIONS(2995), + [anon_sym_open] = ACTIONS(2993), + [anon_sym_LBRACK_LT] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + }, + [1069] = { + [sym_xml_doc] = STATE(1069), + [sym_block_comment] = STATE(1069), + [sym_preproc_line] = STATE(1069), + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_module] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_POUNDnowarn] = ACTIONS(2866), + [anon_sym_POUNDr] = ACTIONS(2866), + [anon_sym_POUNDload] = ACTIONS(2866), + [anon_sym_open] = ACTIONS(2864), + [anon_sym_LBRACK_LT] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + }, + [1070] = { + [sym_type_arguments] = STATE(1220), + [sym_long_identifier] = STATE(1219), + [sym_xml_doc] = STATE(1070), + [sym_block_comment] = STATE(1070), + [sym_preproc_line] = STATE(1070), + [aux_sym__compound_type_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(3195), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [sym__else] = ACTIONS(2375), + [sym__elif] = ACTIONS(2375), + }, + [1071] = { [sym_xml_doc] = STATE(1071), [sym_block_comment] = STATE(1071), [sym_preproc_line] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(3070), - [sym_identifier] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_POUNDnowarn] = ACTIONS(3070), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3068), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [aux_sym_sequential_expression_repeat1] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_POUNDnowarn] = ACTIONS(2986), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3201), }, [1072] = { [sym_xml_doc] = STATE(1072), [sym_block_comment] = STATE(1072), [sym_preproc_line] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2870), - [anon_sym_namespace] = ACTIONS(2870), - [anon_sym_module] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_POUNDnowarn] = ACTIONS(2872), - [anon_sym_POUNDr] = ACTIONS(2872), - [anon_sym_POUNDload] = ACTIONS(2872), - [anon_sym_open] = ACTIONS(2870), - [anon_sym_LBRACK_LT] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2938), + [anon_sym_namespace] = ACTIONS(2938), + [anon_sym_module] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_POUNDnowarn] = ACTIONS(2940), + [anon_sym_POUNDr] = ACTIONS(2940), + [anon_sym_POUNDload] = ACTIONS(2940), + [anon_sym_open] = ACTIONS(2938), + [anon_sym_LBRACK_LT] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), }, [1073] = { [sym_xml_doc] = STATE(1073), [sym_block_comment] = STATE(1073), [sym_preproc_line] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2874), - [anon_sym_namespace] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_POUNDnowarn] = ACTIONS(2876), - [anon_sym_POUNDr] = ACTIONS(2876), - [anon_sym_POUNDload] = ACTIONS(2876), - [anon_sym_open] = ACTIONS(2874), - [anon_sym_LBRACK_LT] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), + [ts_builtin_sym_end] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_module] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_POUNDnowarn] = ACTIONS(3149), + [anon_sym_POUNDr] = ACTIONS(3149), + [anon_sym_POUNDload] = ACTIONS(3149), + [anon_sym_open] = ACTIONS(3147), + [anon_sym_LBRACK_LT] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), }, [1074] = { [sym_xml_doc] = STATE(1074), [sym_block_comment] = STATE(1074), [sym_preproc_line] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3002), - [anon_sym_namespace] = ACTIONS(3002), - [anon_sym_module] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_POUNDnowarn] = ACTIONS(3004), - [anon_sym_POUNDr] = ACTIONS(3004), - [anon_sym_POUNDload] = ACTIONS(3004), - [anon_sym_open] = ACTIONS(3002), - [anon_sym_LBRACK_LT] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3143), + [anon_sym_namespace] = ACTIONS(3143), + [anon_sym_module] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_POUNDnowarn] = ACTIONS(3145), + [anon_sym_POUNDr] = ACTIONS(3145), + [anon_sym_POUNDload] = ACTIONS(3145), + [anon_sym_open] = ACTIONS(3143), + [anon_sym_LBRACK_LT] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), }, [1075] = { [sym_xml_doc] = STATE(1075), [sym_block_comment] = STATE(1075), [sym_preproc_line] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2780), - [anon_sym_namespace] = ACTIONS(2780), - [anon_sym_module] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_POUNDnowarn] = ACTIONS(2782), - [anon_sym_POUNDr] = ACTIONS(2782), - [anon_sym_POUNDload] = ACTIONS(2782), - [anon_sym_open] = ACTIONS(2780), - [anon_sym_LBRACK_LT] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_POUNDnowarn] = ACTIONS(2870), + [anon_sym_POUNDr] = ACTIONS(2870), + [anon_sym_POUNDload] = ACTIONS(2870), + [anon_sym_open] = ACTIONS(2868), + [anon_sym_LBRACK_LT] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), }, [1076] = { + [sym_type_arguments] = STATE(1220), + [sym_long_identifier] = STATE(1219), [sym_xml_doc] = STATE(1076), [sym_block_comment] = STATE(1076), [sym_preproc_line] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2878), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_POUNDnowarn] = ACTIONS(2880), - [anon_sym_POUNDr] = ACTIONS(2880), - [anon_sym_POUNDload] = ACTIONS(2880), - [anon_sym_open] = ACTIONS(2878), - [anon_sym_LBRACK_LT] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), + [aux_sym__compound_type_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(3195), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + [sym__else] = ACTIONS(2407), + [sym__elif] = ACTIONS(2407), }, [1077] = { [sym_xml_doc] = STATE(1077), [sym_block_comment] = STATE(1077), [sym_preproc_line] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3006), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_POUNDnowarn] = ACTIONS(3008), - [anon_sym_POUNDr] = ACTIONS(3008), - [anon_sym_POUNDload] = ACTIONS(3008), - [anon_sym_open] = ACTIONS(3006), - [anon_sym_LBRACK_LT] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_module] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_POUNDnowarn] = ACTIONS(3153), + [anon_sym_POUNDr] = ACTIONS(3153), + [anon_sym_POUNDload] = ACTIONS(3153), + [anon_sym_open] = ACTIONS(3151), + [anon_sym_LBRACK_LT] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, [1078] = { [sym_xml_doc] = STATE(1078), [sym_block_comment] = STATE(1078), [sym_preproc_line] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3010), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_POUNDnowarn] = ACTIONS(3012), - [anon_sym_POUNDr] = ACTIONS(3012), - [anon_sym_POUNDload] = ACTIONS(3012), - [anon_sym_open] = ACTIONS(3010), - [anon_sym_LBRACK_LT] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_namespace] = ACTIONS(2231), + [anon_sym_module] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_POUNDnowarn] = ACTIONS(2229), + [anon_sym_POUNDr] = ACTIONS(2229), + [anon_sym_POUNDload] = ACTIONS(2229), + [anon_sym_open] = ACTIONS(2231), + [anon_sym_LBRACK_LT] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, [1079] = { [sym_xml_doc] = STATE(1079), [sym_block_comment] = STATE(1079), [sym_preproc_line] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(2962), - [sym_identifier] = ACTIONS(2960), - [anon_sym_namespace] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_POUNDnowarn] = ACTIONS(2962), - [anon_sym_POUNDr] = ACTIONS(2962), - [anon_sym_POUNDload] = ACTIONS(2962), - [anon_sym_open] = ACTIONS(2960), - [anon_sym_LBRACK_LT] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_POUNDnowarn] = ACTIONS(2946), + [anon_sym_POUNDr] = ACTIONS(2946), + [anon_sym_POUNDload] = ACTIONS(2946), + [anon_sym_open] = ACTIONS(2944), + [anon_sym_LBRACK_LT] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), }, [1080] = { [sym_xml_doc] = STATE(1080), [sym_block_comment] = STATE(1080), [sym_preproc_line] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3018), - [anon_sym_namespace] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_POUNDnowarn] = ACTIONS(3020), - [anon_sym_POUNDr] = ACTIONS(3020), - [anon_sym_POUNDload] = ACTIONS(3020), - [anon_sym_open] = ACTIONS(3018), - [anon_sym_LBRACK_LT] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3009), + [anon_sym_namespace] = ACTIONS(3009), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_POUNDnowarn] = ACTIONS(3011), + [anon_sym_POUNDr] = ACTIONS(3011), + [anon_sym_POUNDload] = ACTIONS(3011), + [anon_sym_open] = ACTIONS(3009), + [anon_sym_LBRACK_LT] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), }, [1081] = { + [sym_type_arguments] = STATE(1220), + [sym_long_identifier] = STATE(1219), [sym_xml_doc] = STATE(1081), [sym_block_comment] = STATE(1081), [sym_preproc_line] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2854), - [anon_sym_namespace] = ACTIONS(2854), - [anon_sym_module] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_POUNDnowarn] = ACTIONS(2856), - [anon_sym_POUNDr] = ACTIONS(2856), - [anon_sym_POUNDload] = ACTIONS(2856), - [anon_sym_open] = ACTIONS(2854), - [anon_sym_LBRACK_LT] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), + [aux_sym__compound_type_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(3195), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__else] = ACTIONS(2321), + [sym__elif] = ACTIONS(2321), }, [1082] = { - [sym_type_arguments] = STATE(1236), - [sym_long_identifier] = STATE(1214), + [sym_type_arguments] = STATE(1220), + [sym_long_identifier] = STATE(1219), [sym_xml_doc] = STATE(1082), [sym_block_comment] = STATE(1082), [sym_preproc_line] = STATE(1082), - [aux_sym__compound_type_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(3111), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), + [aux_sym__compound_type_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(3195), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [sym__else] = ACTIONS(2409), + [sym__elif] = ACTIONS(2409), }, [1083] = { [sym_xml_doc] = STATE(1083), [sym_block_comment] = STATE(1083), [sym_preproc_line] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2966), - [sym_identifier] = ACTIONS(2964), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_POUNDnowarn] = ACTIONS(2966), - [anon_sym_POUNDr] = ACTIONS(2966), - [anon_sym_POUNDload] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2964), - [anon_sym_LBRACK_LT] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_POUNDnowarn] = ACTIONS(2854), + [anon_sym_POUNDr] = ACTIONS(2854), + [anon_sym_POUNDload] = ACTIONS(2854), + [anon_sym_open] = ACTIONS(2852), + [anon_sym_LBRACK_LT] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), }, [1084] = { [sym_xml_doc] = STATE(1084), [sym_block_comment] = STATE(1084), [sym_preproc_line] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_module] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_POUNDnowarn] = ACTIONS(2820), - [anon_sym_POUNDr] = ACTIONS(2820), - [anon_sym_POUNDload] = ACTIONS(2820), - [anon_sym_open] = ACTIONS(2818), - [anon_sym_LBRACK_LT] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_POUNDnowarn] = ACTIONS(3204), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3206), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_upcast] = ACTIONS(3206), + [anon_sym_downcast] = ACTIONS(3206), + [anon_sym_LT_AT] = ACTIONS(3206), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3206), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_fun] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3206), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3206), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3206), + [sym_unit] = ACTIONS(3206), + [aux_sym__identifier_or_op_token1] = ACTIONS(3206), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_DOT] = ACTIONS(3206), + [anon_sym_DASH_DOT] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3206), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(2780), }, [1085] = { [sym_xml_doc] = STATE(1085), [sym_block_comment] = STATE(1085), [sym_preproc_line] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2952), - [anon_sym_namespace] = ACTIONS(2952), - [anon_sym_module] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_POUNDnowarn] = ACTIONS(2954), - [anon_sym_POUNDr] = ACTIONS(2954), - [anon_sym_POUNDload] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2952), - [anon_sym_LBRACK_LT] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), + [ts_builtin_sym_end] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_POUNDnowarn] = ACTIONS(3141), + [anon_sym_POUNDr] = ACTIONS(3141), + [anon_sym_POUNDload] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3139), + [anon_sym_LBRACK_LT] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), }, [1086] = { + [sym_type_arguments] = STATE(1264), + [sym_long_identifier] = STATE(1231), [sym_xml_doc] = STATE(1086), [sym_block_comment] = STATE(1086), [sym_preproc_line] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_POUNDnowarn] = ACTIONS(2824), - [anon_sym_POUNDr] = ACTIONS(2824), - [anon_sym_POUNDload] = ACTIONS(2824), - [anon_sym_open] = ACTIONS(2822), - [anon_sym_LBRACK_LT] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(3185), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), }, [1087] = { [sym_xml_doc] = STATE(1087), [sym_block_comment] = STATE(1087), [sym_preproc_line] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_POUNDnowarn] = ACTIONS(2884), - [anon_sym_POUNDr] = ACTIONS(2884), - [anon_sym_POUNDload] = ACTIONS(2884), - [anon_sym_open] = ACTIONS(2882), - [anon_sym_LBRACK_LT] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [aux_sym_sequential_expression_repeat1] = STATE(1142), + [sym_identifier] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_POUNDnowarn] = ACTIONS(3050), + [anon_sym_POUNDr] = ACTIONS(3050), + [anon_sym_POUNDload] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3052), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, [1088] = { [sym_xml_doc] = STATE(1088), [sym_block_comment] = STATE(1088), [sym_preproc_line] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(2958), - [sym_identifier] = ACTIONS(2956), - [anon_sym_namespace] = ACTIONS(2956), - [anon_sym_module] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_POUNDnowarn] = ACTIONS(2958), - [anon_sym_POUNDr] = ACTIONS(2958), - [anon_sym_POUNDload] = ACTIONS(2958), - [anon_sym_open] = ACTIONS(2956), - [anon_sym_LBRACK_LT] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_type] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), + [anon_sym_namespace] = ACTIONS(3123), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_POUNDnowarn] = ACTIONS(3125), + [anon_sym_POUNDr] = ACTIONS(3125), + [anon_sym_POUNDload] = ACTIONS(3125), + [anon_sym_open] = ACTIONS(3123), + [anon_sym_LBRACK_LT] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), }, [1089] = { [sym_xml_doc] = STATE(1089), [sym_block_comment] = STATE(1089), [sym_preproc_line] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2886), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_POUNDnowarn] = ACTIONS(2888), - [anon_sym_POUNDr] = ACTIONS(2888), - [anon_sym_POUNDload] = ACTIONS(2888), - [anon_sym_open] = ACTIONS(2886), - [anon_sym_LBRACK_LT] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2892), + [anon_sym_namespace] = ACTIONS(2892), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_POUNDnowarn] = ACTIONS(2894), + [anon_sym_POUNDr] = ACTIONS(2894), + [anon_sym_POUNDload] = ACTIONS(2894), + [anon_sym_open] = ACTIONS(2892), + [anon_sym_LBRACK_LT] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), }, [1090] = { [sym_xml_doc] = STATE(1090), [sym_block_comment] = STATE(1090), [sym_preproc_line] = STATE(1090), - [aux_sym_sequential_expression_repeat1] = STATE(1067), - [sym_identifier] = ACTIONS(2950), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_POUNDnowarn] = ACTIONS(2948), - [anon_sym_POUNDr] = ACTIONS(2948), - [anon_sym_POUNDload] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2950), - [anon_sym_LBRACK_LT] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__dedent] = ACTIONS(2948), + [ts_builtin_sym_end] = ACTIONS(3079), + [sym_identifier] = ACTIONS(3077), + [anon_sym_namespace] = ACTIONS(3077), + [anon_sym_module] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_POUNDnowarn] = ACTIONS(3079), + [anon_sym_POUNDr] = ACTIONS(3079), + [anon_sym_POUNDload] = ACTIONS(3079), + [anon_sym_open] = ACTIONS(3077), + [anon_sym_LBRACK_LT] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_type] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), }, [1091] = { [sym_xml_doc] = STATE(1091), [sym_block_comment] = STATE(1091), [sym_preproc_line] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_POUNDnowarn] = ACTIONS(2816), - [anon_sym_POUNDr] = ACTIONS(2816), - [anon_sym_POUNDload] = ACTIONS(2816), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_POUNDnowarn] = ACTIONS(2858), + [anon_sym_POUNDr] = ACTIONS(2858), + [anon_sym_POUNDload] = ACTIONS(2858), + [anon_sym_open] = ACTIONS(2856), + [anon_sym_LBRACK_LT] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), }, [1092] = { [sym_xml_doc] = STATE(1092), [sym_block_comment] = STATE(1092), [sym_preproc_line] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_POUNDnowarn] = ACTIONS(2812), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_POUNDnowarn] = ACTIONS(2862), + [anon_sym_POUNDr] = ACTIONS(2862), + [anon_sym_POUNDload] = ACTIONS(2862), + [anon_sym_open] = ACTIONS(2860), + [anon_sym_LBRACK_LT] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), }, [1093] = { [sym_xml_doc] = STATE(1093), [sym_block_comment] = STATE(1093), [sym_preproc_line] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2890), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_POUNDnowarn] = ACTIONS(2892), - [anon_sym_POUNDr] = ACTIONS(2892), - [anon_sym_POUNDload] = ACTIONS(2892), - [anon_sym_open] = ACTIONS(2890), - [anon_sym_LBRACK_LT] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_POUNDnowarn] = ACTIONS(2910), + [anon_sym_POUNDr] = ACTIONS(2910), + [anon_sym_POUNDload] = ACTIONS(2910), + [anon_sym_open] = ACTIONS(2908), + [anon_sym_LBRACK_LT] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), }, [1094] = { [sym_xml_doc] = STATE(1094), [sym_block_comment] = STATE(1094), [sym_preproc_line] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_POUNDnowarn] = ACTIONS(2808), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_module] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_POUNDnowarn] = ACTIONS(3121), + [anon_sym_POUNDr] = ACTIONS(3121), + [anon_sym_POUNDload] = ACTIONS(3121), + [anon_sym_open] = ACTIONS(3119), + [anon_sym_LBRACK_LT] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), }, [1095] = { + [sym_type_arguments] = STATE(1264), + [sym_long_identifier] = STATE(1231), [sym_xml_doc] = STATE(1095), [sym_block_comment] = STATE(1095), [sym_preproc_line] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_POUNDnowarn] = ACTIONS(2804), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [anon_sym_open] = ACTIONS(2802), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(3185), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), }, [1096] = { [sym_xml_doc] = STATE(1096), [sym_block_comment] = STATE(1096), [sym_preproc_line] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_POUNDnowarn] = ACTIONS(3028), - [anon_sym_POUNDr] = ACTIONS(3028), - [anon_sym_POUNDload] = ACTIONS(3028), - [anon_sym_open] = ACTIONS(3026), - [anon_sym_LBRACK_LT] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3127), + [anon_sym_namespace] = ACTIONS(3127), + [anon_sym_module] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_POUNDnowarn] = ACTIONS(3129), + [anon_sym_POUNDr] = ACTIONS(3129), + [anon_sym_POUNDload] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3127), + [anon_sym_LBRACK_LT] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), }, [1097] = { [sym_xml_doc] = STATE(1097), [sym_block_comment] = STATE(1097), [sym_preproc_line] = STATE(1097), - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2934), - [anon_sym_namespace] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_POUNDnowarn] = ACTIONS(2936), - [anon_sym_POUNDr] = ACTIONS(2936), - [anon_sym_POUNDload] = ACTIONS(2936), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_LBRACK_LT] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), + [ts_builtin_sym_end] = ACTIONS(3033), + [sym_identifier] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3031), + [anon_sym_module] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_POUNDnowarn] = ACTIONS(3033), + [anon_sym_POUNDr] = ACTIONS(3033), + [anon_sym_POUNDload] = ACTIONS(3033), + [anon_sym_open] = ACTIONS(3031), + [anon_sym_LBRACK_LT] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), }, [1098] = { [sym_xml_doc] = STATE(1098), [sym_block_comment] = STATE(1098), [sym_preproc_line] = STATE(1098), + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_module] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_POUNDnowarn] = ACTIONS(2972), + [anon_sym_POUNDr] = ACTIONS(2972), + [anon_sym_POUNDload] = ACTIONS(2972), + [anon_sym_open] = ACTIONS(2970), + [anon_sym_LBRACK_LT] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + }, + [1099] = { + [sym_xml_doc] = STATE(1099), + [sym_block_comment] = STATE(1099), + [sym_preproc_line] = STATE(1099), + [ts_builtin_sym_end] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_POUNDnowarn] = ACTIONS(3103), + [anon_sym_POUNDr] = ACTIONS(3103), + [anon_sym_POUNDload] = ACTIONS(3103), + [anon_sym_open] = ACTIONS(3101), + [anon_sym_LBRACK_LT] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + }, + [1100] = { + [sym_xml_doc] = STATE(1100), + [sym_block_comment] = STATE(1100), + [sym_preproc_line] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_POUNDnowarn] = ACTIONS(3157), + [anon_sym_POUNDr] = ACTIONS(3157), + [anon_sym_POUNDload] = ACTIONS(3157), + [anon_sym_open] = ACTIONS(3155), + [anon_sym_LBRACK_LT] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + }, + [1101] = { + [sym_xml_doc] = STATE(1101), + [sym_block_comment] = STATE(1101), + [sym_preproc_line] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_POUNDnowarn] = ACTIONS(2874), + [anon_sym_POUNDr] = ACTIONS(2874), + [anon_sym_POUNDload] = ACTIONS(2874), + [anon_sym_open] = ACTIONS(2872), + [anon_sym_LBRACK_LT] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + }, + [1102] = { + [sym_xml_doc] = STATE(1102), + [sym_block_comment] = STATE(1102), + [sym_preproc_line] = STATE(1102), + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_POUNDnowarn] = ACTIONS(3161), + [anon_sym_POUNDr] = ACTIONS(3161), + [anon_sym_POUNDload] = ACTIONS(3161), + [anon_sym_open] = ACTIONS(3159), + [anon_sym_LBRACK_LT] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + }, + [1103] = { + [sym_xml_doc] = STATE(1103), + [sym_block_comment] = STATE(1103), + [sym_preproc_line] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3091), + [anon_sym_module] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_POUNDnowarn] = ACTIONS(3093), + [anon_sym_POUNDr] = ACTIONS(3093), + [anon_sym_POUNDload] = ACTIONS(3093), + [anon_sym_open] = ACTIONS(3091), + [anon_sym_LBRACK_LT] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + }, + [1104] = { + [sym_xml_doc] = STATE(1104), + [sym_block_comment] = STATE(1104), + [sym_preproc_line] = STATE(1104), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_POUNDnowarn] = ACTIONS(2878), + [anon_sym_POUNDr] = ACTIONS(2878), + [anon_sym_POUNDload] = ACTIONS(2878), + [anon_sym_open] = ACTIONS(2876), + [anon_sym_LBRACK_LT] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + }, + [1105] = { + [sym_xml_doc] = STATE(1105), + [sym_block_comment] = STATE(1105), + [sym_preproc_line] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(2780), + [sym_identifier] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_module] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_POUNDnowarn] = ACTIONS(2780), + [anon_sym_POUNDr] = ACTIONS(2780), + [anon_sym_POUNDload] = ACTIONS(2780), + [anon_sym_open] = ACTIONS(3113), + [anon_sym_LBRACK_LT] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_type] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + }, + [1106] = { + [sym_xml_doc] = STATE(1106), + [sym_block_comment] = STATE(1106), + [sym_preproc_line] = STATE(1106), + [ts_builtin_sym_end] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3131), + [anon_sym_namespace] = ACTIONS(3131), + [anon_sym_module] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_POUNDnowarn] = ACTIONS(3133), + [anon_sym_POUNDr] = ACTIONS(3133), + [anon_sym_POUNDload] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3131), + [anon_sym_LBRACK_LT] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_type] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + }, + [1107] = { + [sym_xml_doc] = STATE(1107), + [sym_block_comment] = STATE(1107), + [sym_preproc_line] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_POUNDnowarn] = ACTIONS(2882), + [anon_sym_POUNDr] = ACTIONS(2882), + [anon_sym_POUNDload] = ACTIONS(2882), + [anon_sym_open] = ACTIONS(2880), + [anon_sym_LBRACK_LT] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [1108] = { + [sym_type_arguments] = STATE(1264), + [sym_long_identifier] = STATE(1231), + [sym_xml_doc] = STATE(1108), + [sym_block_comment] = STATE(1108), + [sym_preproc_line] = STATE(1108), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(3185), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + }, + [1109] = { + [sym_xml_doc] = STATE(1109), + [sym_block_comment] = STATE(1109), + [sym_preproc_line] = STATE(1109), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_POUNDnowarn] = ACTIONS(2886), + [anon_sym_POUNDr] = ACTIONS(2886), + [anon_sym_POUNDload] = ACTIONS(2886), + [anon_sym_open] = ACTIONS(2884), + [anon_sym_LBRACK_LT] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + }, + [1110] = { + [sym_xml_doc] = STATE(1110), + [sym_block_comment] = STATE(1110), + [sym_preproc_line] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3135), + [anon_sym_namespace] = ACTIONS(3135), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_POUNDnowarn] = ACTIONS(3137), + [anon_sym_POUNDr] = ACTIONS(3137), + [anon_sym_POUNDload] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3135), + [anon_sym_LBRACK_LT] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + }, + [1111] = { + [sym_xml_doc] = STATE(1111), + [sym_block_comment] = STATE(1111), + [sym_preproc_line] = STATE(1111), + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_POUNDnowarn] = ACTIONS(2914), + [anon_sym_POUNDr] = ACTIONS(2914), + [anon_sym_POUNDload] = ACTIONS(2914), + [anon_sym_open] = ACTIONS(2912), + [anon_sym_LBRACK_LT] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), + }, + [1112] = { + [sym_xml_doc] = STATE(1112), + [sym_block_comment] = STATE(1112), + [sym_preproc_line] = STATE(1112), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_POUNDnowarn] = ACTIONS(2906), + [anon_sym_POUNDr] = ACTIONS(2906), + [anon_sym_POUNDload] = ACTIONS(2906), + [anon_sym_open] = ACTIONS(2904), + [anon_sym_LBRACK_LT] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), + }, + [1113] = { + [sym_xml_doc] = STATE(1113), + [sym_block_comment] = STATE(1113), + [sym_preproc_line] = STATE(1113), [ts_builtin_sym_end] = ACTIONS(2932), [sym_identifier] = ACTIONS(2930), [anon_sym_namespace] = ACTIONS(2930), @@ -163943,6493 +162560,3280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), }, - [1099] = { - [sym_xml_doc] = STATE(1099), - [sym_block_comment] = STATE(1099), - [sym_preproc_line] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3048), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_POUNDnowarn] = ACTIONS(3050), - [anon_sym_POUNDr] = ACTIONS(3050), - [anon_sym_POUNDload] = ACTIONS(3050), - [anon_sym_open] = ACTIONS(3048), - [anon_sym_LBRACK_LT] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - }, - [1100] = { - [sym_xml_doc] = STATE(1100), - [sym_block_comment] = STATE(1100), - [sym_preproc_line] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(2986), - [sym_identifier] = ACTIONS(2984), - [anon_sym_namespace] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_POUNDnowarn] = ACTIONS(2986), - [anon_sym_POUNDr] = ACTIONS(2986), - [anon_sym_POUNDload] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2984), - [anon_sym_LBRACK_LT] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - }, - [1101] = { - [sym_xml_doc] = STATE(1101), - [sym_block_comment] = STATE(1101), - [sym_preproc_line] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1102] = { - [sym_type_arguments] = STATE(1236), - [sym_long_identifier] = STATE(1214), - [sym_xml_doc] = STATE(1102), - [sym_block_comment] = STATE(1102), - [sym_preproc_line] = STATE(1102), - [aux_sym__compound_type_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(3111), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - }, - [1103] = { - [sym_xml_doc] = STATE(1103), - [sym_block_comment] = STATE(1103), - [sym_preproc_line] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - }, - [1104] = { - [sym_xml_doc] = STATE(1104), - [sym_block_comment] = STATE(1104), - [sym_preproc_line] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(3030), - [anon_sym_namespace] = ACTIONS(3030), - [anon_sym_module] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_POUNDnowarn] = ACTIONS(2707), - [anon_sym_POUNDr] = ACTIONS(2707), - [anon_sym_POUNDload] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(3030), - [anon_sym_LBRACK_LT] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_type] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - }, - [1105] = { - [sym_xml_doc] = STATE(1105), - [sym_block_comment] = STATE(1105), - [sym_preproc_line] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(2982), - [sym_identifier] = ACTIONS(2980), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_POUNDnowarn] = ACTIONS(2982), - [anon_sym_POUNDr] = ACTIONS(2982), - [anon_sym_POUNDload] = ACTIONS(2982), - [anon_sym_open] = ACTIONS(2980), - [anon_sym_LBRACK_LT] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), + [1114] = { + [sym_xml_doc] = STATE(1114), + [sym_block_comment] = STATE(1114), + [sym_preproc_line] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3039), + [anon_sym_namespace] = ACTIONS(3039), + [anon_sym_module] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_POUNDnowarn] = ACTIONS(3041), + [anon_sym_POUNDr] = ACTIONS(3041), + [anon_sym_POUNDload] = ACTIONS(3041), + [anon_sym_open] = ACTIONS(3039), + [anon_sym_LBRACK_LT] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_type] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), }, - [1106] = { - [sym_xml_doc] = STATE(1106), - [sym_block_comment] = STATE(1106), - [sym_preproc_line] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(3038), - [sym_identifier] = ACTIONS(3036), - [anon_sym_namespace] = ACTIONS(3036), - [anon_sym_module] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_POUNDnowarn] = ACTIONS(3038), - [anon_sym_POUNDr] = ACTIONS(3038), - [anon_sym_POUNDload] = ACTIONS(3038), - [anon_sym_open] = ACTIONS(3036), - [anon_sym_LBRACK_LT] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), + [1115] = { + [sym_xml_doc] = STATE(1115), + [sym_block_comment] = STATE(1115), + [sym_preproc_line] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3023), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_POUNDnowarn] = ACTIONS(3025), + [anon_sym_POUNDr] = ACTIONS(3025), + [anon_sym_POUNDload] = ACTIONS(3025), + [anon_sym_open] = ACTIONS(3023), + [anon_sym_LBRACK_LT] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), }, - [1107] = { - [sym_xml_doc] = STATE(1107), - [sym_block_comment] = STATE(1107), - [sym_preproc_line] = STATE(1107), - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(2998), - [anon_sym_namespace] = ACTIONS(2998), - [anon_sym_module] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_POUNDnowarn] = ACTIONS(3000), - [anon_sym_POUNDr] = ACTIONS(3000), - [anon_sym_POUNDload] = ACTIONS(3000), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_LBRACK_LT] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_type] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - }, - [1108] = { - [sym_xml_doc] = STATE(1108), - [sym_block_comment] = STATE(1108), - [sym_preproc_line] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_module] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_POUNDnowarn] = ACTIONS(3089), - [anon_sym_POUNDr] = ACTIONS(3089), - [anon_sym_POUNDload] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3087), - [anon_sym_LBRACK_LT] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - }, - [1109] = { - [sym_xml_doc] = STATE(1109), - [sym_block_comment] = STATE(1109), - [sym_preproc_line] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3083), - [anon_sym_namespace] = ACTIONS(3083), - [anon_sym_module] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_POUNDnowarn] = ACTIONS(3085), - [anon_sym_POUNDr] = ACTIONS(3085), - [anon_sym_POUNDload] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3083), - [anon_sym_LBRACK_LT] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_type] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - }, - [1110] = { - [sym_xml_doc] = STATE(1110), - [sym_block_comment] = STATE(1110), - [sym_preproc_line] = STATE(1110), - [aux_sym_sequential_expression_repeat1] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3076), - [anon_sym_module] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_POUNDnowarn] = ACTIONS(3078), - [anon_sym_POUNDr] = ACTIONS(3078), - [anon_sym_POUNDload] = ACTIONS(3078), - [anon_sym_open] = ACTIONS(3076), - [anon_sym_LBRACK_LT] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_type] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3128), - }, - [1111] = { - [sym_xml_doc] = STATE(1111), - [sym_block_comment] = STATE(1111), - [sym_preproc_line] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_POUNDnowarn] = ACTIONS(3074), - [anon_sym_POUNDr] = ACTIONS(3074), - [anon_sym_POUNDload] = ACTIONS(3074), - [anon_sym_open] = ACTIONS(3072), - [anon_sym_LBRACK_LT] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - }, - [1112] = { - [sym_xml_doc] = STATE(1112), - [sym_block_comment] = STATE(1112), - [sym_preproc_line] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2926), - [anon_sym_namespace] = ACTIONS(2926), - [anon_sym_module] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_POUNDnowarn] = ACTIONS(2928), - [anon_sym_POUNDr] = ACTIONS(2928), - [anon_sym_POUNDload] = ACTIONS(2928), - [anon_sym_open] = ACTIONS(2926), - [anon_sym_LBRACK_LT] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - }, - [1113] = { - [sym_xml_doc] = STATE(1113), - [sym_block_comment] = STATE(1113), - [sym_preproc_line] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - }, - [1114] = { - [sym_xml_doc] = STATE(1114), - [sym_block_comment] = STATE(1114), - [sym_preproc_line] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2922), - [anon_sym_namespace] = ACTIONS(2922), - [anon_sym_module] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_POUNDnowarn] = ACTIONS(2924), - [anon_sym_POUNDr] = ACTIONS(2924), - [anon_sym_POUNDload] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2922), - [anon_sym_LBRACK_LT] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - }, - [1115] = { - [sym_xml_doc] = STATE(1115), - [sym_block_comment] = STATE(1115), - [sym_preproc_line] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_POUNDnowarn] = ACTIONS(2896), - [anon_sym_POUNDr] = ACTIONS(2896), - [anon_sym_POUNDload] = ACTIONS(2896), - [anon_sym_open] = ACTIONS(2894), - [anon_sym_LBRACK_LT] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - }, - [1116] = { - [sym_xml_doc] = STATE(1116), - [sym_block_comment] = STATE(1116), - [sym_preproc_line] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3040), - [anon_sym_namespace] = ACTIONS(3040), - [anon_sym_module] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_POUNDnowarn] = ACTIONS(3042), - [anon_sym_POUNDr] = ACTIONS(3042), - [anon_sym_POUNDload] = ACTIONS(3042), - [anon_sym_open] = ACTIONS(3040), - [anon_sym_LBRACK_LT] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_type] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), + [1116] = { + [sym_xml_doc] = STATE(1116), + [sym_block_comment] = STATE(1116), + [sym_preproc_line] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2978), + [anon_sym_namespace] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_POUNDnowarn] = ACTIONS(2980), + [anon_sym_POUNDr] = ACTIONS(2980), + [anon_sym_POUNDload] = ACTIONS(2980), + [anon_sym_open] = ACTIONS(2978), + [anon_sym_LBRACK_LT] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), }, [1117] = { [sym_xml_doc] = STATE(1117), [sym_block_comment] = STATE(1117), [sym_preproc_line] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_POUNDnowarn] = ACTIONS(2225), - [anon_sym_POUNDr] = ACTIONS(2225), - [anon_sym_POUNDload] = ACTIONS(2225), - [anon_sym_open] = ACTIONS(2223), - [anon_sym_LBRACK_LT] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2934), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_POUNDnowarn] = ACTIONS(2936), + [anon_sym_POUNDr] = ACTIONS(2936), + [anon_sym_POUNDload] = ACTIONS(2936), + [anon_sym_open] = ACTIONS(2934), + [anon_sym_LBRACK_LT] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), }, [1118] = { [sym_xml_doc] = STATE(1118), [sym_block_comment] = STATE(1118), [sym_preproc_line] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2898), - [anon_sym_namespace] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_POUNDnowarn] = ACTIONS(2900), - [anon_sym_POUNDr] = ACTIONS(2900), - [anon_sym_POUNDload] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2898), - [anon_sym_LBRACK_LT] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_identifier] = ACTIONS(3081), + [anon_sym_namespace] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_POUNDnowarn] = ACTIONS(3083), + [anon_sym_POUNDr] = ACTIONS(3083), + [anon_sym_POUNDload] = ACTIONS(3083), + [anon_sym_open] = ACTIONS(3081), + [anon_sym_LBRACK_LT] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), }, [1119] = { [sym_xml_doc] = STATE(1119), [sym_block_comment] = STATE(1119), [sym_preproc_line] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_module] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_POUNDnowarn] = ACTIONS(2844), - [anon_sym_POUNDr] = ACTIONS(2844), - [anon_sym_POUNDload] = ACTIONS(2844), - [anon_sym_open] = ACTIONS(2842), - [anon_sym_LBRACK_LT] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3062), + [anon_sym_namespace] = ACTIONS(3062), + [anon_sym_module] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_POUNDnowarn] = ACTIONS(3064), + [anon_sym_POUNDr] = ACTIONS(3064), + [anon_sym_POUNDload] = ACTIONS(3064), + [anon_sym_open] = ACTIONS(3062), + [anon_sym_LBRACK_LT] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, [1120] = { [sym_xml_doc] = STATE(1120), [sym_block_comment] = STATE(1120), [sym_preproc_line] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2776), - [anon_sym_namespace] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_POUNDnowarn] = ACTIONS(2778), - [anon_sym_POUNDr] = ACTIONS(2778), - [anon_sym_POUNDload] = ACTIONS(2778), - [anon_sym_open] = ACTIONS(2776), - [anon_sym_LBRACK_LT] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2896), + [anon_sym_namespace] = ACTIONS(2896), + [anon_sym_module] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_POUNDnowarn] = ACTIONS(2898), + [anon_sym_POUNDr] = ACTIONS(2898), + [anon_sym_POUNDload] = ACTIONS(2898), + [anon_sym_open] = ACTIONS(2896), + [anon_sym_LBRACK_LT] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), }, [1121] = { [sym_xml_doc] = STATE(1121), [sym_block_comment] = STATE(1121), [sym_preproc_line] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3034), - [sym_identifier] = ACTIONS(3032), - [anon_sym_namespace] = ACTIONS(3032), - [anon_sym_module] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_POUNDnowarn] = ACTIONS(3034), - [anon_sym_POUNDr] = ACTIONS(3034), - [anon_sym_POUNDload] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3032), - [anon_sym_LBRACK_LT] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_module] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_POUNDnowarn] = ACTIONS(3075), + [anon_sym_POUNDr] = ACTIONS(3075), + [anon_sym_POUNDload] = ACTIONS(3075), + [anon_sym_open] = ACTIONS(3073), + [anon_sym_LBRACK_LT] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_type] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), }, [1122] = { [sym_xml_doc] = STATE(1122), [sym_block_comment] = STATE(1122), [sym_preproc_line] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(2970), - [sym_identifier] = ACTIONS(2968), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_POUNDnowarn] = ACTIONS(2970), - [anon_sym_POUNDr] = ACTIONS(2970), - [anon_sym_POUNDload] = ACTIONS(2970), - [anon_sym_open] = ACTIONS(2968), - [anon_sym_LBRACK_LT] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [1123] = { [sym_xml_doc] = STATE(1123), [sym_block_comment] = STATE(1123), [sym_preproc_line] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2994), - [sym_identifier] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_POUNDnowarn] = ACTIONS(2994), - [anon_sym_POUNDr] = ACTIONS(2994), - [anon_sym_POUNDload] = ACTIONS(2994), - [anon_sym_open] = ACTIONS(2992), - [anon_sym_LBRACK_LT] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2974), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_POUNDnowarn] = ACTIONS(2976), + [anon_sym_POUNDr] = ACTIONS(2976), + [anon_sym_POUNDload] = ACTIONS(2976), + [anon_sym_open] = ACTIONS(2974), + [anon_sym_LBRACK_LT] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), }, [1124] = { [sym_xml_doc] = STATE(1124), [sym_block_comment] = STATE(1124), [sym_preproc_line] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2988), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_POUNDnowarn] = ACTIONS(2990), - [anon_sym_POUNDr] = ACTIONS(2990), - [anon_sym_POUNDload] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2988), - [anon_sym_LBRACK_LT] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2988), - [aux_sym__identifier_or_op_token1] = ACTIONS(2988), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_sequential_expression_repeat1] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_POUNDnowarn] = ACTIONS(3050), + [anon_sym_POUNDr] = ACTIONS(3050), + [anon_sym_POUNDload] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3052), + [anon_sym_LBRACK_LT] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, [1125] = { [sym_xml_doc] = STATE(1125), [sym_block_comment] = STATE(1125), [sym_preproc_line] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_namespace] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_POUNDnowarn] = ACTIONS(3131), - [anon_sym_POUNDr] = ACTIONS(3131), - [anon_sym_POUNDload] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_LBRACK_LT] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_let_BANG] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_return_BANG] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3133), - [anon_sym_yield_BANG] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_upcast] = ACTIONS(3133), - [anon_sym_downcast] = ACTIONS(3133), - [anon_sym_LT_AT] = ACTIONS(3133), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3133), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_match_BANG] = ACTIONS(3131), - [anon_sym_function] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3133), - [anon_sym_use_BANG] = ACTIONS(3131), - [anon_sym_do_BANG] = ACTIONS(3131), - [anon_sym_begin] = ACTIONS(3133), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [anon_sym_AT_DQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [sym_bool] = ACTIONS(3133), - [sym_unit] = ACTIONS(3133), - [aux_sym__identifier_or_op_token1] = ACTIONS(3133), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3133), - [sym_xint] = ACTIONS(3131), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3131), - [sym__newline] = ACTIONS(2707), + [ts_builtin_sym_end] = ACTIONS(3071), + [sym_identifier] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_POUNDnowarn] = ACTIONS(3071), + [anon_sym_POUNDr] = ACTIONS(3071), + [anon_sym_POUNDload] = ACTIONS(3071), + [anon_sym_open] = ACTIONS(3069), + [anon_sym_LBRACK_LT] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), }, [1126] = { [sym_xml_doc] = STATE(1126), [sym_block_comment] = STATE(1126), [sym_preproc_line] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2978), - [sym_identifier] = ACTIONS(2976), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_POUNDnowarn] = ACTIONS(2978), - [anon_sym_POUNDr] = ACTIONS(2978), - [anon_sym_POUNDload] = ACTIONS(2978), - [anon_sym_open] = ACTIONS(2976), - [anon_sym_LBRACK_LT] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3058), + [anon_sym_namespace] = ACTIONS(3058), + [anon_sym_module] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_POUNDnowarn] = ACTIONS(3060), + [anon_sym_POUNDr] = ACTIONS(3060), + [anon_sym_POUNDload] = ACTIONS(3060), + [anon_sym_open] = ACTIONS(3058), + [anon_sym_LBRACK_LT] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), }, [1127] = { [sym_xml_doc] = STATE(1127), [sym_block_comment] = STATE(1127), [sym_preproc_line] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2974), - [sym_identifier] = ACTIONS(2972), - [anon_sym_namespace] = ACTIONS(2972), - [anon_sym_module] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_POUNDnowarn] = ACTIONS(2974), - [anon_sym_POUNDr] = ACTIONS(2974), - [anon_sym_POUNDload] = ACTIONS(2974), - [anon_sym_open] = ACTIONS(2972), - [anon_sym_LBRACK_LT] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_module] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_POUNDnowarn] = ACTIONS(3177), + [anon_sym_POUNDr] = ACTIONS(3177), + [anon_sym_POUNDload] = ACTIONS(3177), + [anon_sym_open] = ACTIONS(3175), + [anon_sym_LBRACK_LT] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), }, [1128] = { [sym_xml_doc] = STATE(1128), [sym_block_comment] = STATE(1128), [sym_preproc_line] = STATE(1128), - [aux_sym_long_identifier_repeat1] = STATE(1140), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), - [sym__else] = ACTIONS(2475), - [sym__elif] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [1129] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), [sym_xml_doc] = STATE(1129), [sym_block_comment] = STATE(1129), [sym_preproc_line] = STATE(1129), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_POUNDnowarn] = ACTIONS(3087), + [anon_sym_POUNDr] = ACTIONS(3087), + [anon_sym_POUNDload] = ACTIONS(3087), + [anon_sym_open] = ACTIONS(3085), + [anon_sym_LBRACK_LT] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), }, [1130] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), [sym_xml_doc] = STATE(1130), [sym_block_comment] = STATE(1130), [sym_preproc_line] = STATE(1130), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_module] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_POUNDnowarn] = ACTIONS(2850), + [anon_sym_POUNDr] = ACTIONS(2850), + [anon_sym_POUNDload] = ACTIONS(2850), + [anon_sym_open] = ACTIONS(2848), + [anon_sym_LBRACK_LT] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), }, [1131] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), [sym_xml_doc] = STATE(1131), [sym_block_comment] = STATE(1131), [sym_preproc_line] = STATE(1131), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_module] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_POUNDnowarn] = ACTIONS(2999), + [anon_sym_POUNDr] = ACTIONS(2999), + [anon_sym_POUNDload] = ACTIONS(2999), + [anon_sym_open] = ACTIONS(2997), + [anon_sym_LBRACK_LT] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), }, [1132] = { [sym_xml_doc] = STATE(1132), [sym_block_comment] = STATE(1132), [sym_preproc_line] = STATE(1132), - [aux_sym_long_identifier_repeat1] = STATE(1150), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_POUNDnowarn] = ACTIONS(3173), + [anon_sym_POUNDr] = ACTIONS(3173), + [anon_sym_POUNDload] = ACTIONS(3173), + [anon_sym_open] = ACTIONS(3171), + [anon_sym_LBRACK_LT] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), }, [1133] = { - [sym_type_arguments] = STATE(1291), - [sym_long_identifier] = STATE(1280), [sym_xml_doc] = STATE(1133), [sym_block_comment] = STATE(1133), [sym_preproc_line] = STATE(1133), - [aux_sym__compound_type_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(3155), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - [sym__then] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_POUNDnowarn] = ACTIONS(3097), + [anon_sym_POUNDr] = ACTIONS(3097), + [anon_sym_POUNDload] = ACTIONS(3097), + [anon_sym_open] = ACTIONS(3095), + [anon_sym_LBRACK_LT] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), }, [1134] = { [sym_xml_doc] = STATE(1134), [sym_block_comment] = STATE(1134), [sym_preproc_line] = STATE(1134), - [aux_sym__compound_type_repeat1] = STATE(1144), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - [sym__dedent] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_POUNDnowarn] = ACTIONS(3169), + [anon_sym_POUNDr] = ACTIONS(3169), + [anon_sym_POUNDload] = ACTIONS(3169), + [anon_sym_open] = ACTIONS(3167), + [anon_sym_LBRACK_LT] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), }, [1135] = { [sym_xml_doc] = STATE(1135), [sym_block_comment] = STATE(1135), [sym_preproc_line] = STATE(1135), - [aux_sym__compound_type_repeat1] = STATE(1135), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), - [sym__else] = ACTIONS(2345), - [sym__elif] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_POUNDnowarn] = ACTIONS(2902), + [anon_sym_POUNDr] = ACTIONS(2902), + [anon_sym_POUNDload] = ACTIONS(2902), + [anon_sym_open] = ACTIONS(2900), + [anon_sym_LBRACK_LT] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), }, [1136] = { [sym_xml_doc] = STATE(1136), [sym_block_comment] = STATE(1136), [sym_preproc_line] = STATE(1136), - [aux_sym__compound_type_repeat1] = STATE(1135), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - [sym__dedent] = ACTIONS(2481), - [sym__else] = ACTIONS(2481), - [sym__elif] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_module] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_POUNDnowarn] = ACTIONS(2922), + [anon_sym_POUNDr] = ACTIONS(2922), + [anon_sym_POUNDload] = ACTIONS(2922), + [anon_sym_open] = ACTIONS(2920), + [anon_sym_LBRACK_LT] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, [1137] = { [sym_xml_doc] = STATE(1137), [sym_block_comment] = STATE(1137), [sym_preproc_line] = STATE(1137), - [aux_sym_long_identifier_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3001), + [anon_sym_namespace] = ACTIONS(3001), + [anon_sym_module] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_POUNDnowarn] = ACTIONS(3003), + [anon_sym_POUNDr] = ACTIONS(3003), + [anon_sym_POUNDload] = ACTIONS(3003), + [anon_sym_open] = ACTIONS(3001), + [anon_sym_LBRACK_LT] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), }, [1138] = { [sym_xml_doc] = STATE(1138), [sym_block_comment] = STATE(1138), [sym_preproc_line] = STATE(1138), - [sym_identifier] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_POUNDnowarn] = ACTIONS(3131), - [anon_sym_POUNDr] = ACTIONS(3131), - [anon_sym_POUNDload] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_LBRACK_LT] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_let_BANG] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_return_BANG] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3133), - [anon_sym_yield_BANG] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_upcast] = ACTIONS(3133), - [anon_sym_downcast] = ACTIONS(3133), - [anon_sym_LT_AT] = ACTIONS(3133), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3133), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_match_BANG] = ACTIONS(3131), - [anon_sym_function] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3133), - [anon_sym_use_BANG] = ACTIONS(3131), - [anon_sym_do_BANG] = ACTIONS(3131), - [anon_sym_begin] = ACTIONS(3133), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [anon_sym_AT_DQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [sym_bool] = ACTIONS(3133), - [sym_unit] = ACTIONS(3133), - [aux_sym__identifier_or_op_token1] = ACTIONS(3133), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3133), - [sym_xint] = ACTIONS(3131), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3131), - [sym__newline] = ACTIONS(2707), - [sym__dedent] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3005), + [anon_sym_namespace] = ACTIONS(3005), + [anon_sym_module] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_POUNDnowarn] = ACTIONS(3007), + [anon_sym_POUNDr] = ACTIONS(3007), + [anon_sym_POUNDload] = ACTIONS(3007), + [anon_sym_open] = ACTIONS(3005), + [anon_sym_LBRACK_LT] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), }, [1139] = { [sym_xml_doc] = STATE(1139), [sym_block_comment] = STATE(1139), [sym_preproc_line] = STATE(1139), - [sym_identifier] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(3165), + [ts_builtin_sym_end] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2982), + [anon_sym_namespace] = ACTIONS(2982), + [anon_sym_module] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_POUNDnowarn] = ACTIONS(2984), + [anon_sym_POUNDr] = ACTIONS(2984), + [anon_sym_POUNDload] = ACTIONS(2984), + [anon_sym_open] = ACTIONS(2982), + [anon_sym_LBRACK_LT] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), }, [1140] = { [sym_xml_doc] = STATE(1140), [sym_block_comment] = STATE(1140), [sym_preproc_line] = STATE(1140), - [aux_sym_long_identifier_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - [sym__else] = ACTIONS(2494), - [sym__elif] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3043), + [anon_sym_namespace] = ACTIONS(3043), + [anon_sym_module] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_POUNDnowarn] = ACTIONS(3045), + [anon_sym_POUNDr] = ACTIONS(3045), + [anon_sym_POUNDload] = ACTIONS(3045), + [anon_sym_open] = ACTIONS(3043), + [anon_sym_LBRACK_LT] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), }, [1141] = { - [sym_type_arguments] = STATE(1291), - [sym_long_identifier] = STATE(1280), [sym_xml_doc] = STATE(1141), [sym_block_comment] = STATE(1141), [sym_preproc_line] = STATE(1141), - [aux_sym__compound_type_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(3155), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [sym__then] = ACTIONS(2363), + [ts_builtin_sym_end] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_module] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_POUNDnowarn] = ACTIONS(3107), + [anon_sym_POUNDr] = ACTIONS(3107), + [anon_sym_POUNDload] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3105), + [anon_sym_LBRACK_LT] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_type] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), }, [1142] = { [sym_xml_doc] = STATE(1142), [sym_block_comment] = STATE(1142), [sym_preproc_line] = STATE(1142), - [aux_sym_long_identifier_repeat1] = STATE(1140), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_sequential_expression_repeat1] = STATE(1142), + [sym_identifier] = ACTIONS(2988), + [anon_sym_module] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_POUNDnowarn] = ACTIONS(2986), + [anon_sym_POUNDr] = ACTIONS(2986), + [anon_sym_POUNDload] = ACTIONS(2986), + [anon_sym_open] = ACTIONS(2988), + [anon_sym_LBRACK_LT] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), - [sym__else] = ACTIONS(2523), - [sym__elif] = ACTIONS(2523), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3208), + [sym__dedent] = ACTIONS(2986), }, [1143] = { - [sym_type_arguments] = STATE(1291), - [sym_long_identifier] = STATE(1280), [sym_xml_doc] = STATE(1143), [sym_block_comment] = STATE(1143), [sym_preproc_line] = STATE(1143), - [aux_sym__compound_type_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(3155), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__then] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_POUNDnowarn] = ACTIONS(3165), + [anon_sym_POUNDr] = ACTIONS(3165), + [anon_sym_POUNDload] = ACTIONS(3165), + [anon_sym_open] = ACTIONS(3163), + [anon_sym_LBRACK_LT] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), }, [1144] = { [sym_xml_doc] = STATE(1144), [sym_block_comment] = STATE(1144), [sym_preproc_line] = STATE(1144), - [aux_sym__compound_type_repeat1] = STATE(1144), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_module] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_POUNDnowarn] = ACTIONS(3111), + [anon_sym_POUNDr] = ACTIONS(3111), + [anon_sym_POUNDload] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3109), + [anon_sym_LBRACK_LT] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_type] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), }, [1145] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), [sym_xml_doc] = STATE(1145), [sym_block_comment] = STATE(1145), [sym_preproc_line] = STATE(1145), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_POUNDnowarn] = ACTIONS(3029), + [anon_sym_POUNDr] = ACTIONS(3029), + [anon_sym_POUNDload] = ACTIONS(3029), + [anon_sym_open] = ACTIONS(3027), + [anon_sym_LBRACK_LT] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), }, [1146] = { - [sym_type_arguments] = STATE(1291), - [sym_long_identifier] = STATE(1280), + [sym_type_arguments] = STATE(1268), + [sym_long_identifier] = STATE(1320), [sym_xml_doc] = STATE(1146), [sym_block_comment] = STATE(1146), [sym_preproc_line] = STATE(1146), - [aux_sym__compound_type_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_COLON_QMARK] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_AT_GT] = ACTIONS(2305), - [anon_sym_LT_AT_AT] = ACTIONS(2307), - [anon_sym_AT_AT_GT] = ACTIONS(2305), - [anon_sym_COLON_GT] = ACTIONS(2305), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_DOT_LBRACK] = ACTIONS(2305), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(3155), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2307), - [aux_sym__identifier_or_op_token1] = ACTIONS(2307), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2307), - [anon_sym_DASH_DOT] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [aux_sym_infix_op_token1] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_COLON_EQ] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [sym__then] = ACTIONS(2305), + [aux_sym__compound_type_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_LT2] = ACTIONS(3217), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [sym__then] = ACTIONS(2409), }, [1147] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), [sym_xml_doc] = STATE(1147), [sym_block_comment] = STATE(1147), [sym_preproc_line] = STATE(1147), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(3221), }, [1148] = { [sym_xml_doc] = STATE(1148), [sym_block_comment] = STATE(1148), [sym_preproc_line] = STATE(1148), - [sym_identifier] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_POUNDnowarn] = ACTIONS(2632), - [anon_sym_POUNDr] = ACTIONS(2632), - [anon_sym_POUNDload] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_LBRACK_LT] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(3176), - }, - [1149] = { - [sym_xml_doc] = STATE(1149), - [sym_block_comment] = STATE(1149), - [sym_preproc_line] = STATE(1149), - [aux_sym_long_identifier_repeat1] = STATE(1150), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), - }, - [1150] = { - [sym_xml_doc] = STATE(1150), - [sym_block_comment] = STATE(1150), - [sym_preproc_line] = STATE(1150), - [aux_sym_long_identifier_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - }, - [1151] = { - [sym_type_arguments] = STATE(1291), - [sym_long_identifier] = STATE(1280), - [sym_xml_doc] = STATE(1151), - [sym_block_comment] = STATE(1151), - [sym_preproc_line] = STATE(1151), - [aux_sym__compound_type_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(2361), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2359), - [anon_sym_COLON_QMARK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_AT_GT] = ACTIONS(2361), - [anon_sym_LT_AT_AT] = ACTIONS(2359), - [anon_sym_AT_AT_GT] = ACTIONS(2361), - [anon_sym_COLON_GT] = ACTIONS(2361), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_LT_DASH] = ACTIONS(2359), - [anon_sym_DOT_LBRACK] = ACTIONS(2361), - [anon_sym_DOT] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(3155), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_or] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2359), - [aux_sym__identifier_or_op_token1] = ACTIONS(2359), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2359), - [anon_sym_DASH_DOT] = ACTIONS(2359), - [anon_sym_PERCENT] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [aux_sym_infix_op_token1] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_BANG_EQ] = ACTIONS(2361), - [anon_sym_COLON_EQ] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [sym__then] = ACTIONS(2361), - }, - [1152] = { - [sym_xml_doc] = STATE(1152), - [sym_block_comment] = STATE(1152), - [sym_preproc_line] = STATE(1152), - [aux_sym_long_identifier_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [1153] = { - [sym_type_arguments] = STATE(1264), - [sym_long_identifier] = STATE(1275), - [sym_xml_doc] = STATE(1153), - [sym_block_comment] = STATE(1153), - [sym_preproc_line] = STATE(1153), - [aux_sym__compound_type_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(2363), - [anon_sym_COLON] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_QMARK] = ACTIONS(2365), - [anon_sym_COLON_QMARK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2363), - [anon_sym_COLON_COLON] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_AT_GT] = ACTIONS(2363), - [anon_sym_LT_AT_AT] = ACTIONS(2365), - [anon_sym_AT_AT_GT] = ACTIONS(2363), - [anon_sym_COLON_GT] = ACTIONS(2363), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_LT_DASH] = ACTIONS(2365), - [anon_sym_DOT_LBRACK] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_LPAREN2] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(3143), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3145), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_or] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2365), - [aux_sym__identifier_or_op_token1] = ACTIONS(2365), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2365), - [anon_sym_DASH_DOT] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_AMP_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [aux_sym_infix_op_token1] = ACTIONS(2365), - [anon_sym_PIPE_PIPE] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2363), - [anon_sym_COLON_EQ] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - }, - [1154] = { - [sym_xml_doc] = STATE(1154), - [sym_block_comment] = STATE(1154), - [sym_preproc_line] = STATE(1154), - [aux_sym__compound_type_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__else] = ACTIONS(2345), - [sym__elif] = ACTIONS(2345), - }, - [1155] = { - [sym_xml_doc] = STATE(1155), - [sym_block_comment] = STATE(1155), - [sym_preproc_line] = STATE(1155), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3186), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [sym__dedent] = ACTIONS(2622), - [sym__else] = ACTIONS(2622), - [sym__elif] = ACTIONS(2622), - }, - [1156] = { - [sym_xml_doc] = STATE(1156), - [sym_block_comment] = STATE(1156), - [sym_preproc_line] = STATE(1156), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), - }, - [1157] = { - [sym_xml_doc] = STATE(1157), - [sym_block_comment] = STATE(1157), - [sym_preproc_line] = STATE(1157), - [aux_sym_long_identifier_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1158] = { - [sym_type_arguments] = STATE(794), - [sym_long_identifier] = STATE(773), - [sym_xml_doc] = STATE(1158), - [sym_block_comment] = STATE(1158), - [sym_preproc_line] = STATE(1158), - [aux_sym__compound_type_repeat1] = STATE(759), - [sym_identifier] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(2357), - [anon_sym_COLON] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_BANG] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2355), - [anon_sym_QMARK] = ACTIONS(2355), - [anon_sym_COLON_QMARK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACK_PIPE] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_LBRACE_PIPE] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_return_BANG] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_yield_BANG] = ACTIONS(2357), - [anon_sym_lazy] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_upcast] = ACTIONS(2355), - [anon_sym_downcast] = ACTIONS(2355), - [anon_sym_LT_AT] = ACTIONS(2355), - [anon_sym_AT_GT] = ACTIONS(2357), - [anon_sym_LT_AT_AT] = ACTIONS(2355), - [anon_sym_AT_AT_GT] = ACTIONS(2357), - [anon_sym_COLON_GT] = ACTIONS(2357), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_fun] = ACTIONS(2355), - [anon_sym_DASH_GT] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_match_BANG] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2355), - [anon_sym_LT_DASH] = ACTIONS(2355), - [anon_sym_DOT_LBRACK] = ACTIONS(2357), - [anon_sym_DOT] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_use_BANG] = ACTIONS(2357), - [anon_sym_do_BANG] = ACTIONS(2357), - [anon_sym_begin] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2315), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_or] = ACTIONS(2355), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_AT_DQUOTE] = ACTIONS(2357), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [sym_bool] = ACTIONS(2355), - [sym_unit] = ACTIONS(2355), - [aux_sym__identifier_or_op_token1] = ACTIONS(2355), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS_DOT] = ACTIONS(2355), - [anon_sym_DASH_DOT] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2357), - [aux_sym_infix_op_token1] = ACTIONS(2355), - [anon_sym_PIPE_PIPE] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2357), - [anon_sym_COLON_EQ] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2357), - [sym_int] = ACTIONS(2355), - [sym_xint] = ACTIONS(2357), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2357), - [sym__newline] = ACTIONS(2357), - }, - [1159] = { - [sym_xml_doc] = STATE(1159), - [sym_block_comment] = STATE(1159), - [sym_preproc_line] = STATE(1159), - [aux_sym_long_identifier_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - }, - [1160] = { - [sym_xml_doc] = STATE(1160), - [sym_block_comment] = STATE(1160), - [sym_preproc_line] = STATE(1160), - [aux_sym__compound_type_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - }, - [1161] = { - [sym_xml_doc] = STATE(1161), - [sym_block_comment] = STATE(1161), - [sym_preproc_line] = STATE(1161), - [aux_sym_long_identifier_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - }, - [1162] = { - [sym_xml_doc] = STATE(1162), - [sym_block_comment] = STATE(1162), - [sym_preproc_line] = STATE(1162), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [1163] = { - [sym_xml_doc] = STATE(1163), - [sym_block_comment] = STATE(1163), - [sym_preproc_line] = STATE(1163), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [1164] = { - [sym_xml_doc] = STATE(1164), - [sym_block_comment] = STATE(1164), - [sym_preproc_line] = STATE(1164), - [aux_sym_long_identifier_repeat1] = STATE(1164), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), - }, - [1165] = { - [sym_xml_doc] = STATE(1165), - [sym_block_comment] = STATE(1165), - [sym_preproc_line] = STATE(1165), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_as] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - [sym__dedent] = ACTIONS(2569), - }, - [1166] = { - [sym_xml_doc] = STATE(1166), - [sym_block_comment] = STATE(1166), - [sym_preproc_line] = STATE(1166), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_as] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - [sym__dedent] = ACTIONS(2585), - }, - [1167] = { - [sym_xml_doc] = STATE(1167), - [sym_block_comment] = STATE(1167), - [sym_preproc_line] = STATE(1167), + [aux_sym__compound_type_repeat1] = STATE(1163), [sym_identifier] = ACTIONS(2587), [anon_sym_EQ] = ACTIONS(2589), [anon_sym_COLON] = ACTIONS(2587), @@ -170440,7 +165844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2587), [anon_sym_QMARK] = ACTIONS(2587), [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_as] = ACTIONS(2587), [anon_sym_LPAREN] = ACTIONS(2587), [anon_sym_COMMA] = ACTIONS(2589), [anon_sym_COLON_COLON] = ACTIONS(2589), @@ -170449,7 +165852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2589), [anon_sym_LBRACE] = ACTIONS(2587), [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), [anon_sym_new] = ACTIONS(2587), [anon_sym_return_BANG] = ACTIONS(2589), [anon_sym_yield] = ACTIONS(2587), @@ -170482,7 +165884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2956), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -170512,112 +165914,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), [sym_int] = ACTIONS(2587), [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), [sym__newline] = ACTIONS(2589), [sym__dedent] = ACTIONS(2589), + [sym__else] = ACTIONS(2589), + [sym__elif] = ACTIONS(2589), }, - [1168] = { - [sym_xml_doc] = STATE(1168), - [sym_block_comment] = STATE(1168), - [sym_preproc_line] = STATE(1168), - [aux_sym__compound_type_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), + [1149] = { + [sym_xml_doc] = STATE(1149), + [sym_block_comment] = STATE(1149), + [sym_preproc_line] = STATE(1149), + [aux_sym_long_identifier_repeat1] = STATE(1170), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_as] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, - [1169] = { - [sym_xml_doc] = STATE(1169), - [sym_block_comment] = STATE(1169), - [sym_preproc_line] = STATE(1169), + [1150] = { + [sym_type_arguments] = STATE(1268), + [sym_long_identifier] = STATE(1320), + [sym_xml_doc] = STATE(1150), + [sym_block_comment] = STATE(1150), + [sym_preproc_line] = STATE(1150), + [aux_sym__compound_type_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_LT2] = ACTIONS(3217), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [sym__then] = ACTIONS(2361), + }, + [1151] = { + [sym_xml_doc] = STATE(1151), + [sym_block_comment] = STATE(1151), + [sym_preproc_line] = STATE(1151), + [aux_sym__compound_type_repeat1] = STATE(1168), [sym_identifier] = ACTIONS(2587), [anon_sym_EQ] = ACTIONS(2589), [anon_sym_COLON] = ACTIONS(2587), @@ -170628,6 +166129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2587), [anon_sym_QMARK] = ACTIONS(2587), [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), [anon_sym_LPAREN] = ACTIONS(2587), [anon_sym_COMMA] = ACTIONS(2589), [anon_sym_COLON_COLON] = ACTIONS(2589), @@ -170636,6 +166138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2589), [anon_sym_LBRACE] = ACTIONS(2587), [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), [anon_sym_new] = ACTIONS(2587), [anon_sym_return_BANG] = ACTIONS(2589), [anon_sym_yield] = ACTIONS(2587), @@ -170668,7 +166171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(3017), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -170698,5909 +166201,7824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), [sym_int] = ACTIONS(2587), [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), [sym__newline] = ACTIONS(2589), [sym__dedent] = ACTIONS(2589), - [sym__else] = ACTIONS(2589), - [sym__elif] = ACTIONS(2589), + }, + [1152] = { + [sym_type_arguments] = STATE(1268), + [sym_long_identifier] = STATE(1320), + [sym_xml_doc] = STATE(1152), + [sym_block_comment] = STATE(1152), + [sym_preproc_line] = STATE(1152), + [aux_sym__compound_type_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_LT2] = ACTIONS(3217), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__then] = ACTIONS(2321), + }, + [1153] = { + [sym_xml_doc] = STATE(1153), + [sym_block_comment] = STATE(1153), + [sym_preproc_line] = STATE(1153), + [aux_sym_long_identifier_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_as] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_AT_GT] = ACTIONS(2523), + [anon_sym_LT_AT_AT] = ACTIONS(2517), + [anon_sym_AT_AT_GT] = ACTIONS(2523), + [anon_sym_COLON_GT] = ACTIONS(2523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), + [anon_sym_DOT_LBRACK] = ACTIONS(2523), + [anon_sym_DOT] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_COLON_EQ] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__newline] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2523), + }, + [1154] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), + [sym_xml_doc] = STATE(1154), + [sym_block_comment] = STATE(1154), + [sym_preproc_line] = STATE(1154), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + }, + [1155] = { + [sym_xml_doc] = STATE(1155), + [sym_block_comment] = STATE(1155), + [sym_preproc_line] = STATE(1155), + [aux_sym_long_identifier_repeat1] = STATE(1164), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), + [sym__else] = ACTIONS(2596), + [sym__elif] = ACTIONS(2596), + }, + [1156] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), + [sym_xml_doc] = STATE(1156), + [sym_block_comment] = STATE(1156), + [sym_preproc_line] = STATE(1156), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(2361), + [anon_sym_COLON] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_COLON_QMARK] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_AT_GT] = ACTIONS(2361), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_AT_AT_GT] = ACTIONS(2361), + [anon_sym_COLON_GT] = ACTIONS(2361), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_DOT_LBRACK] = ACTIONS(2361), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_LPAREN2] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2363), + [aux_sym__identifier_or_op_token1] = ACTIONS(2363), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2363), + [anon_sym_DASH_DOT] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [aux_sym_infix_op_token1] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_COLON_EQ] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + }, + [1157] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), + [sym_xml_doc] = STATE(1157), + [sym_block_comment] = STATE(1157), + [sym_preproc_line] = STATE(1157), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [1158] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), + [sym_xml_doc] = STATE(1158), + [sym_block_comment] = STATE(1158), + [sym_preproc_line] = STATE(1158), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(2409), + [anon_sym_COLON] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_QMARK] = ACTIONS(2411), + [anon_sym_COLON_QMARK] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_COLON_COLON] = ACTIONS(2409), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_AT_GT] = ACTIONS(2409), + [anon_sym_LT_AT_AT] = ACTIONS(2411), + [anon_sym_AT_AT_GT] = ACTIONS(2409), + [anon_sym_COLON_GT] = ACTIONS(2409), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_LT_DASH] = ACTIONS(2411), + [anon_sym_DOT_LBRACK] = ACTIONS(2409), + [anon_sym_DOT] = ACTIONS(2411), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_DOT_DOT] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_or] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2411), + [aux_sym__identifier_or_op_token1] = ACTIONS(2411), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2411), + [anon_sym_DASH_DOT] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_AMP_AMP] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [aux_sym_infix_op_token1] = ACTIONS(2411), + [anon_sym_PIPE_PIPE] = ACTIONS(2411), + [anon_sym_BANG_EQ] = ACTIONS(2409), + [anon_sym_COLON_EQ] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + }, + [1159] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), + [sym_xml_doc] = STATE(1159), + [sym_block_comment] = STATE(1159), + [sym_preproc_line] = STATE(1159), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_DOT_DOT] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + }, + [1160] = { + [sym_xml_doc] = STATE(1160), + [sym_block_comment] = STATE(1160), + [sym_preproc_line] = STATE(1160), + [aux_sym_long_identifier_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_as] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), + }, + [1161] = { + [sym_type_arguments] = STATE(1268), + [sym_long_identifier] = STATE(1320), + [sym_xml_doc] = STATE(1161), + [sym_block_comment] = STATE(1161), + [sym_preproc_line] = STATE(1161), + [aux_sym__compound_type_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_LT2] = ACTIONS(3217), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), + [sym__then] = ACTIONS(2407), + }, + [1162] = { + [sym_xml_doc] = STATE(1162), + [sym_block_comment] = STATE(1162), + [sym_preproc_line] = STATE(1162), + [sym_identifier] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_POUNDnowarn] = ACTIONS(3204), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3206), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_upcast] = ACTIONS(3206), + [anon_sym_downcast] = ACTIONS(3206), + [anon_sym_LT_AT] = ACTIONS(3206), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3206), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_fun] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3206), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3206), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3206), + [sym_unit] = ACTIONS(3206), + [aux_sym__identifier_or_op_token1] = ACTIONS(3206), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_DOT] = ACTIONS(3206), + [anon_sym_DASH_DOT] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3206), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(2780), + [sym__dedent] = ACTIONS(3204), + }, + [1163] = { + [sym_xml_doc] = STATE(1163), + [sym_block_comment] = STATE(1163), + [sym_preproc_line] = STATE(1163), + [aux_sym__compound_type_repeat1] = STATE(1163), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), + [sym__else] = ACTIONS(2321), + [sym__elif] = ACTIONS(2321), + }, + [1164] = { + [sym_xml_doc] = STATE(1164), + [sym_block_comment] = STATE(1164), + [sym_preproc_line] = STATE(1164), + [aux_sym_long_identifier_repeat1] = STATE(1164), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), + }, + [1165] = { + [sym_xml_doc] = STATE(1165), + [sym_block_comment] = STATE(1165), + [sym_preproc_line] = STATE(1165), + [aux_sym_long_identifier_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_AT_GT] = ACTIONS(2523), + [anon_sym_LT_AT_AT] = ACTIONS(2517), + [anon_sym_AT_AT_GT] = ACTIONS(2523), + [anon_sym_COLON_GT] = ACTIONS(2523), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), + [anon_sym_DOT_LBRACK] = ACTIONS(2523), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_COLON_EQ] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__newline] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2523), + [sym__else] = ACTIONS(2523), + [sym__elif] = ACTIONS(2523), + }, + [1166] = { + [sym_xml_doc] = STATE(1166), + [sym_block_comment] = STATE(1166), + [sym_preproc_line] = STATE(1166), + [aux_sym_long_identifier_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), + [sym__else] = ACTIONS(2514), + [sym__elif] = ACTIONS(2514), + }, + [1167] = { + [sym_xml_doc] = STATE(1167), + [sym_block_comment] = STATE(1167), + [sym_preproc_line] = STATE(1167), + [sym_identifier] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_POUNDnowarn] = ACTIONS(2617), + [anon_sym_POUNDr] = ACTIONS(2617), + [anon_sym_POUNDload] = ACTIONS(2617), + [anon_sym_open] = ACTIONS(2619), + [anon_sym_LBRACK_LT] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(3251), + }, + [1168] = { + [sym_xml_doc] = STATE(1168), + [sym_block_comment] = STATE(1168), + [sym_preproc_line] = STATE(1168), + [aux_sym__compound_type_repeat1] = STATE(1168), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), + }, + [1169] = { + [sym_type_arguments] = STATE(1268), + [sym_long_identifier] = STATE(1320), + [sym_xml_doc] = STATE(1169), + [sym_block_comment] = STATE(1169), + [sym_preproc_line] = STATE(1169), + [aux_sym__compound_type_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_COLON_QMARK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_COLON_COLON] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_AT_GT] = ACTIONS(2375), + [anon_sym_LT_AT_AT] = ACTIONS(2373), + [anon_sym_AT_AT_GT] = ACTIONS(2375), + [anon_sym_COLON_GT] = ACTIONS(2375), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_LT_DASH] = ACTIONS(2373), + [anon_sym_DOT_LBRACK] = ACTIONS(2375), + [anon_sym_DOT] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_LPAREN2] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_LT2] = ACTIONS(3217), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_or] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2373), + [aux_sym__identifier_or_op_token1] = ACTIONS(2373), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2373), + [anon_sym_DASH_DOT] = ACTIONS(2373), + [anon_sym_PERCENT] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [aux_sym_infix_op_token1] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_COLON_EQ] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), + [sym__then] = ACTIONS(2375), }, [1170] = { [sym_xml_doc] = STATE(1170), [sym_block_comment] = STATE(1170), [sym_preproc_line] = STATE(1170), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_as] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [sym__dedent] = ACTIONS(2581), + [aux_sym_long_identifier_repeat1] = STATE(1170), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [1171] = { + [sym_type_arguments] = STATE(1296), + [sym_long_identifier] = STATE(1271), [sym_xml_doc] = STATE(1171), [sym_block_comment] = STATE(1171), [sym_preproc_line] = STATE(1171), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - [sym__dedent] = ACTIONS(2577), - [sym__else] = ACTIONS(2577), - [sym__elif] = ACTIONS(2577), + [aux_sym__compound_type_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_LT2] = ACTIONS(3229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), }, [1172] = { [sym_xml_doc] = STATE(1172), [sym_block_comment] = STATE(1172), [sym_preproc_line] = STATE(1172), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [sym__dedent] = ACTIONS(2599), - [sym__else] = ACTIONS(2599), - [sym__elif] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3259), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [sym__dedent] = ACTIONS(2654), + [sym__else] = ACTIONS(2654), + [sym__elif] = ACTIONS(2654), }, [1173] = { [sym_xml_doc] = STATE(1173), [sym_block_comment] = STATE(1173), [sym_preproc_line] = STATE(1173), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + [sym__dedent] = ACTIONS(2677), + [sym__else] = ACTIONS(2677), + [sym__elif] = ACTIONS(2677), }, [1174] = { [sym_xml_doc] = STATE(1174), [sym_block_comment] = STATE(1174), [sym_preproc_line] = STATE(1174), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), - [sym__else] = ACTIONS(2607), - [sym__elif] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [1175] = { [sym_xml_doc] = STATE(1175), [sym_block_comment] = STATE(1175), [sym_preproc_line] = STATE(1175), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), - [sym__else] = ACTIONS(2607), - [sym__elif] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, [1176] = { [sym_xml_doc] = STATE(1176), [sym_block_comment] = STATE(1176), [sym_preproc_line] = STATE(1176), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [sym__dedent] = ACTIONS(2603), + [aux_sym__compound_type_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), }, [1177] = { [sym_xml_doc] = STATE(1177), [sym_block_comment] = STATE(1177), [sym_preproc_line] = STATE(1177), - [aux_sym_long_identifier_repeat1] = STATE(1190), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [sym__else] = ACTIONS(2475), - [sym__elif] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + [sym__dedent] = ACTIONS(2681), + [sym__else] = ACTIONS(2681), + [sym__elif] = ACTIONS(2681), }, [1178] = { [sym_xml_doc] = STATE(1178), [sym_block_comment] = STATE(1178), [sym_preproc_line] = STATE(1178), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_as] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - [sym__dedent] = ACTIONS(2611), - }, - [1179] = { - [sym_xml_doc] = STATE(1179), - [sym_block_comment] = STATE(1179), - [sym_preproc_line] = STATE(1179), - [aux_sym_long_identifier_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2520), + [aux_sym_long_identifier_repeat1] = STATE(1183), + [sym_identifier] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_DOT] = ACTIONS(3266), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), + [sym__else] = ACTIONS(2523), + [sym__elif] = ACTIONS(2523), + }, + [1179] = { + [sym_xml_doc] = STATE(1179), + [sym_block_comment] = STATE(1179), + [sym_preproc_line] = STATE(1179), + [aux_sym_long_identifier_repeat1] = STATE(1179), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [1180] = { [sym_xml_doc] = STATE(1180), [sym_block_comment] = STATE(1180), [sym_preproc_line] = STATE(1180), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_as] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - [sym__dedent] = ACTIONS(2577), + [aux_sym_long_identifier_repeat1] = STATE(1179), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_as] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, [1181] = { [sym_xml_doc] = STATE(1181), [sym_block_comment] = STATE(1181), [sym_preproc_line] = STATE(1181), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_as] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [sym__dedent] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), }, [1182] = { [sym_xml_doc] = STATE(1182), [sym_block_comment] = STATE(1182), [sym_preproc_line] = STATE(1182), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), - }, - [1183] = { - [sym_xml_doc] = STATE(1183), - [sym_block_comment] = STATE(1183), - [sym_preproc_line] = STATE(1183), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), - }, - [1184] = { - [sym_xml_doc] = STATE(1184), - [sym_block_comment] = STATE(1184), - [sym_preproc_line] = STATE(1184), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_as] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [sym__dedent] = ACTIONS(2593), - }, - [1185] = { - [sym_xml_doc] = STATE(1185), - [sym_block_comment] = STATE(1185), - [sym_preproc_line] = STATE(1185), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - [sym__dedent] = ACTIONS(2569), - [sym__else] = ACTIONS(2569), - [sym__elif] = ACTIONS(2569), - }, - [1186] = { - [sym_xml_doc] = STATE(1186), - [sym_block_comment] = STATE(1186), - [sym_preproc_line] = STATE(1186), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - [sym__dedent] = ACTIONS(2628), - [sym__else] = ACTIONS(2628), - [sym__elif] = ACTIONS(2628), - }, - [1187] = { - [sym_xml_doc] = STATE(1187), - [sym_block_comment] = STATE(1187), - [sym_preproc_line] = STATE(1187), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [1188] = { - [sym_xml_doc] = STATE(1188), - [sym_block_comment] = STATE(1188), - [sym_preproc_line] = STATE(1188), - [aux_sym_long_identifier_repeat1] = STATE(1190), - [sym_identifier] = ACTIONS(2520), + [aux_sym_long_identifier_repeat1] = STATE(1180), + [sym_identifier] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_as] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_DOT] = ACTIONS(3271), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), - [sym__else] = ACTIONS(2523), - [sym__elif] = ACTIONS(2523), + }, + [1183] = { + [sym_xml_doc] = STATE(1183), + [sym_block_comment] = STATE(1183), + [sym_preproc_line] = STATE(1183), + [aux_sym_long_identifier_repeat1] = STATE(1185), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__else] = ACTIONS(2596), + [sym__elif] = ACTIONS(2596), + }, + [1184] = { + [sym_xml_doc] = STATE(1184), + [sym_block_comment] = STATE(1184), + [sym_preproc_line] = STATE(1184), + [aux_sym__compound_type_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__else] = ACTIONS(2321), + [sym__elif] = ACTIONS(2321), + }, + [1185] = { + [sym_xml_doc] = STATE(1185), + [sym_block_comment] = STATE(1185), + [sym_preproc_line] = STATE(1185), + [aux_sym_long_identifier_repeat1] = STATE(1185), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), + }, + [1186] = { + [sym_xml_doc] = STATE(1186), + [sym_block_comment] = STATE(1186), + [sym_preproc_line] = STATE(1186), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + [sym__dedent] = ACTIONS(2642), + [sym__else] = ACTIONS(2642), + [sym__elif] = ACTIONS(2642), + }, + [1187] = { + [sym_xml_doc] = STATE(1187), + [sym_block_comment] = STATE(1187), + [sym_preproc_line] = STATE(1187), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [sym__dedent] = ACTIONS(2687), + [sym__else] = ACTIONS(2687), + [sym__elif] = ACTIONS(2687), + }, + [1188] = { + [sym_xml_doc] = STATE(1188), + [sym_block_comment] = STATE(1188), + [sym_preproc_line] = STATE(1188), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_as] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [sym__dedent] = ACTIONS(2646), }, [1189] = { [sym_xml_doc] = STATE(1189), [sym_block_comment] = STATE(1189), [sym_preproc_line] = STATE(1189), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [sym__dedent] = ACTIONS(2573), - [sym__else] = ACTIONS(2573), - [sym__elif] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_as] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2650), }, [1190] = { [sym_xml_doc] = STATE(1190), [sym_block_comment] = STATE(1190), [sym_preproc_line] = STATE(1190), - [aux_sym_long_identifier_repeat1] = STATE(1164), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__else] = ACTIONS(2494), - [sym__elif] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, [1191] = { [sym_xml_doc] = STATE(1191), [sym_block_comment] = STATE(1191), [sym_preproc_line] = STATE(1191), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [sym__dedent] = ACTIONS(2593), - [sym__else] = ACTIONS(2593), - [sym__elif] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [sym__dedent] = ACTIONS(2630), + [sym__else] = ACTIONS(2630), + [sym__elif] = ACTIONS(2630), }, [1192] = { [sym_xml_doc] = STATE(1192), [sym_block_comment] = STATE(1192), [sym_preproc_line] = STATE(1192), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - [sym__dedent] = ACTIONS(2611), - [sym__else] = ACTIONS(2611), - [sym__elif] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), + [sym__else] = ACTIONS(2660), + [sym__elif] = ACTIONS(2660), }, [1193] = { [sym_xml_doc] = STATE(1193), [sym_block_comment] = STATE(1193), [sym_preproc_line] = STATE(1193), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [sym__dedent] = ACTIONS(2603), - [sym__else] = ACTIONS(2603), - [sym__elif] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), + [sym__else] = ACTIONS(2660), + [sym__elif] = ACTIONS(2660), }, [1194] = { [sym_xml_doc] = STATE(1194), [sym_block_comment] = STATE(1194), [sym_preproc_line] = STATE(1194), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_as] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3213), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [sym__dedent] = ACTIONS(2622), + [aux_sym__compound_type_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_AT_GT] = ACTIONS(2589), + [anon_sym_LT_AT_AT] = ACTIONS(2587), + [anon_sym_AT_AT_GT] = ACTIONS(2589), + [anon_sym_COLON_GT] = ACTIONS(2589), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_LT_DASH] = ACTIONS(2587), + [anon_sym_DOT_LBRACK] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2587), + [aux_sym__identifier_or_op_token1] = ACTIONS(2587), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2587), + [anon_sym_DASH_DOT] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [aux_sym_infix_op_token1] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_COLON_EQ] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [sym__else] = ACTIONS(2589), + [sym__elif] = ACTIONS(2589), }, [1195] = { [sym_xml_doc] = STATE(1195), [sym_block_comment] = STATE(1195), [sym_preproc_line] = STATE(1195), - [aux_sym__compound_type_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - [sym__else] = ACTIONS(2481), - [sym__elif] = ACTIONS(2481), + [aux_sym_long_identifier_repeat1] = STATE(1180), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_as] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, [1196] = { [sym_xml_doc] = STATE(1196), [sym_block_comment] = STATE(1196), [sym_preproc_line] = STATE(1196), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_as] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [sym__dedent] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + [sym__dedent] = ACTIONS(2634), + [sym__else] = ACTIONS(2634), + [sym__elif] = ACTIONS(2634), }, [1197] = { [sym_xml_doc] = STATE(1197), [sym_block_comment] = STATE(1197), [sym_preproc_line] = STATE(1197), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - [sym__dedent] = ACTIONS(2585), - [sym__else] = ACTIONS(2585), - [sym__elif] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + [sym__dedent] = ACTIONS(2621), + [sym__else] = ACTIONS(2621), + [sym__elif] = ACTIONS(2621), }, [1198] = { + [sym_type_arguments] = STATE(790), + [sym_long_identifier] = STATE(778), [sym_xml_doc] = STATE(1198), [sym_block_comment] = STATE(1198), [sym_preproc_line] = STATE(1198), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [sym__dedent] = ACTIONS(2581), - [sym__else] = ACTIONS(2581), - [sym__elif] = ACTIONS(2581), + [aux_sym__compound_type_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_BANG] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(2405), + [anon_sym_COLON_QMARK] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LBRACK_PIPE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LBRACE_PIPE] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_return_BANG] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_yield_BANG] = ACTIONS(2407), + [anon_sym_lazy] = ACTIONS(2405), + [anon_sym_assert] = ACTIONS(2405), + [anon_sym_upcast] = ACTIONS(2405), + [anon_sym_downcast] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(2405), + [anon_sym_AT_GT] = ACTIONS(2407), + [anon_sym_LT_AT_AT] = ACTIONS(2405), + [anon_sym_AT_AT_GT] = ACTIONS(2407), + [anon_sym_COLON_GT] = ACTIONS(2407), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_fun] = ACTIONS(2405), + [anon_sym_DASH_GT] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_match_BANG] = ACTIONS(2407), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_LT_DASH] = ACTIONS(2405), + [anon_sym_DOT_LBRACK] = ACTIONS(2407), + [anon_sym_DOT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_use_BANG] = ACTIONS(2407), + [anon_sym_do_BANG] = ACTIONS(2407), + [anon_sym_begin] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_or] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_AT_DQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2407), + [sym_bool] = ACTIONS(2405), + [sym_unit] = ACTIONS(2405), + [aux_sym__identifier_or_op_token1] = ACTIONS(2405), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS_DOT] = ACTIONS(2405), + [anon_sym_DASH_DOT] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2407), + [aux_sym_prefix_op_token1] = ACTIONS(2407), + [aux_sym_infix_op_token1] = ACTIONS(2405), + [anon_sym_PIPE_PIPE] = ACTIONS(2405), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_COLON_EQ] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2407), + [sym_int] = ACTIONS(2405), + [sym_xint] = ACTIONS(2407), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2407), + [sym__newline] = ACTIONS(2407), }, [1199] = { [sym_xml_doc] = STATE(1199), [sym_block_comment] = STATE(1199), [sym_preproc_line] = STATE(1199), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_as] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - [sym__dedent] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_as] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3283), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [sym__dedent] = ACTIONS(2654), }, [1200] = { [sym_xml_doc] = STATE(1200), [sym_block_comment] = STATE(1200), [sym_preproc_line] = STATE(1200), - [aux_sym_long_identifier_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2650), + [sym__else] = ACTIONS(2650), + [sym__elif] = ACTIONS(2650), }, [1201] = { [sym_xml_doc] = STATE(1201), [sym_block_comment] = STATE(1201), [sym_preproc_line] = STATE(1201), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - [sym__else] = ACTIONS(2577), - [sym__elif] = ACTIONS(2577), + [aux_sym_long_identifier_repeat1] = STATE(1183), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__else] = ACTIONS(2514), + [sym__elif] = ACTIONS(2514), }, [1202] = { [sym_xml_doc] = STATE(1202), [sym_block_comment] = STATE(1202), [sym_preproc_line] = STATE(1202), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_as] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [sym__dedent] = ACTIONS(2646), + [sym__else] = ACTIONS(2646), + [sym__elif] = ACTIONS(2646), }, [1203] = { [sym_xml_doc] = STATE(1203), [sym_block_comment] = STATE(1203), [sym_preproc_line] = STATE(1203), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - [sym__else] = ACTIONS(2585), - [sym__elif] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_as] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [sym__dedent] = ACTIONS(2630), }, [1204] = { [sym_xml_doc] = STATE(1204), [sym_block_comment] = STATE(1204), [sym_preproc_line] = STATE(1204), - [aux_sym__compound_type_repeat1] = STATE(1216), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [sym__dedent] = ACTIONS(2687), }, [1205] = { [sym_xml_doc] = STATE(1205), [sym_block_comment] = STATE(1205), [sym_preproc_line] = STATE(1205), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [sym__else] = ACTIONS(2593), - [sym__elif] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [sym__dedent] = ACTIONS(2664), + [sym__else] = ACTIONS(2664), + [sym__elif] = ACTIONS(2664), }, [1206] = { [sym_xml_doc] = STATE(1206), [sym_block_comment] = STATE(1206), [sym_preproc_line] = STATE(1206), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [sym__else] = ACTIONS(2573), - [sym__elif] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_as] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + [sym__dedent] = ACTIONS(2681), }, [1207] = { [sym_xml_doc] = STATE(1207), [sym_block_comment] = STATE(1207), [sym_preproc_line] = STATE(1207), - [aux_sym_long_identifier_repeat1] = STATE(1207), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__then] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + [sym__dedent] = ACTIONS(2634), }, [1208] = { [sym_xml_doc] = STATE(1208), [sym_block_comment] = STATE(1208), [sym_preproc_line] = STATE(1208), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_as] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_as] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [sym__dedent] = ACTIONS(2664), }, [1209] = { [sym_xml_doc] = STATE(1209), [sym_block_comment] = STATE(1209), [sym_preproc_line] = STATE(1209), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, [1210] = { [sym_xml_doc] = STATE(1210), [sym_block_comment] = STATE(1210), [sym_preproc_line] = STATE(1210), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_as] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + [sym__dedent] = ACTIONS(2621), }, [1211] = { [sym_xml_doc] = STATE(1211), [sym_block_comment] = STATE(1211), [sym_preproc_line] = STATE(1211), - [aux_sym_long_identifier_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_as] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + [sym__dedent] = ACTIONS(2642), }, [1212] = { [sym_xml_doc] = STATE(1212), [sym_block_comment] = STATE(1212), [sym_preproc_line] = STATE(1212), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - [sym__else] = ACTIONS(2628), - [sym__elif] = ACTIONS(2628), + [aux_sym__compound_type_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(2587), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_COLON] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_QMARK] = ACTIONS(2587), + [anon_sym_COLON_QMARK] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_COMMA] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_AT_GT] = ACTIONS(2589), + [anon_sym_LT_AT_AT] = ACTIONS(2587), + [anon_sym_AT_AT_GT] = ACTIONS(2589), + [anon_sym_COLON_GT] = ACTIONS(2589), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_LT_DASH] = ACTIONS(2587), + [anon_sym_DOT_LBRACK] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2587), + [aux_sym__identifier_or_op_token1] = ACTIONS(2587), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2587), + [anon_sym_DASH_DOT] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [aux_sym_infix_op_token1] = ACTIONS(2587), + [anon_sym_PIPE_PIPE] = ACTIONS(2587), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_COLON_EQ] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), }, [1213] = { [sym_xml_doc] = STATE(1213), [sym_block_comment] = STATE(1213), [sym_preproc_line] = STATE(1213), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - [sym__else] = ACTIONS(2569), - [sym__elif] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), }, [1214] = { [sym_xml_doc] = STATE(1214), [sym_block_comment] = STATE(1214), [sym_preproc_line] = STATE(1214), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_as] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_as] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + [sym__dedent] = ACTIONS(2677), }, [1215] = { [sym_xml_doc] = STATE(1215), [sym_block_comment] = STATE(1215), [sym_preproc_line] = STATE(1215), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_as] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + [sym__dedent] = ACTIONS(2638), }, [1216] = { [sym_xml_doc] = STATE(1216), [sym_block_comment] = STATE(1216), [sym_preproc_line] = STATE(1216), - [aux_sym__compound_type_repeat1] = STATE(1216), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3226), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + [sym__dedent] = ACTIONS(2638), + [sym__else] = ACTIONS(2638), + [sym__elif] = ACTIONS(2638), }, [1217] = { [sym_xml_doc] = STATE(1217), [sym_block_comment] = STATE(1217), [sym_preproc_line] = STATE(1217), - [aux_sym_long_identifier_repeat1] = STATE(1207), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__then] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), }, [1218] = { [sym_xml_doc] = STATE(1218), [sym_block_comment] = STATE(1218), [sym_preproc_line] = STATE(1218), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3231), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [sym__else] = ACTIONS(2622), - [sym__elif] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), }, [1219] = { [sym_xml_doc] = STATE(1219), [sym_block_comment] = STATE(1219), [sym_preproc_line] = STATE(1219), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__else] = ACTIONS(2607), - [sym__elif] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + [sym__else] = ACTIONS(2621), + [sym__elif] = ACTIONS(2621), }, [1220] = { [sym_xml_doc] = STATE(1220), [sym_block_comment] = STATE(1220), [sym_preproc_line] = STATE(1220), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__else] = ACTIONS(2607), - [sym__elif] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + [sym__else] = ACTIONS(2677), + [sym__elif] = ACTIONS(2677), }, [1221] = { [sym_xml_doc] = STATE(1221), [sym_block_comment] = STATE(1221), [sym_preproc_line] = STATE(1221), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + [sym__else] = ACTIONS(2638), + [sym__elif] = ACTIONS(2638), }, [1222] = { [sym_xml_doc] = STATE(1222), [sym_block_comment] = STATE(1222), [sym_preproc_line] = STATE(1222), - [aux_sym_long_identifier_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_as] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3291), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + }, + [1223] = { + [sym_xml_doc] = STATE(1223), + [sym_block_comment] = STATE(1223), + [sym_preproc_line] = STATE(1223), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_as] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + }, + [1224] = { + [sym_xml_doc] = STATE(1224), + [sym_block_comment] = STATE(1224), + [sym_preproc_line] = STATE(1224), + [aux_sym_long_identifier_repeat1] = STATE(1229), + [sym_identifier] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3220), + [anon_sym_DOT] = ACTIONS(3293), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), - }, - [1223] = { - [sym_xml_doc] = STATE(1223), - [sym_block_comment] = STATE(1223), - [sym_preproc_line] = STATE(1223), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - [sym__else] = ACTIONS(2611), - [sym__elif] = ACTIONS(2611), - }, - [1224] = { - [sym_xml_doc] = STATE(1224), - [sym_block_comment] = STATE(1224), - [sym_preproc_line] = STATE(1224), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [sym__else] = ACTIONS(2603), - [sym__elif] = ACTIONS(2603), + [sym__then] = ACTIONS(2523), }, [1225] = { [sym_xml_doc] = STATE(1225), [sym_block_comment] = STATE(1225), [sym_preproc_line] = STATE(1225), - [aux_sym_long_identifier_repeat1] = STATE(1232), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - }, - [1226] = { - [sym_xml_doc] = STATE(1226), - [sym_block_comment] = STATE(1226), - [sym_preproc_line] = STATE(1226), - [aux_sym__compound_type_repeat1] = STATE(1229), - [sym_identifier] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_QMARK] = ACTIONS(2479), - [anon_sym_COLON_QMARK] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_AT_GT] = ACTIONS(2481), - [anon_sym_LT_AT_AT] = ACTIONS(2479), - [anon_sym_AT_AT_GT] = ACTIONS(2481), - [anon_sym_COLON_GT] = ACTIONS(2481), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_LT_DASH] = ACTIONS(2479), - [anon_sym_DOT_LBRACK] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2479), - [aux_sym__identifier_or_op_token1] = ACTIONS(2479), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2479), - [anon_sym_DASH_DOT] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_AMP_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [aux_sym_infix_op_token1] = ACTIONS(2479), - [anon_sym_PIPE_PIPE] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), - [sym__then] = ACTIONS(2481), - }, - [1227] = { - [sym_xml_doc] = STATE(1227), - [sym_block_comment] = STATE(1227), - [sym_preproc_line] = STATE(1227), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1228] = { - [sym_xml_doc] = STATE(1228), - [sym_block_comment] = STATE(1228), - [sym_preproc_line] = STATE(1228), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - }, - [1229] = { - [sym_xml_doc] = STATE(1229), - [sym_block_comment] = STATE(1229), - [sym_preproc_line] = STATE(1229), - [aux_sym__compound_type_repeat1] = STATE(1229), - [sym_identifier] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2345), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2343), - [anon_sym_COLON_QMARK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_COMMA] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_AT_GT] = ACTIONS(2345), - [anon_sym_LT_AT_AT] = ACTIONS(2343), - [anon_sym_AT_AT_GT] = ACTIONS(2345), - [anon_sym_COLON_GT] = ACTIONS(2345), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_LT_DASH] = ACTIONS(2343), - [anon_sym_DOT_LBRACK] = ACTIONS(2345), - [anon_sym_DOT] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_or] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2343), - [aux_sym__identifier_or_op_token1] = ACTIONS(2343), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2343), - [anon_sym_DASH_DOT] = ACTIONS(2343), - [anon_sym_PERCENT] = ACTIONS(2343), - [anon_sym_AMP_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [aux_sym_infix_op_token1] = ACTIONS(2343), - [anon_sym_PIPE_PIPE] = ACTIONS(2343), - [anon_sym_BANG_EQ] = ACTIONS(2345), - [anon_sym_COLON_EQ] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [sym__then] = ACTIONS(2345), - }, - [1230] = { - [sym_xml_doc] = STATE(1230), - [sym_block_comment] = STATE(1230), - [sym_preproc_line] = STATE(1230), - [aux_sym_long_identifier_repeat1] = STATE(1217), - [sym_identifier] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2473), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_AT_GT] = ACTIONS(2475), - [anon_sym_LT_AT_AT] = ACTIONS(2473), - [anon_sym_AT_AT_GT] = ACTIONS(2475), - [anon_sym_COLON_GT] = ACTIONS(2475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_DOT_LBRACK] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2473), - [aux_sym__identifier_or_op_token1] = ACTIONS(2473), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2473), - [anon_sym_DASH_DOT] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [aux_sym_infix_op_token1] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [sym__then] = ACTIONS(2475), - }, - [1231] = { - [sym_xml_doc] = STATE(1231), - [sym_block_comment] = STATE(1231), - [sym_preproc_line] = STATE(1231), - [aux_sym_long_identifier_repeat1] = STATE(1217), - [sym_identifier] = ACTIONS(2520), + [aux_sym_long_identifier_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2517), [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), + [anon_sym_COLON] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_QMARK] = ACTIONS(2517), + [anon_sym_COLON_QMARK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_COMMA] = ACTIONS(2523), [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2517), [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2517), [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2517), [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), + [anon_sym_LT_AT_AT] = ACTIONS(2517), [anon_sym_AT_AT_GT] = ACTIONS(2523), [anon_sym_COLON_GT] = ACTIONS(2523), [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_LT_DASH] = ACTIONS(2517), [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3295), [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2517), [anon_sym_use_BANG] = ACTIONS(2523), [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_or] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), [anon_sym_AT_DQUOTE] = ACTIONS(2523), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2517), + [aux_sym__identifier_or_op_token1] = ACTIONS(2517), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2517), + [anon_sym_DASH_DOT] = ACTIONS(2517), + [anon_sym_PERCENT] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), [anon_sym_TILDE] = ACTIONS(2523), [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), + [aux_sym_infix_op_token1] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), [anon_sym_BANG_EQ] = ACTIONS(2523), [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2517), [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), + [sym_int] = ACTIONS(2517), [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), - [sym__then] = ACTIONS(2523), + }, + [1226] = { + [sym_xml_doc] = STATE(1226), + [sym_block_comment] = STATE(1226), + [sym_preproc_line] = STATE(1226), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + [sym__else] = ACTIONS(2681), + [sym__elif] = ACTIONS(2681), + }, + [1227] = { + [sym_xml_doc] = STATE(1227), + [sym_block_comment] = STATE(1227), + [sym_preproc_line] = STATE(1227), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + }, + [1228] = { + [sym_xml_doc] = STATE(1228), + [sym_block_comment] = STATE(1228), + [sym_preproc_line] = STATE(1228), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [1229] = { + [sym_xml_doc] = STATE(1229), + [sym_block_comment] = STATE(1229), + [sym_preproc_line] = STATE(1229), + [aux_sym_long_identifier_repeat1] = STATE(1256), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__then] = ACTIONS(2596), + }, + [1230] = { + [sym_xml_doc] = STATE(1230), + [sym_block_comment] = STATE(1230), + [sym_preproc_line] = STATE(1230), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [1231] = { + [sym_xml_doc] = STATE(1231), + [sym_block_comment] = STATE(1231), + [sym_preproc_line] = STATE(1231), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), }, [1232] = { [sym_xml_doc] = STATE(1232), [sym_block_comment] = STATE(1232), [sym_preproc_line] = STATE(1232), - [aux_sym_long_identifier_repeat1] = STATE(1232), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [aux_sym_long_identifier_repeat1] = STATE(1229), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__then] = ACTIONS(2514), }, [1233] = { [sym_xml_doc] = STATE(1233), [sym_block_comment] = STATE(1233), [sym_preproc_line] = STATE(1233), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_as] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + }, + [1234] = { + [sym_xml_doc] = STATE(1234), + [sym_block_comment] = STATE(1234), + [sym_preproc_line] = STATE(1234), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [1235] = { + [sym_xml_doc] = STATE(1235), + [sym_block_comment] = STATE(1235), + [sym_preproc_line] = STATE(1235), + [aux_sym__compound_type_repeat1] = STATE(1240), [sym_identifier] = ACTIONS(2587), [anon_sym_EQ] = ACTIONS(2589), [anon_sym_COLON] = ACTIONS(2587), @@ -176651,7 +174069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(3215), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -176681,949 +174099,2251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), [sym_int] = ACTIONS(2587), [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), [sym__newline] = ACTIONS(2589), - [sym__else] = ACTIONS(2589), - [sym__elif] = ACTIONS(2589), - }, - [1234] = { - [sym_xml_doc] = STATE(1234), - [sym_block_comment] = STATE(1234), - [sym_preproc_line] = STATE(1234), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_as] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - }, - [1235] = { - [sym_xml_doc] = STATE(1235), - [sym_block_comment] = STATE(1235), - [sym_preproc_line] = STATE(1235), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_as] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), + [sym__then] = ACTIONS(2589), }, [1236] = { [sym_xml_doc] = STATE(1236), [sym_block_comment] = STATE(1236), [sym_preproc_line] = STATE(1236), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_as] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_as] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3301), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), }, [1237] = { [sym_xml_doc] = STATE(1237), [sym_block_comment] = STATE(1237), [sym_preproc_line] = STATE(1237), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [sym__else] = ACTIONS(2581), - [sym__elif] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), }, [1238] = { [sym_xml_doc] = STATE(1238), [sym_block_comment] = STATE(1238), [sym_preproc_line] = STATE(1238), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_as] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [sym__else] = ACTIONS(2646), + [sym__elif] = ACTIONS(2646), }, [1239] = { [sym_xml_doc] = STATE(1239), [sym_block_comment] = STATE(1239), [sym_preproc_line] = STATE(1239), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [sym__else] = ACTIONS(2599), - [sym__elif] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_DOT_DOT2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3303), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), }, [1240] = { [sym_xml_doc] = STATE(1240), [sym_block_comment] = STATE(1240), [sym_preproc_line] = STATE(1240), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_as] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), + [aux_sym__compound_type_repeat1] = STATE(1240), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + [sym__then] = ACTIONS(2321), }, [1241] = { [sym_xml_doc] = STATE(1241), [sym_block_comment] = STATE(1241), [sym_preproc_line] = STATE(1241), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_as] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3245), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + [sym__else] = ACTIONS(2650), + [sym__elif] = ACTIONS(2650), }, [1242] = { [sym_xml_doc] = STATE(1242), [sym_block_comment] = STATE(1242), [sym_preproc_line] = STATE(1242), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [sym__else] = ACTIONS(2687), + [sym__elif] = ACTIONS(2687), }, [1243] = { [sym_xml_doc] = STATE(1243), [sym_block_comment] = STATE(1243), [sym_preproc_line] = STATE(1243), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - }, - [1244] = { - [sym_xml_doc] = STATE(1244), - [sym_block_comment] = STATE(1244), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [sym__else] = ACTIONS(2630), + [sym__elif] = ACTIONS(2630), + }, + [1244] = { + [sym_xml_doc] = STATE(1244), + [sym_block_comment] = STATE(1244), [sym_preproc_line] = STATE(1244), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + }, + [1245] = { + [sym_xml_doc] = STATE(1245), + [sym_block_comment] = STATE(1245), + [sym_preproc_line] = STATE(1245), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_as] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + }, + [1246] = { + [sym_xml_doc] = STATE(1246), + [sym_block_comment] = STATE(1246), + [sym_preproc_line] = STATE(1246), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + [sym__else] = ACTIONS(2695), + [sym__elif] = ACTIONS(2695), + }, + [1247] = { + [sym_xml_doc] = STATE(1247), + [sym_block_comment] = STATE(1247), + [sym_preproc_line] = STATE(1247), + [aux_sym_long_identifier_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + }, + [1248] = { + [sym_xml_doc] = STATE(1248), + [sym_block_comment] = STATE(1248), + [sym_preproc_line] = STATE(1248), + [aux_sym_long_identifier_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [1249] = { + [sym_xml_doc] = STATE(1249), + [sym_block_comment] = STATE(1249), + [sym_preproc_line] = STATE(1249), + [aux_sym_long_identifier_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + }, + [1250] = { + [sym_xml_doc] = STATE(1250), + [sym_block_comment] = STATE(1250), + [sym_preproc_line] = STATE(1250), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_as] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + }, + [1251] = { + [sym_xml_doc] = STATE(1251), + [sym_block_comment] = STATE(1251), + [sym_preproc_line] = STATE(1251), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + [sym__else] = ACTIONS(2642), + [sym__elif] = ACTIONS(2642), + }, + [1252] = { + [sym_xml_doc] = STATE(1252), + [sym_block_comment] = STATE(1252), + [sym_preproc_line] = STATE(1252), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [sym__else] = ACTIONS(2654), + [sym__elif] = ACTIONS(2654), + }, + [1253] = { + [sym_xml_doc] = STATE(1253), + [sym_block_comment] = STATE(1253), + [sym_preproc_line] = STATE(1253), + [aux_sym_long_identifier_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + }, + [1254] = { + [sym_xml_doc] = STATE(1254), + [sym_block_comment] = STATE(1254), + [sym_preproc_line] = STATE(1254), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__else] = ACTIONS(2660), + [sym__elif] = ACTIONS(2660), + }, + [1255] = { + [sym_xml_doc] = STATE(1255), + [sym_block_comment] = STATE(1255), + [sym_preproc_line] = STATE(1255), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__else] = ACTIONS(2660), + [sym__elif] = ACTIONS(2660), + }, + [1256] = { + [sym_xml_doc] = STATE(1256), + [sym_block_comment] = STATE(1256), + [sym_preproc_line] = STATE(1256), + [aux_sym_long_identifier_repeat1] = STATE(1256), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__then] = ACTIONS(2605), + }, + [1257] = { + [sym_xml_doc] = STATE(1257), + [sym_block_comment] = STATE(1257), + [sym_preproc_line] = STATE(1257), + [aux_sym__compound_type_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2319), + [anon_sym_COLON_QMARK] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_AT_GT] = ACTIONS(2321), + [anon_sym_LT_AT_AT] = ACTIONS(2319), + [anon_sym_AT_AT_GT] = ACTIONS(2321), + [anon_sym_COLON_GT] = ACTIONS(2321), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_DOT_LBRACK] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_LPAREN2] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2319), + [aux_sym__identifier_or_op_token1] = ACTIONS(2319), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2319), + [anon_sym_DASH_DOT] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [aux_sym_infix_op_token1] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [1258] = { + [sym_xml_doc] = STATE(1258), + [sym_block_comment] = STATE(1258), + [sym_preproc_line] = STATE(1258), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_as] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + }, + [1259] = { + [sym_xml_doc] = STATE(1259), + [sym_block_comment] = STATE(1259), + [sym_preproc_line] = STATE(1259), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_as] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + }, + [1260] = { + [sym_xml_doc] = STATE(1260), + [sym_block_comment] = STATE(1260), + [sym_preproc_line] = STATE(1260), + [aux_sym__compound_type_repeat1] = STATE(1257), [sym_identifier] = ACTIONS(2587), [anon_sym_EQ] = ACTIONS(2589), [anon_sym_COLON] = ACTIONS(2587), @@ -177634,7 +176354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2587), [anon_sym_QMARK] = ACTIONS(2587), [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_as] = ACTIONS(2587), [anon_sym_LPAREN] = ACTIONS(2587), [anon_sym_COMMA] = ACTIONS(2589), [anon_sym_COLON_COLON] = ACTIONS(2589), @@ -177643,7 +176362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2589), [anon_sym_LBRACE] = ACTIONS(2587), [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), [anon_sym_new] = ACTIONS(2587), [anon_sym_return_BANG] = ACTIONS(2589), [anon_sym_yield] = ACTIONS(2587), @@ -177674,9 +176392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2587), [anon_sym_use_BANG] = ACTIONS(2589), [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(3227), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -177706,7352 +176425,6740 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), [sym_int] = ACTIONS(2587), [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), [sym__newline] = ACTIONS(2589), }, - [1245] = { - [sym_xml_doc] = STATE(1245), - [sym_block_comment] = STATE(1245), - [sym_preproc_line] = STATE(1245), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - }, - [1246] = { - [sym_xml_doc] = STATE(1246), - [sym_block_comment] = STATE(1246), - [sym_preproc_line] = STATE(1246), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [sym__then] = ACTIONS(2581), - }, - [1247] = { - [sym_xml_doc] = STATE(1247), - [sym_block_comment] = STATE(1247), - [sym_preproc_line] = STATE(1247), - [sym_identifier] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_COLON_QMARK] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_AT_GT] = ACTIONS(2581), - [anon_sym_LT_AT_AT] = ACTIONS(2579), - [anon_sym_AT_AT_GT] = ACTIONS(2581), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_LT_DASH] = ACTIONS(2579), - [anon_sym_DOT_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_LPAREN2] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_or] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2579), - [aux_sym__identifier_or_op_token1] = ACTIONS(2579), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2579), - [anon_sym_DASH_DOT] = ACTIONS(2579), - [anon_sym_PERCENT] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [aux_sym_infix_op_token1] = ACTIONS(2579), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2581), - [anon_sym_COLON_EQ] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2579), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - }, - [1248] = { - [sym_xml_doc] = STATE(1248), - [sym_block_comment] = STATE(1248), - [sym_preproc_line] = STATE(1248), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - }, - [1249] = { - [sym_xml_doc] = STATE(1249), - [sym_block_comment] = STATE(1249), - [sym_preproc_line] = STATE(1249), - [aux_sym_rules_repeat1] = STATE(1298), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3251), - [sym__dedent] = ACTIONS(2679), - [sym__else] = ACTIONS(2679), - [sym__elif] = ACTIONS(2679), - }, - [1250] = { - [sym_xml_doc] = STATE(1250), - [sym_block_comment] = STATE(1250), - [sym_preproc_line] = STATE(1250), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__then] = ACTIONS(2607), - }, - [1251] = { - [sym_xml_doc] = STATE(1251), - [sym_block_comment] = STATE(1251), - [sym_preproc_line] = STATE(1251), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - }, - [1252] = { - [sym_xml_doc] = STATE(1252), - [sym_block_comment] = STATE(1252), - [sym_preproc_line] = STATE(1252), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_DASH_GT] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2647), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_DOT_DOT2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - }, - [1253] = { - [sym_xml_doc] = STATE(1253), - [sym_block_comment] = STATE(1253), - [sym_preproc_line] = STATE(1253), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [sym__then] = ACTIONS(2607), - }, - [1254] = { - [sym_xml_doc] = STATE(1254), - [sym_block_comment] = STATE(1254), - [sym_preproc_line] = STATE(1254), - [aux_sym_rules_repeat1] = STATE(1257), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3256), - [sym__dedent] = ACTIONS(2679), - }, - [1255] = { - [sym_xml_doc] = STATE(1255), - [sym_block_comment] = STATE(1255), - [sym_preproc_line] = STATE(1255), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3259), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [sym__then] = ACTIONS(2622), - }, - [1256] = { - [sym_xml_doc] = STATE(1256), - [sym_block_comment] = STATE(1256), - [sym_preproc_line] = STATE(1256), - [sym_identifier] = ACTIONS(2620), - [anon_sym_EQ] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2620), - [anon_sym_COLON_QMARK] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_AT_GT] = ACTIONS(2622), - [anon_sym_LT_AT_AT] = ACTIONS(2620), - [anon_sym_AT_AT_GT] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2622), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2620), - [anon_sym_DOT_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_DOT_DOT] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_LPAREN2] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(3261), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2620), - [aux_sym__identifier_or_op_token1] = ACTIONS(2620), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2620), - [anon_sym_DASH_DOT] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_AMP_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [aux_sym_infix_op_token1] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2622), - [anon_sym_DOLLAR] = ACTIONS(2620), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - }, - [1257] = { - [sym_xml_doc] = STATE(1257), - [sym_block_comment] = STATE(1257), - [sym_preproc_line] = STATE(1257), - [aux_sym_rules_repeat1] = STATE(1257), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3266), - [sym__dedent] = ACTIONS(2669), - }, - [1258] = { - [sym_xml_doc] = STATE(1258), - [sym_block_comment] = STATE(1258), - [sym_preproc_line] = STATE(1258), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - [sym__else] = ACTIONS(2703), - [sym__elif] = ACTIONS(2703), - }, - [1259] = { - [sym_xml_doc] = STATE(1259), - [sym_block_comment] = STATE(1259), - [sym_preproc_line] = STATE(1259), - [aux_sym_rules_repeat1] = STATE(1298), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3271), - [sym__dedent] = ACTIONS(2653), - [sym__else] = ACTIONS(2653), - [sym__elif] = ACTIONS(2653), - }, - [1260] = { - [sym_xml_doc] = STATE(1260), - [sym_block_comment] = STATE(1260), - [sym_preproc_line] = STATE(1260), - [aux_sym_rules_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3271), - [sym__dedent] = ACTIONS(2653), - [sym__else] = ACTIONS(2653), - [sym__elif] = ACTIONS(2653), - }, [1261] = { [sym_xml_doc] = STATE(1261), [sym_block_comment] = STATE(1261), [sym_preproc_line] = STATE(1261), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_as] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), }, [1262] = { [sym_xml_doc] = STATE(1262), [sym_block_comment] = STATE(1262), [sym_preproc_line] = STATE(1262), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), - [sym__then] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [sym__else] = ACTIONS(2664), + [sym__elif] = ACTIONS(2664), }, [1263] = { [sym_xml_doc] = STATE(1263), [sym_block_comment] = STATE(1263), [sym_preproc_line] = STATE(1263), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_DOT_DOT] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + [sym__else] = ACTIONS(2634), + [sym__elif] = ACTIONS(2634), }, [1264] = { [sym_xml_doc] = STATE(1264), [sym_block_comment] = STATE(1264), [sym_preproc_line] = STATE(1264), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_as] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), }, [1265] = { [sym_xml_doc] = STATE(1265), [sym_block_comment] = STATE(1265), [sym_preproc_line] = STATE(1265), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_GT_RBRACK] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, [1266] = { [sym_xml_doc] = STATE(1266), [sym_block_comment] = STATE(1266), [sym_preproc_line] = STATE(1266), - [aux_sym_rules_repeat1] = STATE(1277), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_as] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3274), - [sym__dedent] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), }, [1267] = { [sym_xml_doc] = STATE(1267), [sym_block_comment] = STATE(1267), [sym_preproc_line] = STATE(1267), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__then] = ACTIONS(2485), + [aux_sym_rules_repeat1] = STATE(1284), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3331), + [sym__dedent] = ACTIONS(2744), + [sym__else] = ACTIONS(2744), + [sym__elif] = ACTIONS(2744), }, [1268] = { [sym_xml_doc] = STATE(1268), [sym_block_comment] = STATE(1268), [sym_preproc_line] = STATE(1268), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_DOT_DOT] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + [sym__then] = ACTIONS(2677), }, [1269] = { [sym_xml_doc] = STATE(1269), [sym_block_comment] = STATE(1269), [sym_preproc_line] = STATE(1269), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - [sym__else] = ACTIONS(2649), - [sym__elif] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), }, [1270] = { [sym_xml_doc] = STATE(1270), [sym_block_comment] = STATE(1270), [sym_preproc_line] = STATE(1270), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [sym__then] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), }, [1271] = { [sym_xml_doc] = STATE(1271), [sym_block_comment] = STATE(1271), [sym_preproc_line] = STATE(1271), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), }, [1272] = { [sym_xml_doc] = STATE(1272), [sym_block_comment] = STATE(1272), [sym_preproc_line] = STATE(1272), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_as] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__dedent] = ACTIONS(2754), }, [1273] = { [sym_xml_doc] = STATE(1273), [sym_block_comment] = STATE(1273), [sym_preproc_line] = STATE(1273), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), - [sym__then] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), }, [1274] = { [sym_xml_doc] = STATE(1274), [sym_block_comment] = STATE(1274), [sym_preproc_line] = STATE(1274), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_DOT_DOT] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_as] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3336), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, [1275] = { [sym_xml_doc] = STATE(1275), [sym_block_comment] = STATE(1275), [sym_preproc_line] = STATE(1275), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_DOT_DOT] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_as] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), }, [1276] = { [sym_xml_doc] = STATE(1276), [sym_block_comment] = STATE(1276), [sym_preproc_line] = STATE(1276), - [aux_sym_rules_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3279), - [sym__dedent] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3338), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [sym__then] = ACTIONS(2654), }, [1277] = { [sym_xml_doc] = STATE(1277), [sym_block_comment] = STATE(1277), [sym_preproc_line] = STATE(1277), - [aux_sym_rules_repeat1] = STATE(1257), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3279), - [sym__dedent] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2652), + [anon_sym_EQ] = ACTIONS(2654), + [anon_sym_COLON] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2652), + [anon_sym_COLON_QMARK] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_COMMA] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_AT_GT] = ACTIONS(2654), + [anon_sym_LT_AT_AT] = ACTIONS(2652), + [anon_sym_AT_AT_GT] = ACTIONS(2654), + [anon_sym_COLON_GT] = ACTIONS(2654), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_LT_DASH] = ACTIONS(2652), + [anon_sym_DOT_LBRACK] = ACTIONS(2654), + [anon_sym_DOT] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_DOT_DOT] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2654), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_or] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2652), + [aux_sym__identifier_or_op_token1] = ACTIONS(2652), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2652), + [anon_sym_DASH_DOT] = ACTIONS(2652), + [anon_sym_PERCENT] = ACTIONS(2652), + [anon_sym_AMP_AMP] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [aux_sym_infix_op_token1] = ACTIONS(2652), + [anon_sym_PIPE_PIPE] = ACTIONS(2652), + [anon_sym_BANG_EQ] = ACTIONS(2654), + [anon_sym_COLON_EQ] = ACTIONS(2654), + [anon_sym_DOLLAR] = ACTIONS(2652), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), }, [1278] = { [sym_xml_doc] = STATE(1278), [sym_block_comment] = STATE(1278), [sym_preproc_line] = STATE(1278), - [sym_identifier] = ACTIONS(2587), - [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_QMARK] = ACTIONS(2587), - [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_AT_GT] = ACTIONS(2589), - [anon_sym_LT_AT_AT] = ACTIONS(2587), - [anon_sym_AT_AT_GT] = ACTIONS(2589), - [anon_sym_COLON_GT] = ACTIONS(2589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_LT_DASH] = ACTIONS(2587), - [anon_sym_DOT_LBRACK] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_or] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2587), - [aux_sym__identifier_or_op_token1] = ACTIONS(2587), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2587), - [anon_sym_DASH_DOT] = ACTIONS(2587), - [anon_sym_PERCENT] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [aux_sym_infix_op_token1] = ACTIONS(2587), - [anon_sym_PIPE_PIPE] = ACTIONS(2587), - [anon_sym_BANG_EQ] = ACTIONS(2589), - [anon_sym_COLON_EQ] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [aux_sym_rules_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), - [sym__then] = ACTIONS(2589), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(3342), + [sym__dedent] = ACTIONS(2720), + [sym__else] = ACTIONS(2720), + [sym__elif] = ACTIONS(2720), }, [1279] = { [sym_xml_doc] = STATE(1279), [sym_block_comment] = STATE(1279), [sym_preproc_line] = STATE(1279), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_DOT_DOT] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [sym__then] = ACTIONS(2646), }, [1280] = { [sym_xml_doc] = STATE(1280), [sym_block_comment] = STATE(1280), [sym_preproc_line] = STATE(1280), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2593), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2591), - [anon_sym_COLON_QMARK] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2593), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2593), - [anon_sym_COLON_GT] = ACTIONS(2593), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2591), - [anon_sym_DOT_LBRACK] = ACTIONS(2593), - [anon_sym_DOT] = ACTIONS(2591), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2591), - [anon_sym_PIPE_PIPE] = ACTIONS(2591), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_COLON_EQ] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2591), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [sym__then] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3345), + [aux_sym_decimal_token1] = ACTIONS(2353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), }, [1281] = { [sym_xml_doc] = STATE(1281), [sym_block_comment] = STATE(1281), [sym_preproc_line] = STATE(1281), - [aux_sym_rules_repeat1] = STATE(1259), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3282), - [sym__dedent] = ACTIONS(2662), - [sym__else] = ACTIONS(2662), - [sym__elif] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__then] = ACTIONS(2660), }, [1282] = { [sym_xml_doc] = STATE(1282), [sym_block_comment] = STATE(1282), [sym_preproc_line] = STATE(1282), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [sym__then] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3347), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__else] = ACTIONS(2695), + [sym__elif] = ACTIONS(2695), }, [1283] = { [sym_xml_doc] = STATE(1283), [sym_block_comment] = STATE(1283), [sym_preproc_line] = STATE(1283), - [sym_identifier] = ACTIONS(2587), - [anon_sym_EQ] = ACTIONS(2589), - [anon_sym_COLON] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_QMARK] = ACTIONS(2587), - [anon_sym_COLON_QMARK] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_COMMA] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_AT_GT] = ACTIONS(2589), - [anon_sym_LT_AT_AT] = ACTIONS(2587), - [anon_sym_AT_AT_GT] = ACTIONS(2589), - [anon_sym_COLON_GT] = ACTIONS(2589), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_LT_DASH] = ACTIONS(2587), - [anon_sym_DOT_LBRACK] = ACTIONS(2589), - [anon_sym_DOT] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_DOT_DOT] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2587), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_or] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2587), - [aux_sym__identifier_or_op_token1] = ACTIONS(2587), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2587), - [anon_sym_DASH_DOT] = ACTIONS(2587), - [anon_sym_PERCENT] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [aux_sym_infix_op_token1] = ACTIONS(2587), - [anon_sym_PIPE_PIPE] = ACTIONS(2587), - [anon_sym_BANG_EQ] = ACTIONS(2589), - [anon_sym_COLON_EQ] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2587), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, [1284] = { [sym_xml_doc] = STATE(1284), [sym_block_comment] = STATE(1284), [sym_preproc_line] = STATE(1284), - [sym_identifier] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_COLON_QMARK] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_AT_GT] = ACTIONS(2577), - [anon_sym_LT_AT_AT] = ACTIONS(2575), - [anon_sym_AT_AT_GT] = ACTIONS(2577), - [anon_sym_COLON_GT] = ACTIONS(2577), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_LT_DASH] = ACTIONS(2575), - [anon_sym_DOT_LBRACK] = ACTIONS(2577), - [anon_sym_DOT] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_or] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2575), - [aux_sym__identifier_or_op_token1] = ACTIONS(2575), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2575), - [anon_sym_DASH_DOT] = ACTIONS(2575), - [anon_sym_PERCENT] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [aux_sym_infix_op_token1] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2577), - [anon_sym_COLON_EQ] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), + [aux_sym_rules_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3349), + [sym__dedent] = ACTIONS(2701), + [sym__else] = ACTIONS(2701), + [sym__elif] = ACTIONS(2701), }, [1285] = { [sym_xml_doc] = STATE(1285), [sym_block_comment] = STATE(1285), [sym_preproc_line] = STATE(1285), - [sym_identifier] = ACTIONS(2605), - [anon_sym_EQ] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_QMARK] = ACTIONS(2605), - [anon_sym_COLON_QMARK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_AT_GT] = ACTIONS(2607), - [anon_sym_LT_AT_AT] = ACTIONS(2605), - [anon_sym_AT_AT_GT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(2607), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_LT_DASH] = ACTIONS(2605), - [anon_sym_DOT_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_DOT_DOT] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_or] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2605), - [aux_sym__identifier_or_op_token1] = ACTIONS(2605), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2605), - [anon_sym_DASH_DOT] = ACTIONS(2605), - [anon_sym_PERCENT] = ACTIONS(2605), - [anon_sym_AMP_AMP] = ACTIONS(2605), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [aux_sym_infix_op_token1] = ACTIONS(2605), - [anon_sym_PIPE_PIPE] = ACTIONS(2605), - [anon_sym_BANG_EQ] = ACTIONS(2607), - [anon_sym_COLON_EQ] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_as] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), }, [1286] = { [sym_xml_doc] = STATE(1286), [sym_block_comment] = STATE(1286), [sym_preproc_line] = STATE(1286), - [sym_identifier] = ACTIONS(2597), - [anon_sym_EQ] = ACTIONS(2599), - [anon_sym_COLON] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_QMARK] = ACTIONS(2597), - [anon_sym_COLON_QMARK] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_AT_GT] = ACTIONS(2599), - [anon_sym_LT_AT_AT] = ACTIONS(2597), - [anon_sym_AT_AT_GT] = ACTIONS(2599), - [anon_sym_COLON_GT] = ACTIONS(2599), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_LT_DASH] = ACTIONS(2597), - [anon_sym_DOT_LBRACK] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_DOT_DOT] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(2599), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_or] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2597), - [aux_sym__identifier_or_op_token1] = ACTIONS(2597), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2597), - [anon_sym_DASH_DOT] = ACTIONS(2597), - [anon_sym_PERCENT] = ACTIONS(2597), - [anon_sym_AMP_AMP] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [aux_sym_infix_op_token1] = ACTIONS(2597), - [anon_sym_PIPE_PIPE] = ACTIONS(2597), - [anon_sym_BANG_EQ] = ACTIONS(2599), - [anon_sym_COLON_EQ] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), + [aux_sym_rules_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3349), + [sym__dedent] = ACTIONS(2701), + [sym__else] = ACTIONS(2701), + [sym__elif] = ACTIONS(2701), }, [1287] = { [sym_xml_doc] = STATE(1287), [sym_block_comment] = STATE(1287), [sym_preproc_line] = STATE(1287), - [sym_identifier] = ACTIONS(2583), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_COLON_QMARK] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_AT_GT] = ACTIONS(2585), - [anon_sym_LT_AT_AT] = ACTIONS(2583), - [anon_sym_AT_AT_GT] = ACTIONS(2585), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2583), - [aux_sym__identifier_or_op_token1] = ACTIONS(2583), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2583), - [anon_sym_DASH_DOT] = ACTIONS(2583), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [aux_sym_infix_op_token1] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), - [sym__then] = ACTIONS(2585), + [aux_sym_long_identifier_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, [1288] = { [sym_xml_doc] = STATE(1288), [sym_block_comment] = STATE(1288), [sym_preproc_line] = STATE(1288), - [aux_sym_long_identifier_repeat1] = STATE(754), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [sym__then] = ACTIONS(2687), }, [1289] = { [sym_xml_doc] = STATE(1289), [sym_block_comment] = STATE(1289), [sym_preproc_line] = STATE(1289), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(3030), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_DOT_DOT2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_DASH_GT] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2732), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_DOT_DOT2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, [1290] = { [sym_xml_doc] = STATE(1290), [sym_block_comment] = STATE(1290), [sym_preproc_line] = STATE(1290), - [sym_identifier] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_COLON_QMARK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_AT_GT] = ACTIONS(2569), - [anon_sym_LT_AT_AT] = ACTIONS(2567), - [anon_sym_AT_AT_GT] = ACTIONS(2569), - [anon_sym_COLON_GT] = ACTIONS(2569), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_LT_DASH] = ACTIONS(2567), - [anon_sym_DOT_LBRACK] = ACTIONS(2569), - [anon_sym_DOT] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_or] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2567), - [aux_sym__identifier_or_op_token1] = ACTIONS(2567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2567), - [anon_sym_DASH_DOT] = ACTIONS(2567), - [anon_sym_PERCENT] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [aux_sym_infix_op_token1] = ACTIONS(2567), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_COLON_EQ] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), - [sym__then] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + [sym__then] = ACTIONS(2650), }, [1291] = { [sym_xml_doc] = STATE(1291), [sym_block_comment] = STATE(1291), [sym_preproc_line] = STATE(1291), - [sym_identifier] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_COLON_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_AT_GT] = ACTIONS(2628), - [anon_sym_LT_AT_AT] = ACTIONS(2626), - [anon_sym_AT_AT_GT] = ACTIONS(2628), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_DOT_LBRACK] = ACTIONS(2628), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_LPAREN2] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2626), - [aux_sym__identifier_or_op_token1] = ACTIONS(2626), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [aux_sym_infix_op_token1] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_DOLLAR] = ACTIONS(2626), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), - [sym__then] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__then] = ACTIONS(2605), }, [1292] = { [sym_xml_doc] = STATE(1292), [sym_block_comment] = STATE(1292), [sym_preproc_line] = STATE(1292), - [sym_identifier] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_COLON_QMARK] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_AT_GT] = ACTIONS(2573), - [anon_sym_LT_AT_AT] = ACTIONS(2571), - [anon_sym_AT_AT_GT] = ACTIONS(2573), - [anon_sym_COLON_GT] = ACTIONS(2573), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_LT_DASH] = ACTIONS(2571), - [anon_sym_DOT_LBRACK] = ACTIONS(2573), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2571), - [aux_sym__identifier_or_op_token1] = ACTIONS(2571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2571), - [anon_sym_DASH_DOT] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [aux_sym_infix_op_token1] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2573), - [anon_sym_COLON_EQ] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [sym__then] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + [sym__then] = ACTIONS(2638), }, [1293] = { [sym_xml_doc] = STATE(1293), [sym_block_comment] = STATE(1293), [sym_preproc_line] = STATE(1293), - [sym_identifier] = ACTIONS(2609), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_COLON] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_QMARK] = ACTIONS(2609), - [anon_sym_COLON_QMARK] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_AT_GT] = ACTIONS(2611), - [anon_sym_LT_AT_AT] = ACTIONS(2609), - [anon_sym_AT_AT_GT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_LT_DASH] = ACTIONS(2609), - [anon_sym_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_or] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2609), - [aux_sym__identifier_or_op_token1] = ACTIONS(2609), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2609), - [anon_sym_DASH_DOT] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2609), - [anon_sym_AMP_AMP] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [aux_sym_infix_op_token1] = ACTIONS(2609), - [anon_sym_PIPE_PIPE] = ACTIONS(2609), - [anon_sym_BANG_EQ] = ACTIONS(2611), - [anon_sym_COLON_EQ] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_DOT_DOT2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), }, [1294] = { [sym_xml_doc] = STATE(1294), [sym_block_comment] = STATE(1294), [sym_preproc_line] = STATE(1294), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), - [sym__then] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + [sym__then] = ACTIONS(2630), }, [1295] = { [sym_xml_doc] = STATE(1295), [sym_block_comment] = STATE(1295), [sym_preproc_line] = STATE(1295), - [sym_identifier] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_QMARK] = ACTIONS(2601), - [anon_sym_COLON_QMARK] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_AT_GT] = ACTIONS(2603), - [anon_sym_LT_AT_AT] = ACTIONS(2601), - [anon_sym_AT_AT_GT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_LT_DASH] = ACTIONS(2601), - [anon_sym_DOT_LBRACK] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_DOT_DOT] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_or] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2601), - [aux_sym__identifier_or_op_token1] = ACTIONS(2601), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2601), - [anon_sym_DASH_DOT] = ACTIONS(2601), - [anon_sym_PERCENT] = ACTIONS(2601), - [anon_sym_AMP_AMP] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [aux_sym_infix_op_token1] = ACTIONS(2601), - [anon_sym_PIPE_PIPE] = ACTIONS(2601), - [anon_sym_BANG_EQ] = ACTIONS(2603), - [anon_sym_COLON_EQ] = ACTIONS(2603), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2636), + [anon_sym_EQ] = ACTIONS(2638), + [anon_sym_COLON] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_QMARK] = ACTIONS(2636), + [anon_sym_COLON_QMARK] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_AT_GT] = ACTIONS(2638), + [anon_sym_LT_AT_AT] = ACTIONS(2636), + [anon_sym_AT_AT_GT] = ACTIONS(2638), + [anon_sym_COLON_GT] = ACTIONS(2638), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2636), + [anon_sym_DOT_LBRACK] = ACTIONS(2638), + [anon_sym_DOT] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_or] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2636), + [aux_sym__identifier_or_op_token1] = ACTIONS(2636), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2636), + [anon_sym_DASH_DOT] = ACTIONS(2636), + [anon_sym_PERCENT] = ACTIONS(2636), + [anon_sym_AMP_AMP] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [aux_sym_infix_op_token1] = ACTIONS(2636), + [anon_sym_PIPE_PIPE] = ACTIONS(2636), + [anon_sym_BANG_EQ] = ACTIONS(2638), + [anon_sym_COLON_EQ] = ACTIONS(2638), + [anon_sym_DOLLAR] = ACTIONS(2636), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), }, [1296] = { [sym_xml_doc] = STATE(1296), [sym_block_comment] = STATE(1296), [sym_preproc_line] = STATE(1296), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_DASH_GT] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(2675), + [anon_sym_COLON_QMARK] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_AT_GT] = ACTIONS(2677), + [anon_sym_LT_AT_AT] = ACTIONS(2675), + [anon_sym_AT_AT_GT] = ACTIONS(2677), + [anon_sym_COLON_GT] = ACTIONS(2677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_LT_DASH] = ACTIONS(2675), + [anon_sym_DOT_LBRACK] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_or] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2675), + [aux_sym__identifier_or_op_token1] = ACTIONS(2675), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2675), + [anon_sym_DASH_DOT] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [aux_sym_infix_op_token1] = ACTIONS(2675), + [anon_sym_PIPE_PIPE] = ACTIONS(2675), + [anon_sym_BANG_EQ] = ACTIONS(2677), + [anon_sym_COLON_EQ] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), }, [1297] = { [sym_xml_doc] = STATE(1297), [sym_block_comment] = STATE(1297), [sym_preproc_line] = STATE(1297), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2658), + [anon_sym_EQ] = ACTIONS(2660), + [anon_sym_COLON] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_QMARK] = ACTIONS(2658), + [anon_sym_COLON_QMARK] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_AT_GT] = ACTIONS(2660), + [anon_sym_LT_AT_AT] = ACTIONS(2658), + [anon_sym_AT_AT_GT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(2660), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_LT_DASH] = ACTIONS(2658), + [anon_sym_DOT_LBRACK] = ACTIONS(2660), + [anon_sym_DOT] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_or] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2658), + [aux_sym__identifier_or_op_token1] = ACTIONS(2658), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2658), + [anon_sym_DASH_DOT] = ACTIONS(2658), + [anon_sym_PERCENT] = ACTIONS(2658), + [anon_sym_AMP_AMP] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [aux_sym_infix_op_token1] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2658), + [anon_sym_BANG_EQ] = ACTIONS(2660), + [anon_sym_COLON_EQ] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2658), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + [sym__then] = ACTIONS(2660), }, [1298] = { [sym_xml_doc] = STATE(1298), [sym_block_comment] = STATE(1298), [sym_preproc_line] = STATE(1298), - [aux_sym_rules_repeat1] = STATE(1298), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3292), - [sym__dedent] = ACTIONS(2669), - [sym__else] = ACTIONS(2669), - [sym__elif] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_DOT_DOT] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), }, [1299] = { [sym_xml_doc] = STATE(1299), [sym_block_comment] = STATE(1299), [sym_preproc_line] = STATE(1299), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_as] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [sym__dedent] = ACTIONS(2756), + [aux_sym_rules_repeat1] = STATE(1334), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_as] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3356), + [sym__dedent] = ACTIONS(2701), }, [1300] = { [sym_xml_doc] = STATE(1300), [sym_block_comment] = STATE(1300), [sym_preproc_line] = STATE(1300), - [aux_sym_rules_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3299), - [sym__else] = ACTIONS(2679), - [sym__elif] = ACTIONS(2679), + [aux_sym_rules_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3362), + [sym__dedent] = ACTIONS(2710), + [sym__else] = ACTIONS(2710), + [sym__elif] = ACTIONS(2710), }, [1301] = { [sym_xml_doc] = STATE(1301), [sym_block_comment] = STATE(1301), [sym_preproc_line] = STATE(1301), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__else] = ACTIONS(2649), - [sym__elif] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__dedent] = ACTIONS(2754), + [sym__else] = ACTIONS(2754), + [sym__elif] = ACTIONS(2754), }, [1302] = { [sym_xml_doc] = STATE(1302), [sym_block_comment] = STATE(1302), [sym_preproc_line] = STATE(1302), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(3030), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_DOT_DOT2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3365), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__dedent] = ACTIONS(2760), + [sym__else] = ACTIONS(2760), + [sym__elif] = ACTIONS(2760), }, [1303] = { [sym_xml_doc] = STATE(1303), [sym_block_comment] = STATE(1303), [sym_preproc_line] = STATE(1303), - [aux_sym_rules_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3302), - [sym__else] = ACTIONS(2662), - [sym__elif] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_DOT_DOT2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3099), + [aux_sym_decimal_token1] = ACTIONS(2311), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, [1304] = { [sym_xml_doc] = STATE(1304), [sym_block_comment] = STATE(1304), [sym_preproc_line] = STATE(1304), - [aux_sym_long_identifier_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3367), + [aux_sym_decimal_token1] = ACTIONS(2399), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, [1305] = { [sym_xml_doc] = STATE(1305), [sym_block_comment] = STATE(1305), [sym_preproc_line] = STATE(1305), - [aux_sym_sequential_expression_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3308), - [sym__dedent] = ACTIONS(3078), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + [sym__then] = ACTIONS(2634), }, [1306] = { [sym_xml_doc] = STATE(1306), [sym_block_comment] = STATE(1306), [sym_preproc_line] = STATE(1306), - [aux_sym_rules_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_DASH_GT] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_DOT_DOT] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3313), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + [sym__then] = ACTIONS(2681), }, [1307] = { [sym_xml_doc] = STATE(1307), [sym_block_comment] = STATE(1307), [sym_preproc_line] = STATE(1307), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - [sym__dedent] = ACTIONS(2669), - [sym__else] = ACTIONS(2669), - [sym__elif] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), }, [1308] = { [sym_xml_doc] = STATE(1308), [sym_block_comment] = STATE(1308), [sym_preproc_line] = STATE(1308), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__else] = ACTIONS(2703), - [sym__elif] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2681), + [anon_sym_COLON] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_QMARK] = ACTIONS(2679), + [anon_sym_COLON_QMARK] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_AT_GT] = ACTIONS(2681), + [anon_sym_LT_AT_AT] = ACTIONS(2679), + [anon_sym_AT_AT_GT] = ACTIONS(2681), + [anon_sym_COLON_GT] = ACTIONS(2681), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_DOT_LBRACK] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2679), + [aux_sym__identifier_or_op_token1] = ACTIONS(2679), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2679), + [anon_sym_DASH_DOT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [aux_sym_infix_op_token1] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_COLON_EQ] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), }, [1309] = { [sym_xml_doc] = STATE(1309), [sym_block_comment] = STATE(1309), [sym_preproc_line] = STATE(1309), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2662), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_QMARK] = ACTIONS(2662), + [anon_sym_COLON_QMARK] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_COMMA] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_AT_GT] = ACTIONS(2664), + [anon_sym_LT_AT_AT] = ACTIONS(2662), + [anon_sym_AT_AT_GT] = ACTIONS(2664), + [anon_sym_COLON_GT] = ACTIONS(2664), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_LT_DASH] = ACTIONS(2662), + [anon_sym_DOT_LBRACK] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2662), + [aux_sym__identifier_or_op_token1] = ACTIONS(2662), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2662), + [anon_sym_DASH_DOT] = ACTIONS(2662), + [anon_sym_PERCENT] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [aux_sym_infix_op_token1] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_COLON_EQ] = ACTIONS(2664), + [anon_sym_DOLLAR] = ACTIONS(2662), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), + [sym__then] = ACTIONS(2664), }, [1310] = { [sym_xml_doc] = STATE(1310), [sym_block_comment] = STATE(1310), [sym_preproc_line] = STATE(1310), - [aux_sym_long_identifier_repeat1] = STATE(1310), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_EQ2] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_DASH_GT] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3369), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, [1311] = { [sym_xml_doc] = STATE(1311), [sym_block_comment] = STATE(1311), [sym_preproc_line] = STATE(1311), - [aux_sym_rules_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_DASH_GT] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3321), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), + [sym__else] = ACTIONS(2776), + [sym__elif] = ACTIONS(2776), }, [1312] = { [sym_xml_doc] = STATE(1312), [sym_block_comment] = STATE(1312), [sym_preproc_line] = STATE(1312), - [aux_sym_rules_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3324), - [sym__else] = ACTIONS(2653), - [sym__elif] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_DASH_GT] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, [1313] = { [sym_xml_doc] = STATE(1313), [sym_block_comment] = STATE(1313), [sym_preproc_line] = STATE(1313), - [aux_sym_rules_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3324), - [sym__else] = ACTIONS(2653), - [sym__elif] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2644), + [anon_sym_EQ] = ACTIONS(2646), + [anon_sym_COLON] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_QMARK] = ACTIONS(2644), + [anon_sym_COLON_QMARK] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_COLON_COLON] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_AT_GT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2644), + [anon_sym_AT_AT_GT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_LT_DASH] = ACTIONS(2644), + [anon_sym_DOT_LBRACK] = ACTIONS(2646), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_DOT_DOT] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_or] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2644), + [aux_sym__identifier_or_op_token1] = ACTIONS(2644), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2644), + [anon_sym_DASH_DOT] = ACTIONS(2644), + [anon_sym_PERCENT] = ACTIONS(2644), + [anon_sym_AMP_AMP] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [aux_sym_infix_op_token1] = ACTIONS(2644), + [anon_sym_PIPE_PIPE] = ACTIONS(2644), + [anon_sym_BANG_EQ] = ACTIONS(2646), + [anon_sym_COLON_EQ] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), }, [1314] = { [sym_xml_doc] = STATE(1314), [sym_block_comment] = STATE(1314), [sym_preproc_line] = STATE(1314), - [aux_sym_long_identifier_repeat1] = STATE(1310), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_EQ2] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), + [aux_sym_rules_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3373), + [sym__dedent] = ACTIONS(2744), }, [1315] = { [sym_xml_doc] = STATE(1315), [sym_block_comment] = STATE(1315), [sym_preproc_line] = STATE(1315), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__dedent] = ACTIONS(2716), - [sym__else] = ACTIONS(2716), - [sym__elif] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2632), + [anon_sym_EQ] = ACTIONS(2634), + [anon_sym_COLON] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2632), + [anon_sym_COLON_QMARK] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_COMMA] = ACTIONS(2634), + [anon_sym_COLON_COLON] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_AT_GT] = ACTIONS(2634), + [anon_sym_LT_AT_AT] = ACTIONS(2632), + [anon_sym_AT_AT_GT] = ACTIONS(2634), + [anon_sym_COLON_GT] = ACTIONS(2634), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_LT_DASH] = ACTIONS(2632), + [anon_sym_DOT_LBRACK] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_DOT_DOT] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_or] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2632), + [aux_sym__identifier_or_op_token1] = ACTIONS(2632), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2632), + [anon_sym_DASH_DOT] = ACTIONS(2632), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [aux_sym_infix_op_token1] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2634), + [anon_sym_COLON_EQ] = ACTIONS(2634), + [anon_sym_DOLLAR] = ACTIONS(2632), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), }, [1316] = { [sym_xml_doc] = STATE(1316), [sym_block_comment] = STATE(1316), [sym_preproc_line] = STATE(1316), - [sym_identifier] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2591), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2591), - [aux_sym__identifier_or_op_token1] = ACTIONS(2591), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2591), - [anon_sym_DASH_DOT] = ACTIONS(2591), - [anon_sym_PERCENT] = ACTIONS(2591), - [anon_sym_AMP_AMP] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_COLON_QMARK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_AT_GT] = ACTIONS(2687), + [anon_sym_LT_AT_AT] = ACTIONS(2685), + [anon_sym_AT_AT_GT] = ACTIONS(2687), + [anon_sym_COLON_GT] = ACTIONS(2687), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_DOT_LBRACK] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2685), + [aux_sym__identifier_or_op_token1] = ACTIONS(2685), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2685), + [anon_sym_DASH_DOT] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [aux_sym_infix_op_token1] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), }, [1317] = { [sym_xml_doc] = STATE(1317), [sym_block_comment] = STATE(1317), [sym_preproc_line] = STATE(1317), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [sym__dedent] = ACTIONS(2724), - [sym__else] = ACTIONS(2724), - [sym__elif] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2628), + [anon_sym_EQ] = ACTIONS(2630), + [anon_sym_COLON] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_QMARK] = ACTIONS(2628), + [anon_sym_COLON_QMARK] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_COMMA] = ACTIONS(2630), + [anon_sym_COLON_COLON] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_AT_GT] = ACTIONS(2630), + [anon_sym_LT_AT_AT] = ACTIONS(2628), + [anon_sym_AT_AT_GT] = ACTIONS(2630), + [anon_sym_COLON_GT] = ACTIONS(2630), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_LT_DASH] = ACTIONS(2628), + [anon_sym_DOT_LBRACK] = ACTIONS(2630), + [anon_sym_DOT] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_DOT_DOT] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_or] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2628), + [aux_sym__identifier_or_op_token1] = ACTIONS(2628), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2628), + [anon_sym_DASH_DOT] = ACTIONS(2628), + [anon_sym_PERCENT] = ACTIONS(2628), + [anon_sym_AMP_AMP] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [aux_sym_infix_op_token1] = ACTIONS(2628), + [anon_sym_PIPE_PIPE] = ACTIONS(2628), + [anon_sym_BANG_EQ] = ACTIONS(2630), + [anon_sym_COLON_EQ] = ACTIONS(2630), + [anon_sym_DOLLAR] = ACTIONS(2628), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), }, [1318] = { [sym_xml_doc] = STATE(1318), [sym_block_comment] = STATE(1318), [sym_preproc_line] = STATE(1318), - [aux_sym_rules_repeat1] = STATE(1332), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3331), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), + [sym__else] = ACTIONS(2734), + [sym__elif] = ACTIONS(2734), }, [1319] = { [sym_xml_doc] = STATE(1319), [sym_block_comment] = STATE(1319), [sym_preproc_line] = STATE(1319), - [aux_sym_rules_repeat1] = STATE(1333), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_as] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3331), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, [1320] = { [sym_xml_doc] = STATE(1320), [sym_block_comment] = STATE(1320), [sym_preproc_line] = STATE(1320), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), - [sym__else] = ACTIONS(2649), - [sym__elif] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_COLON_QMARK] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2621), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2621), + [anon_sym_COLON_GT] = ACTIONS(2621), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_DOT_LBRACK] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + [sym__then] = ACTIONS(2621), }, [1321] = { [sym_xml_doc] = STATE(1321), [sym_block_comment] = STATE(1321), [sym_preproc_line] = STATE(1321), - [aux_sym_rules_repeat1] = STATE(1318), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_as] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2660), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3334), + [sym_identifier] = ACTIONS(2648), + [anon_sym_EQ] = ACTIONS(2650), + [anon_sym_COLON] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_QMARK] = ACTIONS(2648), + [anon_sym_COLON_QMARK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_COMMA] = ACTIONS(2650), + [anon_sym_COLON_COLON] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_AT_GT] = ACTIONS(2650), + [anon_sym_LT_AT_AT] = ACTIONS(2648), + [anon_sym_AT_AT_GT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_LT_DASH] = ACTIONS(2648), + [anon_sym_DOT_LBRACK] = ACTIONS(2650), + [anon_sym_DOT] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_DOT_DOT] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_LPAREN2] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_or] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2648), + [aux_sym__identifier_or_op_token1] = ACTIONS(2648), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2648), + [anon_sym_DASH_DOT] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), + [anon_sym_AMP_AMP] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [aux_sym_infix_op_token1] = ACTIONS(2648), + [anon_sym_PIPE_PIPE] = ACTIONS(2648), + [anon_sym_BANG_EQ] = ACTIONS(2650), + [anon_sym_COLON_EQ] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), }, [1322] = { [sym_xml_doc] = STATE(1322), [sym_block_comment] = STATE(1322), [sym_preproc_line] = STATE(1322), - [aux_sym_rules_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_DASH_GT] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3321), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_GT_RBRACK] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), }, [1323] = { [sym_xml_doc] = STATE(1323), [sym_block_comment] = STATE(1323), [sym_preproc_line] = STATE(1323), - [aux_sym_rules_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_DASH_GT] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3340), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_DOT_DOT2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__dedent] = ACTIONS(2754), }, [1324] = { [sym_xml_doc] = STATE(1324), [sym_block_comment] = STATE(1324), [sym_preproc_line] = STATE(1324), - [aux_sym_long_identifier_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - [sym__else] = ACTIONS(2494), - [sym__elif] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2640), + [anon_sym_EQ] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_QMARK] = ACTIONS(2640), + [anon_sym_COLON_QMARK] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_COMMA] = ACTIONS(2642), + [anon_sym_COLON_COLON] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_AT_GT] = ACTIONS(2642), + [anon_sym_LT_AT_AT] = ACTIONS(2640), + [anon_sym_AT_AT_GT] = ACTIONS(2642), + [anon_sym_COLON_GT] = ACTIONS(2642), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_LT_DASH] = ACTIONS(2640), + [anon_sym_DOT_LBRACK] = ACTIONS(2642), + [anon_sym_DOT] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2642), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_or] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2640), + [aux_sym__identifier_or_op_token1] = ACTIONS(2640), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2640), + [anon_sym_DASH_DOT] = ACTIONS(2640), + [anon_sym_PERCENT] = ACTIONS(2640), + [anon_sym_AMP_AMP] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [aux_sym_infix_op_token1] = ACTIONS(2640), + [anon_sym_PIPE_PIPE] = ACTIONS(2640), + [anon_sym_BANG_EQ] = ACTIONS(2642), + [anon_sym_COLON_EQ] = ACTIONS(2642), + [anon_sym_DOLLAR] = ACTIONS(2640), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + [sym__then] = ACTIONS(2642), }, [1325] = { [sym_xml_doc] = STATE(1325), [sym_block_comment] = STATE(1325), [sym_preproc_line] = STATE(1325), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + [sym__else] = ACTIONS(2695), + [sym__elif] = ACTIONS(2695), + }, + [1326] = { + [sym_xml_doc] = STATE(1326), + [sym_block_comment] = STATE(1326), + [sym_preproc_line] = STATE(1326), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + [sym__then] = ACTIONS(2617), + }, + [1327] = { + [sym_xml_doc] = STATE(1327), + [sym_block_comment] = STATE(1327), + [sym_preproc_line] = STATE(1327), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3378), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__dedent] = ACTIONS(2760), + }, + [1328] = { + [sym_xml_doc] = STATE(1328), + [sym_block_comment] = STATE(1328), + [sym_preproc_line] = STATE(1328), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_DOT_DOT2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3380), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__dedent] = ACTIONS(2760), + }, + [1329] = { + [sym_xml_doc] = STATE(1329), + [sym_block_comment] = STATE(1329), + [sym_preproc_line] = STATE(1329), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_DOT_DOT2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__dedent] = ACTIONS(2695), + }, + [1330] = { + [sym_xml_doc] = STATE(1330), + [sym_block_comment] = STATE(1330), + [sym_preproc_line] = STATE(1330), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), + }, + [1331] = { + [sym_xml_doc] = STATE(1331), + [sym_block_comment] = STATE(1331), + [sym_preproc_line] = STATE(1331), + [aux_sym_rules_repeat1] = STATE(1331), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_as] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3387), + [sym__dedent] = ACTIONS(2710), + }, + [1332] = { + [sym_xml_doc] = STATE(1332), + [sym_block_comment] = STATE(1332), + [sym_preproc_line] = STATE(1332), + [aux_sym_rules_repeat1] = STATE(1331), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_as] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3356), + [sym__dedent] = ACTIONS(2701), + }, + [1333] = { + [sym_xml_doc] = STATE(1333), + [sym_block_comment] = STATE(1333), + [sym_preproc_line] = STATE(1333), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), + }, + [1334] = { + [sym_xml_doc] = STATE(1334), + [sym_block_comment] = STATE(1334), + [sym_preproc_line] = STATE(1334), + [aux_sym_rules_repeat1] = STATE(1331), [sym_identifier] = ACTIONS(2718), [anon_sym_EQ] = ACTIONS(2720), [anon_sym_COLON] = ACTIONS(2718), @@ -185066,7 +183173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2718), [anon_sym_COMMA] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(3354), [anon_sym_AMP] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2718), [anon_sym_LBRACK_PIPE] = ACTIONS(2720), @@ -185131,200 +183238,929 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), [sym_int] = ACTIONS(2718), [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [sym__newline] = ACTIONS(3390), [sym__dedent] = ACTIONS(2720), }, - [1326] = { - [sym_xml_doc] = STATE(1326), - [sym_block_comment] = STATE(1326), - [sym_preproc_line] = STATE(1326), - [aux_sym_long_identifier_repeat1] = STATE(1339), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), + [1335] = { + [sym_xml_doc] = STATE(1335), + [sym_block_comment] = STATE(1335), + [sym_preproc_line] = STATE(1335), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_DOT_DOT2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), }, - [1327] = { - [sym_xml_doc] = STATE(1327), - [sym_block_comment] = STATE(1327), - [sym_preproc_line] = STATE(1327), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [1336] = { + [sym_xml_doc] = STATE(1336), + [sym_block_comment] = STATE(1336), + [sym_preproc_line] = STATE(1336), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + [sym__dedent] = ACTIONS(2835), + [sym__else] = ACTIONS(2835), + [sym__elif] = ACTIONS(2835), }, - [1328] = { - [sym_xml_doc] = STATE(1328), - [sym_block_comment] = STATE(1328), - [sym_preproc_line] = STATE(1328), + [1337] = { + [sym_xml_doc] = STATE(1337), + [sym_block_comment] = STATE(1337), + [sym_preproc_line] = STATE(1337), + [aux_sym_rules_repeat1] = STATE(1345), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_as] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3395), + }, + [1338] = { + [sym_xml_doc] = STATE(1338), + [sym_block_comment] = STATE(1338), + [sym_preproc_line] = STATE(1338), + [aux_sym_rules_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_as] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3395), + }, + [1339] = { + [sym_xml_doc] = STATE(1339), + [sym_block_comment] = STATE(1339), + [sym_preproc_line] = STATE(1339), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_as] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + [sym__dedent] = ACTIONS(2797), + }, + [1340] = { + [sym_xml_doc] = STATE(1340), + [sym_block_comment] = STATE(1340), + [sym_preproc_line] = STATE(1340), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [sym__dedent] = ACTIONS(2784), + [sym__else] = ACTIONS(2784), + [sym__elif] = ACTIONS(2784), + }, + [1341] = { + [sym_xml_doc] = STATE(1341), + [sym_block_comment] = STATE(1341), + [sym_preproc_line] = STATE(1341), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_as] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [sym__dedent] = ACTIONS(2710), + }, + [1342] = { + [sym_xml_doc] = STATE(1342), + [sym_block_comment] = STATE(1342), + [sym_preproc_line] = STATE(1342), + [aux_sym_rules_repeat1] = STATE(1391), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_DASH_GT] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3400), + }, + [1343] = { + [sym_xml_doc] = STATE(1343), + [sym_block_comment] = STATE(1343), + [sym_preproc_line] = STATE(1343), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), + [sym__else] = ACTIONS(2776), + [sym__elif] = ACTIONS(2776), + }, + [1344] = { + [sym_xml_doc] = STATE(1344), + [sym_block_comment] = STATE(1344), + [sym_preproc_line] = STATE(1344), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__else] = ACTIONS(2776), + [sym__elif] = ACTIONS(2776), + }, + [1345] = { + [sym_xml_doc] = STATE(1345), + [sym_block_comment] = STATE(1345), + [sym_preproc_line] = STATE(1345), + [aux_sym_rules_repeat1] = STATE(1351), [sym_identifier] = ACTIONS(2718), [anon_sym_EQ] = ACTIONS(2720), [anon_sym_COLON] = ACTIONS(2718), @@ -185335,15 +184171,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2718), [anon_sym_QMARK] = ACTIONS(2718), [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_as] = ACTIONS(2718), [anon_sym_LPAREN] = ACTIONS(2718), [anon_sym_COMMA] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(3393), [anon_sym_AMP] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2718), [anon_sym_LBRACK_PIPE] = ACTIONS(2720), [anon_sym_LBRACE] = ACTIONS(2718), [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2718), [anon_sym_new] = ACTIONS(2718), [anon_sym_return_BANG] = ACTIONS(2720), [anon_sym_yield] = ACTIONS(2718), @@ -185402,7421 +184240,3931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), [sym_int] = ACTIONS(2718), [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [sym__dedent] = ACTIONS(2720), - [sym__else] = ACTIONS(2720), - [sym__elif] = ACTIONS(2720), - }, - [1329] = { - [sym_xml_doc] = STATE(1329), - [sym_block_comment] = STATE(1329), - [sym_preproc_line] = STATE(1329), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [sym__dedent] = ACTIONS(2756), - [sym__else] = ACTIONS(2756), - [sym__elif] = ACTIONS(2756), - }, - [1330] = { - [sym_xml_doc] = STATE(1330), - [sym_block_comment] = STATE(1330), - [sym_preproc_line] = STATE(1330), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - [sym__else] = ACTIONS(2703), - [sym__elif] = ACTIONS(2703), - }, - [1331] = { - [sym_xml_doc] = STATE(1331), - [sym_block_comment] = STATE(1331), - [sym_preproc_line] = STATE(1331), - [aux_sym_rules_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_DASH_GT] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3351), - }, - [1332] = { - [sym_xml_doc] = STATE(1332), - [sym_block_comment] = STATE(1332), - [sym_preproc_line] = STATE(1332), - [aux_sym_rules_repeat1] = STATE(1332), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3354), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3357), - }, - [1333] = { - [sym_xml_doc] = STATE(1333), - [sym_block_comment] = STATE(1333), - [sym_preproc_line] = STATE(1333), - [aux_sym_rules_repeat1] = STATE(1332), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_as] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3360), - }, - [1334] = { - [sym_xml_doc] = STATE(1334), - [sym_block_comment] = STATE(1334), - [sym_preproc_line] = STATE(1334), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(3030), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_DOT_DOT2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - }, - [1335] = { - [sym_xml_doc] = STATE(1335), - [sym_block_comment] = STATE(1335), - [sym_preproc_line] = STATE(1335), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__dedent] = ACTIONS(2703), - }, - [1336] = { - [sym_xml_doc] = STATE(1336), - [sym_block_comment] = STATE(1336), - [sym_preproc_line] = STATE(1336), - [aux_sym_sequential_expression_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__dedent] = ACTIONS(2948), - }, - [1337] = { - [sym_xml_doc] = STATE(1337), - [sym_block_comment] = STATE(1337), - [sym_preproc_line] = STATE(1337), - [aux_sym_long_identifier_repeat1] = STATE(1337), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [1338] = { - [sym_xml_doc] = STATE(1338), - [sym_block_comment] = STATE(1338), - [sym_preproc_line] = STATE(1338), - [aux_sym_rules_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3369), - [sym__else] = ACTIONS(2669), - [sym__elif] = ACTIONS(2669), - }, - [1339] = { - [sym_xml_doc] = STATE(1339), - [sym_block_comment] = STATE(1339), - [sym_preproc_line] = STATE(1339), - [aux_sym_long_identifier_repeat1] = STATE(1337), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3372), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - }, - [1340] = { - [sym_xml_doc] = STATE(1340), - [sym_block_comment] = STATE(1340), - [sym_preproc_line] = STATE(1340), - [aux_sym_long_identifier_repeat1] = STATE(1314), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3374), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_EQ2] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), - }, - [1341] = { - [sym_xml_doc] = STATE(1341), - [sym_block_comment] = STATE(1341), - [sym_preproc_line] = STATE(1341), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - }, - [1342] = { - [sym_xml_doc] = STATE(1342), - [sym_block_comment] = STATE(1342), - [sym_preproc_line] = STATE(1342), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__dedent] = ACTIONS(2716), - }, - [1343] = { - [sym_xml_doc] = STATE(1343), - [sym_block_comment] = STATE(1343), - [sym_preproc_line] = STATE(1343), - [aux_sym_long_identifier_repeat1] = STATE(1324), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__dedent] = ACTIONS(2523), - [sym__else] = ACTIONS(2523), - [sym__elif] = ACTIONS(2523), - }, - [1344] = { - [sym_xml_doc] = STATE(1344), - [sym_block_comment] = STATE(1344), - [sym_preproc_line] = STATE(1344), - [aux_sym_sequential_expression_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__dedent] = ACTIONS(2948), - [sym__else] = ACTIONS(2948), - [sym__elif] = ACTIONS(2948), - }, - [1345] = { - [sym_xml_doc] = STATE(1345), - [sym_block_comment] = STATE(1345), - [sym_preproc_line] = STATE(1345), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - [sym__dedent] = ACTIONS(2669), + [sym__newline] = ACTIONS(3405), }, [1346] = { [sym_xml_doc] = STATE(1346), [sym_block_comment] = STATE(1346), [sym_preproc_line] = STATE(1346), - [aux_sym_sequential_expression_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3384), - [sym__dedent] = ACTIONS(3078), - [sym__else] = ACTIONS(3078), - [sym__elif] = ACTIONS(3078), + [aux_sym_long_identifier_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_EQ2] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, [1347] = { [sym_xml_doc] = STATE(1347), [sym_block_comment] = STATE(1347), [sym_preproc_line] = STATE(1347), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_as] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [sym__dedent] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + [sym__dedent] = ACTIONS(2803), + [sym__else] = ACTIONS(2803), + [sym__elif] = ACTIONS(2803), }, [1348] = { [sym_xml_doc] = STATE(1348), [sym_block_comment] = STATE(1348), [sym_preproc_line] = STATE(1348), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - [sym__dedent] = ACTIONS(2731), + [aux_sym_long_identifier_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2511), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_EQ2] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), }, [1349] = { [sym_xml_doc] = STATE(1349), [sym_block_comment] = STATE(1349), [sym_preproc_line] = STATE(1349), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - [sym__dedent] = ACTIONS(2731), - [sym__else] = ACTIONS(2731), - [sym__elif] = ACTIONS(2731), + [aux_sym_long_identifier_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2603), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_EQ2] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [1350] = { [sym_xml_doc] = STATE(1350), [sym_block_comment] = STATE(1350), [sym_preproc_line] = STATE(1350), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - [sym__dedent] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, [1351] = { [sym_xml_doc] = STATE(1351), [sym_block_comment] = STATE(1351), [sym_preproc_line] = STATE(1351), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - [sym__dedent] = ACTIONS(3074), - [sym__else] = ACTIONS(3074), - [sym__elif] = ACTIONS(3074), + [aux_sym_rules_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_as] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3422), }, [1352] = { [sym_xml_doc] = STATE(1352), [sym_block_comment] = STATE(1352), [sym_preproc_line] = STATE(1352), - [aux_sym_long_identifier_repeat1] = STATE(1389), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_DASH_GT] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2615), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2615), + [aux_sym__identifier_or_op_token1] = ACTIONS(2615), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2615), + [anon_sym_DASH_DOT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2617), }, [1353] = { [sym_xml_doc] = STATE(1353), [sym_block_comment] = STATE(1353), [sym_preproc_line] = STATE(1353), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [sym__else] = ACTIONS(2756), - [sym__elif] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3425), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), }, [1354] = { [sym_xml_doc] = STATE(1354), [sym_block_comment] = STATE(1354), [sym_preproc_line] = STATE(1354), - [sym_identifier] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [sym__else] = ACTIONS(2720), - [sym__elif] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__else] = ACTIONS(2754), + [sym__elif] = ACTIONS(2754), }, [1355] = { [sym_xml_doc] = STATE(1355), [sym_block_comment] = STATE(1355), [sym_preproc_line] = STATE(1355), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__else] = ACTIONS(2703), - [sym__elif] = ACTIONS(2703), + [aux_sym_long_identifier_repeat1] = STATE(1376), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), + [sym__else] = ACTIONS(2514), + [sym__elif] = ACTIONS(2514), }, [1356] = { [sym_xml_doc] = STATE(1356), [sym_block_comment] = STATE(1356), [sym_preproc_line] = STATE(1356), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_DASH_GT] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_DOT_DOT] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_RBRACK] = ACTIONS(2776), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_DOT_DOT2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, [1357] = { [sym_xml_doc] = STATE(1357), [sym_block_comment] = STATE(1357), [sym_preproc_line] = STATE(1357), - [sym_identifier] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_DASH_GT] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + [sym__dedent] = ACTIONS(2835), }, [1358] = { [sym_xml_doc] = STATE(1358), [sym_block_comment] = STATE(1358), [sym_preproc_line] = STATE(1358), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__else] = ACTIONS(2695), + [sym__elif] = ACTIONS(2695), }, [1359] = { [sym_xml_doc] = STATE(1359), [sym_block_comment] = STATE(1359), [sym_preproc_line] = STATE(1359), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_DASH_GT] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), + [aux_sym_rules_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3431), }, [1360] = { [sym_xml_doc] = STATE(1360), [sym_block_comment] = STATE(1360), [sym_preproc_line] = STATE(1360), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_DASH_GT] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), + [sym__else] = ACTIONS(2734), + [sym__elif] = ACTIONS(2734), }, [1361] = { [sym_xml_doc] = STATE(1361), [sym_block_comment] = STATE(1361), [sym_preproc_line] = STATE(1361), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_DASH_GT] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_DOT_DOT] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), + [aux_sym_rules_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_DASH_GT] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3437), }, [1362] = { [sym_xml_doc] = STATE(1362), [sym_block_comment] = STATE(1362), [sym_preproc_line] = STATE(1362), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_DASH_GT] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_DOT_DOT] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_as] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__dedent] = ACTIONS(2776), }, [1363] = { [sym_xml_doc] = STATE(1363), [sym_block_comment] = STATE(1363), [sym_preproc_line] = STATE(1363), - [aux_sym_long_identifier_repeat1] = STATE(1532), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__else] = ACTIONS(2523), - [sym__elif] = ACTIONS(2523), + [aux_sym_long_identifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [1364] = { [sym_xml_doc] = STATE(1364), [sym_block_comment] = STATE(1364), [sym_preproc_line] = STATE(1364), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__then] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_as] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), }, [1365] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1365), [sym_block_comment] = STATE(1365), [sym_preproc_line] = STATE(1365), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_POUNDnowarn] = ACTIONS(2363), - [anon_sym_POUNDr] = ACTIONS(2363), - [anon_sym_POUNDload] = ACTIONS(2363), - [anon_sym_open] = ACTIONS(2365), - [anon_sym_LBRACK_LT] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_and] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [aux_sym_access_modifier_token1] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_LT_AT_AT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_member] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_override] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_val] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2363), - [aux_sym__identifier_or_op_token1] = ACTIONS(2363), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2363), - [anon_sym_DASH_DOT] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_DASH_GT] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), }, [1366] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1366), [sym_block_comment] = STATE(1366), [sym_preproc_line] = STATE(1366), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [aux_sym_access_modifier_token1] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_member] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_val] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_DASH_GT] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, [1367] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1367), [sym_block_comment] = STATE(1367), [sym_preproc_line] = STATE(1367), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_POUNDnowarn] = ACTIONS(2305), - [anon_sym_POUNDr] = ACTIONS(2305), - [anon_sym_POUNDload] = ACTIONS(2305), - [anon_sym_open] = ACTIONS(2307), - [anon_sym_LBRACK_LT] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_and] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [aux_sym_access_modifier_token1] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_LT_AT_AT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_member] = ACTIONS(2307), - [anon_sym_interface] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2307), - [anon_sym_override] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_val] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2305), - [aux_sym__identifier_or_op_token1] = ACTIONS(2305), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2305), - [anon_sym_DASH_DOT] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), + [aux_sym_long_identifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_as] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, [1368] = { [sym_xml_doc] = STATE(1368), [sym_block_comment] = STATE(1368), [sym_preproc_line] = STATE(1368), - [aux_sym_sequential_expression_repeat1] = STATE(1368), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3417), - [sym__dedent] = ACTIONS(3078), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_DASH_GT] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3445), + [aux_sym_decimal_token1] = ACTIONS(2501), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, [1369] = { [sym_xml_doc] = STATE(1369), [sym_block_comment] = STATE(1369), [sym_preproc_line] = STATE(1369), - [aux_sym_sequential_expression_repeat1] = STATE(1474), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_DOT_DOT2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_as] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), + [sym__dedent] = ACTIONS(2809), }, [1370] = { [sym_xml_doc] = STATE(1370), [sym_block_comment] = STATE(1370), [sym_preproc_line] = STATE(1370), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_DASH_GT] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__else] = ACTIONS(2734), + [sym__elif] = ACTIONS(2734), }, [1371] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1371), [sym_block_comment] = STATE(1371), [sym_preproc_line] = STATE(1371), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_POUNDnowarn] = ACTIONS(2361), - [anon_sym_POUNDr] = ACTIONS(2361), - [anon_sym_POUNDload] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2359), - [anon_sym_LBRACK_LT] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_and] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [aux_sym_access_modifier_token1] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_LT_AT_AT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_member] = ACTIONS(2359), - [anon_sym_interface] = ACTIONS(2359), - [anon_sym_abstract] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_val] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2361), - [aux_sym__identifier_or_op_token1] = ACTIONS(2361), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2361), - [anon_sym_DASH_DOT] = ACTIONS(2361), - [anon_sym_PERCENT] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3449), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__else] = ACTIONS(2760), + [sym__elif] = ACTIONS(2760), }, [1372] = { [sym_xml_doc] = STATE(1372), [sym_block_comment] = STATE(1372), [sym_preproc_line] = STATE(1372), - [aux_sym_sequential_expression_repeat1] = STATE(1434), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_DASH_GT] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_as] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2782), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [sym__dedent] = ACTIONS(2784), }, [1373] = { [sym_xml_doc] = STATE(1373), [sym_block_comment] = STATE(1373), [sym_preproc_line] = STATE(1373), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), + [aux_sym_rules_repeat1] = STATE(1399), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_DASH_GT] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_DOT_DOT] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3451), }, [1374] = { [sym_xml_doc] = STATE(1374), [sym_block_comment] = STATE(1374), [sym_preproc_line] = STATE(1374), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_as] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2952), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - [sym__dedent] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3454), + [aux_sym_decimal_token1] = ACTIONS(2473), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, [1375] = { [sym_xml_doc] = STATE(1375), [sym_block_comment] = STATE(1375), [sym_preproc_line] = STATE(1375), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_as] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - [sym__dedent] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + [sym__dedent] = ACTIONS(2803), }, [1376] = { [sym_xml_doc] = STATE(1376), [sym_block_comment] = STATE(1376), [sym_preproc_line] = STATE(1376), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [aux_sym_long_identifier_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), + [sym__else] = ACTIONS(2596), + [sym__elif] = ACTIONS(2596), }, [1377] = { [sym_xml_doc] = STATE(1377), [sym_block_comment] = STATE(1377), [sym_preproc_line] = STATE(1377), - [aux_sym_sequential_expression_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_DOT_DOT2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__dedent] = ACTIONS(2948), + [aux_sym_long_identifier_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3460), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), }, [1378] = { [sym_xml_doc] = STATE(1378), [sym_block_comment] = STATE(1378), [sym_preproc_line] = STATE(1378), - [aux_sym_sequential_expression_repeat1] = STATE(1501), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [aux_sym_rules_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3465), + [sym__else] = ACTIONS(2744), + [sym__elif] = ACTIONS(2744), }, [1379] = { [sym_xml_doc] = STATE(1379), [sym_block_comment] = STATE(1379), [sym_preproc_line] = STATE(1379), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_as] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, [1380] = { [sym_xml_doc] = STATE(1380), [sym_block_comment] = STATE(1380), [sym_preproc_line] = STATE(1380), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_as] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3032), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__dedent] = ACTIONS(3034), + [aux_sym_rules_repeat1] = STATE(1389), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3470), + [sym__else] = ACTIONS(2701), + [sym__elif] = ACTIONS(2701), }, [1381] = { [sym_xml_doc] = STATE(1381), [sym_block_comment] = STATE(1381), [sym_preproc_line] = STATE(1381), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), + [aux_sym_rules_repeat1] = STATE(1386), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3470), + [sym__else] = ACTIONS(2701), + [sym__elif] = ACTIONS(2701), }, [1382] = { [sym_xml_doc] = STATE(1382), [sym_block_comment] = STATE(1382), [sym_preproc_line] = STATE(1382), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__else] = ACTIONS(2716), - [sym__elif] = ACTIONS(2716), + [aux_sym_sequential_expression_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), + [sym__else] = ACTIONS(3050), + [sym__elif] = ACTIONS(3050), }, [1383] = { [sym_xml_doc] = STATE(1383), [sym_block_comment] = STATE(1383), [sym_preproc_line] = STATE(1383), - [aux_sym_long_identifier_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_EQ2] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3473), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, [1384] = { [sym_xml_doc] = STATE(1384), [sym_block_comment] = STATE(1384), [sym_preproc_line] = STATE(1384), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_as] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), + [aux_sym_long_identifier_repeat1] = STATE(1367), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_as] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__dedent] = ACTIONS(2514), }, [1385] = { [sym_xml_doc] = STATE(1385), [sym_block_comment] = STATE(1385), [sym_preproc_line] = STATE(1385), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_as] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [aux_sym_float_token1] = ACTIONS(3479), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__then] = ACTIONS(2695), }, [1386] = { [sym_xml_doc] = STATE(1386), [sym_block_comment] = STATE(1386), [sym_preproc_line] = STATE(1386), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), - [sym__dedent] = ACTIONS(2816), + [aux_sym_rules_repeat1] = STATE(1386), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3484), + [sym__else] = ACTIONS(2710), + [sym__elif] = ACTIONS(2710), }, [1387] = { [sym_xml_doc] = STATE(1387), [sym_block_comment] = STATE(1387), [sym_preproc_line] = STATE(1387), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_as] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [aux_sym_sequential_expression_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3487), + [sym__dedent] = ACTIONS(2986), + [sym__else] = ACTIONS(2986), + [sym__elif] = ACTIONS(2986), }, [1388] = { [sym_xml_doc] = STATE(1388), [sym_block_comment] = STATE(1388), [sym_preproc_line] = STATE(1388), - [aux_sym_long_identifier_repeat1] = STATE(1383), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2492), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_EQ2] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_as] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, [1389] = { [sym_xml_doc] = STATE(1389), [sym_block_comment] = STATE(1389), [sym_preproc_line] = STATE(1389), - [aux_sym_long_identifier_repeat1] = STATE(1391), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - }, - [1390] = { - [sym_xml_doc] = STATE(1390), - [sym_block_comment] = STATE(1390), - [sym_preproc_line] = STATE(1390), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_as] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [sym__dedent] = ACTIONS(2778), - }, - [1391] = { - [sym_xml_doc] = STATE(1391), - [sym_block_comment] = STATE(1391), - [sym_preproc_line] = STATE(1391), - [aux_sym_long_identifier_repeat1] = STATE(1391), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1392] = { - [sym_xml_doc] = STATE(1392), - [sym_block_comment] = STATE(1392), - [sym_preproc_line] = STATE(1392), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_EQ2] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [1393] = { - [sym_xml_doc] = STATE(1393), - [sym_block_comment] = STATE(1393), - [sym_preproc_line] = STATE(1393), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - [sym__else] = ACTIONS(2669), - [sym__elif] = ACTIONS(2669), - }, - [1394] = { - [sym_xml_doc] = STATE(1394), - [sym_block_comment] = STATE(1394), - [sym_preproc_line] = STATE(1394), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [sym__else] = ACTIONS(2724), - [sym__elif] = ACTIONS(2724), - }, - [1395] = { - [sym_xml_doc] = STATE(1395), - [sym_block_comment] = STATE(1395), - [sym_preproc_line] = STATE(1395), - [aux_sym_rules_repeat1] = STATE(1444), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3434), - [sym__then] = ACTIONS(2653), - }, - [1396] = { - [sym_xml_doc] = STATE(1396), - [sym_block_comment] = STATE(1396), - [sym_preproc_line] = STATE(1396), - [aux_sym_rules_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3434), - [sym__then] = ACTIONS(2653), - }, - [1397] = { - [sym_xml_doc] = STATE(1397), - [sym_block_comment] = STATE(1397), - [sym_preproc_line] = STATE(1397), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - [sym__dedent] = ACTIONS(2888), - }, - [1398] = { - [sym_xml_doc] = STATE(1398), - [sym_block_comment] = STATE(1398), - [sym_preproc_line] = STATE(1398), - [aux_sym_long_identifier_repeat1] = STATE(1484), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - }, - [1399] = { - [sym_xml_doc] = STATE(1399), - [sym_block_comment] = STATE(1399), - [sym_preproc_line] = STATE(1399), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__else] = ACTIONS(2649), - [sym__elif] = ACTIONS(2649), - }, - [1400] = { - [sym_xml_doc] = STATE(1400), - [sym_block_comment] = STATE(1400), - [sym_preproc_line] = STATE(1400), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - [sym__else] = ACTIONS(2731), - [sym__elif] = ACTIONS(2731), - }, - [1401] = { - [sym_xml_doc] = STATE(1401), - [sym_block_comment] = STATE(1401), - [sym_preproc_line] = STATE(1401), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), - }, - [1402] = { - [sym_xml_doc] = STATE(1402), - [sym_block_comment] = STATE(1402), - [sym_preproc_line] = STATE(1402), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), - }, - [1403] = { - [sym_xml_doc] = STATE(1403), - [sym_block_comment] = STATE(1403), - [sym_preproc_line] = STATE(1403), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), - }, - [1404] = { - [sym_xml_doc] = STATE(1404), - [sym_block_comment] = STATE(1404), - [sym_preproc_line] = STATE(1404), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__dedent] = ACTIONS(2824), - }, - [1405] = { - [sym_xml_doc] = STATE(1405), - [sym_block_comment] = STATE(1405), - [sym_preproc_line] = STATE(1405), - [aux_sym_rules_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_DOT_DOT] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3445), - }, - [1406] = { - [sym_xml_doc] = STATE(1406), - [sym_block_comment] = STATE(1406), - [sym_preproc_line] = STATE(1406), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - }, - [1407] = { - [sym_xml_doc] = STATE(1407), - [sym_block_comment] = STATE(1407), - [sym_preproc_line] = STATE(1407), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - [sym__dedent] = ACTIONS(2954), - [sym__else] = ACTIONS(2954), - [sym__elif] = ACTIONS(2954), - }, - [1408] = { - [sym_xml_doc] = STATE(1408), - [sym_block_comment] = STATE(1408), - [sym_preproc_line] = STATE(1408), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_as] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - }, - [1409] = { - [sym_xml_doc] = STATE(1409), - [sym_block_comment] = STATE(1409), - [sym_preproc_line] = STATE(1409), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [sym__dedent] = ACTIONS(2786), - }, - [1410] = { - [sym_xml_doc] = STATE(1410), - [sym_block_comment] = STATE(1410), - [sym_preproc_line] = STATE(1410), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [sym__dedent] = ACTIONS(2800), - }, - [1411] = { - [sym_xml_doc] = STATE(1411), - [sym_block_comment] = STATE(1411), - [sym_preproc_line] = STATE(1411), + [aux_sym_rules_repeat1] = STATE(1386), [sym_identifier] = ACTIONS(2718), [anon_sym_EQ] = ACTIONS(2720), [anon_sym_COLON] = ACTIONS(2718), @@ -192827,17 +188175,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2718), [anon_sym_QMARK] = ACTIONS(2718), [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), [anon_sym_LPAREN] = ACTIONS(2718), [anon_sym_COMMA] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(3463), [anon_sym_AMP] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2718), [anon_sym_LBRACK_PIPE] = ACTIONS(2720), [anon_sym_LBRACE] = ACTIONS(2718), [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_with] = ACTIONS(2718), [anon_sym_new] = ACTIONS(2718), [anon_sym_return_BANG] = ACTIONS(2720), [anon_sym_yield] = ACTIONS(2718), @@ -192896,2143 +188242,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), [sym_int] = ACTIONS(2718), [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - }, - [1412] = { - [sym_xml_doc] = STATE(1412), - [sym_block_comment] = STATE(1412), - [sym_preproc_line] = STATE(1412), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), - }, - [1413] = { - [sym_xml_doc] = STATE(1413), - [sym_block_comment] = STATE(1413), - [sym_preproc_line] = STATE(1413), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - [sym__dedent] = ACTIONS(2828), - }, - [1414] = { - [sym_xml_doc] = STATE(1414), - [sym_block_comment] = STATE(1414), - [sym_preproc_line] = STATE(1414), - [aux_sym_rules_repeat1] = STATE(1396), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3448), - [sym__then] = ACTIONS(2662), - }, - [1415] = { - [sym_xml_doc] = STATE(1415), - [sym_block_comment] = STATE(1415), - [sym_preproc_line] = STATE(1415), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - [sym__dedent] = ACTIONS(2832), - }, - [1416] = { - [sym_xml_doc] = STATE(1416), - [sym_block_comment] = STATE(1416), - [sym_preproc_line] = STATE(1416), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [sym__dedent] = ACTIONS(2836), - }, - [1417] = { - [sym_xml_doc] = STATE(1417), - [sym_block_comment] = STATE(1417), - [sym_preproc_line] = STATE(1417), - [aux_sym_rules_repeat1] = STATE(1405), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3451), - }, - [1418] = { - [sym_xml_doc] = STATE(1418), - [sym_block_comment] = STATE(1418), - [sym_preproc_line] = STATE(1418), - [aux_sym_rules_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_let_BANG] = ACTIONS(2653), - [anon_sym_null] = ACTIONS(2651), - [anon_sym_QMARK] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LBRACK_PIPE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_LBRACE_PIPE] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_return_BANG] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_yield_BANG] = ACTIONS(2653), - [anon_sym_lazy] = ACTIONS(2651), - [anon_sym_assert] = ACTIONS(2651), - [anon_sym_upcast] = ACTIONS(2651), - [anon_sym_downcast] = ACTIONS(2651), - [anon_sym_LT_AT] = ACTIONS(2651), - [anon_sym_AT_GT] = ACTIONS(2653), - [anon_sym_LT_AT_AT] = ACTIONS(2651), - [anon_sym_AT_AT_GT] = ACTIONS(2653), - [anon_sym_COLON_GT] = ACTIONS(2653), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_fun] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_match_BANG] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2651), - [anon_sym_LT_DASH] = ACTIONS(2651), - [anon_sym_DOT_LBRACK] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2651), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_use_BANG] = ACTIONS(2653), - [anon_sym_do_BANG] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_begin] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2651), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_AT_DQUOTE] = ACTIONS(2653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [sym_bool] = ACTIONS(2651), - [sym_unit] = ACTIONS(2651), - [aux_sym__identifier_or_op_token1] = ACTIONS(2651), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS_DOT] = ACTIONS(2651), - [anon_sym_DASH_DOT] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2653), - [aux_sym_prefix_op_token1] = ACTIONS(2653), - [aux_sym_infix_op_token1] = ACTIONS(2651), - [anon_sym_PIPE_PIPE] = ACTIONS(2651), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_COLON_EQ] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2651), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2653), - [sym_int] = ACTIONS(2651), - [sym_xint] = ACTIONS(2653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2653), - [sym__newline] = ACTIONS(3451), - }, - [1419] = { - [sym_xml_doc] = STATE(1419), - [sym_block_comment] = STATE(1419), - [sym_preproc_line] = STATE(1419), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - [sym__dedent] = ACTIONS(2840), - }, - [1420] = { - [sym_xml_doc] = STATE(1420), - [sym_block_comment] = STATE(1420), - [sym_preproc_line] = STATE(1420), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__dedent] = ACTIONS(2844), - }, - [1421] = { - [sym_xml_doc] = STATE(1421), - [sym_block_comment] = STATE(1421), - [sym_preproc_line] = STATE(1421), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), - }, - [1422] = { - [sym_xml_doc] = STATE(1422), - [sym_block_comment] = STATE(1422), - [sym_preproc_line] = STATE(1422), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - [sym__dedent] = ACTIONS(2852), - }, - [1423] = { - [sym_xml_doc] = STATE(1423), - [sym_block_comment] = STATE(1423), - [sym_preproc_line] = STATE(1423), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__dedent] = ACTIONS(2856), - }, - [1424] = { - [sym_xml_doc] = STATE(1424), - [sym_block_comment] = STATE(1424), - [sym_preproc_line] = STATE(1424), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - [sym__dedent] = ACTIONS(2820), - }, - [1425] = { - [sym_xml_doc] = STATE(1425), - [sym_block_comment] = STATE(1425), - [sym_preproc_line] = STATE(1425), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__dedent] = ACTIONS(2860), - }, - [1426] = { - [sym_xml_doc] = STATE(1426), - [sym_block_comment] = STATE(1426), - [sym_preproc_line] = STATE(1426), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2634), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_EQ2] = ACTIONS(3454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - }, - [1427] = { - [sym_xml_doc] = STATE(1427), - [sym_block_comment] = STATE(1427), - [sym_preproc_line] = STATE(1427), - [aux_sym_sequential_expression_repeat1] = STATE(1529), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__else] = ACTIONS(2948), - [sym__elif] = ACTIONS(2948), - }, - [1428] = { - [sym_xml_doc] = STATE(1428), - [sym_block_comment] = STATE(1428), - [sym_preproc_line] = STATE(1428), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__dedent] = ACTIONS(2864), - }, - [1429] = { - [sym_xml_doc] = STATE(1429), - [sym_block_comment] = STATE(1429), - [sym_preproc_line] = STATE(1429), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - [sym__dedent] = ACTIONS(2868), - }, - [1430] = { - [sym_xml_doc] = STATE(1430), - [sym_block_comment] = STATE(1430), - [sym_preproc_line] = STATE(1430), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), - [sym__dedent] = ACTIONS(2872), - }, - [1431] = { - [sym_xml_doc] = STATE(1431), - [sym_block_comment] = STATE(1431), - [sym_preproc_line] = STATE(1431), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_as] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3456), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), + [sym__newline] = ACTIONS(3490), + [sym__else] = ACTIONS(2720), + [sym__elif] = ACTIONS(2720), }, - [1432] = { - [sym_xml_doc] = STATE(1432), - [sym_block_comment] = STATE(1432), - [sym_preproc_line] = STATE(1432), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__dedent] = ACTIONS(2958), - [sym__else] = ACTIONS(2958), - [sym__elif] = ACTIONS(2958), + [1390] = { + [sym_xml_doc] = STATE(1390), + [sym_block_comment] = STATE(1390), + [sym_preproc_line] = STATE(1390), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), + [sym__dedent] = ACTIONS(2809), + [sym__else] = ACTIONS(2809), + [sym__elif] = ACTIONS(2809), }, - [1433] = { - [sym_xml_doc] = STATE(1433), - [sym_block_comment] = STATE(1433), - [sym_preproc_line] = STATE(1433), - [aux_sym_long_identifier_repeat1] = STATE(1388), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3458), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_EQ2] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1391] = { + [sym_xml_doc] = STATE(1391), + [sym_block_comment] = STATE(1391), + [sym_preproc_line] = STATE(1391), + [aux_sym_rules_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_DASH_GT] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - }, - [1434] = { - [sym_xml_doc] = STATE(1434), - [sym_block_comment] = STATE(1434), - [sym_preproc_line] = STATE(1434), - [aux_sym_sequential_expression_repeat1] = STATE(1434), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_DASH_GT] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3462), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(3495), }, - [1435] = { - [sym_xml_doc] = STATE(1435), - [sym_block_comment] = STATE(1435), - [sym_preproc_line] = STATE(1435), + [1392] = { + [sym_xml_doc] = STATE(1392), + [sym_block_comment] = STATE(1392), + [sym_preproc_line] = STATE(1392), + [aux_sym_sequential_expression_repeat1] = STATE(1392), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_with] = ACTIONS(2988), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2986), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), [sym_unit] = ACTIONS(2988), [aux_sym__identifier_or_op_token1] = ACTIONS(2988), @@ -195043,1200 +188506,935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token1] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - [sym__else] = ACTIONS(2990), - [sym__elif] = ACTIONS(2990), - }, - [1436] = { - [sym_xml_doc] = STATE(1436), - [sym_block_comment] = STATE(1436), - [sym_preproc_line] = STATE(1436), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__dedent] = ACTIONS(2994), - [sym__else] = ACTIONS(2994), - [sym__elif] = ACTIONS(2994), - }, - [1437] = { - [sym_xml_doc] = STATE(1437), - [sym_block_comment] = STATE(1437), - [sym_preproc_line] = STATE(1437), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), - }, - [1438] = { - [sym_xml_doc] = STATE(1438), - [sym_block_comment] = STATE(1438), - [sym_preproc_line] = STATE(1438), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__dedent] = ACTIONS(3016), - [sym__else] = ACTIONS(3016), - [sym__elif] = ACTIONS(3016), - }, - [1439] = { - [sym_xml_doc] = STATE(1439), - [sym_block_comment] = STATE(1439), - [sym_preproc_line] = STATE(1439), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__dedent] = ACTIONS(3024), - [sym__else] = ACTIONS(3024), - [sym__elif] = ACTIONS(3024), - }, - [1440] = { - [sym_xml_doc] = STATE(1440), - [sym_block_comment] = STATE(1440), - [sym_preproc_line] = STATE(1440), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - [sym__dedent] = ACTIONS(2880), - }, - [1441] = { - [sym_xml_doc] = STATE(1441), - [sym_block_comment] = STATE(1441), - [sym_preproc_line] = STATE(1441), - [aux_sym_rules_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3468), - }, - [1442] = { - [sym_xml_doc] = STATE(1442), - [sym_block_comment] = STATE(1442), - [sym_preproc_line] = STATE(1442), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - [sym__dedent] = ACTIONS(2900), - }, - [1443] = { - [sym_xml_doc] = STATE(1443), - [sym_block_comment] = STATE(1443), - [sym_preproc_line] = STATE(1443), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), - }, - [1444] = { - [sym_xml_doc] = STATE(1444), - [sym_block_comment] = STATE(1444), - [sym_preproc_line] = STATE(1444), - [aux_sym_rules_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2679), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_let_BANG] = ACTIONS(2679), - [anon_sym_null] = ACTIONS(2677), - [anon_sym_QMARK] = ACTIONS(2677), - [anon_sym_COLON_QMARK] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACK_PIPE] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_LBRACE_PIPE] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_return_BANG] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_yield_BANG] = ACTIONS(2679), - [anon_sym_lazy] = ACTIONS(2677), - [anon_sym_assert] = ACTIONS(2677), - [anon_sym_upcast] = ACTIONS(2677), - [anon_sym_downcast] = ACTIONS(2677), - [anon_sym_LT_AT] = ACTIONS(2677), - [anon_sym_AT_GT] = ACTIONS(2679), - [anon_sym_LT_AT_AT] = ACTIONS(2677), - [anon_sym_AT_AT_GT] = ACTIONS(2679), - [anon_sym_COLON_GT] = ACTIONS(2679), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_fun] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_match] = ACTIONS(2677), - [anon_sym_match_BANG] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_LT_DASH] = ACTIONS(2677), - [anon_sym_DOT_LBRACK] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2677), - [anon_sym_use_BANG] = ACTIONS(2679), - [anon_sym_do_BANG] = ACTIONS(2679), - [anon_sym_begin] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [anon_sym_AT_DQUOTE] = ACTIONS(2679), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), - [sym_bool] = ACTIONS(2677), - [sym_unit] = ACTIONS(2677), - [aux_sym__identifier_or_op_token1] = ACTIONS(2677), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS_DOT] = ACTIONS(2677), - [anon_sym_DASH_DOT] = ACTIONS(2677), - [anon_sym_PERCENT] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2679), - [aux_sym_prefix_op_token1] = ACTIONS(2679), - [aux_sym_infix_op_token1] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_COLON_EQ] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2679), - [sym_int] = ACTIONS(2677), - [sym_xint] = ACTIONS(2679), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2679), - [sym__newline] = ACTIONS(3471), - [sym__then] = ACTIONS(2679), - }, - [1445] = { - [sym_xml_doc] = STATE(1445), - [sym_block_comment] = STATE(1445), - [sym_preproc_line] = STATE(1445), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - [sym__dedent] = ACTIONS(2892), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3498), + [sym__dedent] = ACTIONS(2986), }, - [1446] = { - [sym_xml_doc] = STATE(1446), - [sym_block_comment] = STATE(1446), - [sym_preproc_line] = STATE(1446), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), - [sym__else] = ACTIONS(3028), - [sym__elif] = ACTIONS(3028), + [1393] = { + [sym_xml_doc] = STATE(1393), + [sym_block_comment] = STATE(1393), + [sym_preproc_line] = STATE(1393), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), }, - [1447] = { - [sym_xml_doc] = STATE(1447), - [sym_block_comment] = STATE(1447), - [sym_preproc_line] = STATE(1447), - [aux_sym_rules_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(3477), - [sym__then] = ACTIONS(2669), + [1394] = { + [sym_xml_doc] = STATE(1394), + [sym_block_comment] = STATE(1394), + [sym_preproc_line] = STATE(1394), + [aux_sym_sequential_expression_repeat1] = STATE(1392), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, - [1448] = { - [sym_xml_doc] = STATE(1448), - [sym_block_comment] = STATE(1448), - [sym_preproc_line] = STATE(1448), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - [sym__dedent] = ACTIONS(3000), - [sym__else] = ACTIONS(3000), - [sym__elif] = ACTIONS(3000), + [1395] = { + [sym_xml_doc] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_preproc_line] = STATE(1395), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + [sym__dedent] = ACTIONS(2797), + [sym__else] = ACTIONS(2797), + [sym__elif] = ACTIONS(2797), }, - [1449] = { - [sym_xml_doc] = STATE(1449), - [sym_block_comment] = STATE(1449), - [sym_preproc_line] = STATE(1449), + [1396] = { + [sym_xml_doc] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_preproc_line] = STATE(1396), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_DOT_DOT] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3501), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + }, + [1397] = { + [sym_xml_doc] = STATE(1397), + [sym_block_comment] = STATE(1397), + [sym_preproc_line] = STATE(1397), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3503), + [aux_sym_decimal_token1] = ACTIONS(2445), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), + }, + [1398] = { + [sym_xml_doc] = STATE(1398), + [sym_block_comment] = STATE(1398), + [sym_preproc_line] = STATE(1398), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [sym__dedent] = ACTIONS(2710), + [sym__else] = ACTIONS(2710), + [sym__elif] = ACTIONS(2710), + }, + [1399] = { + [sym_xml_doc] = STATE(1399), + [sym_block_comment] = STATE(1399), + [sym_preproc_line] = STATE(1399), + [aux_sym_rules_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_DASH_GT] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3400), + }, + [1400] = { + [sym_xml_doc] = STATE(1400), + [sym_block_comment] = STATE(1400), + [sym_preproc_line] = STATE(1400), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_with] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), + [sym__dedent] = ACTIONS(3003), + }, + [1401] = { + [sym_xml_doc] = STATE(1401), + [sym_block_comment] = STATE(1401), + [sym_preproc_line] = STATE(1401), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [sym__dedent] = ACTIONS(2886), + }, + [1402] = { + [sym_xml_doc] = STATE(1402), + [sym_block_comment] = STATE(1402), + [sym_preproc_line] = STATE(1402), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + [sym__dedent] = ACTIONS(2898), + [sym__else] = ACTIONS(2898), + [sym__elif] = ACTIONS(2898), + }, + [1403] = { + [sym_xml_doc] = STATE(1403), + [sym_block_comment] = STATE(1403), + [sym_preproc_line] = STATE(1403), [sym_identifier] = ACTIONS(2904), [anon_sym_EQ] = ACTIONS(2906), [anon_sym_COLON] = ACTIONS(2904), @@ -196247,7 +189445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2904), [anon_sym_QMARK] = ACTIONS(2904), [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), [anon_sym_LPAREN] = ACTIONS(2904), [anon_sym_COMMA] = ACTIONS(2906), [anon_sym_COLON_COLON] = ACTIONS(2906), @@ -196256,7 +189453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2906), [anon_sym_LBRACE] = ACTIONS(2904), [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2904), [anon_sym_new] = ACTIONS(2904), [anon_sym_return_BANG] = ACTIONS(2906), [anon_sym_yield] = ACTIONS(2904), @@ -196315,198 +189511,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2904), [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2906), [sym__newline] = ACTIONS(2906), [sym__dedent] = ACTIONS(2906), + [sym__else] = ACTIONS(2906), + [sym__elif] = ACTIONS(2906), }, - [1450] = { - [sym_xml_doc] = STATE(1450), - [sym_block_comment] = STATE(1450), - [sym_preproc_line] = STATE(1450), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - [sym__dedent] = ACTIONS(2707), - [sym__else] = ACTIONS(2707), - [sym__elif] = ACTIONS(2707), - }, - [1451] = { - [sym_xml_doc] = STATE(1451), - [sym_block_comment] = STATE(1451), - [sym_preproc_line] = STATE(1451), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), - }, - [1452] = { - [sym_xml_doc] = STATE(1452), - [sym_block_comment] = STATE(1452), - [sym_preproc_line] = STATE(1452), + [1404] = { + [sym_xml_doc] = STATE(1404), + [sym_block_comment] = STATE(1404), + [sym_preproc_line] = STATE(1404), [sym_identifier] = ACTIONS(2912), [anon_sym_EQ] = ACTIONS(2914), [anon_sym_COLON] = ACTIONS(2912), @@ -196517,7 +189535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2912), [anon_sym_QMARK] = ACTIONS(2912), [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), [anon_sym_LPAREN] = ACTIONS(2912), [anon_sym_COMMA] = ACTIONS(2914), [anon_sym_COLON_COLON] = ACTIONS(2914), @@ -196526,7 +189543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2914), [anon_sym_LBRACE] = ACTIONS(2912), [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2912), [anon_sym_new] = ACTIONS(2912), [anon_sym_return_BANG] = ACTIONS(2914), [anon_sym_yield] = ACTIONS(2912), @@ -196585,9256 +189601,7367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), [sym_int] = ACTIONS(2912), [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2914), [sym__newline] = ACTIONS(2914), [sym__dedent] = ACTIONS(2914), + [sym__else] = ACTIONS(2914), + [sym__elif] = ACTIONS(2914), }, - [1453] = { - [sym_xml_doc] = STATE(1453), - [sym_block_comment] = STATE(1453), - [sym_preproc_line] = STATE(1453), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - [sym__dedent] = ACTIONS(2920), - }, - [1454] = { - [sym_xml_doc] = STATE(1454), - [sym_block_comment] = STATE(1454), - [sym_preproc_line] = STATE(1454), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - [sym__dedent] = ACTIONS(2924), + [1405] = { + [sym_xml_doc] = STATE(1405), + [sym_block_comment] = STATE(1405), + [sym_preproc_line] = STATE(1405), + [aux_sym_rules_repeat1] = STATE(1453), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3507), + [sym__then] = ACTIONS(2701), }, - [1455] = { - [sym_xml_doc] = STATE(1455), - [sym_block_comment] = STATE(1455), - [sym_preproc_line] = STATE(1455), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - [sym__dedent] = ACTIONS(2852), - [sym__else] = ACTIONS(2852), - [sym__elif] = ACTIONS(2852), + [1406] = { + [sym_xml_doc] = STATE(1406), + [sym_block_comment] = STATE(1406), + [sym_preproc_line] = STATE(1406), + [aux_sym_rules_repeat1] = STATE(1456), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3507), + [sym__then] = ACTIONS(2701), }, - [1456] = { - [sym_xml_doc] = STATE(1456), - [sym_block_comment] = STATE(1456), - [sym_preproc_line] = STATE(1456), - [aux_sym_sequential_expression_repeat1] = STATE(1456), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_DOT_DOT2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3480), - [sym__dedent] = ACTIONS(3078), + [1407] = { + [sym_xml_doc] = STATE(1407), + [sym_block_comment] = STATE(1407), + [sym_preproc_line] = STATE(1407), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_as] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + [sym__dedent] = ACTIONS(3145), }, - [1457] = { - [sym_xml_doc] = STATE(1457), - [sym_block_comment] = STATE(1457), - [sym_preproc_line] = STATE(1457), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [sym__dedent] = ACTIONS(2928), + [1408] = { + [sym_xml_doc] = STATE(1408), + [sym_block_comment] = STATE(1408), + [sym_preproc_line] = STATE(1408), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, - [1458] = { - [sym_xml_doc] = STATE(1458), - [sym_block_comment] = STATE(1458), - [sym_preproc_line] = STATE(1458), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - [sym__dedent] = ACTIONS(2896), + [1409] = { + [sym_xml_doc] = STATE(1409), + [sym_block_comment] = STATE(1409), + [sym_preproc_line] = STATE(1409), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), }, - [1459] = { - [sym_xml_doc] = STATE(1459), - [sym_block_comment] = STATE(1459), - [sym_preproc_line] = STATE(1459), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), + [1410] = { + [sym_xml_doc] = STATE(1410), + [sym_block_comment] = STATE(1410), + [sym_preproc_line] = STATE(1410), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [sym__dedent] = ACTIONS(2946), }, - [1460] = { - [sym_xml_doc] = STATE(1460), - [sym_block_comment] = STATE(1460), - [sym_preproc_line] = STATE(1460), - [sym_identifier] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2932), - [anon_sym_COLON] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_let_BANG] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_COLON_QMARK] = ACTIONS(2930), - [anon_sym_as] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2932), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACK_PIPE] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_LBRACE_PIPE] = ACTIONS(2932), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_return_BANG] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_yield_BANG] = ACTIONS(2932), - [anon_sym_lazy] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_upcast] = ACTIONS(2930), - [anon_sym_downcast] = ACTIONS(2930), - [anon_sym_LT_AT] = ACTIONS(2930), - [anon_sym_AT_GT] = ACTIONS(2932), - [anon_sym_LT_AT_AT] = ACTIONS(2930), - [anon_sym_AT_AT_GT] = ACTIONS(2932), - [anon_sym_COLON_GT] = ACTIONS(2932), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_fun] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_match_BANG] = ACTIONS(2932), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_DOT_LBRACK] = ACTIONS(2932), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2930), - [anon_sym_use_BANG] = ACTIONS(2932), - [anon_sym_do_BANG] = ACTIONS(2932), - [anon_sym_begin] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_or] = ACTIONS(2930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(2930), - [anon_sym_AT_DQUOTE] = ACTIONS(2932), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [sym_bool] = ACTIONS(2930), - [sym_unit] = ACTIONS(2930), - [aux_sym__identifier_or_op_token1] = ACTIONS(2930), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_DOT] = ACTIONS(2930), - [anon_sym_DASH_DOT] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_prefix_op_token1] = ACTIONS(2932), - [aux_sym_infix_op_token1] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_COLON_EQ] = ACTIONS(2932), - [anon_sym_DOLLAR] = ACTIONS(2930), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), - [sym_int] = ACTIONS(2930), - [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2932), - [sym__newline] = ACTIONS(2932), - [sym__dedent] = ACTIONS(2932), + [1411] = { + [sym_xml_doc] = STATE(1411), + [sym_block_comment] = STATE(1411), + [sym_preproc_line] = STATE(1411), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_DASH_GT] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_DOT_DOT] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), }, - [1461] = { - [sym_xml_doc] = STATE(1461), - [sym_block_comment] = STATE(1461), - [sym_preproc_line] = STATE(1461), - [sym_identifier] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), - [sym__dedent] = ACTIONS(2936), + [1412] = { + [sym_xml_doc] = STATE(1412), + [sym_block_comment] = STATE(1412), + [sym_preproc_line] = STATE(1412), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_DASH_GT] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), }, - [1462] = { - [sym_xml_doc] = STATE(1462), - [sym_block_comment] = STATE(1462), - [sym_preproc_line] = STATE(1462), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_DASH_GT] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), + [1413] = { + [sym_xml_doc] = STATE(1413), + [sym_block_comment] = STATE(1413), + [sym_preproc_line] = STATE(1413), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, - [1463] = { - [sym_xml_doc] = STATE(1463), - [sym_block_comment] = STATE(1463), - [sym_preproc_line] = STATE(1463), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), - [sym__dedent] = ACTIONS(2816), - [sym__else] = ACTIONS(2816), - [sym__elif] = ACTIONS(2816), + [1414] = { + [sym_xml_doc] = STATE(1414), + [sym_block_comment] = STATE(1414), + [sym_preproc_line] = STATE(1414), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_DASH_GT] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_DOT_DOT] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), }, - [1464] = { - [sym_xml_doc] = STATE(1464), - [sym_block_comment] = STATE(1464), - [sym_preproc_line] = STATE(1464), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), - [sym__else] = ACTIONS(3070), - [sym__elif] = ACTIONS(3070), + [1415] = { + [sym_xml_doc] = STATE(1415), + [sym_block_comment] = STATE(1415), + [sym_preproc_line] = STATE(1415), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [sym__dedent] = ACTIONS(2940), + [sym__else] = ACTIONS(2940), + [sym__elif] = ACTIONS(2940), }, - [1465] = { - [sym_xml_doc] = STATE(1465), - [sym_block_comment] = STATE(1465), - [sym_preproc_line] = STATE(1465), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_as] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__dedent] = ACTIONS(2962), + [1416] = { + [sym_xml_doc] = STATE(1416), + [sym_block_comment] = STATE(1416), + [sym_preproc_line] = STATE(1416), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + [sym__dedent] = ACTIONS(2995), + [sym__else] = ACTIONS(2995), + [sym__elif] = ACTIONS(2995), }, - [1466] = { - [sym_xml_doc] = STATE(1466), - [sym_block_comment] = STATE(1466), - [sym_preproc_line] = STATE(1466), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_as] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2964), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__dedent] = ACTIONS(2966), + [1417] = { + [sym_xml_doc] = STATE(1417), + [sym_block_comment] = STATE(1417), + [sym_preproc_line] = STATE(1417), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_DASH_GT] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), }, - [1467] = { - [sym_xml_doc] = STATE(1467), - [sym_block_comment] = STATE(1467), - [sym_preproc_line] = STATE(1467), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - [sym__dedent] = ACTIONS(2888), - [sym__else] = ACTIONS(2888), - [sym__elif] = ACTIONS(2888), + [1418] = { + [sym_xml_doc] = STATE(1418), + [sym_block_comment] = STATE(1418), + [sym_preproc_line] = STATE(1418), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_DOT_DOT] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), }, - [1468] = { - [sym_xml_doc] = STATE(1468), - [sym_block_comment] = STATE(1468), - [sym_preproc_line] = STATE(1468), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__dedent] = ACTIONS(2970), + [1419] = { + [sym_xml_doc] = STATE(1419), + [sym_block_comment] = STATE(1419), + [sym_preproc_line] = STATE(1419), + [aux_sym_rules_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3514), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3517), }, - [1469] = { - [sym_xml_doc] = STATE(1469), - [sym_block_comment] = STATE(1469), - [sym_preproc_line] = STATE(1469), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_as] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__dedent] = ACTIONS(2974), + [1420] = { + [sym_xml_doc] = STATE(1420), + [sym_block_comment] = STATE(1420), + [sym_preproc_line] = STATE(1420), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_DASH_GT] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_DOT_DOT] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), }, - [1470] = { - [sym_xml_doc] = STATE(1470), - [sym_block_comment] = STATE(1470), - [sym_preproc_line] = STATE(1470), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2976), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__dedent] = ACTIONS(2978), + [1421] = { + [sym_xml_doc] = STATE(1421), + [sym_block_comment] = STATE(1421), + [sym_preproc_line] = STATE(1421), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [sym__dedent] = ACTIONS(2870), + [sym__else] = ACTIONS(2870), + [sym__elif] = ACTIONS(2870), }, - [1471] = { - [sym_xml_doc] = STATE(1471), - [sym_block_comment] = STATE(1471), - [sym_preproc_line] = STATE(1471), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_as] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2980), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__dedent] = ACTIONS(2982), + [1422] = { + [sym_xml_doc] = STATE(1422), + [sym_block_comment] = STATE(1422), + [sym_preproc_line] = STATE(1422), + [aux_sym_long_identifier_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [1472] = { - [sym_xml_doc] = STATE(1472), - [sym_block_comment] = STATE(1472), - [sym_preproc_line] = STATE(1472), - [sym_identifier] = ACTIONS(2984), + [1423] = { + [sym_xml_doc] = STATE(1423), + [sym_block_comment] = STATE(1423), + [sym_preproc_line] = STATE(1423), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + [sym__dedent] = ACTIONS(3149), + }, + [1424] = { + [sym_xml_doc] = STATE(1424), + [sym_block_comment] = STATE(1424), + [sym_preproc_line] = STATE(1424), + [aux_sym_long_identifier_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_as] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + }, + [1425] = { + [sym_xml_doc] = STATE(1425), + [sym_block_comment] = STATE(1425), + [sym_preproc_line] = STATE(1425), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + [sym__dedent] = ACTIONS(3025), + [sym__else] = ACTIONS(3025), + [sym__elif] = ACTIONS(3025), + }, + [1426] = { + [sym_xml_doc] = STATE(1426), + [sym_block_comment] = STATE(1426), + [sym_preproc_line] = STATE(1426), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__then] = ACTIONS(2734), + }, + [1427] = { + [sym_xml_doc] = STATE(1427), + [sym_block_comment] = STATE(1427), + [sym_preproc_line] = STATE(1427), + [aux_sym_long_identifier_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2603), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_EQ2] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [1428] = { + [sym_xml_doc] = STATE(1428), + [sym_block_comment] = STATE(1428), + [sym_preproc_line] = STATE(1428), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + [sym__dedent] = ACTIONS(2984), + [sym__else] = ACTIONS(2984), + [sym__elif] = ACTIONS(2984), + }, + [1429] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1429), + [sym_block_comment] = STATE(1429), + [sym_preproc_line] = STATE(1429), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_POUNDnowarn] = ACTIONS(2375), + [anon_sym_POUNDr] = ACTIONS(2375), + [anon_sym_POUNDload] = ACTIONS(2375), + [anon_sym_open] = ACTIONS(2373), + [anon_sym_LBRACK_LT] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_and] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [aux_sym_access_modifier_token1] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_LT_AT_AT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_member] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_override] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_val] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2375), + [aux_sym__identifier_or_op_token1] = ACTIONS(2375), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2375), + [anon_sym_DASH_DOT] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + }, + [1430] = { + [sym_xml_doc] = STATE(1430), + [sym_block_comment] = STATE(1430), + [sym_preproc_line] = STATE(1430), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + [sym__dedent] = ACTIONS(2980), + [sym__else] = ACTIONS(2980), + [sym__elif] = ACTIONS(2980), + }, + [1431] = { + [sym_xml_doc] = STATE(1431), + [sym_block_comment] = STATE(1431), + [sym_preproc_line] = STATE(1431), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3141), + }, + [1432] = { + [sym_xml_doc] = STATE(1432), + [sym_block_comment] = STATE(1432), + [sym_preproc_line] = STATE(1432), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + [sym__dedent] = ACTIONS(2999), + }, + [1433] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1433), + [sym_block_comment] = STATE(1433), + [sym_preproc_line] = STATE(1433), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_and] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [aux_sym_access_modifier_token1] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_member] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2319), + [anon_sym_abstract] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_val] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + }, + [1434] = { + [sym_xml_doc] = STATE(1434), + [sym_block_comment] = STATE(1434), + [sym_preproc_line] = STATE(1434), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + [sym__dedent] = ACTIONS(2976), + [sym__else] = ACTIONS(2976), + [sym__elif] = ACTIONS(2976), + }, + [1435] = { + [sym_xml_doc] = STATE(1435), + [sym_block_comment] = STATE(1435), + [sym_preproc_line] = STATE(1435), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), + }, + [1436] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1436), + [sym_block_comment] = STATE(1436), + [sym_preproc_line] = STATE(1436), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_POUNDnowarn] = ACTIONS(2409), + [anon_sym_POUNDr] = ACTIONS(2409), + [anon_sym_POUNDload] = ACTIONS(2409), + [anon_sym_open] = ACTIONS(2411), + [anon_sym_LBRACK_LT] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_and] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [aux_sym_access_modifier_token1] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_LT_AT_AT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_member] = ACTIONS(2411), + [anon_sym_interface] = ACTIONS(2411), + [anon_sym_abstract] = ACTIONS(2411), + [anon_sym_override] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_val] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2409), + [aux_sym__identifier_or_op_token1] = ACTIONS(2409), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2409), + [anon_sym_DASH_DOT] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + }, + [1437] = { + [sym_xml_doc] = STATE(1437), + [sym_block_comment] = STATE(1437), + [sym_preproc_line] = STATE(1437), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__dedent] = ACTIONS(3153), + }, + [1438] = { + [sym_xml_doc] = STATE(1438), + [sym_block_comment] = STATE(1438), + [sym_preproc_line] = STATE(1438), + [aux_sym_sequential_expression_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(2988), [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2988), [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2988), [anon_sym_AT_AT_GT] = ACTIONS(2986), [anon_sym_COLON_GT] = ACTIONS(2986), [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2988), [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2988), [anon_sym_use_BANG] = ACTIONS(2986), [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2986), [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), [anon_sym_AT_DQUOTE] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2986), [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), + [sym_int] = ACTIONS(2988), [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), + [sym__newline] = ACTIONS(3540), [sym__dedent] = ACTIONS(2986), }, - [1473] = { - [sym_xml_doc] = STATE(1473), - [sym_block_comment] = STATE(1473), - [sym_preproc_line] = STATE(1473), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__dedent] = ACTIONS(3034), - [sym__else] = ACTIONS(3034), - [sym__elif] = ACTIONS(3034), - }, - [1474] = { - [sym_xml_doc] = STATE(1474), - [sym_block_comment] = STATE(1474), - [sym_preproc_line] = STATE(1474), - [aux_sym_sequential_expression_repeat1] = STATE(1474), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_RBRACK] = ACTIONS(3078), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_DOT_DOT2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3483), - }, - [1475] = { - [sym_xml_doc] = STATE(1475), - [sym_block_comment] = STATE(1475), - [sym_preproc_line] = STATE(1475), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), - [sym__else] = ACTIONS(3050), - [sym__elif] = ACTIONS(3050), - }, - [1476] = { - [sym_xml_doc] = STATE(1476), - [sym_block_comment] = STATE(1476), - [sym_preproc_line] = STATE(1476), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - [sym__dedent] = ACTIONS(3004), + [1439] = { + [sym_xml_doc] = STATE(1439), + [sym_block_comment] = STATE(1439), + [sym_preproc_line] = STATE(1439), + [aux_sym_long_identifier_repeat1] = STATE(1510), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_DASH_GT] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3543), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, - [1477] = { - [sym_xml_doc] = STATE(1477), - [sym_block_comment] = STATE(1477), - [sym_preproc_line] = STATE(1477), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_as] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [sym__dedent] = ACTIONS(2782), + [1440] = { + [sym_xml_doc] = STATE(1440), + [sym_block_comment] = STATE(1440), + [sym_preproc_line] = STATE(1440), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + [sym__dedent] = ACTIONS(3079), + [sym__else] = ACTIONS(3079), + [sym__elif] = ACTIONS(3079), }, - [1478] = { - [sym_xml_doc] = STATE(1478), - [sym_block_comment] = STATE(1478), - [sym_preproc_line] = STATE(1478), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - [sym__dedent] = ACTIONS(3008), + [1441] = { + [sym_xml_doc] = STATE(1441), + [sym_block_comment] = STATE(1441), + [sym_preproc_line] = STATE(1441), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + [sym__dedent] = ACTIONS(3033), + [sym__else] = ACTIONS(3033), + [sym__elif] = ACTIONS(3033), }, - [1479] = { - [sym_xml_doc] = STATE(1479), - [sym_block_comment] = STATE(1479), - [sym_preproc_line] = STATE(1479), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - [sym__dedent] = ACTIONS(3012), + [1442] = { + [sym_xml_doc] = STATE(1442), + [sym_block_comment] = STATE(1442), + [sym_preproc_line] = STATE(1442), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__else] = ACTIONS(2734), + [sym__elif] = ACTIONS(2734), }, - [1480] = { - [sym_xml_doc] = STATE(1480), - [sym_block_comment] = STATE(1480), - [sym_preproc_line] = STATE(1480), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - [sym__dedent] = ACTIONS(3020), + [1443] = { + [sym_xml_doc] = STATE(1443), + [sym_block_comment] = STATE(1443), + [sym_preproc_line] = STATE(1443), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + [sym__dedent] = ACTIONS(2972), + [sym__else] = ACTIONS(2972), + [sym__elif] = ACTIONS(2972), }, - [1481] = { - [sym_xml_doc] = STATE(1481), - [sym_block_comment] = STATE(1481), - [sym_preproc_line] = STATE(1481), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__dedent] = ACTIONS(3054), - [sym__else] = ACTIONS(3054), - [sym__elif] = ACTIONS(3054), + [1444] = { + [sym_xml_doc] = STATE(1444), + [sym_block_comment] = STATE(1444), + [sym_preproc_line] = STATE(1444), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + [sym__dedent] = ACTIONS(3029), }, - [1482] = { - [sym_xml_doc] = STATE(1482), - [sym_block_comment] = STATE(1482), - [sym_preproc_line] = STATE(1482), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__dedent] = ACTIONS(3058), - [sym__else] = ACTIONS(3058), - [sym__elif] = ACTIONS(3058), + [1445] = { + [sym_xml_doc] = STATE(1445), + [sym_block_comment] = STATE(1445), + [sym_preproc_line] = STATE(1445), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + [sym__dedent] = ACTIONS(2976), }, - [1483] = { - [sym_xml_doc] = STATE(1483), - [sym_block_comment] = STATE(1483), - [sym_preproc_line] = STATE(1483), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), - [sym__else] = ACTIONS(3062), - [sym__elif] = ACTIONS(3062), + [1446] = { + [sym_xml_doc] = STATE(1446), + [sym_block_comment] = STATE(1446), + [sym_preproc_line] = STATE(1446), + [aux_sym_long_identifier_repeat1] = STATE(1471), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3547), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__else] = ACTIONS(2514), + [sym__elif] = ACTIONS(2514), }, - [1484] = { - [sym_xml_doc] = STATE(1484), - [sym_block_comment] = STATE(1484), - [sym_preproc_line] = STATE(1484), - [aux_sym_long_identifier_repeat1] = STATE(1492), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [1447] = { + [sym_xml_doc] = STATE(1447), + [sym_block_comment] = STATE(1447), + [sym_preproc_line] = STATE(1447), + [aux_sym_long_identifier_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3551), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_EQ2] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, - [1485] = { - [sym_xml_doc] = STATE(1485), - [sym_block_comment] = STATE(1485), - [sym_preproc_line] = STATE(1485), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_as] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3036), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__dedent] = ACTIONS(3038), + [1448] = { + [sym_xml_doc] = STATE(1448), + [sym_block_comment] = STATE(1448), + [sym_preproc_line] = STATE(1448), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + [sym__dedent] = ACTIONS(2980), }, - [1486] = { - [sym_xml_doc] = STATE(1486), - [sym_block_comment] = STATE(1486), - [sym_preproc_line] = STATE(1486), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_as] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__dedent] = ACTIONS(3042), + [1449] = { + [sym_xml_doc] = STATE(1449), + [sym_block_comment] = STATE(1449), + [sym_preproc_line] = STATE(1449), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_as] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + [sym__dedent] = ACTIONS(2984), }, - [1487] = { - [sym_xml_doc] = STATE(1487), - [sym_block_comment] = STATE(1487), - [sym_preproc_line] = STATE(1487), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), + [1450] = { + [sym_xml_doc] = STATE(1450), + [sym_block_comment] = STATE(1450), + [sym_preproc_line] = STATE(1450), + [aux_sym_rules_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(3555), }, - [1488] = { - [sym_xml_doc] = STATE(1488), - [sym_block_comment] = STATE(1488), - [sym_preproc_line] = STATE(1488), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__then] = ACTIONS(2703), - }, - [1489] = { - [sym_xml_doc] = STATE(1489), - [sym_block_comment] = STATE(1489), - [sym_preproc_line] = STATE(1489), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [sym__dedent] = ACTIONS(2778), - [sym__else] = ACTIONS(2778), - [sym__elif] = ACTIONS(2778), - }, - [1490] = { - [sym_xml_doc] = STATE(1490), - [sym_block_comment] = STATE(1490), - [sym_preproc_line] = STATE(1490), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_done] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_DASH_GT] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - }, - [1491] = { - [sym_xml_doc] = STATE(1491), - [sym_block_comment] = STATE(1491), - [sym_preproc_line] = STATE(1491), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - [sym__dedent] = ACTIONS(3066), - [sym__else] = ACTIONS(3066), - [sym__elif] = ACTIONS(3066), - }, - [1492] = { - [sym_xml_doc] = STATE(1492), - [sym_block_comment] = STATE(1492), - [sym_preproc_line] = STATE(1492), - [aux_sym_long_identifier_repeat1] = STATE(1492), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1493] = { - [sym_xml_doc] = STATE(1493), - [sym_block_comment] = STATE(1493), - [sym_preproc_line] = STATE(1493), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), - [sym__else] = ACTIONS(2808), - [sym__elif] = ACTIONS(2808), - }, - [1494] = { - [sym_xml_doc] = STATE(1494), - [sym_block_comment] = STATE(1494), - [sym_preproc_line] = STATE(1494), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), - [sym__else] = ACTIONS(2812), - [sym__elif] = ACTIONS(2812), - }, - [1495] = { - [sym_xml_doc] = STATE(1495), - [sym_block_comment] = STATE(1495), - [sym_preproc_line] = STATE(1495), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__dedent] = ACTIONS(2824), - [sym__else] = ACTIONS(2824), - [sym__elif] = ACTIONS(2824), - }, - [1496] = { - [sym_xml_doc] = STATE(1496), - [sym_block_comment] = STATE(1496), - [sym_preproc_line] = STATE(1496), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - [sym__dedent] = ACTIONS(3093), - [sym__else] = ACTIONS(3093), - [sym__elif] = ACTIONS(3093), - }, - [1497] = { - [sym_xml_doc] = STATE(1497), - [sym_block_comment] = STATE(1497), - [sym_preproc_line] = STATE(1497), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [sym__dedent] = ACTIONS(2786), - [sym__else] = ACTIONS(2786), - [sym__elif] = ACTIONS(2786), - }, - [1498] = { - [sym_xml_doc] = STATE(1498), - [sym_block_comment] = STATE(1498), - [sym_preproc_line] = STATE(1498), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - [sym__dedent] = ACTIONS(3089), - [sym__else] = ACTIONS(3089), - [sym__elif] = ACTIONS(3089), - }, - [1499] = { - [sym_xml_doc] = STATE(1499), - [sym_block_comment] = STATE(1499), - [sym_preproc_line] = STATE(1499), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - [sym__dedent] = ACTIONS(3074), - }, - [1500] = { - [sym_xml_doc] = STATE(1500), - [sym_block_comment] = STATE(1500), - [sym_preproc_line] = STATE(1500), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - [sym__dedent] = ACTIONS(3085), - [sym__else] = ACTIONS(3085), - [sym__elif] = ACTIONS(3085), - }, - [1501] = { - [sym_xml_doc] = STATE(1501), - [sym_block_comment] = STATE(1501), - [sym_preproc_line] = STATE(1501), - [aux_sym_sequential_expression_repeat1] = STATE(1501), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_as] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3493), - }, - [1502] = { - [sym_xml_doc] = STATE(1502), - [sym_block_comment] = STATE(1502), - [sym_preproc_line] = STATE(1502), - [aux_sym_rules_repeat1] = STATE(1418), - [sym_identifier] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_let_BANG] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_COLON_QMARK] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_LBRACE_PIPE] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2660), - [anon_sym_return_BANG] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_yield_BANG] = ACTIONS(2662), - [anon_sym_lazy] = ACTIONS(2660), - [anon_sym_assert] = ACTIONS(2660), - [anon_sym_upcast] = ACTIONS(2660), - [anon_sym_downcast] = ACTIONS(2660), - [anon_sym_LT_AT] = ACTIONS(2660), - [anon_sym_AT_GT] = ACTIONS(2662), - [anon_sym_LT_AT_AT] = ACTIONS(2660), - [anon_sym_AT_AT_GT] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2662), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_fun] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_match_BANG] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2660), - [anon_sym_LT_DASH] = ACTIONS(2660), - [anon_sym_DOT_LBRACK] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_use_BANG] = ACTIONS(2662), - [anon_sym_do_BANG] = ACTIONS(2662), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_begin] = ACTIONS(2660), - [anon_sym_LPAREN2] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2660), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_AT_DQUOTE] = ACTIONS(2662), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2662), - [sym_bool] = ACTIONS(2660), - [sym_unit] = ACTIONS(2660), - [aux_sym__identifier_or_op_token1] = ACTIONS(2660), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2660), - [anon_sym_DASH_DOT] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2662), - [aux_sym_prefix_op_token1] = ACTIONS(2662), - [aux_sym_infix_op_token1] = ACTIONS(2660), - [anon_sym_PIPE_PIPE] = ACTIONS(2660), - [anon_sym_BANG_EQ] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2662), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2662), - [sym_int] = ACTIONS(2660), - [sym_xint] = ACTIONS(2662), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2662), - [sym__newline] = ACTIONS(3496), - }, - [1503] = { - [sym_xml_doc] = STATE(1503), - [sym_block_comment] = STATE(1503), - [sym_preproc_line] = STATE(1503), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - [sym__dedent] = ACTIONS(3085), - }, - [1504] = { - [sym_xml_doc] = STATE(1504), - [sym_block_comment] = STATE(1504), - [sym_preproc_line] = STATE(1504), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - [sym__dedent] = ACTIONS(3089), - }, - [1505] = { - [sym_xml_doc] = STATE(1505), - [sym_block_comment] = STATE(1505), - [sym_preproc_line] = STATE(1505), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - [sym__dedent] = ACTIONS(3093), - }, - [1506] = { - [sym_xml_doc] = STATE(1506), - [sym_block_comment] = STATE(1506), - [sym_preproc_line] = STATE(1506), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [sym__dedent] = ACTIONS(2800), - [sym__else] = ACTIONS(2800), - [sym__elif] = ACTIONS(2800), - }, - [1507] = { - [sym_xml_doc] = STATE(1507), - [sym_block_comment] = STATE(1507), - [sym_preproc_line] = STATE(1507), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__dedent] = ACTIONS(3046), - [sym__else] = ACTIONS(3046), - [sym__elif] = ACTIONS(3046), - }, - [1508] = { - [sym_xml_doc] = STATE(1508), - [sym_block_comment] = STATE(1508), - [sym_preproc_line] = STATE(1508), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__dedent] = ACTIONS(3042), - [sym__else] = ACTIONS(3042), - [sym__elif] = ACTIONS(3042), - }, - [1509] = { - [sym_xml_doc] = STATE(1509), - [sym_block_comment] = STATE(1509), - [sym_preproc_line] = STATE(1509), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__dedent] = ACTIONS(3038), - [sym__else] = ACTIONS(3038), - [sym__elif] = ACTIONS(3038), - }, - [1510] = { - [sym_xml_doc] = STATE(1510), - [sym_block_comment] = STATE(1510), - [sym_preproc_line] = STATE(1510), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - [sym__dedent] = ACTIONS(2828), - [sym__else] = ACTIONS(2828), - [sym__elif] = ACTIONS(2828), - }, - [1511] = { - [sym_xml_doc] = STATE(1511), - [sym_block_comment] = STATE(1511), - [sym_preproc_line] = STATE(1511), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - [sym__dedent] = ACTIONS(3066), - }, - [1512] = { - [sym_xml_doc] = STATE(1512), - [sym_block_comment] = STATE(1512), - [sym_preproc_line] = STATE(1512), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - [sym__dedent] = ACTIONS(2832), - [sym__else] = ACTIONS(2832), - [sym__elif] = ACTIONS(2832), - }, - [1513] = { - [sym_xml_doc] = STATE(1513), - [sym_block_comment] = STATE(1513), - [sym_preproc_line] = STATE(1513), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [sym__dedent] = ACTIONS(2836), - [sym__else] = ACTIONS(2836), - [sym__elif] = ACTIONS(2836), - }, - [1514] = { - [sym_xml_doc] = STATE(1514), - [sym_block_comment] = STATE(1514), - [sym_preproc_line] = STATE(1514), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - [sym__dedent] = ACTIONS(2840), - [sym__else] = ACTIONS(2840), - [sym__elif] = ACTIONS(2840), - }, - [1515] = { - [sym_xml_doc] = STATE(1515), - [sym_block_comment] = STATE(1515), - [sym_preproc_line] = STATE(1515), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__dedent] = ACTIONS(3062), - }, - [1516] = { - [sym_xml_doc] = STATE(1516), - [sym_block_comment] = STATE(1516), - [sym_preproc_line] = STATE(1516), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__dedent] = ACTIONS(2844), - [sym__else] = ACTIONS(2844), - [sym__elif] = ACTIONS(2844), - }, - [1517] = { - [sym_xml_doc] = STATE(1517), - [sym_block_comment] = STATE(1517), - [sym_preproc_line] = STATE(1517), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__dedent] = ACTIONS(3058), - }, - [1518] = { - [sym_xml_doc] = STATE(1518), - [sym_block_comment] = STATE(1518), - [sym_preproc_line] = STATE(1518), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3052), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__dedent] = ACTIONS(3054), - }, - [1519] = { - [sym_xml_doc] = STATE(1519), - [sym_block_comment] = STATE(1519), - [sym_preproc_line] = STATE(1519), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - [sym__dedent] = ACTIONS(2820), - [sym__else] = ACTIONS(2820), - [sym__elif] = ACTIONS(2820), - }, - [1520] = { - [sym_xml_doc] = STATE(1520), - [sym_block_comment] = STATE(1520), - [sym_preproc_line] = STATE(1520), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_as] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__dedent] = ACTIONS(3050), - }, - [1521] = { - [sym_xml_doc] = STATE(1521), - [sym_block_comment] = STATE(1521), - [sym_preproc_line] = STATE(1521), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - [sym__dedent] = ACTIONS(3020), - [sym__else] = ACTIONS(3020), - [sym__elif] = ACTIONS(3020), - }, - [1522] = { - [sym_xml_doc] = STATE(1522), - [sym_block_comment] = STATE(1522), - [sym_preproc_line] = STATE(1522), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - [sym__dedent] = ACTIONS(3012), - [sym__else] = ACTIONS(3012), - [sym__elif] = ACTIONS(3012), - }, - [1523] = { - [sym_xml_doc] = STATE(1523), - [sym_block_comment] = STATE(1523), - [sym_preproc_line] = STATE(1523), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - [sym__dedent] = ACTIONS(3008), - [sym__else] = ACTIONS(3008), - [sym__elif] = ACTIONS(3008), - }, - [1524] = { - [sym_xml_doc] = STATE(1524), - [sym_block_comment] = STATE(1524), - [sym_preproc_line] = STATE(1524), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [sym__dedent] = ACTIONS(2782), - [sym__else] = ACTIONS(2782), - [sym__elif] = ACTIONS(2782), - }, - [1525] = { - [sym_xml_doc] = STATE(1525), - [sym_block_comment] = STATE(1525), - [sym_preproc_line] = STATE(1525), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - [sym__dedent] = ACTIONS(3004), - [sym__else] = ACTIONS(3004), - [sym__elif] = ACTIONS(3004), - }, - [1526] = { - [sym_xml_doc] = STATE(1526), - [sym_block_comment] = STATE(1526), - [sym_preproc_line] = STATE(1526), - [sym_identifier] = ACTIONS(2984), + [1451] = { + [sym_xml_doc] = STATE(1451), + [sym_block_comment] = STATE(1451), + [sym_preproc_line] = STATE(1451), + [aux_sym_sequential_expression_repeat1] = STATE(1451), + [sym_identifier] = ACTIONS(2988), [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), [anon_sym_COMMA] = ACTIONS(2986), [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2988), [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2988), [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2988), [anon_sym_AT_AT_GT] = ACTIONS(2986), [anon_sym_COLON_GT] = ACTIONS(2986), [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2988), [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2988), [anon_sym_use_BANG] = ACTIONS(2986), [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2988), [anon_sym_LPAREN2] = ACTIONS(2986), [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), [anon_sym_AT_DQUOTE] = ACTIONS(2986), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), [anon_sym_TILDE] = ACTIONS(2986), [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), [anon_sym_BANG_EQ] = ACTIONS(2986), [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2988), [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), + [sym_int] = ACTIONS(2988), [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - [sym__dedent] = ACTIONS(2986), - [sym__else] = ACTIONS(2986), - [sym__elif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3558), }, - [1527] = { - [sym_xml_doc] = STATE(1527), - [sym_block_comment] = STATE(1527), - [sym_preproc_line] = STATE(1527), - [aux_sym_sequential_expression_repeat1] = STATE(1368), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__dedent] = ACTIONS(2948), + [1452] = { + [sym_xml_doc] = STATE(1452), + [sym_block_comment] = STATE(1452), + [sym_preproc_line] = STATE(1452), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + [sym__dedent] = ACTIONS(2995), }, - [1528] = { - [sym_xml_doc] = STATE(1528), - [sym_block_comment] = STATE(1528), - [sym_preproc_line] = STATE(1528), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__dedent] = ACTIONS(2982), - [sym__else] = ACTIONS(2982), - [sym__elif] = ACTIONS(2982), + [1453] = { + [sym_xml_doc] = STATE(1453), + [sym_block_comment] = STATE(1453), + [sym_preproc_line] = STATE(1453), + [aux_sym_rules_repeat1] = STATE(1456), + [sym_identifier] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_let_BANG] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(2718), + [anon_sym_COLON_QMARK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACK_PIPE] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_LBRACE_PIPE] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_return_BANG] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_yield_BANG] = ACTIONS(2720), + [anon_sym_lazy] = ACTIONS(2718), + [anon_sym_assert] = ACTIONS(2718), + [anon_sym_upcast] = ACTIONS(2718), + [anon_sym_downcast] = ACTIONS(2718), + [anon_sym_LT_AT] = ACTIONS(2718), + [anon_sym_AT_GT] = ACTIONS(2720), + [anon_sym_LT_AT_AT] = ACTIONS(2718), + [anon_sym_AT_AT_GT] = ACTIONS(2720), + [anon_sym_COLON_GT] = ACTIONS(2720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_fun] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_match_BANG] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_LT_DASH] = ACTIONS(2718), + [anon_sym_DOT_LBRACK] = ACTIONS(2720), + [anon_sym_DOT] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_use_BANG] = ACTIONS(2720), + [anon_sym_do_BANG] = ACTIONS(2720), + [anon_sym_begin] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_or] = ACTIONS(2718), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_AT_DQUOTE] = ACTIONS(2720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), + [sym_bool] = ACTIONS(2718), + [sym_unit] = ACTIONS(2718), + [aux_sym__identifier_or_op_token1] = ACTIONS(2718), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS_DOT] = ACTIONS(2718), + [anon_sym_DASH_DOT] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_AMP_AMP] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2720), + [aux_sym_prefix_op_token1] = ACTIONS(2720), + [aux_sym_infix_op_token1] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2718), + [anon_sym_BANG_EQ] = ACTIONS(2720), + [anon_sym_COLON_EQ] = ACTIONS(2720), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), + [sym_int] = ACTIONS(2718), + [sym_xint] = ACTIONS(2720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2720), + [sym__newline] = ACTIONS(3561), + [sym__then] = ACTIONS(2720), }, - [1529] = { - [sym_xml_doc] = STATE(1529), - [sym_block_comment] = STATE(1529), - [sym_preproc_line] = STATE(1529), - [aux_sym_sequential_expression_repeat1] = STATE(1529), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3499), - [sym__else] = ACTIONS(3078), - [sym__elif] = ACTIONS(3078), + [1454] = { + [sym_xml_doc] = STATE(1454), + [sym_block_comment] = STATE(1454), + [sym_preproc_line] = STATE(1454), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [sym__dedent] = ACTIONS(2780), }, - [1530] = { - [sym_xml_doc] = STATE(1530), - [sym_block_comment] = STATE(1530), - [sym_preproc_line] = STATE(1530), - [aux_sym_long_identifier_repeat1] = STATE(1530), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3502), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), + [1455] = { + [sym_xml_doc] = STATE(1455), + [sym_block_comment] = STATE(1455), + [sym_preproc_line] = STATE(1455), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_as] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + [sym__dedent] = ACTIONS(3111), }, - [1531] = { - [sym_xml_doc] = STATE(1531), - [sym_block_comment] = STATE(1531), - [sym_preproc_line] = STATE(1531), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__dedent] = ACTIONS(2978), - [sym__else] = ACTIONS(2978), - [sym__elif] = ACTIONS(2978), + [1456] = { + [sym_xml_doc] = STATE(1456), + [sym_block_comment] = STATE(1456), + [sym_preproc_line] = STATE(1456), + [aux_sym_rules_repeat1] = STATE(1456), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(3567), + [sym__then] = ACTIONS(2710), }, - [1532] = { - [sym_xml_doc] = STATE(1532), - [sym_block_comment] = STATE(1532), - [sym_preproc_line] = STATE(1532), - [aux_sym_long_identifier_repeat1] = STATE(1530), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3505), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__else] = ACTIONS(2494), - [sym__elif] = ACTIONS(2494), + [1457] = { + [sym_xml_doc] = STATE(1457), + [sym_block_comment] = STATE(1457), + [sym_preproc_line] = STATE(1457), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [sym__dedent] = ACTIONS(2946), + [sym__else] = ACTIONS(2946), + [sym__elif] = ACTIONS(2946), }, - [1533] = { - [sym_xml_doc] = STATE(1533), - [sym_block_comment] = STATE(1533), - [sym_preproc_line] = STATE(1533), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__dedent] = ACTIONS(2974), - [sym__else] = ACTIONS(2974), - [sym__elif] = ACTIONS(2974), + [1458] = { + [sym_xml_doc] = STATE(1458), + [sym_block_comment] = STATE(1458), + [sym_preproc_line] = STATE(1458), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), + [sym__dedent] = ACTIONS(3097), }, - [1534] = { - [sym_xml_doc] = STATE(1534), - [sym_block_comment] = STATE(1534), - [sym_preproc_line] = STATE(1534), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), + [1459] = { + [sym_xml_doc] = STATE(1459), + [sym_block_comment] = STATE(1459), + [sym_preproc_line] = STATE(1459), + [aux_sym_sequential_expression_repeat1] = STATE(1451), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, - [1535] = { - [sym_xml_doc] = STATE(1535), - [sym_block_comment] = STATE(1535), - [sym_preproc_line] = STATE(1535), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2225), - [sym__else] = ACTIONS(2225), - [sym__elif] = ACTIONS(2225), + [1460] = { + [sym_xml_doc] = STATE(1460), + [sym_block_comment] = STATE(1460), + [sym_preproc_line] = STATE(1460), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__dedent] = ACTIONS(3064), + [sym__else] = ACTIONS(3064), + [sym__elif] = ACTIONS(3064), }, - [1536] = { - [sym_xml_doc] = STATE(1536), - [sym_block_comment] = STATE(1536), - [sym_preproc_line] = STATE(1536), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__dedent] = ACTIONS(2970), - [sym__else] = ACTIONS(2970), - [sym__elif] = ACTIONS(2970), + [1461] = { + [sym_xml_doc] = STATE(1461), + [sym_block_comment] = STATE(1461), + [sym_preproc_line] = STATE(1461), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + [sym__dedent] = ACTIONS(3145), + [sym__else] = ACTIONS(3145), + [sym__elif] = ACTIONS(3145), }, - [1537] = { - [sym_xml_doc] = STATE(1537), - [sym_block_comment] = STATE(1537), - [sym_preproc_line] = STATE(1537), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - [sym__dedent] = ACTIONS(2896), - [sym__else] = ACTIONS(2896), - [sym__elif] = ACTIONS(2896), + [1462] = { + [sym_xml_doc] = STATE(1462), + [sym_block_comment] = STATE(1462), + [sym_preproc_line] = STATE(1462), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + [sym__dedent] = ACTIONS(3149), + [sym__else] = ACTIONS(3149), + [sym__elif] = ACTIONS(3149), }, - [1538] = { - [sym_xml_doc] = STATE(1538), - [sym_block_comment] = STATE(1538), - [sym_preproc_line] = STATE(1538), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), - [sym__else] = ACTIONS(2848), - [sym__elif] = ACTIONS(2848), + [1463] = { + [sym_xml_doc] = STATE(1463), + [sym_block_comment] = STATE(1463), + [sym_preproc_line] = STATE(1463), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_as] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), + [sym__dedent] = ACTIONS(2914), }, - [1539] = { - [sym_xml_doc] = STATE(1539), - [sym_block_comment] = STATE(1539), - [sym_preproc_line] = STATE(1539), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__dedent] = ACTIONS(2966), - [sym__else] = ACTIONS(2966), - [sym__elif] = ACTIONS(2966), + [1464] = { + [sym_xml_doc] = STATE(1464), + [sym_block_comment] = STATE(1464), + [sym_preproc_line] = STATE(1464), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, - [1540] = { - [sym_xml_doc] = STATE(1540), - [sym_block_comment] = STATE(1540), - [sym_preproc_line] = STATE(1540), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_with] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - [sym__dedent] = ACTIONS(2707), + [1465] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1465), + [sym_block_comment] = STATE(1465), + [sym_preproc_line] = STATE(1465), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_POUNDnowarn] = ACTIONS(2361), + [anon_sym_POUNDr] = ACTIONS(2361), + [anon_sym_POUNDload] = ACTIONS(2361), + [anon_sym_open] = ACTIONS(2363), + [anon_sym_LBRACK_LT] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_and] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [aux_sym_access_modifier_token1] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_LT_AT_AT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_member] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_abstract] = ACTIONS(2363), + [anon_sym_override] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_val] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2361), + [aux_sym__identifier_or_op_token1] = ACTIONS(2361), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2361), + [anon_sym_DASH_DOT] = ACTIONS(2361), + [anon_sym_PERCENT] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2361), }, - [1541] = { - [sym_xml_doc] = STATE(1541), - [sym_block_comment] = STATE(1541), - [sym_preproc_line] = STATE(1541), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3028), + [1466] = { + [sym_xml_doc] = STATE(1466), + [sym_block_comment] = STATE(1466), + [sym_preproc_line] = STATE(1466), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__dedent] = ACTIONS(3153), + [sym__else] = ACTIONS(3153), + [sym__elif] = ACTIONS(3153), }, - [1542] = { - [sym_xml_doc] = STATE(1542), - [sym_block_comment] = STATE(1542), - [sym_preproc_line] = STATE(1542), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__dedent] = ACTIONS(2962), - [sym__else] = ACTIONS(2962), - [sym__elif] = ACTIONS(2962), + [1467] = { + [sym_xml_doc] = STATE(1467), + [sym_block_comment] = STATE(1467), + [sym_preproc_line] = STATE(1467), + [sym_identifier] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_as] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), + [sym__dedent] = ACTIONS(2906), }, - [1543] = { - [sym_xml_doc] = STATE(1543), - [sym_block_comment] = STATE(1543), - [sym_preproc_line] = STATE(1543), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__dedent] = ACTIONS(3024), + [1468] = { + [sym_xml_doc] = STATE(1468), + [sym_block_comment] = STATE(1468), + [sym_preproc_line] = STATE(1468), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_as] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + [sym__dedent] = ACTIONS(2898), }, - [1544] = { - [sym_xml_doc] = STATE(1544), - [sym_block_comment] = STATE(1544), - [sym_preproc_line] = STATE(1544), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__dedent] = ACTIONS(3016), + [1469] = { + [sym_xml_doc] = STATE(1469), + [sym_block_comment] = STATE(1469), + [sym_preproc_line] = STATE(1469), + [aux_sym_sequential_expression_repeat1] = STATE(1602), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, - [1545] = { - [sym_xml_doc] = STATE(1545), - [sym_block_comment] = STATE(1545), - [sym_preproc_line] = STATE(1545), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - [sym__dedent] = ACTIONS(2892), - [sym__else] = ACTIONS(2892), - [sym__elif] = ACTIONS(2892), + [1470] = { + [sym_xml_doc] = STATE(1470), + [sym_block_comment] = STATE(1470), + [sym_preproc_line] = STATE(1470), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), + [sym__dedent] = ACTIONS(3060), }, - [1546] = { - [sym_xml_doc] = STATE(1546), - [sym_block_comment] = STATE(1546), - [sym_preproc_line] = STATE(1546), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), - [sym__else] = ACTIONS(2804), - [sym__elif] = ACTIONS(2804), + [1471] = { + [sym_xml_doc] = STATE(1471), + [sym_block_comment] = STATE(1471), + [sym_preproc_line] = STATE(1471), + [aux_sym_long_identifier_repeat1] = STATE(1484), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__else] = ACTIONS(2596), + [sym__elif] = ACTIONS(2596), }, - [1547] = { - [sym_xml_doc] = STATE(1547), - [sym_block_comment] = STATE(1547), - [sym_preproc_line] = STATE(1547), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__dedent] = ACTIONS(2884), - [sym__else] = ACTIONS(2884), - [sym__elif] = ACTIONS(2884), + [1472] = { + [sym_xml_doc] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_preproc_line] = STATE(1472), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_with] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + [sym__dedent] = ACTIONS(3093), }, - [1548] = { - [sym_xml_doc] = STATE(1548), - [sym_block_comment] = STATE(1548), - [sym_preproc_line] = STATE(1548), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), + [1473] = { + [sym_xml_doc] = STATE(1473), + [sym_block_comment] = STATE(1473), + [sym_preproc_line] = STATE(1473), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_as] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + [sym__dedent] = ACTIONS(3103), }, - [1549] = { - [sym_xml_doc] = STATE(1549), - [sym_block_comment] = STATE(1549), - [sym_preproc_line] = STATE(1549), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - [sym__dedent] = ACTIONS(2880), - [sym__else] = ACTIONS(2880), - [sym__elif] = ACTIONS(2880), + [1474] = { + [sym_xml_doc] = STATE(1474), + [sym_block_comment] = STATE(1474), + [sym_preproc_line] = STATE(1474), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_with] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + [sym__dedent] = ACTIONS(3121), }, - [1550] = { - [sym_xml_doc] = STATE(1550), - [sym_block_comment] = STATE(1550), - [sym_preproc_line] = STATE(1550), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - [sym__dedent] = ACTIONS(2876), - [sym__else] = ACTIONS(2876), - [sym__elif] = ACTIONS(2876), + [1475] = { + [sym_xml_doc] = STATE(1475), + [sym_block_comment] = STATE(1475), + [sym_preproc_line] = STATE(1475), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_as] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [sym__dedent] = ACTIONS(2854), }, - [1551] = { - [sym_xml_doc] = STATE(1551), - [sym_block_comment] = STATE(1551), - [sym_preproc_line] = STATE(1551), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), - [sym__dedent] = ACTIONS(2872), - [sym__else] = ACTIONS(2872), - [sym__elif] = ACTIONS(2872), + [1476] = { + [sym_xml_doc] = STATE(1476), + [sym_block_comment] = STATE(1476), + [sym_preproc_line] = STATE(1476), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + [sym__dedent] = ACTIONS(3165), }, - [1552] = { - [sym_xml_doc] = STATE(1552), - [sym_block_comment] = STATE(1552), - [sym_preproc_line] = STATE(1552), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - [sym__dedent] = ACTIONS(2868), - [sym__else] = ACTIONS(2868), - [sym__elif] = ACTIONS(2868), + [1477] = { + [sym_xml_doc] = STATE(1477), + [sym_block_comment] = STATE(1477), + [sym_preproc_line] = STATE(1477), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_done] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_DASH_GT] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), }, - [1553] = { - [sym_xml_doc] = STATE(1553), - [sym_block_comment] = STATE(1553), - [sym_preproc_line] = STATE(1553), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__dedent] = ACTIONS(2632), + [1478] = { + [sym_xml_doc] = STATE(1478), + [sym_block_comment] = STATE(1478), + [sym_preproc_line] = STATE(1478), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + [sym__dedent] = ACTIONS(3117), + [sym__else] = ACTIONS(3117), + [sym__elif] = ACTIONS(3117), }, - [1554] = { - [sym_xml_doc] = STATE(1554), - [sym_block_comment] = STATE(1554), - [sym_preproc_line] = STATE(1554), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__dedent] = ACTIONS(2994), + [1479] = { + [sym_xml_doc] = STATE(1479), + [sym_block_comment] = STATE(1479), + [sym_preproc_line] = STATE(1479), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + [sym__dedent] = ACTIONS(3169), }, - [1555] = { - [sym_xml_doc] = STATE(1555), - [sym_block_comment] = STATE(1555), - [sym_preproc_line] = STATE(1555), + [1480] = { + [sym_xml_doc] = STATE(1480), + [sym_block_comment] = STATE(1480), + [sym_preproc_line] = STATE(1480), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + [sym__dedent] = ACTIONS(3056), + [sym__else] = ACTIONS(3056), + [sym__elif] = ACTIONS(3056), + }, + [1481] = { + [sym_xml_doc] = STATE(1481), + [sym_block_comment] = STATE(1481), + [sym_preproc_line] = STATE(1481), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [sym__dedent] = ACTIONS(3173), + }, + [1482] = { + [sym_xml_doc] = STATE(1482), + [sym_block_comment] = STATE(1482), + [sym_preproc_line] = STATE(1482), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + [sym__dedent] = ACTIONS(3029), + [sym__else] = ACTIONS(3029), + [sym__elif] = ACTIONS(3029), + }, + [1483] = { + [sym_xml_doc] = STATE(1483), + [sym_block_comment] = STATE(1483), + [sym_preproc_line] = STATE(1483), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + [sym__dedent] = ACTIONS(2850), + }, + [1484] = { + [sym_xml_doc] = STATE(1484), + [sym_block_comment] = STATE(1484), + [sym_preproc_line] = STATE(1484), + [aux_sym_long_identifier_repeat1] = STATE(1484), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), + }, + [1485] = { + [sym_xml_doc] = STATE(1485), + [sym_block_comment] = STATE(1485), + [sym_preproc_line] = STATE(1485), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + [sym__dedent] = ACTIONS(3093), + [sym__else] = ACTIONS(3093), + [sym__elif] = ACTIONS(3093), + }, + [1486] = { + [sym_xml_doc] = STATE(1486), + [sym_block_comment] = STATE(1486), + [sym_preproc_line] = STATE(1486), + [aux_sym_sequential_expression_repeat1] = STATE(1486), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2986), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), [sym_unit] = ACTIONS(2988), [aux_sym__identifier_or_op_token1] = ACTIONS(2988), @@ -205845,928 +196972,929 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token1] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__dedent] = ACTIONS(2990), - }, - [1556] = { - [sym_xml_doc] = STATE(1556), - [sym_block_comment] = STATE(1556), - [sym_preproc_line] = STATE(1556), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - [sym__dedent] = ACTIONS(2900), - [sym__else] = ACTIONS(2900), - [sym__elif] = ACTIONS(2900), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3575), + [sym__else] = ACTIONS(2986), + [sym__elif] = ACTIONS(2986), }, - [1557] = { - [sym_xml_doc] = STATE(1557), - [sym_block_comment] = STATE(1557), - [sym_preproc_line] = STATE(1557), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__dedent] = ACTIONS(2958), + [1487] = { + [sym_xml_doc] = STATE(1487), + [sym_block_comment] = STATE(1487), + [sym_preproc_line] = STATE(1487), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), + [sym__dedent] = ACTIONS(3041), + [sym__else] = ACTIONS(3041), + [sym__elif] = ACTIONS(3041), }, - [1558] = { - [sym_xml_doc] = STATE(1558), - [sym_block_comment] = STATE(1558), - [sym_preproc_line] = STATE(1558), - [sym_identifier] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1488] = { + [sym_xml_doc] = STATE(1488), + [sym_block_comment] = STATE(1488), + [sym_preproc_line] = STATE(1488), + [sym_identifier] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2934), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), - [sym__dedent] = ACTIONS(2906), - [sym__else] = ACTIONS(2906), - [sym__elif] = ACTIONS(2906), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), + [sym__dedent] = ACTIONS(2936), }, - [1559] = { - [sym_xml_doc] = STATE(1559), - [sym_block_comment] = STATE(1559), - [sym_preproc_line] = STATE(1559), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__dedent] = ACTIONS(2864), - [sym__else] = ACTIONS(2864), - [sym__elif] = ACTIONS(2864), + [1489] = { + [sym_xml_doc] = STATE(1489), + [sym_block_comment] = STATE(1489), + [sym_preproc_line] = STATE(1489), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [sym__dedent] = ACTIONS(2950), }, - [1560] = { - [sym_xml_doc] = STATE(1560), - [sym_block_comment] = STATE(1560), - [sym_preproc_line] = STATE(1560), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__dedent] = ACTIONS(2910), - [sym__else] = ACTIONS(2910), - [sym__elif] = ACTIONS(2910), + [1490] = { + [sym_xml_doc] = STATE(1490), + [sym_block_comment] = STATE(1490), + [sym_preproc_line] = STATE(1490), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2603), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_EQ2] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, - [1561] = { - [sym_xml_doc] = STATE(1561), - [sym_block_comment] = STATE(1561), - [sym_preproc_line] = STATE(1561), - [sym_identifier] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__dedent] = ACTIONS(2914), - [sym__else] = ACTIONS(2914), - [sym__elif] = ACTIONS(2914), + [1491] = { + [sym_xml_doc] = STATE(1491), + [sym_block_comment] = STATE(1491), + [sym_preproc_line] = STATE(1491), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_DOT_DOT] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3578), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), }, - [1562] = { - [sym_xml_doc] = STATE(1562), - [sym_block_comment] = STATE(1562), - [sym_preproc_line] = STATE(1562), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - [sym__dedent] = ACTIONS(2920), - [sym__else] = ACTIONS(2920), - [sym__elif] = ACTIONS(2920), + [1492] = { + [sym_xml_doc] = STATE(1492), + [sym_block_comment] = STATE(1492), + [sym_preproc_line] = STATE(1492), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [sym__dedent] = ACTIONS(3177), }, - [1563] = { - [sym_xml_doc] = STATE(1563), - [sym_block_comment] = STATE(1563), - [sym_preproc_line] = STATE(1563), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - [sym__dedent] = ACTIONS(2924), - [sym__else] = ACTIONS(2924), - [sym__elif] = ACTIONS(2924), + [1493] = { + [sym_xml_doc] = STATE(1493), + [sym_block_comment] = STATE(1493), + [sym_preproc_line] = STATE(1493), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + [sym__dedent] = ACTIONS(3037), + [sym__else] = ACTIONS(3037), + [sym__elif] = ACTIONS(3037), }, - [1564] = { - [sym_xml_doc] = STATE(1564), - [sym_block_comment] = STATE(1564), - [sym_preproc_line] = STATE(1564), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [sym__dedent] = ACTIONS(2928), - [sym__else] = ACTIONS(2928), - [sym__elif] = ACTIONS(2928), + [1494] = { + [sym_xml_doc] = STATE(1494), + [sym_block_comment] = STATE(1494), + [sym_preproc_line] = STATE(1494), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + [sym__dedent] = ACTIONS(3161), }, - [1565] = { - [sym_xml_doc] = STATE(1565), - [sym_block_comment] = STATE(1565), - [sym_preproc_line] = STATE(1565), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__dedent] = ACTIONS(2860), - [sym__else] = ACTIONS(2860), - [sym__elif] = ACTIONS(2860), + [1495] = { + [sym_xml_doc] = STATE(1495), + [sym_block_comment] = STATE(1495), + [sym_preproc_line] = STATE(1495), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3141), + [sym__else] = ACTIONS(3141), + [sym__elif] = ACTIONS(3141), }, - [1566] = { - [sym_xml_doc] = STATE(1566), - [sym_block_comment] = STATE(1566), - [sym_preproc_line] = STATE(1566), + [1496] = { + [sym_xml_doc] = STATE(1496), + [sym_block_comment] = STATE(1496), + [sym_preproc_line] = STATE(1496), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + [sym__dedent] = ACTIONS(2964), + [sym__else] = ACTIONS(2964), + [sym__elif] = ACTIONS(2964), + }, + [1497] = { + [sym_xml_doc] = STATE(1497), + [sym_block_comment] = STATE(1497), + [sym_preproc_line] = STATE(1497), [sym_identifier] = ACTIONS(2930), [anon_sym_EQ] = ACTIONS(2932), [anon_sym_COLON] = ACTIONS(2930), @@ -206843,9 +197971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), @@ -206853,10 +197981,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__else] = ACTIONS(2932), [sym__elif] = ACTIONS(2932), }, - [1567] = { - [sym_xml_doc] = STATE(1567), - [sym_block_comment] = STATE(1567), - [sym_preproc_line] = STATE(1567), + [1498] = { + [sym_xml_doc] = STATE(1498), + [sym_block_comment] = STATE(1498), + [sym_preproc_line] = STATE(1498), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__then] = ACTIONS(2776), + }, + [1499] = { + [sym_xml_doc] = STATE(1499), + [sym_block_comment] = STATE(1499), + [sym_preproc_line] = STATE(1499), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + [sym__dedent] = ACTIONS(3157), + }, + [1500] = { + [sym_xml_doc] = STATE(1500), + [sym_block_comment] = STATE(1500), + [sym_preproc_line] = STATE(1500), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + [sym__dedent] = ACTIONS(3103), + [sym__else] = ACTIONS(3103), + [sym__elif] = ACTIONS(3103), + }, + [1501] = { + [sym_xml_doc] = STATE(1501), + [sym_block_comment] = STATE(1501), + [sym_preproc_line] = STATE(1501), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + [sym__dedent] = ACTIONS(3121), + [sym__else] = ACTIONS(3121), + [sym__elif] = ACTIONS(3121), + }, + [1502] = { + [sym_xml_doc] = STATE(1502), + [sym_block_comment] = STATE(1502), + [sym_preproc_line] = STATE(1502), [sym_identifier] = ACTIONS(2934), [anon_sym_EQ] = ACTIONS(2936), [anon_sym_COLON] = ACTIONS(2934), @@ -206933,9 +198421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), [sym_int] = ACTIONS(2934), [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2936), [sym__newline] = ACTIONS(2936), @@ -206943,6030 +198431,4118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__else] = ACTIONS(2936), [sym__elif] = ACTIONS(2936), }, - [1568] = { - [sym_xml_doc] = STATE(1568), - [sym_block_comment] = STATE(1568), - [sym_preproc_line] = STATE(1568), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__dedent] = ACTIONS(2856), - [sym__else] = ACTIONS(2856), - [sym__elif] = ACTIONS(2856), - }, - [1569] = { - [sym_xml_doc] = STATE(1569), - [sym_block_comment] = STATE(1569), - [sym_preproc_line] = STATE(1569), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - }, - [1570] = { - [sym_xml_doc] = STATE(1570), - [sym_block_comment] = STATE(1570), - [sym_preproc_line] = STATE(1570), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_DASH_GT] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), + [1503] = { + [sym_xml_doc] = STATE(1503), + [sym_block_comment] = STATE(1503), + [sym_preproc_line] = STATE(1503), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), + [sym__dedent] = ACTIONS(3060), + [sym__else] = ACTIONS(3060), + [sym__elif] = ACTIONS(3060), }, - [1571] = { - [sym_xml_doc] = STATE(1571), - [sym_block_comment] = STATE(1571), - [sym_preproc_line] = STATE(1571), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_as] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3032), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), + [1504] = { + [sym_xml_doc] = STATE(1504), + [sym_block_comment] = STATE(1504), + [sym_preproc_line] = STATE(1504), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [sym__dedent] = ACTIONS(2854), + [sym__else] = ACTIONS(2854), + [sym__elif] = ACTIONS(2854), }, - [1572] = { - [sym_xml_doc] = STATE(1572), - [sym_block_comment] = STATE(1572), - [sym_preproc_line] = STATE(1572), - [aux_sym_long_identifier_repeat1] = STATE(1589), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), - [sym__then] = ACTIONS(2494), + [1505] = { + [sym_xml_doc] = STATE(1505), + [sym_block_comment] = STATE(1505), + [sym_preproc_line] = STATE(1505), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3582), + [aux_sym_decimal_token1] = ACTIONS(2577), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [1573] = { - [sym_xml_doc] = STATE(1573), - [sym_block_comment] = STATE(1573), - [sym_preproc_line] = STATE(1573), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_as] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), + [1506] = { + [sym_xml_doc] = STATE(1506), + [sym_block_comment] = STATE(1506), + [sym_preproc_line] = STATE(1506), + [aux_sym_rules_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3584), + [sym__then] = ACTIONS(2744), }, - [1574] = { - [sym_xml_doc] = STATE(1574), - [sym_block_comment] = STATE(1574), - [sym_preproc_line] = STATE(1574), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [sym__then] = ACTIONS(2649), + [1507] = { + [sym_xml_doc] = STATE(1507), + [sym_block_comment] = STATE(1507), + [sym_preproc_line] = STATE(1507), + [aux_sym_long_identifier_repeat1] = STATE(1507), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [1575] = { - [sym_xml_doc] = STATE(1575), - [sym_block_comment] = STATE(1575), - [sym_preproc_line] = STATE(1575), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__else] = ACTIONS(2485), - [sym__elif] = ACTIONS(2485), + [1508] = { + [sym_xml_doc] = STATE(1508), + [sym_block_comment] = STATE(1508), + [sym_preproc_line] = STATE(1508), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_as] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + [sym__dedent] = ACTIONS(3137), }, - [1576] = { - [sym_xml_doc] = STATE(1576), - [sym_block_comment] = STATE(1576), - [sym_preproc_line] = STATE(1576), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [1509] = { + [sym_xml_doc] = STATE(1509), + [sym_block_comment] = STATE(1509), + [sym_preproc_line] = STATE(1509), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_as] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + [sym__dedent] = ACTIONS(3087), }, - [1577] = { - [sym_xml_doc] = STATE(1577), - [sym_block_comment] = STATE(1577), - [sym_preproc_line] = STATE(1577), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [1510] = { + [sym_xml_doc] = STATE(1510), + [sym_block_comment] = STATE(1510), + [sym_preproc_line] = STATE(1510), + [aux_sym_long_identifier_repeat1] = STATE(1507), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, - [1578] = { - [sym_xml_doc] = STATE(1578), - [sym_block_comment] = STATE(1578), - [sym_preproc_line] = STATE(1578), - [aux_sym_long_identifier_repeat1] = STATE(1572), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3509), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [sym__then] = ACTIONS(2523), + [1511] = { + [sym_xml_doc] = STATE(1511), + [sym_block_comment] = STATE(1511), + [sym_preproc_line] = STATE(1511), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + [sym__dedent] = ACTIONS(2968), }, - [1579] = { - [sym_xml_doc] = STATE(1579), - [sym_block_comment] = STATE(1579), - [sym_preproc_line] = STATE(1579), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [1512] = { + [sym_xml_doc] = STATE(1512), + [sym_block_comment] = STATE(1512), + [sym_preproc_line] = STATE(1512), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + [sym__dedent] = ACTIONS(3165), + [sym__else] = ACTIONS(3165), + [sym__elif] = ACTIONS(3165), }, - [1580] = { - [sym_xml_doc] = STATE(1580), - [sym_block_comment] = STATE(1580), - [sym_preproc_line] = STATE(1580), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_DOT_DOT] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), + [1513] = { + [sym_xml_doc] = STATE(1513), + [sym_block_comment] = STATE(1513), + [sym_preproc_line] = STATE(1513), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_as] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3133), }, - [1581] = { - [sym_xml_doc] = STATE(1581), - [sym_block_comment] = STATE(1581), - [sym_preproc_line] = STATE(1581), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), + [1514] = { + [sym_xml_doc] = STATE(1514), + [sym_block_comment] = STATE(1514), + [sym_preproc_line] = STATE(1514), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + [sym__dedent] = ACTIONS(3169), + [sym__else] = ACTIONS(3169), + [sym__elif] = ACTIONS(3169), }, - [1582] = { - [sym_xml_doc] = STATE(1582), - [sym_block_comment] = STATE(1582), - [sym_preproc_line] = STATE(1582), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_DASH_GT] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [1515] = { + [sym_xml_doc] = STATE(1515), + [sym_block_comment] = STATE(1515), + [sym_preproc_line] = STATE(1515), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + [sym__dedent] = ACTIONS(3129), }, - [1583] = { - [sym_xml_doc] = STATE(1583), - [sym_block_comment] = STATE(1583), - [sym_preproc_line] = STATE(1583), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), + [1516] = { + [sym_xml_doc] = STATE(1516), + [sym_block_comment] = STATE(1516), + [sym_preproc_line] = STATE(1516), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + [sym__else] = ACTIONS(2803), + [sym__elif] = ACTIONS(2803), }, - [1584] = { - [sym_xml_doc] = STATE(1584), - [sym_block_comment] = STATE(1584), - [sym_preproc_line] = STATE(1584), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), + [1517] = { + [sym_xml_doc] = STATE(1517), + [sym_block_comment] = STATE(1517), + [sym_preproc_line] = STATE(1517), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [sym__dedent] = ACTIONS(2780), + [sym__else] = ACTIONS(2780), + [sym__elif] = ACTIONS(2780), }, - [1585] = { - [sym_xml_doc] = STATE(1585), - [sym_block_comment] = STATE(1585), - [sym_preproc_line] = STATE(1585), - [aux_sym_long_identifier_repeat1] = STATE(1587), - [sym_identifier] = ACTIONS(2492), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_COLON] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_QMARK] = ACTIONS(2492), - [anon_sym_COLON_QMARK] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_AT_GT] = ACTIONS(2494), - [anon_sym_LT_AT_AT] = ACTIONS(2492), - [anon_sym_AT_AT_GT] = ACTIONS(2494), - [anon_sym_COLON_GT] = ACTIONS(2494), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_LT_DASH] = ACTIONS(2492), - [anon_sym_DOT_LBRACK] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(3513), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_or] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2492), - [aux_sym__identifier_or_op_token1] = ACTIONS(2492), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2492), - [anon_sym_DASH_DOT] = ACTIONS(2492), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [aux_sym_infix_op_token1] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_COLON_EQ] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [1518] = { + [sym_xml_doc] = STATE(1518), + [sym_block_comment] = STATE(1518), + [sym_preproc_line] = STATE(1518), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_as] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), }, - [1586] = { - [sym_xml_doc] = STATE(1586), - [sym_block_comment] = STATE(1586), - [sym_preproc_line] = STATE(1586), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [sym__then] = ACTIONS(2756), + [1519] = { + [sym_xml_doc] = STATE(1519), + [sym_block_comment] = STATE(1519), + [sym_preproc_line] = STATE(1519), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + [sym__dedent] = ACTIONS(3125), }, - [1587] = { - [sym_xml_doc] = STATE(1587), - [sym_block_comment] = STATE(1587), - [sym_preproc_line] = STATE(1587), - [aux_sym_long_identifier_repeat1] = STATE(1587), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3517), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [1520] = { + [sym_xml_doc] = STATE(1520), + [sym_block_comment] = STATE(1520), + [sym_preproc_line] = STATE(1520), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), }, - [1588] = { - [sym_xml_doc] = STATE(1588), - [sym_block_comment] = STATE(1588), - [sym_preproc_line] = STATE(1588), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), + [1521] = { + [sym_xml_doc] = STATE(1521), + [sym_block_comment] = STATE(1521), + [sym_preproc_line] = STATE(1521), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_as] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + [sym__dedent] = ACTIONS(3083), }, - [1589] = { - [sym_xml_doc] = STATE(1589), - [sym_block_comment] = STATE(1589), - [sym_preproc_line] = STATE(1589), - [aux_sym_long_identifier_repeat1] = STATE(1589), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__then] = ACTIONS(2485), + [1522] = { + [sym_xml_doc] = STATE(1522), + [sym_block_comment] = STATE(1522), + [sym_preproc_line] = STATE(1522), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + [sym__dedent] = ACTIONS(3075), }, - [1590] = { - [sym_xml_doc] = STATE(1590), - [sym_block_comment] = STATE(1590), - [sym_preproc_line] = STATE(1590), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), + [1523] = { + [sym_xml_doc] = STATE(1523), + [sym_block_comment] = STATE(1523), + [sym_preproc_line] = STATE(1523), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + [sym__dedent] = ACTIONS(2918), + [sym__else] = ACTIONS(2918), + [sym__elif] = ACTIONS(2918), }, - [1591] = { - [sym_xml_doc] = STATE(1591), - [sym_block_comment] = STATE(1591), - [sym_preproc_line] = STATE(1591), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), + [1524] = { + [sym_xml_doc] = STATE(1524), + [sym_block_comment] = STATE(1524), + [sym_preproc_line] = STATE(1524), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + [sym__dedent] = ACTIONS(3111), + [sym__else] = ACTIONS(3111), + [sym__elif] = ACTIONS(3111), }, - [1592] = { - [sym_xml_doc] = STATE(1592), - [sym_block_comment] = STATE(1592), - [sym_preproc_line] = STATE(1592), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), + [1525] = { + [sym_xml_doc] = STATE(1525), + [sym_block_comment] = STATE(1525), + [sym_preproc_line] = STATE(1525), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, - [1593] = { - [sym_xml_doc] = STATE(1593), - [sym_block_comment] = STATE(1593), - [sym_preproc_line] = STATE(1593), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), + [1526] = { + [sym_xml_doc] = STATE(1526), + [sym_block_comment] = STATE(1526), + [sym_preproc_line] = STATE(1526), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [sym__else] = ACTIONS(2784), + [sym__elif] = ACTIONS(2784), }, - [1594] = { - [sym_xml_doc] = STATE(1594), - [sym_block_comment] = STATE(1594), - [sym_preproc_line] = STATE(1594), - [aux_sym_sequential_expression_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_DASH_GT] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3523), + [1527] = { + [sym_xml_doc] = STATE(1527), + [sym_block_comment] = STATE(1527), + [sym_preproc_line] = STATE(1527), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [sym__dedent] = ACTIONS(3173), + [sym__else] = ACTIONS(3173), + [sym__elif] = ACTIONS(3173), }, - [1595] = { - [sym_xml_doc] = STATE(1595), - [sym_block_comment] = STATE(1595), - [sym_preproc_line] = STATE(1595), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [1528] = { + [sym_xml_doc] = STATE(1528), + [sym_block_comment] = STATE(1528), + [sym_preproc_line] = STATE(1528), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + [sym__dedent] = ACTIONS(3071), }, - [1596] = { - [sym_xml_doc] = STATE(1596), - [sym_block_comment] = STATE(1596), - [sym_preproc_line] = STATE(1596), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), + [1529] = { + [sym_xml_doc] = STATE(1529), + [sym_block_comment] = STATE(1529), + [sym_preproc_line] = STATE(1529), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + [sym__dedent] = ACTIONS(2850), + [sym__else] = ACTIONS(2850), + [sym__elif] = ACTIONS(2850), }, - [1597] = { - [sym_xml_doc] = STATE(1597), - [sym_block_comment] = STATE(1597), - [sym_preproc_line] = STATE(1597), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), + [1530] = { + [sym_xml_doc] = STATE(1530), + [sym_block_comment] = STATE(1530), + [sym_preproc_line] = STATE(1530), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), }, - [1598] = { - [sym_xml_doc] = STATE(1598), - [sym_block_comment] = STATE(1598), - [sym_preproc_line] = STATE(1598), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), + [1531] = { + [sym_xml_doc] = STATE(1531), + [sym_block_comment] = STATE(1531), + [sym_preproc_line] = STATE(1531), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), + [sym__dedent] = ACTIONS(3097), + [sym__else] = ACTIONS(3097), + [sym__elif] = ACTIONS(3097), }, - [1599] = { - [sym_xml_doc] = STATE(1599), - [sym_block_comment] = STATE(1599), - [sym_preproc_line] = STATE(1599), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [1532] = { + [sym_xml_doc] = STATE(1532), + [sym_block_comment] = STATE(1532), + [sym_preproc_line] = STATE(1532), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__else] = ACTIONS(2776), + [sym__elif] = ACTIONS(2776), }, - [1600] = { - [sym_xml_doc] = STATE(1600), - [sym_block_comment] = STATE(1600), - [sym_preproc_line] = STATE(1600), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_DASH_GT] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), + [1533] = { + [sym_xml_doc] = STATE(1533), + [sym_block_comment] = STATE(1533), + [sym_preproc_line] = STATE(1533), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + [sym__dedent] = ACTIONS(3087), + [sym__else] = ACTIONS(3087), + [sym__elif] = ACTIONS(3087), }, - [1601] = { - [sym_xml_doc] = STATE(1601), - [sym_block_comment] = STATE(1601), - [sym_preproc_line] = STATE(1601), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), + [1534] = { + [sym_xml_doc] = STATE(1534), + [sym_block_comment] = STATE(1534), + [sym_preproc_line] = STATE(1534), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [sym__dedent] = ACTIONS(3177), + [sym__else] = ACTIONS(3177), + [sym__elif] = ACTIONS(3177), }, - [1602] = { - [sym_xml_doc] = STATE(1602), - [sym_block_comment] = STATE(1602), - [sym_preproc_line] = STATE(1602), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), + [1535] = { + [sym_xml_doc] = STATE(1535), + [sym_block_comment] = STATE(1535), + [sym_preproc_line] = STATE(1535), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + [sym__dedent] = ACTIONS(3045), }, - [1603] = { - [sym_xml_doc] = STATE(1603), - [sym_block_comment] = STATE(1603), - [sym_preproc_line] = STATE(1603), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), + [1536] = { + [sym_xml_doc] = STATE(1536), + [sym_block_comment] = STATE(1536), + [sym_preproc_line] = STATE(1536), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + [sym__dedent] = ACTIONS(3011), }, - [1604] = { - [sym_xml_doc] = STATE(1604), - [sym_block_comment] = STATE(1604), - [sym_preproc_line] = STATE(1604), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), + [1537] = { + [sym_xml_doc] = STATE(1537), + [sym_block_comment] = STATE(1537), + [sym_preproc_line] = STATE(1537), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), }, - [1605] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), - [sym_xml_doc] = STATE(1605), - [sym_block_comment] = STATE(1605), - [sym_preproc_line] = STATE(1605), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_POUNDnowarn] = ACTIONS(3526), - [anon_sym_POUNDr] = ACTIONS(3526), - [anon_sym_POUNDload] = ACTIONS(3526), - [anon_sym_open] = ACTIONS(3528), - [anon_sym_LBRACK_LT] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_and] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3526), - [aux_sym_access_modifier_token1] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_DASH_GT] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_member] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_val] = ACTIONS(3528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3526), - [aux_sym__identifier_or_op_token1] = ACTIONS(3526), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3526), - [anon_sym_DASH_DOT] = ACTIONS(3526), - [anon_sym_PERCENT] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3526), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3526), + [1538] = { + [sym_xml_doc] = STATE(1538), + [sym_block_comment] = STATE(1538), + [sym_preproc_line] = STATE(1538), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), + [sym__dedent] = ACTIONS(3007), }, - [1606] = { - [sym_xml_doc] = STATE(1606), - [sym_block_comment] = STATE(1606), - [sym_preproc_line] = STATE(1606), - [sym_identifier] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1539] = { + [sym_xml_doc] = STATE(1539), + [sym_block_comment] = STATE(1539), + [sym_preproc_line] = STATE(1539), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [sym__then] = ACTIONS(2720), - }, - [1607] = { - [sym_xml_doc] = STATE(1607), - [sym_block_comment] = STATE(1607), - [sym_preproc_line] = STATE(1607), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - }, - [1608] = { - [sym_xml_doc] = STATE(1608), - [sym_block_comment] = STATE(1608), - [sym_preproc_line] = STATE(1608), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - }, - [1609] = { - [sym_xml_doc] = STATE(1609), - [sym_block_comment] = STATE(1609), - [sym_preproc_line] = STATE(1609), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1610] = { - [sym_xml_doc] = STATE(1610), - [sym_block_comment] = STATE(1610), - [sym_preproc_line] = STATE(1610), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - [sym__then] = ACTIONS(2703), - }, - [1611] = { - [sym_xml_doc] = STATE(1611), - [sym_block_comment] = STATE(1611), - [sym_preproc_line] = STATE(1611), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - }, - [1612] = { - [sym_xml_doc] = STATE(1612), - [sym_block_comment] = STATE(1612), - [sym_preproc_line] = STATE(1612), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_DASH_GT] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_DOT_DOT] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - }, - [1613] = { - [sym_xml_doc] = STATE(1613), - [sym_block_comment] = STATE(1613), - [sym_preproc_line] = STATE(1613), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - }, - [1614] = { - [sym_xml_doc] = STATE(1614), - [sym_block_comment] = STATE(1614), - [sym_preproc_line] = STATE(1614), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_DASH_GT] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_DOT_DOT] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - }, - [1615] = { - [sym_xml_doc] = STATE(1615), - [sym_block_comment] = STATE(1615), - [sym_preproc_line] = STATE(1615), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), + [sym__dedent] = ACTIONS(2910), + [sym__else] = ACTIONS(2910), + [sym__elif] = ACTIONS(2910), }, - [1616] = { - [sym_xml_doc] = STATE(1616), - [sym_block_comment] = STATE(1616), - [sym_preproc_line] = STATE(1616), - [aux_sym_long_identifier_repeat1] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_and] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [aux_sym_access_modifier_token1] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_member] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_val] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), + [1540] = { + [sym_xml_doc] = STATE(1540), + [sym_block_comment] = STATE(1540), + [sym_preproc_line] = STATE(1540), + [aux_sym_long_identifier_repeat1] = STATE(1424), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_as] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, - [1617] = { - [sym_xml_doc] = STATE(1617), - [sym_block_comment] = STATE(1617), - [sym_preproc_line] = STATE(1617), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), + [1541] = { + [sym_xml_doc] = STATE(1541), + [sym_block_comment] = STATE(1541), + [sym_preproc_line] = STATE(1541), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + [sym__dedent] = ACTIONS(3161), + [sym__else] = ACTIONS(3161), + [sym__elif] = ACTIONS(3161), }, - [1618] = { - [sym_xml_doc] = STATE(1618), - [sym_block_comment] = STATE(1618), - [sym_preproc_line] = STATE(1618), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym__then] = ACTIONS(2716), + [1542] = { + [sym_xml_doc] = STATE(1542), + [sym_block_comment] = STATE(1542), + [sym_preproc_line] = STATE(1542), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + [sym__dedent] = ACTIONS(3011), + [sym__else] = ACTIONS(3011), + [sym__elif] = ACTIONS(3011), }, - [1619] = { - [sym_xml_doc] = STATE(1619), - [sym_block_comment] = STATE(1619), - [sym_preproc_line] = STATE(1619), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_as] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), + [1543] = { + [sym_xml_doc] = STATE(1543), + [sym_block_comment] = STATE(1543), + [sym_preproc_line] = STATE(1543), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, - [1620] = { - [sym_xml_doc] = STATE(1620), - [sym_block_comment] = STATE(1620), - [sym_preproc_line] = STATE(1620), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_DASH_GT] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), + [1544] = { + [sym_xml_doc] = STATE(1544), + [sym_block_comment] = STATE(1544), + [sym_preproc_line] = STATE(1544), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_f] = ACTIONS(3598), + [aux_sym_decimal_token1] = ACTIONS(2549), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__then] = ACTIONS(2229), }, - [1621] = { - [sym_xml_doc] = STATE(1621), - [sym_block_comment] = STATE(1621), - [sym_preproc_line] = STATE(1621), - [sym_identifier] = ACTIONS(2647), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_AT_GT] = ACTIONS(2649), - [anon_sym_LT_AT_AT] = ACTIONS(2647), - [anon_sym_AT_AT_GT] = ACTIONS(2649), - [anon_sym_COLON_GT] = ACTIONS(2649), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_LT_DASH] = ACTIONS(2647), - [anon_sym_DOT_LBRACK] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2647), - [aux_sym__identifier_or_op_token1] = ACTIONS(2647), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2647), - [anon_sym_DASH_DOT] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [aux_sym_infix_op_token1] = ACTIONS(2647), - [anon_sym_PIPE_PIPE] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_COLON_EQ] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), + [1545] = { + [sym_xml_doc] = STATE(1545), + [sym_block_comment] = STATE(1545), + [sym_preproc_line] = STATE(1545), + [aux_sym_rules_repeat1] = STATE(1552), + [sym_identifier] = ACTIONS(2742), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_let_BANG] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACK_PIPE] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_LBRACE_PIPE] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_return_BANG] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_yield_BANG] = ACTIONS(2744), + [anon_sym_lazy] = ACTIONS(2742), + [anon_sym_assert] = ACTIONS(2742), + [anon_sym_upcast] = ACTIONS(2742), + [anon_sym_downcast] = ACTIONS(2742), + [anon_sym_LT_AT] = ACTIONS(2742), + [anon_sym_AT_GT] = ACTIONS(2744), + [anon_sym_LT_AT_AT] = ACTIONS(2742), + [anon_sym_AT_AT_GT] = ACTIONS(2744), + [anon_sym_COLON_GT] = ACTIONS(2744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_fun] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_match_BANG] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_LT_DASH] = ACTIONS(2742), + [anon_sym_DOT_LBRACK] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_use_BANG] = ACTIONS(2744), + [anon_sym_do_BANG] = ACTIONS(2744), + [anon_sym_DOT_DOT] = ACTIONS(2744), + [anon_sym_begin] = ACTIONS(2742), + [anon_sym_LPAREN2] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_or] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_AT_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2744), + [sym_bool] = ACTIONS(2742), + [sym_unit] = ACTIONS(2742), + [aux_sym__identifier_or_op_token1] = ACTIONS(2742), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_PLUS_DOT] = ACTIONS(2742), + [anon_sym_DASH_DOT] = ACTIONS(2742), + [anon_sym_PERCENT] = ACTIONS(2742), + [anon_sym_AMP_AMP] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2744), + [aux_sym_prefix_op_token1] = ACTIONS(2744), + [aux_sym_infix_op_token1] = ACTIONS(2742), + [anon_sym_PIPE_PIPE] = ACTIONS(2742), + [anon_sym_BANG_EQ] = ACTIONS(2744), + [anon_sym_COLON_EQ] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2744), + [sym_int] = ACTIONS(2742), + [sym_xint] = ACTIONS(2744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2744), + [sym__newline] = ACTIONS(3600), }, - [1622] = { - [sym_xml_doc] = STATE(1622), - [sym_block_comment] = STATE(1622), - [sym_preproc_line] = STATE(1622), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), + [1546] = { + [sym_xml_doc] = STATE(1546), + [sym_block_comment] = STATE(1546), + [sym_preproc_line] = STATE(1546), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_as] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__dedent] = ACTIONS(2922), }, - [1623] = { - [sym_xml_doc] = STATE(1623), - [sym_block_comment] = STATE(1623), - [sym_preproc_line] = STATE(1623), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_as] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2952), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), + [1547] = { + [sym_xml_doc] = STATE(1547), + [sym_block_comment] = STATE(1547), + [sym_preproc_line] = STATE(1547), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + [sym__dedent] = ACTIONS(3045), + [sym__else] = ACTIONS(3045), + [sym__elif] = ACTIONS(3045), }, - [1624] = { - [sym_xml_doc] = STATE(1624), - [sym_block_comment] = STATE(1624), - [sym_preproc_line] = STATE(1624), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - }, - [1625] = { - [sym_xml_doc] = STATE(1625), - [sym_block_comment] = STATE(1625), - [sym_preproc_line] = STATE(1625), - [sym_identifier] = ACTIONS(2754), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_let_BANG] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2754), - [anon_sym_COLON_QMARK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACK_PIPE] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_LBRACE_PIPE] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_return_BANG] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_yield_BANG] = ACTIONS(2756), - [anon_sym_lazy] = ACTIONS(2754), - [anon_sym_assert] = ACTIONS(2754), - [anon_sym_upcast] = ACTIONS(2754), - [anon_sym_downcast] = ACTIONS(2754), - [anon_sym_LT_AT] = ACTIONS(2754), - [anon_sym_AT_GT] = ACTIONS(2756), - [anon_sym_LT_AT_AT] = ACTIONS(2754), - [anon_sym_AT_AT_GT] = ACTIONS(2756), - [anon_sym_COLON_GT] = ACTIONS(2756), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_done] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_fun] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_match_BANG] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_DOT_LBRACK] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_use_BANG] = ACTIONS(2756), - [anon_sym_do_BANG] = ACTIONS(2756), - [anon_sym_DOT_DOT] = ACTIONS(2756), - [anon_sym_begin] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_AT_DQUOTE] = ACTIONS(2756), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2756), - [sym_bool] = ACTIONS(2754), - [sym_unit] = ACTIONS(2754), - [aux_sym__identifier_or_op_token1] = ACTIONS(2754), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS_DOT] = ACTIONS(2754), - [anon_sym_DASH_DOT] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2756), - [aux_sym_prefix_op_token1] = ACTIONS(2756), - [aux_sym_infix_op_token1] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2754), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2756), - [sym_int] = ACTIONS(2754), - [sym_xint] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - }, - [1626] = { - [sym_xml_doc] = STATE(1626), - [sym_block_comment] = STATE(1626), - [sym_preproc_line] = STATE(1626), - [sym_identifier] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_let_BANG] = ACTIONS(2720), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_COLON_QMARK] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACK_PIPE] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_LBRACE_PIPE] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_return_BANG] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_yield_BANG] = ACTIONS(2720), - [anon_sym_lazy] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_upcast] = ACTIONS(2718), - [anon_sym_downcast] = ACTIONS(2718), - [anon_sym_LT_AT] = ACTIONS(2718), - [anon_sym_AT_GT] = ACTIONS(2720), - [anon_sym_LT_AT_AT] = ACTIONS(2718), - [anon_sym_AT_AT_GT] = ACTIONS(2720), - [anon_sym_COLON_GT] = ACTIONS(2720), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_fun] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_match_BANG] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_DOT_LBRACK] = ACTIONS(2720), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_use_BANG] = ACTIONS(2720), - [anon_sym_do_BANG] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2720), - [anon_sym_begin] = ACTIONS(2718), - [anon_sym_LPAREN2] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_or] = ACTIONS(2718), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_AT_DQUOTE] = ACTIONS(2720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2720), - [sym_bool] = ACTIONS(2718), - [sym_unit] = ACTIONS(2718), - [aux_sym__identifier_or_op_token1] = ACTIONS(2718), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_PLUS_DOT] = ACTIONS(2718), - [anon_sym_DASH_DOT] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [aux_sym_prefix_op_token1] = ACTIONS(2720), - [aux_sym_infix_op_token1] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2720), - [anon_sym_COLON_EQ] = ACTIONS(2720), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2720), - [sym_int] = ACTIONS(2718), - [sym_xint] = ACTIONS(2720), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - }, - [1627] = { - [sym_xml_doc] = STATE(1627), - [sym_block_comment] = STATE(1627), - [sym_preproc_line] = STATE(1627), - [sym_identifier] = ACTIONS(2701), - [anon_sym_EQ] = ACTIONS(2703), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_let_BANG] = ACTIONS(2703), - [anon_sym_null] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(2701), - [anon_sym_COLON_QMARK] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACK_PIPE] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACE_PIPE] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_return_BANG] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_yield_BANG] = ACTIONS(2703), - [anon_sym_lazy] = ACTIONS(2701), - [anon_sym_assert] = ACTIONS(2701), - [anon_sym_upcast] = ACTIONS(2701), - [anon_sym_downcast] = ACTIONS(2701), - [anon_sym_LT_AT] = ACTIONS(2701), - [anon_sym_AT_GT] = ACTIONS(2703), - [anon_sym_LT_AT_AT] = ACTIONS(2701), - [anon_sym_AT_AT_GT] = ACTIONS(2703), - [anon_sym_COLON_GT] = ACTIONS(2703), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_done] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_fun] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_match] = ACTIONS(2701), - [anon_sym_match_BANG] = ACTIONS(2703), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_LT_DASH] = ACTIONS(2701), - [anon_sym_DOT_LBRACK] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2701), - [anon_sym_use_BANG] = ACTIONS(2703), - [anon_sym_do_BANG] = ACTIONS(2703), - [anon_sym_DOT_DOT] = ACTIONS(2703), - [anon_sym_begin] = ACTIONS(2701), - [anon_sym_LPAREN2] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_or] = ACTIONS(2701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [anon_sym_AT_DQUOTE] = ACTIONS(2703), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2703), - [sym_bool] = ACTIONS(2701), - [sym_unit] = ACTIONS(2701), - [aux_sym__identifier_or_op_token1] = ACTIONS(2701), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_PLUS_DOT] = ACTIONS(2701), - [anon_sym_DASH_DOT] = ACTIONS(2701), - [anon_sym_PERCENT] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2703), - [aux_sym_prefix_op_token1] = ACTIONS(2703), - [aux_sym_infix_op_token1] = ACTIONS(2701), - [anon_sym_PIPE_PIPE] = ACTIONS(2701), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_COLON_EQ] = ACTIONS(2703), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2703), - [sym_int] = ACTIONS(2701), - [sym_xint] = ACTIONS(2703), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2703), - [sym__newline] = ACTIONS(2703), - }, - [1628] = { - [sym_xml_doc] = STATE(1628), - [sym_block_comment] = STATE(1628), - [sym_preproc_line] = STATE(1628), - [sym_identifier] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_let_BANG] = ACTIONS(2716), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACK_PIPE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_LBRACE_PIPE] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_return_BANG] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_yield_BANG] = ACTIONS(2716), - [anon_sym_lazy] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_upcast] = ACTIONS(2714), - [anon_sym_downcast] = ACTIONS(2714), - [anon_sym_LT_AT] = ACTIONS(2714), - [anon_sym_AT_GT] = ACTIONS(2716), - [anon_sym_LT_AT_AT] = ACTIONS(2714), - [anon_sym_AT_AT_GT] = ACTIONS(2716), - [anon_sym_COLON_GT] = ACTIONS(2716), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_fun] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_match_BANG] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_DOT_LBRACK] = ACTIONS(2716), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_use_BANG] = ACTIONS(2716), - [anon_sym_do_BANG] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_begin] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_AT_DQUOTE] = ACTIONS(2716), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2716), - [sym_bool] = ACTIONS(2714), - [sym_unit] = ACTIONS(2714), - [aux_sym__identifier_or_op_token1] = ACTIONS(2714), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_PLUS_DOT] = ACTIONS(2714), - [anon_sym_DASH_DOT] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_prefix_op_token1] = ACTIONS(2716), - [aux_sym_infix_op_token1] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_COLON_EQ] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2714), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2716), - [sym_int] = ACTIONS(2714), - [sym_xint] = ACTIONS(2716), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - }, - [1629] = { - [sym_xml_doc] = STATE(1629), - [sym_block_comment] = STATE(1629), - [sym_preproc_line] = STATE(1629), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - }, - [1630] = { - [sym_xml_doc] = STATE(1630), - [sym_block_comment] = STATE(1630), - [sym_preproc_line] = STATE(1630), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_DOT_DOT] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - }, - [1631] = { - [sym_xml_doc] = STATE(1631), - [sym_block_comment] = STATE(1631), - [sym_preproc_line] = STATE(1631), - [sym_identifier] = ACTIONS(2667), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_let_BANG] = ACTIONS(2669), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2667), - [anon_sym_COLON_QMARK] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_LBRACK_PIPE] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACE_PIPE] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_return_BANG] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_yield_BANG] = ACTIONS(2669), - [anon_sym_lazy] = ACTIONS(2667), - [anon_sym_assert] = ACTIONS(2667), - [anon_sym_upcast] = ACTIONS(2667), - [anon_sym_downcast] = ACTIONS(2667), - [anon_sym_LT_AT] = ACTIONS(2667), - [anon_sym_AT_GT] = ACTIONS(2669), - [anon_sym_LT_AT_AT] = ACTIONS(2667), - [anon_sym_AT_AT_GT] = ACTIONS(2669), - [anon_sym_COLON_GT] = ACTIONS(2669), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_fun] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_match_BANG] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2667), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_DOT_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_use_BANG] = ACTIONS(2669), - [anon_sym_do_BANG] = ACTIONS(2669), - [anon_sym_begin] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_AT_DQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym_bool] = ACTIONS(2667), - [sym_unit] = ACTIONS(2667), - [aux_sym__identifier_or_op_token1] = ACTIONS(2667), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS_DOT] = ACTIONS(2667), - [anon_sym_DASH_DOT] = ACTIONS(2667), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2669), - [aux_sym_prefix_op_token1] = ACTIONS(2669), - [aux_sym_infix_op_token1] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2667), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2669), - [sym_int] = ACTIONS(2667), - [sym_xint] = ACTIONS(2669), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2669), - [sym__newline] = ACTIONS(2669), - [sym__then] = ACTIONS(2669), - }, - [1632] = { - [sym_xml_doc] = STATE(1632), - [sym_block_comment] = STATE(1632), - [sym_preproc_line] = STATE(1632), - [sym_identifier] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_let_BANG] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2722), - [anon_sym_COLON_QMARK] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACK_PIPE] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_LBRACE_PIPE] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_return_BANG] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_yield_BANG] = ACTIONS(2724), - [anon_sym_lazy] = ACTIONS(2722), - [anon_sym_assert] = ACTIONS(2722), - [anon_sym_upcast] = ACTIONS(2722), - [anon_sym_downcast] = ACTIONS(2722), - [anon_sym_LT_AT] = ACTIONS(2722), - [anon_sym_AT_GT] = ACTIONS(2724), - [anon_sym_LT_AT_AT] = ACTIONS(2722), - [anon_sym_AT_AT_GT] = ACTIONS(2724), - [anon_sym_COLON_GT] = ACTIONS(2724), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_fun] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_match_BANG] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_DOT_LBRACK] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_use_BANG] = ACTIONS(2724), - [anon_sym_do_BANG] = ACTIONS(2724), - [anon_sym_begin] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2722), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_AT_DQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2724), - [sym_bool] = ACTIONS(2722), - [sym_unit] = ACTIONS(2722), - [aux_sym__identifier_or_op_token1] = ACTIONS(2722), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_PLUS_DOT] = ACTIONS(2722), - [anon_sym_DASH_DOT] = ACTIONS(2722), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [aux_sym_prefix_op_token1] = ACTIONS(2724), - [aux_sym_infix_op_token1] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_DOLLAR] = ACTIONS(2722), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2724), - [sym_int] = ACTIONS(2722), - [sym_xint] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [sym__then] = ACTIONS(2724), - }, - [1633] = { - [sym_xml_doc] = STATE(1633), - [sym_block_comment] = STATE(1633), - [sym_preproc_line] = STATE(1633), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__else] = ACTIONS(2958), - [sym__elif] = ACTIONS(2958), - }, - [1634] = { - [sym_xml_doc] = STATE(1634), - [sym_block_comment] = STATE(1634), - [sym_preproc_line] = STATE(1634), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3538), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), - [sym__then] = ACTIONS(2731), - }, - [1635] = { - [sym_xml_doc] = STATE(1635), - [sym_block_comment] = STATE(1635), - [sym_preproc_line] = STATE(1635), + [1548] = { + [sym_xml_doc] = STATE(1548), + [sym_block_comment] = STATE(1548), + [sym_preproc_line] = STATE(1548), + [aux_sym_sequential_expression_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2986), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_DOT_DOT2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), [sym_unit] = ACTIONS(2988), [aux_sym__identifier_or_op_token1] = ACTIONS(2988), @@ -212977,1776 +202553,3686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token1] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__else] = ACTIONS(2990), - [sym__elif] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3603), + [sym__dedent] = ACTIONS(2986), }, - [1636] = { - [sym_xml_doc] = STATE(1636), - [sym_block_comment] = STATE(1636), - [sym_preproc_line] = STATE(1636), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__else] = ACTIONS(2994), - [sym__elif] = ACTIONS(2994), + [1549] = { + [sym_xml_doc] = STATE(1549), + [sym_block_comment] = STATE(1549), + [sym_preproc_line] = STATE(1549), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, - [1637] = { - [sym_xml_doc] = STATE(1637), - [sym_block_comment] = STATE(1637), - [sym_preproc_line] = STATE(1637), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), + [1550] = { + [sym_xml_doc] = STATE(1550), + [sym_block_comment] = STATE(1550), + [sym_preproc_line] = STATE(1550), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + [sym__else] = ACTIONS(2835), + [sym__elif] = ACTIONS(2835), }, - [1638] = { - [sym_xml_doc] = STATE(1638), - [sym_block_comment] = STATE(1638), - [sym_preproc_line] = STATE(1638), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [1551] = { + [sym_xml_doc] = STATE(1551), + [sym_block_comment] = STATE(1551), + [sym_preproc_line] = STATE(1551), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + [sym__dedent] = ACTIONS(3071), + [sym__else] = ACTIONS(3071), + [sym__elif] = ACTIONS(3071), }, - [1639] = { - [sym_xml_doc] = STATE(1639), - [sym_block_comment] = STATE(1639), - [sym_preproc_line] = STATE(1639), - [sym_identifier] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_DASH_GT] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), + [1552] = { + [sym_xml_doc] = STATE(1552), + [sym_block_comment] = STATE(1552), + [sym_preproc_line] = STATE(1552), + [aux_sym_rules_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3606), }, - [1640] = { - [sym_xml_doc] = STATE(1640), - [sym_block_comment] = STATE(1640), - [sym_preproc_line] = STATE(1640), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__else] = ACTIONS(2632), - [sym__elif] = ACTIONS(2632), + [1553] = { + [sym_xml_doc] = STATE(1553), + [sym_block_comment] = STATE(1553), + [sym_preproc_line] = STATE(1553), + [aux_sym_rules_repeat1] = STATE(1450), + [sym_identifier] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_let_BANG] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2699), + [anon_sym_COLON_QMARK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(3553), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACK_PIPE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACE_PIPE] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_return_BANG] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_yield_BANG] = ACTIONS(2701), + [anon_sym_lazy] = ACTIONS(2699), + [anon_sym_assert] = ACTIONS(2699), + [anon_sym_upcast] = ACTIONS(2699), + [anon_sym_downcast] = ACTIONS(2699), + [anon_sym_LT_AT] = ACTIONS(2699), + [anon_sym_AT_GT] = ACTIONS(2701), + [anon_sym_LT_AT_AT] = ACTIONS(2699), + [anon_sym_AT_AT_GT] = ACTIONS(2701), + [anon_sym_COLON_GT] = ACTIONS(2701), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_fun] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_match_BANG] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_DOT_LBRACK] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_use_BANG] = ACTIONS(2701), + [anon_sym_do_BANG] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_begin] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_AT_DQUOTE] = ACTIONS(2701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2701), + [sym_bool] = ACTIONS(2699), + [sym_unit] = ACTIONS(2699), + [aux_sym__identifier_or_op_token1] = ACTIONS(2699), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_PLUS_DOT] = ACTIONS(2699), + [anon_sym_DASH_DOT] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2701), + [aux_sym_prefix_op_token1] = ACTIONS(2701), + [aux_sym_infix_op_token1] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_DOLLAR] = ACTIONS(2699), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2701), + [sym_int] = ACTIONS(2699), + [sym_xint] = ACTIONS(2701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2701), + [sym__newline] = ACTIONS(3606), }, - [1641] = { - [sym_xml_doc] = STATE(1641), - [sym_block_comment] = STATE(1641), - [sym_preproc_line] = STATE(1641), - [sym_identifier] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_let_BANG] = ACTIONS(2731), - [anon_sym_null] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_COLON_QMARK] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACK_PIPE] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_LBRACE_PIPE] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_return_BANG] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_yield_BANG] = ACTIONS(2731), - [anon_sym_lazy] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_upcast] = ACTIONS(2729), - [anon_sym_downcast] = ACTIONS(2729), - [anon_sym_LT_AT] = ACTIONS(2729), - [anon_sym_AT_GT] = ACTIONS(2731), - [anon_sym_LT_AT_AT] = ACTIONS(2729), - [anon_sym_AT_AT_GT] = ACTIONS(2731), - [anon_sym_COLON_GT] = ACTIONS(2731), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_done] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_fun] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_match_BANG] = ACTIONS(2731), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_DOT_LBRACK] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2729), - [anon_sym_use_BANG] = ACTIONS(2731), - [anon_sym_do_BANG] = ACTIONS(2731), - [anon_sym_DOT_DOT] = ACTIONS(2731), - [anon_sym_begin] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_or] = ACTIONS(2729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_AT_DQUOTE] = ACTIONS(2731), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2731), - [sym_bool] = ACTIONS(2729), - [sym_unit] = ACTIONS(2729), - [aux_sym__identifier_or_op_token1] = ACTIONS(2729), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS_DOT] = ACTIONS(2729), - [anon_sym_DASH_DOT] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2731), - [aux_sym_prefix_op_token1] = ACTIONS(2731), - [aux_sym_infix_op_token1] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_COLON_EQ] = ACTIONS(2731), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2731), - [sym_int] = ACTIONS(2729), - [sym_xint] = ACTIONS(2731), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2731), - [sym__newline] = ACTIONS(2731), + [1554] = { + [sym_xml_doc] = STATE(1554), + [sym_block_comment] = STATE(1554), + [sym_preproc_line] = STATE(1554), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [sym__then] = ACTIONS(2754), }, - [1642] = { - [sym_xml_doc] = STATE(1642), - [sym_block_comment] = STATE(1642), - [sym_preproc_line] = STATE(1642), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__else] = ACTIONS(3016), - [sym__elif] = ACTIONS(3016), + [1555] = { + [sym_xml_doc] = STATE(1555), + [sym_block_comment] = STATE(1555), + [sym_preproc_line] = STATE(1555), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + [sym__dedent] = ACTIONS(3107), + [sym__else] = ACTIONS(3107), + [sym__elif] = ACTIONS(3107), }, - [1643] = { - [sym_xml_doc] = STATE(1643), - [sym_block_comment] = STATE(1643), - [sym_preproc_line] = STATE(1643), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), + [1556] = { + [sym_xml_doc] = STATE(1556), + [sym_block_comment] = STATE(1556), + [sym_preproc_line] = STATE(1556), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + [sym__dedent] = ACTIONS(2866), + [sym__else] = ACTIONS(2866), + [sym__elif] = ACTIONS(2866), }, - [1644] = { - [sym_xml_doc] = STATE(1644), - [sym_block_comment] = STATE(1644), - [sym_preproc_line] = STATE(1644), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_DASH_GT] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [1557] = { + [sym_xml_doc] = STATE(1557), + [sym_block_comment] = STATE(1557), + [sym_preproc_line] = STATE(1557), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + [sym__dedent] = ACTIONS(2858), + [sym__else] = ACTIONS(2858), + [sym__elif] = ACTIONS(2858), }, - [1645] = { - [sym_xml_doc] = STATE(1645), - [sym_block_comment] = STATE(1645), - [sym_preproc_line] = STATE(1645), - [sym_identifier] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_as] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), + [1558] = { + [sym_xml_doc] = STATE(1558), + [sym_block_comment] = STATE(1558), + [sym_preproc_line] = STATE(1558), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + [sym__dedent] = ACTIONS(2862), + [sym__else] = ACTIONS(2862), + [sym__elif] = ACTIONS(2862), }, - [1646] = { - [sym_xml_doc] = STATE(1646), - [sym_block_comment] = STATE(1646), - [sym_preproc_line] = STATE(1646), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__else] = ACTIONS(3024), - [sym__elif] = ACTIONS(3024), + [1559] = { + [sym_xml_doc] = STATE(1559), + [sym_block_comment] = STATE(1559), + [sym_preproc_line] = STATE(1559), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + [sym__dedent] = ACTIONS(3157), + [sym__else] = ACTIONS(3157), + [sym__elif] = ACTIONS(3157), }, - [1647] = { - [sym_xml_doc] = STATE(1647), - [sym_block_comment] = STATE(1647), - [sym_preproc_line] = STATE(1647), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_as] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [1560] = { + [sym_xml_doc] = STATE(1560), + [sym_block_comment] = STATE(1560), + [sym_preproc_line] = STATE(1560), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [sym__dedent] = ACTIONS(2950), + [sym__else] = ACTIONS(2950), + [sym__elif] = ACTIONS(2950), }, - [1648] = { - [sym_xml_doc] = STATE(1648), - [sym_block_comment] = STATE(1648), - [sym_preproc_line] = STATE(1648), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [1561] = { + [sym_xml_doc] = STATE(1561), + [sym_block_comment] = STATE(1561), + [sym_preproc_line] = STATE(1561), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + [sym__dedent] = ACTIONS(2874), + [sym__else] = ACTIONS(2874), + [sym__elif] = ACTIONS(2874), }, - [1649] = { - [sym_xml_doc] = STATE(1649), - [sym_block_comment] = STATE(1649), - [sym_preproc_line] = STATE(1649), - [sym_identifier] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), + [1562] = { + [sym_xml_doc] = STATE(1562), + [sym_block_comment] = STATE(1562), + [sym_preproc_line] = STATE(1562), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + [sym__dedent] = ACTIONS(2999), + [sym__else] = ACTIONS(2999), + [sym__elif] = ACTIONS(2999), }, - [1650] = { - [sym_xml_doc] = STATE(1650), - [sym_block_comment] = STATE(1650), - [sym_preproc_line] = STATE(1650), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__else] = ACTIONS(3028), - [sym__elif] = ACTIONS(3028), + [1563] = { + [sym_xml_doc] = STATE(1563), + [sym_block_comment] = STATE(1563), + [sym_preproc_line] = STATE(1563), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + [sym__dedent] = ACTIONS(2878), + [sym__else] = ACTIONS(2878), + [sym__elif] = ACTIONS(2878), }, - [1651] = { - [sym_xml_doc] = STATE(1651), - [sym_block_comment] = STATE(1651), - [sym_preproc_line] = STATE(1651), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - [sym__else] = ACTIONS(2707), - [sym__elif] = ACTIONS(2707), + [1564] = { + [sym_xml_doc] = STATE(1564), + [sym_block_comment] = STATE(1564), + [sym_preproc_line] = STATE(1564), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), + [sym__dedent] = ACTIONS(3007), + [sym__else] = ACTIONS(3007), + [sym__elif] = ACTIONS(3007), }, - [1652] = { - [sym_xml_doc] = STATE(1652), - [sym_block_comment] = STATE(1652), - [sym_preproc_line] = STATE(1652), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [1565] = { + [sym_xml_doc] = STATE(1565), + [sym_block_comment] = STATE(1565), + [sym_preproc_line] = STATE(1565), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), + [sym__dedent] = ACTIONS(3003), + [sym__else] = ACTIONS(3003), + [sym__elif] = ACTIONS(3003), }, - [1653] = { - [sym_xml_doc] = STATE(1653), - [sym_block_comment] = STATE(1653), - [sym_preproc_line] = STATE(1653), - [sym_identifier] = ACTIONS(3048), + [1566] = { + [sym_xml_doc] = STATE(1566), + [sym_block_comment] = STATE(1566), + [sym_preproc_line] = STATE(1566), + [aux_sym_long_identifier_repeat1] = STATE(1447), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2511), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_with] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_EQ2] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + }, + [1567] = { + [sym_xml_doc] = STATE(1567), + [sym_block_comment] = STATE(1567), + [sym_preproc_line] = STATE(1567), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), + [sym__else] = ACTIONS(2882), + [sym__elif] = ACTIONS(2882), + }, + [1568] = { + [sym_xml_doc] = STATE(1568), + [sym_block_comment] = STATE(1568), + [sym_preproc_line] = STATE(1568), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [sym__dedent] = ACTIONS(2886), + [sym__else] = ACTIONS(2886), + [sym__elif] = ACTIONS(2886), + }, + [1569] = { + [sym_xml_doc] = STATE(1569), + [sym_block_comment] = STATE(1569), + [sym_preproc_line] = STATE(1569), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + [sym__dedent] = ACTIONS(3075), + [sym__else] = ACTIONS(3075), + [sym__elif] = ACTIONS(3075), + }, + [1570] = { + [sym_xml_doc] = STATE(1570), + [sym_block_comment] = STATE(1570), + [sym_preproc_line] = STATE(1570), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__dedent] = ACTIONS(2922), + [sym__else] = ACTIONS(2922), + [sym__elif] = ACTIONS(2922), + }, + [1571] = { + [sym_xml_doc] = STATE(1571), + [sym_block_comment] = STATE(1571), + [sym_preproc_line] = STATE(1571), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [sym__dedent] = ACTIONS(2890), + [sym__else] = ACTIONS(2890), + [sym__elif] = ACTIONS(2890), + }, + [1572] = { + [sym_xml_doc] = STATE(1572), + [sym_block_comment] = STATE(1572), + [sym_preproc_line] = STATE(1572), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3613), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + }, + [1573] = { + [sym_xml_doc] = STATE(1573), + [sym_block_comment] = STATE(1573), + [sym_preproc_line] = STATE(1573), + [aux_sym_sequential_expression_repeat1] = STATE(1486), + [sym_identifier] = ACTIONS(3052), [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), [anon_sym_COMMA] = ACTIONS(3050), [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3052), [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3052), [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), + [anon_sym_yield] = ACTIONS(3052), [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), + [anon_sym_LT_AT_AT] = ACTIONS(3052), [anon_sym_AT_AT_GT] = ACTIONS(3050), [anon_sym_COLON_GT] = ACTIONS(3050), [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3052), [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3052), [anon_sym_use_BANG] = ACTIONS(3050), [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), + [anon_sym_begin] = ACTIONS(3052), [anon_sym_LPAREN2] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), [anon_sym_AT_DQUOTE] = ACTIONS(3050), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_TILDE] = ACTIONS(3050), [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), [anon_sym_BANG_EQ] = ACTIONS(3050), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), + [sym_int] = ACTIONS(3052), [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3050), [sym__newline] = ACTIONS(3050), [sym__else] = ACTIONS(3050), [sym__elif] = ACTIONS(3050), }, - [1654] = { - [sym_xml_doc] = STATE(1654), - [sym_block_comment] = STATE(1654), - [sym_preproc_line] = STATE(1654), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), + [1574] = { + [sym_xml_doc] = STATE(1574), + [sym_block_comment] = STATE(1574), + [sym_preproc_line] = STATE(1574), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_as] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), }, - [1655] = { - [sym_xml_doc] = STATE(1655), - [sym_block_comment] = STATE(1655), - [sym_preproc_line] = STATE(1655), + [1575] = { + [sym_xml_doc] = STATE(1575), + [sym_block_comment] = STATE(1575), + [sym_preproc_line] = STATE(1575), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + [sym__dedent] = ACTIONS(3083), + [sym__else] = ACTIONS(3083), + [sym__elif] = ACTIONS(3083), + }, + [1576] = { + [sym_xml_doc] = STATE(1576), + [sym_block_comment] = STATE(1576), + [sym_preproc_line] = STATE(1576), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + [sym__dedent] = ACTIONS(3025), + }, + [1577] = { + [sym_xml_doc] = STATE(1577), + [sym_block_comment] = STATE(1577), + [sym_preproc_line] = STATE(1577), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_EQ2] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__dedent] = ACTIONS(2617), + }, + [1578] = { + [sym_xml_doc] = STATE(1578), + [sym_block_comment] = STATE(1578), + [sym_preproc_line] = STATE(1578), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_as] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2782), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + }, + [1579] = { + [sym_xml_doc] = STATE(1579), + [sym_block_comment] = STATE(1579), + [sym_preproc_line] = STATE(1579), + [sym_identifier] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2760), + [anon_sym_COLON] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_let_BANG] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_COLON_QMARK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK_PIPE] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE_PIPE] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_return_BANG] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_yield_BANG] = ACTIONS(2760), + [anon_sym_lazy] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_upcast] = ACTIONS(2758), + [anon_sym_downcast] = ACTIONS(2758), + [anon_sym_LT_AT] = ACTIONS(2758), + [anon_sym_AT_GT] = ACTIONS(2760), + [anon_sym_LT_AT_AT] = ACTIONS(2758), + [anon_sym_AT_AT_GT] = ACTIONS(2760), + [anon_sym_COLON_GT] = ACTIONS(2760), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_fun] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_match_BANG] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_DOT_LBRACK] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_use_BANG] = ACTIONS(2760), + [anon_sym_do_BANG] = ACTIONS(2760), + [anon_sym_begin] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_AT_DQUOTE] = ACTIONS(2760), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2760), + [sym_bool] = ACTIONS(2758), + [sym_unit] = ACTIONS(2758), + [aux_sym__identifier_or_op_token1] = ACTIONS(2758), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_PLUS_DOT] = ACTIONS(2758), + [anon_sym_DASH_DOT] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2760), + [aux_sym_prefix_op_token1] = ACTIONS(2760), + [aux_sym_infix_op_token1] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2760), + [anon_sym_COLON_EQ] = ACTIONS(2760), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2760), + [sym_int] = ACTIONS(3619), + [sym_xint] = ACTIONS(2760), + [anon_sym_f] = ACTIONS(2758), + [aux_sym_decimal_token1] = ACTIONS(2758), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2760), + [sym__newline] = ACTIONS(2760), + [sym__then] = ACTIONS(2760), + }, + [1580] = { + [sym_xml_doc] = STATE(1580), + [sym_block_comment] = STATE(1580), + [sym_preproc_line] = STATE(1580), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_as] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + }, + [1581] = { + [sym_xml_doc] = STATE(1581), + [sym_block_comment] = STATE(1581), + [sym_preproc_line] = STATE(1581), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_as] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + }, + [1582] = { + [sym_xml_doc] = STATE(1582), + [sym_block_comment] = STATE(1582), + [sym_preproc_line] = STATE(1582), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_as] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [1583] = { + [sym_xml_doc] = STATE(1583), + [sym_block_comment] = STATE(1583), + [sym_preproc_line] = STATE(1583), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + [sym__dedent] = ACTIONS(3125), + [sym__else] = ACTIONS(3125), + [sym__elif] = ACTIONS(3125), + }, + [1584] = { + [sym_xml_doc] = STATE(1584), + [sym_block_comment] = STATE(1584), + [sym_preproc_line] = STATE(1584), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [sym__else] = ACTIONS(2710), + [sym__elif] = ACTIONS(2710), + }, + [1585] = { + [sym_xml_doc] = STATE(1585), + [sym_block_comment] = STATE(1585), + [sym_preproc_line] = STATE(1585), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + [sym__dedent] = ACTIONS(2972), + }, + [1586] = { + [sym_xml_doc] = STATE(1586), + [sym_block_comment] = STATE(1586), + [sym_preproc_line] = STATE(1586), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + [sym__dedent] = ACTIONS(3033), + }, + [1587] = { + [sym_xml_doc] = STATE(1587), + [sym_block_comment] = STATE(1587), + [sym_preproc_line] = STATE(1587), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + [sym__else] = ACTIONS(2797), + [sym__elif] = ACTIONS(2797), + }, + [1588] = { + [sym_xml_doc] = STATE(1588), + [sym_block_comment] = STATE(1588), + [sym_preproc_line] = STATE(1588), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [1589] = { + [sym_xml_doc] = STATE(1589), + [sym_block_comment] = STATE(1589), + [sym_preproc_line] = STATE(1589), + [aux_sym_sequential_expression_repeat1] = STATE(1438), [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3050), [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3052), [anon_sym_do] = ACTIONS(3052), [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3052), [anon_sym_QMARK] = ACTIONS(3052), [anon_sym_COLON_QMARK] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3052), [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_with] = ACTIONS(3052), [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3050), [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3050), [anon_sym_lazy] = ACTIONS(3052), [anon_sym_assert] = ACTIONS(3052), [anon_sym_upcast] = ACTIONS(3052), [anon_sym_downcast] = ACTIONS(3052), [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3050), [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), [anon_sym_for] = ACTIONS(3052), [anon_sym_while] = ACTIONS(3052), [anon_sym_if] = ACTIONS(3052), [anon_sym_fun] = ACTIONS(3052), [anon_sym_try] = ACTIONS(3052), [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3050), [anon_sym_function] = ACTIONS(3052), [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3050), [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), [anon_sym_or] = ACTIONS(3052), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), [sym_bool] = ACTIONS(3052), [sym_unit] = ACTIONS(3052), [aux_sym__identifier_or_op_token1] = ACTIONS(3052), @@ -214757,1008 +206243,1918 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3052), [anon_sym_PERCENT] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), [aux_sym_infix_op_token1] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__else] = ACTIONS(3054), - [sym__elif] = ACTIONS(3054), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, - [1656] = { - [sym_xml_doc] = STATE(1656), - [sym_block_comment] = STATE(1656), - [sym_preproc_line] = STATE(1656), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_DASH_GT] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), + [1590] = { + [sym_xml_doc] = STATE(1590), + [sym_block_comment] = STATE(1590), + [sym_preproc_line] = STATE(1590), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__dedent] = ACTIONS(2229), }, - [1657] = { - [sym_xml_doc] = STATE(1657), - [sym_block_comment] = STATE(1657), - [sym_preproc_line] = STATE(1657), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_DASH_GT] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), + [1591] = { + [sym_xml_doc] = STATE(1591), + [sym_block_comment] = STATE(1591), + [sym_preproc_line] = STATE(1591), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_as] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), + [sym__dedent] = ACTIONS(2910), }, - [1658] = { - [sym_xml_doc] = STATE(1658), - [sym_block_comment] = STATE(1658), - [sym_preproc_line] = STATE(1658), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__else] = ACTIONS(3058), - [sym__elif] = ACTIONS(3058), + [1592] = { + [sym_xml_doc] = STATE(1592), + [sym_block_comment] = STATE(1592), + [sym_preproc_line] = STATE(1592), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_as] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + [sym__dedent] = ACTIONS(3079), }, - [1659] = { - [sym_xml_doc] = STATE(1659), - [sym_block_comment] = STATE(1659), - [sym_preproc_line] = STATE(1659), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_DASH_GT] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), + [1593] = { + [sym_xml_doc] = STATE(1593), + [sym_block_comment] = STATE(1593), + [sym_preproc_line] = STATE(1593), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3621), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), + [sym__else] = ACTIONS(2809), + [sym__elif] = ACTIONS(2809), }, - [1660] = { - [sym_xml_doc] = STATE(1660), - [sym_block_comment] = STATE(1660), - [sym_preproc_line] = STATE(1660), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__else] = ACTIONS(3062), - [sym__elif] = ACTIONS(3062), + [1594] = { + [sym_xml_doc] = STATE(1594), + [sym_block_comment] = STATE(1594), + [sym_preproc_line] = STATE(1594), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [sym__dedent] = ACTIONS(2870), }, - [1661] = { - [sym_xml_doc] = STATE(1661), - [sym_block_comment] = STATE(1661), - [sym_preproc_line] = STATE(1661), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - [sym__else] = ACTIONS(2820), - [sym__elif] = ACTIONS(2820), + [1595] = { + [sym_xml_doc] = STATE(1595), + [sym_block_comment] = STATE(1595), + [sym_preproc_line] = STATE(1595), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + [sym__dedent] = ACTIONS(2968), + [sym__else] = ACTIONS(2968), + [sym__elif] = ACTIONS(2968), }, - [1662] = { - [sym_xml_doc] = STATE(1662), - [sym_block_comment] = STATE(1662), - [sym_preproc_line] = STATE(1662), - [aux_sym_sequential_expression_repeat1] = STATE(1713), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [1596] = { + [sym_xml_doc] = STATE(1596), + [sym_block_comment] = STATE(1596), + [sym_preproc_line] = STATE(1596), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + [sym__dedent] = ACTIONS(3137), + [sym__else] = ACTIONS(3137), + [sym__elif] = ACTIONS(3137), }, - [1663] = { - [sym_xml_doc] = STATE(1663), - [sym_block_comment] = STATE(1663), - [sym_preproc_line] = STATE(1663), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_DASH_GT] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), + [1597] = { + [sym_xml_doc] = STATE(1597), + [sym_block_comment] = STATE(1597), + [sym_preproc_line] = STATE(1597), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + [sym__dedent] = ACTIONS(2918), }, - [1664] = { - [sym_xml_doc] = STATE(1664), - [sym_block_comment] = STATE(1664), - [sym_preproc_line] = STATE(1664), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), + [1598] = { + [sym_xml_doc] = STATE(1598), + [sym_block_comment] = STATE(1598), + [sym_preproc_line] = STATE(1598), + [aux_sym_sequential_expression_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_DOT_DOT2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__dedent] = ACTIONS(3050), }, - [1665] = { - [sym_xml_doc] = STATE(1665), - [sym_block_comment] = STATE(1665), - [sym_preproc_line] = STATE(1665), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), + [1599] = { + [sym_xml_doc] = STATE(1599), + [sym_block_comment] = STATE(1599), + [sym_preproc_line] = STATE(1599), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [sym__dedent] = ACTIONS(2940), }, - [1666] = { - [sym_xml_doc] = STATE(1666), - [sym_block_comment] = STATE(1666), - [sym_preproc_line] = STATE(1666), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_DASH_GT] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_DOT_DOT] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), + [1600] = { + [sym_xml_doc] = STATE(1600), + [sym_block_comment] = STATE(1600), + [sym_preproc_line] = STATE(1600), + [aux_sym_sequential_expression_repeat1] = STATE(1626), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), }, - [1667] = { - [sym_xml_doc] = STATE(1667), - [sym_block_comment] = STATE(1667), - [sym_preproc_line] = STATE(1667), + [1601] = { + [sym_xml_doc] = STATE(1601), + [sym_block_comment] = STATE(1601), + [sym_preproc_line] = STATE(1601), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_DASH_GT] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [1602] = { + [sym_xml_doc] = STATE(1602), + [sym_block_comment] = STATE(1602), + [sym_preproc_line] = STATE(1602), + [aux_sym_sequential_expression_repeat1] = STATE(1602), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_DOT_DOT2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3623), + }, + [1603] = { + [sym_xml_doc] = STATE(1603), + [sym_block_comment] = STATE(1603), + [sym_preproc_line] = STATE(1603), + [sym_identifier] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_let_BANG] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2752), + [anon_sym_COLON_QMARK] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACK_PIPE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE_PIPE] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_return_BANG] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_yield_BANG] = ACTIONS(2754), + [anon_sym_lazy] = ACTIONS(2752), + [anon_sym_assert] = ACTIONS(2752), + [anon_sym_upcast] = ACTIONS(2752), + [anon_sym_downcast] = ACTIONS(2752), + [anon_sym_LT_AT] = ACTIONS(2752), + [anon_sym_AT_GT] = ACTIONS(2754), + [anon_sym_LT_AT_AT] = ACTIONS(2752), + [anon_sym_AT_AT_GT] = ACTIONS(2754), + [anon_sym_COLON_GT] = ACTIONS(2754), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_fun] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_match_BANG] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_DOT_LBRACK] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_use_BANG] = ACTIONS(2754), + [anon_sym_do_BANG] = ACTIONS(2754), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_begin] = ACTIONS(2752), + [anon_sym_LPAREN2] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_or] = ACTIONS(2752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_AT_DQUOTE] = ACTIONS(2754), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2754), + [sym_bool] = ACTIONS(2752), + [sym_unit] = ACTIONS(2752), + [aux_sym__identifier_or_op_token1] = ACTIONS(2752), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_PLUS_DOT] = ACTIONS(2752), + [anon_sym_DASH_DOT] = ACTIONS(2752), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2754), + [aux_sym_prefix_op_token1] = ACTIONS(2754), + [aux_sym_infix_op_token1] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2754), + [anon_sym_COLON_EQ] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2752), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2754), + [sym_int] = ACTIONS(2752), + [sym_xint] = ACTIONS(2754), + [anon_sym_f] = ACTIONS(2752), + [aux_sym_decimal_token1] = ACTIONS(2752), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + }, + [1604] = { + [sym_xml_doc] = STATE(1604), + [sym_block_comment] = STATE(1604), + [sym_preproc_line] = STATE(1604), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + [sym__dedent] = ACTIONS(3117), + }, + [1605] = { + [sym_xml_doc] = STATE(1605), + [sym_block_comment] = STATE(1605), + [sym_preproc_line] = STATE(1605), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + [sym__dedent] = ACTIONS(3056), + }, + [1606] = { + [sym_xml_doc] = STATE(1606), + [sym_block_comment] = STATE(1606), + [sym_preproc_line] = STATE(1606), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), + [sym__dedent] = ACTIONS(3041), + }, + [1607] = { + [sym_xml_doc] = STATE(1607), + [sym_block_comment] = STATE(1607), + [sym_preproc_line] = STATE(1607), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + [sym__dedent] = ACTIONS(3037), + }, + [1608] = { + [sym_xml_doc] = STATE(1608), + [sym_block_comment] = STATE(1608), + [sym_preproc_line] = STATE(1608), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + [sym__dedent] = ACTIONS(2894), + [sym__else] = ACTIONS(2894), + [sym__elif] = ACTIONS(2894), + }, + [1609] = { + [sym_xml_doc] = STATE(1609), + [sym_block_comment] = STATE(1609), + [sym_preproc_line] = STATE(1609), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + [sym__dedent] = ACTIONS(2964), + }, + [1610] = { + [sym_xml_doc] = STATE(1610), + [sym_block_comment] = STATE(1610), + [sym_preproc_line] = STATE(1610), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + [sym__dedent] = ACTIONS(3133), + [sym__else] = ACTIONS(3133), + [sym__elif] = ACTIONS(3133), + }, + [1611] = { + [sym_xml_doc] = STATE(1611), + [sym_block_comment] = STATE(1611), + [sym_preproc_line] = STATE(1611), [sym_identifier] = ACTIONS(2930), [anon_sym_EQ] = ACTIONS(2932), [anon_sym_COLON] = ACTIONS(2930), @@ -215837,748 +208233,3792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), + [sym__dedent] = ACTIONS(2932), }, - [1668] = { - [sym_xml_doc] = STATE(1668), - [sym_block_comment] = STATE(1668), - [sym_preproc_line] = STATE(1668), - [sym_identifier] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), + [1612] = { + [sym_xml_doc] = STATE(1612), + [sym_block_comment] = STATE(1612), + [sym_preproc_line] = STATE(1612), + [sym_identifier] = ACTIONS(2693), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_let_BANG] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_COLON_QMARK] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACK_PIPE] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_LBRACE_PIPE] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_return_BANG] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_yield_BANG] = ACTIONS(2695), + [anon_sym_lazy] = ACTIONS(2693), + [anon_sym_assert] = ACTIONS(2693), + [anon_sym_upcast] = ACTIONS(2693), + [anon_sym_downcast] = ACTIONS(2693), + [anon_sym_LT_AT] = ACTIONS(2693), + [anon_sym_AT_GT] = ACTIONS(2695), + [anon_sym_LT_AT_AT] = ACTIONS(2693), + [anon_sym_AT_AT_GT] = ACTIONS(2695), + [anon_sym_COLON_GT] = ACTIONS(2695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_fun] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_match_BANG] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_use_BANG] = ACTIONS(2695), + [anon_sym_do_BANG] = ACTIONS(2695), + [anon_sym_begin] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2693), + [anon_sym_AT_DQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2695), + [sym_bool] = ACTIONS(2693), + [sym_unit] = ACTIONS(2693), + [aux_sym__identifier_or_op_token1] = ACTIONS(2693), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_DOT] = ACTIONS(2693), + [anon_sym_DASH_DOT] = ACTIONS(2693), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [aux_sym_prefix_op_token1] = ACTIONS(2695), + [aux_sym_infix_op_token1] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_DOLLAR] = ACTIONS(2693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2695), + [sym_int] = ACTIONS(2693), + [sym_xint] = ACTIONS(2695), + [anon_sym_f] = ACTIONS(2693), + [aux_sym_decimal_token1] = ACTIONS(2693), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2695), + [sym__newline] = ACTIONS(2695), + [sym__then] = ACTIONS(2695), }, - [1669] = { - [sym_xml_doc] = STATE(1669), - [sym_block_comment] = STATE(1669), - [sym_preproc_line] = STATE(1669), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_DASH_GT] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_DOT_DOT] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), + [1613] = { + [sym_xml_doc] = STATE(1613), + [sym_block_comment] = STATE(1613), + [sym_preproc_line] = STATE(1613), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_as] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + [sym__dedent] = ACTIONS(3107), }, - [1670] = { - [sym_xml_doc] = STATE(1670), - [sym_block_comment] = STATE(1670), - [sym_preproc_line] = STATE(1670), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - [sym__else] = ACTIONS(3066), - [sym__elif] = ACTIONS(3066), + [1614] = { + [sym_xml_doc] = STATE(1614), + [sym_block_comment] = STATE(1614), + [sym_preproc_line] = STATE(1614), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_as] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + [sym__dedent] = ACTIONS(2858), }, - [1671] = { - [sym_xml_doc] = STATE(1671), - [sym_block_comment] = STATE(1671), - [sym_preproc_line] = STATE(1671), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_DASH_GT] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), + [1615] = { + [sym_xml_doc] = STATE(1615), + [sym_block_comment] = STATE(1615), + [sym_preproc_line] = STATE(1615), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_as] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [sym__dedent] = ACTIONS(2890), }, - [1672] = { - [sym_xml_doc] = STATE(1672), - [sym_block_comment] = STATE(1672), - [sym_preproc_line] = STATE(1672), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_DASH_GT] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_DOT_DOT] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), + [1616] = { + [sym_xml_doc] = STATE(1616), + [sym_block_comment] = STATE(1616), + [sym_preproc_line] = STATE(1616), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_as] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + [sym__dedent] = ACTIONS(2862), }, - [1673] = { - [sym_xml_doc] = STATE(1673), - [sym_block_comment] = STATE(1673), - [sym_preproc_line] = STATE(1673), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_as] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), + [1617] = { + [sym_xml_doc] = STATE(1617), + [sym_block_comment] = STATE(1617), + [sym_preproc_line] = STATE(1617), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_as] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + [sym__dedent] = ACTIONS(2874), }, - [1674] = { - [sym_xml_doc] = STATE(1674), - [sym_block_comment] = STATE(1674), - [sym_preproc_line] = STATE(1674), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_as] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2964), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), + [1618] = { + [sym_xml_doc] = STATE(1618), + [sym_block_comment] = STATE(1618), + [sym_preproc_line] = STATE(1618), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + [sym__dedent] = ACTIONS(3129), + [sym__else] = ACTIONS(3129), + [sym__elif] = ACTIONS(3129), }, - [1675] = { - [sym_xml_doc] = STATE(1675), - [sym_block_comment] = STATE(1675), - [sym_preproc_line] = STATE(1675), - [aux_sym_sequential_expression_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3542), - [sym__then] = ACTIONS(3078), + [1619] = { + [sym_xml_doc] = STATE(1619), + [sym_block_comment] = STATE(1619), + [sym_preproc_line] = STATE(1619), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), }, - [1676] = { - [sym_xml_doc] = STATE(1676), - [sym_block_comment] = STATE(1676), - [sym_preproc_line] = STATE(1676), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3091), + [1620] = { + [sym_xml_doc] = STATE(1620), + [sym_block_comment] = STATE(1620), + [sym_preproc_line] = STATE(1620), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_as] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + [sym__dedent] = ACTIONS(2878), + }, + [1621] = { + [sym_xml_doc] = STATE(1621), + [sym_block_comment] = STATE(1621), + [sym_preproc_line] = STATE(1621), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__dedent] = ACTIONS(2882), + }, + [1622] = { + [sym_xml_doc] = STATE(1622), + [sym_block_comment] = STATE(1622), + [sym_preproc_line] = STATE(1622), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_as] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + [sym__dedent] = ACTIONS(2894), + }, + [1623] = { + [sym_xml_doc] = STATE(1623), + [sym_block_comment] = STATE(1623), + [sym_preproc_line] = STATE(1623), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [sym__dedent] = ACTIONS(2902), + }, + [1624] = { + [sym_xml_doc] = STATE(1624), + [sym_block_comment] = STATE(1624), + [sym_preproc_line] = STATE(1624), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_as] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + [sym__dedent] = ACTIONS(2866), + }, + [1625] = { + [sym_xml_doc] = STATE(1625), + [sym_block_comment] = STATE(1625), + [sym_preproc_line] = STATE(1625), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [sym__dedent] = ACTIONS(2902), + [sym__else] = ACTIONS(2902), + [sym__elif] = ACTIONS(2902), + }, + [1626] = { + [sym_xml_doc] = STATE(1626), + [sym_block_comment] = STATE(1626), + [sym_preproc_line] = STATE(1626), + [aux_sym_sequential_expression_repeat1] = STATE(1626), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3626), + }, + [1627] = { + [sym_xml_doc] = STATE(1627), + [sym_block_comment] = STATE(1627), + [sym_preproc_line] = STATE(1627), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3629), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + [sym__then] = ACTIONS(2803), + }, + [1628] = { + [sym_xml_doc] = STATE(1628), + [sym_block_comment] = STATE(1628), + [sym_preproc_line] = STATE(1628), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + [sym__then] = ACTIONS(2734), + }, + [1629] = { + [sym_xml_doc] = STATE(1629), + [sym_block_comment] = STATE(1629), + [sym_preproc_line] = STATE(1629), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + [sym__else] = ACTIONS(2995), + [sym__elif] = ACTIONS(2995), + }, + [1630] = { + [sym_xml_doc] = STATE(1630), + [sym_block_comment] = STATE(1630), + [sym_preproc_line] = STATE(1630), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + }, + [1631] = { + [sym_xml_doc] = STATE(1631), + [sym_block_comment] = STATE(1631), + [sym_preproc_line] = STATE(1631), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + }, + [1632] = { + [sym_xml_doc] = STATE(1632), + [sym_block_comment] = STATE(1632), + [sym_preproc_line] = STATE(1632), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_with] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + }, + [1633] = { + [sym_xml_doc] = STATE(1633), + [sym_block_comment] = STATE(1633), + [sym_preproc_line] = STATE(1633), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + }, + [1634] = { + [sym_xml_doc] = STATE(1634), + [sym_block_comment] = STATE(1634), + [sym_preproc_line] = STATE(1634), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + }, + [1635] = { + [sym_xml_doc] = STATE(1635), + [sym_block_comment] = STATE(1635), + [sym_preproc_line] = STATE(1635), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + [sym__else] = ACTIONS(2984), + [sym__elif] = ACTIONS(2984), + }, + [1636] = { + [sym_xml_doc] = STATE(1636), + [sym_block_comment] = STATE(1636), + [sym_preproc_line] = STATE(1636), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_as] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + }, + [1637] = { + [sym_xml_doc] = STATE(1637), + [sym_block_comment] = STATE(1637), + [sym_preproc_line] = STATE(1637), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + [sym__else] = ACTIONS(2980), + [sym__elif] = ACTIONS(2980), + }, + [1638] = { + [sym_xml_doc] = STATE(1638), + [sym_block_comment] = STATE(1638), + [sym_preproc_line] = STATE(1638), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + [sym__else] = ACTIONS(2976), + [sym__elif] = ACTIONS(2976), + }, + [1639] = { + [sym_xml_doc] = STATE(1639), + [sym_block_comment] = STATE(1639), + [sym_preproc_line] = STATE(1639), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + }, + [1640] = { + [sym_xml_doc] = STATE(1640), + [sym_block_comment] = STATE(1640), + [sym_preproc_line] = STATE(1640), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + }, + [1641] = { + [sym_xml_doc] = STATE(1641), + [sym_block_comment] = STATE(1641), + [sym_preproc_line] = STATE(1641), + [sym_identifier] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), + [sym__else] = ACTIONS(2936), + [sym__elif] = ACTIONS(2936), + }, + [1642] = { + [sym_xml_doc] = STATE(1642), + [sym_block_comment] = STATE(1642), + [sym_preproc_line] = STATE(1642), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_as] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + }, + [1643] = { + [sym_xml_doc] = STATE(1643), + [sym_block_comment] = STATE(1643), + [sym_preproc_line] = STATE(1643), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_with] = ACTIONS(3119), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + }, + [1644] = { + [sym_xml_doc] = STATE(1644), + [sym_block_comment] = STATE(1644), + [sym_preproc_line] = STATE(1644), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_DASH_GT] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + }, + [1645] = { + [sym_xml_doc] = STATE(1645), + [sym_block_comment] = STATE(1645), + [sym_preproc_line] = STATE(1645), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + }, + [1646] = { + [sym_xml_doc] = STATE(1646), + [sym_block_comment] = STATE(1646), + [sym_preproc_line] = STATE(1646), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + }, + [1647] = { + [sym_xml_doc] = STATE(1647), + [sym_block_comment] = STATE(1647), + [sym_preproc_line] = STATE(1647), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_DASH_GT] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + }, + [1648] = { + [sym_xml_doc] = STATE(1648), + [sym_block_comment] = STATE(1648), + [sym_preproc_line] = STATE(1648), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_as] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + }, + [1649] = { + [sym_xml_doc] = STATE(1649), + [sym_block_comment] = STATE(1649), + [sym_preproc_line] = STATE(1649), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_DASH_GT] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + }, + [1650] = { + [sym_xml_doc] = STATE(1650), + [sym_block_comment] = STATE(1650), + [sym_preproc_line] = STATE(1650), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_DASH_GT] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + }, + [1651] = { + [sym_xml_doc] = STATE(1651), + [sym_block_comment] = STATE(1651), + [sym_preproc_line] = STATE(1651), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_DASH_GT] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + }, + [1652] = { + [sym_xml_doc] = STATE(1652), + [sym_block_comment] = STATE(1652), + [sym_preproc_line] = STATE(1652), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_DASH_GT] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + }, + [1653] = { + [sym_xml_doc] = STATE(1653), + [sym_block_comment] = STATE(1653), + [sym_preproc_line] = STATE(1653), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_DASH_GT] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + }, + [1654] = { + [sym_xml_doc] = STATE(1654), + [sym_block_comment] = STATE(1654), + [sym_preproc_line] = STATE(1654), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_with] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3091), [anon_sym_return_BANG] = ACTIONS(3093), [anon_sym_yield] = ACTIONS(3091), [anon_sym_yield_BANG] = ACTIONS(3093), @@ -216636,5239 +212076,2567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), [sym_int] = ACTIONS(3091), [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3093), [sym__newline] = ACTIONS(3093), - [sym__else] = ACTIONS(3093), - [sym__elif] = ACTIONS(3093), - }, - [1677] = { - [sym_xml_doc] = STATE(1677), - [sym_block_comment] = STATE(1677), - [sym_preproc_line] = STATE(1677), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - [sym__else] = ACTIONS(3089), - [sym__elif] = ACTIONS(3089), - }, - [1678] = { - [sym_xml_doc] = STATE(1678), - [sym_block_comment] = STATE(1678), - [sym_preproc_line] = STATE(1678), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - [sym__else] = ACTIONS(3085), - [sym__elif] = ACTIONS(3085), - }, - [1679] = { - [sym_xml_doc] = STATE(1679), - [sym_block_comment] = STATE(1679), - [sym_preproc_line] = STATE(1679), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - [sym__else] = ACTIONS(3074), - [sym__elif] = ACTIONS(3074), - }, - [1680] = { - [sym_xml_doc] = STATE(1680), - [sym_block_comment] = STATE(1680), - [sym_preproc_line] = STATE(1680), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__else] = ACTIONS(3046), - [sym__elif] = ACTIONS(3046), - }, - [1681] = { - [sym_xml_doc] = STATE(1681), - [sym_block_comment] = STATE(1681), - [sym_preproc_line] = STATE(1681), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - }, - [1682] = { - [sym_xml_doc] = STATE(1682), - [sym_block_comment] = STATE(1682), - [sym_preproc_line] = STATE(1682), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__else] = ACTIONS(3042), - [sym__elif] = ACTIONS(3042), - }, - [1683] = { - [sym_xml_doc] = STATE(1683), - [sym_block_comment] = STATE(1683), - [sym_preproc_line] = STATE(1683), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__else] = ACTIONS(3038), - [sym__elif] = ACTIONS(3038), - }, - [1684] = { - [sym_xml_doc] = STATE(1684), - [sym_block_comment] = STATE(1684), - [sym_preproc_line] = STATE(1684), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - [sym__else] = ACTIONS(3020), - [sym__elif] = ACTIONS(3020), - }, - [1685] = { - [sym_xml_doc] = STATE(1685), - [sym_block_comment] = STATE(1685), - [sym_preproc_line] = STATE(1685), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_as] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), }, - [1686] = { - [sym_xml_doc] = STATE(1686), - [sym_block_comment] = STATE(1686), - [sym_preproc_line] = STATE(1686), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2976), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), + [1655] = { + [sym_xml_doc] = STATE(1655), + [sym_block_comment] = STATE(1655), + [sym_preproc_line] = STATE(1655), + [sym_identifier] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_COLON] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_let_BANG] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_COLON_QMARK] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_LBRACK_PIPE] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACE_PIPE] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_return_BANG] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2930), + [anon_sym_yield_BANG] = ACTIONS(2932), + [anon_sym_lazy] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_upcast] = ACTIONS(2930), + [anon_sym_downcast] = ACTIONS(2930), + [anon_sym_LT_AT] = ACTIONS(2930), + [anon_sym_AT_GT] = ACTIONS(2932), + [anon_sym_LT_AT_AT] = ACTIONS(2930), + [anon_sym_AT_AT_GT] = ACTIONS(2932), + [anon_sym_COLON_GT] = ACTIONS(2932), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_fun] = ACTIONS(2930), + [anon_sym_DASH_GT] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_match_BANG] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_DOT_LBRACK] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_use_BANG] = ACTIONS(2932), + [anon_sym_do_BANG] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(2932), + [anon_sym_begin] = ACTIONS(2930), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_or] = ACTIONS(2930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_AT_DQUOTE] = ACTIONS(2932), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [sym_bool] = ACTIONS(2930), + [sym_unit] = ACTIONS(2930), + [aux_sym__identifier_or_op_token1] = ACTIONS(2930), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_DOT] = ACTIONS(2930), + [anon_sym_DASH_DOT] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [aux_sym_prefix_op_token1] = ACTIONS(2932), + [aux_sym_infix_op_token1] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_COLON_EQ] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), + [sym_int] = ACTIONS(2930), + [sym_xint] = ACTIONS(2932), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2932), + [sym__newline] = ACTIONS(2932), }, - [1687] = { - [sym_xml_doc] = STATE(1687), - [sym_block_comment] = STATE(1687), - [sym_preproc_line] = STATE(1687), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_as] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2980), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), + [1656] = { + [sym_xml_doc] = STATE(1656), + [sym_block_comment] = STATE(1656), + [sym_preproc_line] = STATE(1656), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_DOT_DOT] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), }, - [1688] = { - [sym_xml_doc] = STATE(1688), - [sym_block_comment] = STATE(1688), - [sym_preproc_line] = STATE(1688), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1657] = { + [sym_xml_doc] = STATE(1657), + [sym_block_comment] = STATE(1657), + [sym_preproc_line] = STATE(1657), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - }, - [1689] = { - [sym_xml_doc] = STATE(1689), - [sym_block_comment] = STATE(1689), - [sym_preproc_line] = STATE(1689), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - }, - [1690] = { - [sym_xml_doc] = STATE(1690), - [sym_block_comment] = STATE(1690), - [sym_preproc_line] = STATE(1690), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_as] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - }, - [1691] = { - [sym_xml_doc] = STATE(1691), - [sym_block_comment] = STATE(1691), - [sym_preproc_line] = STATE(1691), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), + [sym__else] = ACTIONS(2914), + [sym__elif] = ACTIONS(2914), }, - [1692] = { - [sym_xml_doc] = STATE(1692), - [sym_block_comment] = STATE(1692), - [sym_preproc_line] = STATE(1692), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), + [1658] = { + [sym_xml_doc] = STATE(1658), + [sym_block_comment] = STATE(1658), + [sym_preproc_line] = STATE(1658), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3058), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), }, - [1693] = { - [sym_xml_doc] = STATE(1693), - [sym_block_comment] = STATE(1693), - [sym_preproc_line] = STATE(1693), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), + [1659] = { + [sym_xml_doc] = STATE(1659), + [sym_block_comment] = STATE(1659), + [sym_preproc_line] = STATE(1659), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_DASH_GT] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_DOT_DOT] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), }, - [1694] = { - [sym_xml_doc] = STATE(1694), - [sym_block_comment] = STATE(1694), - [sym_preproc_line] = STATE(1694), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - [sym__else] = ACTIONS(3012), - [sym__elif] = ACTIONS(3012), + [1660] = { + [sym_xml_doc] = STATE(1660), + [sym_block_comment] = STATE(1660), + [sym_preproc_line] = STATE(1660), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_DOT_DOT] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), }, - [1695] = { - [sym_xml_doc] = STATE(1695), - [sym_block_comment] = STATE(1695), - [sym_preproc_line] = STATE(1695), - [aux_sym_long_identifier_repeat1] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_and] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [aux_sym_access_modifier_token1] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_member] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_val] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1661] = { + [sym_xml_doc] = STATE(1661), + [sym_block_comment] = STATE(1661), + [sym_preproc_line] = STATE(1661), + [sym_identifier] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), + [sym__else] = ACTIONS(2906), + [sym__elif] = ACTIONS(2906), }, - [1696] = { - [sym_xml_doc] = STATE(1696), - [sym_block_comment] = STATE(1696), - [sym_preproc_line] = STATE(1696), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [1662] = { + [sym_xml_doc] = STATE(1662), + [sym_block_comment] = STATE(1662), + [sym_preproc_line] = STATE(1662), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [sym__else] = ACTIONS(2946), + [sym__elif] = ACTIONS(2946), }, - [1697] = { - [sym_xml_doc] = STATE(1697), - [sym_block_comment] = STATE(1697), - [sym_preproc_line] = STATE(1697), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - [sym__else] = ACTIONS(3008), - [sym__elif] = ACTIONS(3008), + [1663] = { + [sym_xml_doc] = STATE(1663), + [sym_block_comment] = STATE(1663), + [sym_preproc_line] = STATE(1663), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + [sym__else] = ACTIONS(2898), + [sym__elif] = ACTIONS(2898), }, - [1698] = { - [sym_xml_doc] = STATE(1698), - [sym_block_comment] = STATE(1698), - [sym_preproc_line] = STATE(1698), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [sym__else] = ACTIONS(2782), - [sym__elif] = ACTIONS(2782), + [1664] = { + [sym_xml_doc] = STATE(1664), + [sym_block_comment] = STATE(1664), + [sym_preproc_line] = STATE(1664), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__else] = ACTIONS(3064), + [sym__elif] = ACTIONS(3064), }, - [1699] = { - [sym_xml_doc] = STATE(1699), - [sym_block_comment] = STATE(1699), - [sym_preproc_line] = STATE(1699), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - [sym__else] = ACTIONS(3004), - [sym__elif] = ACTIONS(3004), + [1665] = { + [sym_xml_doc] = STATE(1665), + [sym_block_comment] = STATE(1665), + [sym_preproc_line] = STATE(1665), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), }, - [1700] = { - [sym_xml_doc] = STATE(1700), - [sym_block_comment] = STATE(1700), - [sym_preproc_line] = STATE(1700), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - [sym__else] = ACTIONS(2986), - [sym__elif] = ACTIONS(2986), + [1666] = { + [sym_xml_doc] = STATE(1666), + [sym_block_comment] = STATE(1666), + [sym_preproc_line] = STATE(1666), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), + [sym__else] = ACTIONS(3060), + [sym__elif] = ACTIONS(3060), }, - [1701] = { - [sym_xml_doc] = STATE(1701), - [sym_block_comment] = STATE(1701), - [sym_preproc_line] = STATE(1701), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__else] = ACTIONS(2982), - [sym__elif] = ACTIONS(2982), + [1667] = { + [sym_xml_doc] = STATE(1667), + [sym_block_comment] = STATE(1667), + [sym_preproc_line] = STATE(1667), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_DASH_GT] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_DOT_DOT] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), }, - [1702] = { - [sym_xml_doc] = STATE(1702), - [sym_block_comment] = STATE(1702), - [sym_preproc_line] = STATE(1702), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__else] = ACTIONS(2978), - [sym__elif] = ACTIONS(2978), + [1668] = { + [sym_xml_doc] = STATE(1668), + [sym_block_comment] = STATE(1668), + [sym_preproc_line] = STATE(1668), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + [sym__else] = ACTIONS(3145), + [sym__elif] = ACTIONS(3145), }, - [1703] = { - [sym_xml_doc] = STATE(1703), - [sym_block_comment] = STATE(1703), - [sym_preproc_line] = STATE(1703), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__else] = ACTIONS(2974), - [sym__elif] = ACTIONS(2974), + [1669] = { + [sym_xml_doc] = STATE(1669), + [sym_block_comment] = STATE(1669), + [sym_preproc_line] = STATE(1669), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_as] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_with] = ACTIONS(3135), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), }, - [1704] = { - [sym_xml_doc] = STATE(1704), - [sym_block_comment] = STATE(1704), - [sym_preproc_line] = STATE(1704), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_EQ2] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [1670] = { + [sym_xml_doc] = STATE(1670), + [sym_block_comment] = STATE(1670), + [sym_preproc_line] = STATE(1670), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + [sym__else] = ACTIONS(3149), + [sym__elif] = ACTIONS(3149), }, - [1705] = { - [sym_xml_doc] = STATE(1705), - [sym_block_comment] = STATE(1705), - [sym_preproc_line] = STATE(1705), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_as] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3036), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), + [1671] = { + [sym_xml_doc] = STATE(1671), + [sym_block_comment] = STATE(1671), + [sym_preproc_line] = STATE(1671), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_as] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3131), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), }, - [1706] = { - [sym_xml_doc] = STATE(1706), - [sym_block_comment] = STATE(1706), - [sym_preproc_line] = STATE(1706), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_as] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3040), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), + [1672] = { + [sym_xml_doc] = STATE(1672), + [sym_block_comment] = STATE(1672), + [sym_preproc_line] = STATE(1672), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), }, - [1707] = { - [sym_xml_doc] = STATE(1707), - [sym_block_comment] = STATE(1707), - [sym_preproc_line] = STATE(1707), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3044), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [1673] = { + [sym_xml_doc] = STATE(1673), + [sym_block_comment] = STATE(1673), + [sym_preproc_line] = STATE(1673), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__else] = ACTIONS(3153), + [sym__elif] = ACTIONS(3153), }, - [1708] = { - [sym_xml_doc] = STATE(1708), - [sym_block_comment] = STATE(1708), - [sym_preproc_line] = STATE(1708), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__else] = ACTIONS(2970), - [sym__elif] = ACTIONS(2970), + [1674] = { + [sym_xml_doc] = STATE(1674), + [sym_block_comment] = STATE(1674), + [sym_preproc_line] = STATE(1674), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_as] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), }, - [1709] = { - [sym_xml_doc] = STATE(1709), - [sym_block_comment] = STATE(1709), - [sym_preproc_line] = STATE(1709), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__else] = ACTIONS(2225), - [sym__elif] = ACTIONS(2225), + [1675] = { + [sym_xml_doc] = STATE(1675), + [sym_block_comment] = STATE(1675), + [sym_preproc_line] = STATE(1675), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_DASH_GT] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), }, - [1710] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1710), - [sym_block_comment] = STATE(1710), - [sym_preproc_line] = STATE(1710), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_POUNDnowarn] = ACTIONS(2363), - [anon_sym_POUNDr] = ACTIONS(2363), - [anon_sym_POUNDload] = ACTIONS(2363), - [anon_sym_open] = ACTIONS(2365), - [anon_sym_LBRACK_LT] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_and] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [aux_sym_access_modifier_token1] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_LT_AT_AT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_member] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_override] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_val] = ACTIONS(2365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2363), - [aux_sym__identifier_or_op_token1] = ACTIONS(2363), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2363), - [anon_sym_DASH_DOT] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1676] = { + [sym_xml_doc] = STATE(1676), + [sym_block_comment] = STATE(1676), + [sym_preproc_line] = STATE(1676), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_as] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + }, + [1677] = { + [sym_xml_doc] = STATE(1677), + [sym_block_comment] = STATE(1677), + [sym_preproc_line] = STATE(1677), + [sym_identifier] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_as] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__dedent] = ACTIONS(2363), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), }, - [1711] = { - [sym_xml_doc] = STATE(1711), - [sym_block_comment] = STATE(1711), - [sym_preproc_line] = STATE(1711), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__else] = ACTIONS(2966), - [sym__elif] = ACTIONS(2966), - }, - [1712] = { - [sym_xml_doc] = STATE(1712), - [sym_block_comment] = STATE(1712), - [sym_preproc_line] = STATE(1712), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_as] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - }, - [1713] = { - [sym_xml_doc] = STATE(1713), - [sym_block_comment] = STATE(1713), - [sym_preproc_line] = STATE(1713), - [aux_sym_sequential_expression_repeat1] = STATE(1713), - [sym_identifier] = ACTIONS(3076), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_let_BANG] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3076), - [anon_sym_COLON_QMARK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_LBRACE_PIPE] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_return_BANG] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3076), - [anon_sym_yield_BANG] = ACTIONS(3078), - [anon_sym_lazy] = ACTIONS(3076), - [anon_sym_assert] = ACTIONS(3076), - [anon_sym_upcast] = ACTIONS(3076), - [anon_sym_downcast] = ACTIONS(3076), - [anon_sym_LT_AT] = ACTIONS(3076), - [anon_sym_AT_GT] = ACTIONS(3078), - [anon_sym_LT_AT_AT] = ACTIONS(3076), - [anon_sym_AT_AT_GT] = ACTIONS(3078), - [anon_sym_COLON_GT] = ACTIONS(3078), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_fun] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3076), - [anon_sym_match_BANG] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_DOT_LBRACK] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_use] = ACTIONS(3076), - [anon_sym_use_BANG] = ACTIONS(3078), - [anon_sym_do_BANG] = ACTIONS(3078), - [anon_sym_DOT_DOT] = ACTIONS(3078), - [anon_sym_begin] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_AT_DQUOTE] = ACTIONS(3078), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3078), - [sym_bool] = ACTIONS(3076), - [sym_unit] = ACTIONS(3076), - [aux_sym__identifier_or_op_token1] = ACTIONS(3076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS_DOT] = ACTIONS(3076), - [anon_sym_DASH_DOT] = ACTIONS(3076), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_prefix_op_token1] = ACTIONS(3078), - [aux_sym_infix_op_token1] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_DOLLAR] = ACTIONS(3076), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3078), - [sym_int] = ACTIONS(3076), - [sym_xint] = ACTIONS(3078), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3078), - [sym__newline] = ACTIONS(3557), - }, - [1714] = { - [sym_xml_doc] = STATE(1714), - [sym_block_comment] = STATE(1714), - [sym_preproc_line] = STATE(1714), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3083), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - }, - [1715] = { - [sym_xml_doc] = STATE(1715), - [sym_block_comment] = STATE(1715), - [sym_preproc_line] = STATE(1715), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - }, - [1716] = { - [sym_xml_doc] = STATE(1716), - [sym_block_comment] = STATE(1716), - [sym_preproc_line] = STATE(1716), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_as] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1678] = { + [sym_xml_doc] = STATE(1678), + [sym_block_comment] = STATE(1678), + [sym_preproc_line] = STATE(1678), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_as] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - }, - [1717] = { - [sym_xml_doc] = STATE(1717), - [sym_block_comment] = STATE(1717), - [sym_preproc_line] = STATE(1717), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - [sym__else] = ACTIONS(2896), - [sym__elif] = ACTIONS(2896), - }, - [1718] = { - [sym_xml_doc] = STATE(1718), - [sym_block_comment] = STATE(1718), - [sym_preproc_line] = STATE(1718), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__else] = ACTIONS(2962), - [sym__elif] = ACTIONS(2962), - }, - [1719] = { - [sym_xml_doc] = STATE(1719), - [sym_block_comment] = STATE(1719), - [sym_preproc_line] = STATE(1719), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - [sym__else] = ACTIONS(2892), - [sym__elif] = ACTIONS(2892), - }, - [1720] = { - [sym_xml_doc] = STATE(1720), - [sym_block_comment] = STATE(1720), - [sym_preproc_line] = STATE(1720), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__else] = ACTIONS(2884), - [sym__elif] = ACTIONS(2884), - }, - [1721] = { - [sym_xml_doc] = STATE(1721), - [sym_block_comment] = STATE(1721), - [sym_preproc_line] = STATE(1721), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - [sym__else] = ACTIONS(2880), - [sym__elif] = ACTIONS(2880), - }, - [1722] = { - [sym_xml_doc] = STATE(1722), - [sym_block_comment] = STATE(1722), - [sym_preproc_line] = STATE(1722), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - [sym__else] = ACTIONS(2876), - [sym__elif] = ACTIONS(2876), - }, - [1723] = { - [sym_xml_doc] = STATE(1723), - [sym_block_comment] = STATE(1723), - [sym_preproc_line] = STATE(1723), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), - [sym__else] = ACTIONS(2872), - [sym__elif] = ACTIONS(2872), - }, - [1724] = { - [sym_xml_doc] = STATE(1724), - [sym_block_comment] = STATE(1724), - [sym_preproc_line] = STATE(1724), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - [sym__else] = ACTIONS(2868), - [sym__elif] = ACTIONS(2868), - }, - [1725] = { - [sym_xml_doc] = STATE(1725), - [sym_block_comment] = STATE(1725), - [sym_preproc_line] = STATE(1725), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__else] = ACTIONS(2864), - [sym__elif] = ACTIONS(2864), - }, - [1726] = { - [sym_xml_doc] = STATE(1726), - [sym_block_comment] = STATE(1726), - [sym_preproc_line] = STATE(1726), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_as] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3064), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - }, - [1727] = { - [sym_xml_doc] = STATE(1727), - [sym_block_comment] = STATE(1727), - [sym_preproc_line] = STATE(1727), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__else] = ACTIONS(2860), - [sym__elif] = ACTIONS(2860), - }, - [1728] = { - [sym_xml_doc] = STATE(1728), - [sym_block_comment] = STATE(1728), - [sym_preproc_line] = STATE(1728), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_DASH_GT] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - }, - [1729] = { - [sym_xml_doc] = STATE(1729), - [sym_block_comment] = STATE(1729), - [sym_preproc_line] = STATE(1729), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__else] = ACTIONS(2856), - [sym__elif] = ACTIONS(2856), - }, - [1730] = { - [sym_xml_doc] = STATE(1730), - [sym_block_comment] = STATE(1730), - [sym_preproc_line] = STATE(1730), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - [sym__else] = ACTIONS(2852), - [sym__elif] = ACTIONS(2852), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), }, - [1731] = { - [sym_xml_doc] = STATE(1731), - [sym_block_comment] = STATE(1731), - [sym_preproc_line] = STATE(1731), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_as] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [1679] = { + [sym_xml_doc] = STATE(1679), + [sym_block_comment] = STATE(1679), + [sym_preproc_line] = STATE(1679), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_as] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_with] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), }, - [1732] = { - [sym_xml_doc] = STATE(1732), - [sym_block_comment] = STATE(1732), - [sym_preproc_line] = STATE(1732), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), + [1680] = { + [sym_xml_doc] = STATE(1680), + [sym_block_comment] = STATE(1680), + [sym_preproc_line] = STATE(1680), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_with] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), }, - [1733] = { - [sym_xml_doc] = STATE(1733), - [sym_block_comment] = STATE(1733), - [sym_preproc_line] = STATE(1733), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2988), - [aux_sym__identifier_or_op_token1] = ACTIONS(2988), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [1681] = { + [sym_xml_doc] = STATE(1681), + [sym_block_comment] = STATE(1681), + [sym_preproc_line] = STATE(1681), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_as] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_with] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), }, - [1734] = { - [sym_xml_doc] = STATE(1734), - [sym_block_comment] = STATE(1734), - [sym_preproc_line] = STATE(1734), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), + [1682] = { + [sym_xml_doc] = STATE(1682), + [sym_block_comment] = STATE(1682), + [sym_preproc_line] = STATE(1682), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_as] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3043), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), }, - [1735] = { - [sym_xml_doc] = STATE(1735), - [sym_block_comment] = STATE(1735), - [sym_preproc_line] = STATE(1735), + [1683] = { + [sym_xml_doc] = STATE(1683), + [sym_block_comment] = STATE(1683), + [sym_preproc_line] = STATE(1683), + [aux_sym_sequential_expression_repeat1] = STATE(1696), [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3050), [anon_sym_COLON] = ACTIONS(3052), [anon_sym_return] = ACTIONS(3052), [anon_sym_do] = ACTIONS(3052), [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3050), [anon_sym_null] = ACTIONS(3052), [anon_sym_QMARK] = ACTIONS(3052), [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), [anon_sym_AMP] = ACTIONS(3052), [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3050), [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3050), [anon_sym_lazy] = ACTIONS(3052), [anon_sym_assert] = ACTIONS(3052), [anon_sym_upcast] = ACTIONS(3052), [anon_sym_downcast] = ACTIONS(3052), [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3050), [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), [anon_sym_for] = ACTIONS(3052), [anon_sym_while] = ACTIONS(3052), [anon_sym_if] = ACTIONS(3052), [anon_sym_fun] = ACTIONS(3052), [anon_sym_try] = ACTIONS(3052), [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3050), [anon_sym_function] = ACTIONS(3052), [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3050), [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), [anon_sym_or] = ACTIONS(3052), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), [sym_bool] = ACTIONS(3052), [sym_unit] = ACTIONS(3052), [aux_sym__identifier_or_op_token1] = ACTIONS(3052), @@ -221879,472 +214647,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(3052), [anon_sym_PERCENT] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - }, - [1736] = { - [sym_xml_doc] = STATE(1736), - [sym_block_comment] = STATE(1736), - [sym_preproc_line] = STATE(1736), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_DASH_GT] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - }, - [1737] = { - [sym_xml_doc] = STATE(1737), - [sym_block_comment] = STATE(1737), - [sym_preproc_line] = STATE(1737), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_DASH_GT] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - }, - [1738] = { - [sym_xml_doc] = STATE(1738), - [sym_block_comment] = STATE(1738), - [sym_preproc_line] = STATE(1738), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_DASH_GT] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - }, - [1739] = { - [sym_xml_doc] = STATE(1739), - [sym_block_comment] = STATE(1739), - [sym_preproc_line] = STATE(1739), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_as] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3048), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), [anon_sym_TILDE] = ACTIONS(3050), [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), [anon_sym_BANG_EQ] = ACTIONS(3050), [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_DOLLAR] = ACTIONS(3052), [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), + [sym_int] = ACTIONS(3052), [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3050), [sym__newline] = ACTIONS(3050), }, - [1740] = { - [sym_xml_doc] = STATE(1740), - [sym_block_comment] = STATE(1740), - [sym_preproc_line] = STATE(1740), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__else] = ACTIONS(2848), - [sym__elif] = ACTIONS(2848), - }, - [1741] = { - [sym_xml_doc] = STATE(1741), - [sym_block_comment] = STATE(1741), - [sym_preproc_line] = STATE(1741), + [1684] = { + [sym_xml_doc] = STATE(1684), + [sym_block_comment] = STATE(1684), + [sym_preproc_line] = STATE(1684), [sym_identifier] = ACTIONS(2934), [anon_sym_EQ] = ACTIONS(2936), [anon_sym_COLON] = ACTIONS(2934), @@ -222355,6 +214678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2934), [anon_sym_QMARK] = ACTIONS(2934), [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), [anon_sym_LPAREN] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(2936), [anon_sym_COLON_COLON] = ACTIONS(2936), @@ -222363,6 +214687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2936), [anon_sym_LBRACE] = ACTIONS(2934), [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2934), [anon_sym_new] = ACTIONS(2934), [anon_sym_return_BANG] = ACTIONS(2936), [anon_sym_yield] = ACTIONS(2934), @@ -222421,2747 +214746,1054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), [sym_int] = ACTIONS(2934), [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2936), [sym__newline] = ACTIONS(2936), - [sym__else] = ACTIONS(2936), - [sym__elif] = ACTIONS(2936), - }, - [1742] = { - [sym_xml_doc] = STATE(1742), - [sym_block_comment] = STATE(1742), - [sym_preproc_line] = STATE(1742), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__else] = ACTIONS(2844), - [sym__elif] = ACTIONS(2844), - }, - [1743] = { - [sym_xml_doc] = STATE(1743), - [sym_block_comment] = STATE(1743), - [sym_preproc_line] = STATE(1743), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - [sym__else] = ACTIONS(2840), - [sym__elif] = ACTIONS(2840), - }, - [1744] = { - [sym_xml_doc] = STATE(1744), - [sym_block_comment] = STATE(1744), - [sym_preproc_line] = STATE(1744), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [sym__else] = ACTIONS(2836), - [sym__elif] = ACTIONS(2836), - }, - [1745] = { - [sym_xml_doc] = STATE(1745), - [sym_block_comment] = STATE(1745), - [sym_preproc_line] = STATE(1745), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - [sym__else] = ACTIONS(2832), - [sym__elif] = ACTIONS(2832), }, - [1746] = { - [sym_xml_doc] = STATE(1746), - [sym_block_comment] = STATE(1746), - [sym_preproc_line] = STATE(1746), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - [sym__else] = ACTIONS(2828), - [sym__elif] = ACTIONS(2828), + [1685] = { + [sym_xml_doc] = STATE(1685), + [sym_block_comment] = STATE(1685), + [sym_preproc_line] = STATE(1685), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), }, - [1747] = { - [sym_xml_doc] = STATE(1747), - [sym_block_comment] = STATE(1747), - [sym_preproc_line] = STATE(1747), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_DASH_GT] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), + [1686] = { + [sym_xml_doc] = STATE(1686), + [sym_block_comment] = STATE(1686), + [sym_preproc_line] = STATE(1686), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + [sym__else] = ACTIONS(3025), + [sym__elif] = ACTIONS(3025), }, - [1748] = { - [sym_xml_doc] = STATE(1748), - [sym_block_comment] = STATE(1748), - [sym_preproc_line] = STATE(1748), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_DASH_GT] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), + [1687] = { + [sym_xml_doc] = STATE(1687), + [sym_block_comment] = STATE(1687), + [sym_preproc_line] = STATE(1687), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [1749] = { - [sym_xml_doc] = STATE(1749), - [sym_block_comment] = STATE(1749), - [sym_preproc_line] = STATE(1749), - [sym_identifier] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2932), - [anon_sym_COLON] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_let_BANG] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_COLON_QMARK] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2932), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACK_PIPE] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_LBRACE_PIPE] = ACTIONS(2932), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_return_BANG] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_yield_BANG] = ACTIONS(2932), - [anon_sym_lazy] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_upcast] = ACTIONS(2930), - [anon_sym_downcast] = ACTIONS(2930), - [anon_sym_LT_AT] = ACTIONS(2930), - [anon_sym_AT_GT] = ACTIONS(2932), - [anon_sym_LT_AT_AT] = ACTIONS(2930), - [anon_sym_AT_AT_GT] = ACTIONS(2932), - [anon_sym_COLON_GT] = ACTIONS(2932), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_fun] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_match_BANG] = ACTIONS(2932), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_DOT_LBRACK] = ACTIONS(2932), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2930), - [anon_sym_use_BANG] = ACTIONS(2932), - [anon_sym_do_BANG] = ACTIONS(2932), - [anon_sym_begin] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_or] = ACTIONS(2930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(2930), - [anon_sym_AT_DQUOTE] = ACTIONS(2932), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [sym_bool] = ACTIONS(2930), - [sym_unit] = ACTIONS(2930), - [aux_sym__identifier_or_op_token1] = ACTIONS(2930), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_DOT] = ACTIONS(2930), - [anon_sym_DASH_DOT] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_prefix_op_token1] = ACTIONS(2932), - [aux_sym_infix_op_token1] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_COLON_EQ] = ACTIONS(2932), - [anon_sym_DOLLAR] = ACTIONS(2930), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), - [sym_int] = ACTIONS(2930), - [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2932), - [sym__newline] = ACTIONS(2932), - [sym__else] = ACTIONS(2932), - [sym__elif] = ACTIONS(2932), - }, - [1750] = { - [sym_xml_doc] = STATE(1750), - [sym_block_comment] = STATE(1750), - [sym_preproc_line] = STATE(1750), - [aux_sym_long_identifier_repeat1] = STATE(1585), - [sym_identifier] = ACTIONS(2520), - [anon_sym_EQ] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_BANG] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2520), - [anon_sym_COLON_QMARK] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2523), - [anon_sym_COLON_COLON] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_return_BANG] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_yield_BANG] = ACTIONS(2523), - [anon_sym_lazy] = ACTIONS(2520), - [anon_sym_assert] = ACTIONS(2520), - [anon_sym_upcast] = ACTIONS(2520), - [anon_sym_downcast] = ACTIONS(2520), - [anon_sym_LT_AT] = ACTIONS(2520), - [anon_sym_AT_GT] = ACTIONS(2523), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_AT_AT_GT] = ACTIONS(2523), - [anon_sym_COLON_GT] = ACTIONS(2523), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_fun] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_match_BANG] = ACTIONS(2523), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_DOT_LBRACK] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_use_BANG] = ACTIONS(2523), - [anon_sym_do_BANG] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2523), - [anon_sym_begin] = ACTIONS(2520), - [anon_sym_LPAREN2] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_or] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_AT_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), - [sym_bool] = ACTIONS(2520), - [sym_unit] = ACTIONS(2520), - [aux_sym__identifier_or_op_token1] = ACTIONS(2520), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2523), - [aux_sym_prefix_op_token1] = ACTIONS(2523), - [aux_sym_infix_op_token1] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_COLON_EQ] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2523), - [sym_int] = ACTIONS(2520), - [sym_xint] = ACTIONS(2523), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - }, - [1751] = { - [sym_xml_doc] = STATE(1751), - [sym_block_comment] = STATE(1751), - [sym_preproc_line] = STATE(1751), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_DASH_GT] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1752] = { - [sym_xml_doc] = STATE(1752), - [sym_block_comment] = STATE(1752), - [sym_preproc_line] = STATE(1752), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_DASH_GT] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - }, - [1753] = { - [sym_xml_doc] = STATE(1753), - [sym_block_comment] = STATE(1753), - [sym_preproc_line] = STATE(1753), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [sym__else] = ACTIONS(2800), - [sym__elif] = ACTIONS(2800), - }, - [1754] = { - [sym_xml_doc] = STATE(1754), - [sym_block_comment] = STATE(1754), - [sym_preproc_line] = STATE(1754), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [sym__else] = ACTIONS(2786), - [sym__elif] = ACTIONS(2786), - }, - [1755] = { - [sym_xml_doc] = STATE(1755), - [sym_block_comment] = STATE(1755), - [sym_preproc_line] = STATE(1755), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [sym__else] = ACTIONS(2928), - [sym__elif] = ACTIONS(2928), - }, - [1756] = { - [sym_xml_doc] = STATE(1756), - [sym_block_comment] = STATE(1756), - [sym_preproc_line] = STATE(1756), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__else] = ACTIONS(2824), - [sym__elif] = ACTIONS(2824), - }, - [1757] = { - [sym_xml_doc] = STATE(1757), - [sym_block_comment] = STATE(1757), - [sym_preproc_line] = STATE(1757), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__else] = ACTIONS(2812), - [sym__elif] = ACTIONS(2812), - }, - [1758] = { - [sym_xml_doc] = STATE(1758), - [sym_block_comment] = STATE(1758), - [sym_preproc_line] = STATE(1758), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__else] = ACTIONS(2808), - [sym__elif] = ACTIONS(2808), - }, - [1759] = { - [sym_xml_doc] = STATE(1759), - [sym_block_comment] = STATE(1759), - [sym_preproc_line] = STATE(1759), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__else] = ACTIONS(2804), - [sym__elif] = ACTIONS(2804), - }, - [1760] = { - [sym_xml_doc] = STATE(1760), - [sym_block_comment] = STATE(1760), - [sym_preproc_line] = STATE(1760), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - [sym__else] = ACTIONS(2924), - [sym__elif] = ACTIONS(2924), - }, - [1761] = { - [sym_xml_doc] = STATE(1761), - [sym_block_comment] = STATE(1761), - [sym_preproc_line] = STATE(1761), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - [sym__else] = ACTIONS(2888), - [sym__elif] = ACTIONS(2888), - }, - [1762] = { - [sym_xml_doc] = STATE(1762), - [sym_block_comment] = STATE(1762), - [sym_preproc_line] = STATE(1762), - [aux_sym_long_identifier_repeat1] = STATE(1775), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_and] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [aux_sym_access_modifier_token1] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_member] = ACTIONS(2492), - [anon_sym_interface] = ACTIONS(2492), - [anon_sym_abstract] = ACTIONS(2492), - [anon_sym_override] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_val] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1688] = { + [sym_xml_doc] = STATE(1688), + [sym_block_comment] = STATE(1688), + [sym_preproc_line] = STATE(1688), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - }, - [1763] = { - [sym_xml_doc] = STATE(1763), - [sym_block_comment] = STATE(1763), - [sym_preproc_line] = STATE(1763), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_with] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - }, - [1764] = { - [sym_xml_doc] = STATE(1764), - [sym_block_comment] = STATE(1764), - [sym_preproc_line] = STATE(1764), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + [sym__else] = ACTIONS(3093), + [sym__elif] = ACTIONS(3093), }, - [1765] = { - [sym_xml_doc] = STATE(1765), - [sym_block_comment] = STATE(1765), - [sym_preproc_line] = STATE(1765), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - [sym__else] = ACTIONS(2920), - [sym__elif] = ACTIONS(2920), + [1689] = { + [sym_xml_doc] = STATE(1689), + [sym_block_comment] = STATE(1689), + [sym_preproc_line] = STATE(1689), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + [sym__else] = ACTIONS(3103), + [sym__elif] = ACTIONS(3103), }, - [1766] = { - [sym_xml_doc] = STATE(1766), - [sym_block_comment] = STATE(1766), - [sym_preproc_line] = STATE(1766), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), + [1690] = { + [sym_xml_doc] = STATE(1690), + [sym_block_comment] = STATE(1690), + [sym_preproc_line] = STATE(1690), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), }, - [1767] = { - [sym_xml_doc] = STATE(1767), - [sym_block_comment] = STATE(1767), - [sym_preproc_line] = STATE(1767), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), + [1691] = { + [sym_xml_doc] = STATE(1691), + [sym_block_comment] = STATE(1691), + [sym_preproc_line] = STATE(1691), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + [sym__else] = ACTIONS(3121), + [sym__elif] = ACTIONS(3121), }, - [1768] = { - [sym_xml_doc] = STATE(1768), - [sym_block_comment] = STATE(1768), - [sym_preproc_line] = STATE(1768), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_as] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [1692] = { + [sym_xml_doc] = STATE(1692), + [sym_block_comment] = STATE(1692), + [sym_preproc_line] = STATE(1692), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [sym__else] = ACTIONS(2854), + [sym__elif] = ACTIONS(2854), }, - [1769] = { - [sym_xml_doc] = STATE(1769), - [sym_block_comment] = STATE(1769), - [sym_preproc_line] = STATE(1769), - [sym_identifier] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__else] = ACTIONS(2914), - [sym__elif] = ACTIONS(2914), + [1693] = { + [sym_xml_doc] = STATE(1693), + [sym_block_comment] = STATE(1693), + [sym_preproc_line] = STATE(1693), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + [sym__else] = ACTIONS(3165), + [sym__elif] = ACTIONS(3165), }, - [1770] = { - [sym_xml_doc] = STATE(1770), - [sym_block_comment] = STATE(1770), - [sym_preproc_line] = STATE(1770), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), - [sym__else] = ACTIONS(2816), - [sym__elif] = ACTIONS(2816), + [1694] = { + [sym_xml_doc] = STATE(1694), + [sym_block_comment] = STATE(1694), + [sym_preproc_line] = STATE(1694), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + [sym__else] = ACTIONS(3169), + [sym__elif] = ACTIONS(3169), }, - [1771] = { - [sym_xml_doc] = STATE(1771), - [sym_block_comment] = STATE(1771), - [sym_preproc_line] = STATE(1771), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), + [1695] = { + [sym_xml_doc] = STATE(1695), + [sym_block_comment] = STATE(1695), + [sym_preproc_line] = STATE(1695), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), }, - [1772] = { - [sym_xml_doc] = STATE(1772), - [sym_block_comment] = STATE(1772), - [sym_preproc_line] = STATE(1772), + [1696] = { + [sym_xml_doc] = STATE(1696), + [sym_block_comment] = STATE(1696), + [sym_preproc_line] = STATE(1696), + [aux_sym_sequential_expression_repeat1] = STATE(1696), [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2986), [anon_sym_COLON] = ACTIONS(2988), [anon_sym_return] = ACTIONS(2988), [anon_sym_do] = ACTIONS(2988), [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), + [anon_sym_let_BANG] = ACTIONS(2986), [anon_sym_null] = ACTIONS(2988), [anon_sym_QMARK] = ACTIONS(2988), [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2988), [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), [anon_sym_AMP] = ACTIONS(2988), [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), + [anon_sym_return_BANG] = ACTIONS(2986), [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), + [anon_sym_yield_BANG] = ACTIONS(2986), [anon_sym_lazy] = ACTIONS(2988), [anon_sym_assert] = ACTIONS(2988), [anon_sym_upcast] = ACTIONS(2988), [anon_sym_downcast] = ACTIONS(2988), [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), + [anon_sym_AT_GT] = ACTIONS(2986), [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), [anon_sym_for] = ACTIONS(2988), [anon_sym_while] = ACTIONS(2988), [anon_sym_if] = ACTIONS(2988), [anon_sym_fun] = ACTIONS(2988), [anon_sym_try] = ACTIONS(2988), [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), + [anon_sym_match_BANG] = ACTIONS(2986), [anon_sym_function] = ACTIONS(2988), [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2986), [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_DOT_DOT] = ACTIONS(2986), [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), [anon_sym_or] = ACTIONS(2988), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), [sym_bool] = ACTIONS(2988), [sym_unit] = ACTIONS(2988), [aux_sym__identifier_or_op_token1] = ACTIONS(2988), @@ -225172,1706 +215804,4020 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DOT] = ACTIONS(2988), [anon_sym_PERCENT] = ACTIONS(2988), [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), [aux_sym_infix_op_token1] = ACTIONS(2988), [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3631), }, - [1773] = { - [sym_xml_doc] = STATE(1773), - [sym_block_comment] = STATE(1773), - [sym_preproc_line] = STATE(1773), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__else] = ACTIONS(2910), - [sym__elif] = ACTIONS(2910), + [1697] = { + [sym_xml_doc] = STATE(1697), + [sym_block_comment] = STATE(1697), + [sym_preproc_line] = STATE(1697), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [sym__else] = ACTIONS(3173), + [sym__elif] = ACTIONS(3173), }, - [1774] = { - [sym_xml_doc] = STATE(1774), - [sym_block_comment] = STATE(1774), - [sym_preproc_line] = STATE(1774), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_DASH_GT] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_DOT_DOT] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), + [1698] = { + [sym_xml_doc] = STATE(1698), + [sym_block_comment] = STATE(1698), + [sym_preproc_line] = STATE(1698), + [aux_sym_long_identifier_repeat1] = STATE(1776), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), }, - [1775] = { - [sym_xml_doc] = STATE(1775), - [sym_block_comment] = STATE(1775), - [sym_preproc_line] = STATE(1775), - [aux_sym_long_identifier_repeat1] = STATE(1775), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_and] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [aux_sym_access_modifier_token1] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(3564), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_member] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_val] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [1699] = { + [sym_xml_doc] = STATE(1699), + [sym_block_comment] = STATE(1699), + [sym_preproc_line] = STATE(1699), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + }, + [1700] = { + [sym_xml_doc] = STATE(1700), + [sym_block_comment] = STATE(1700), + [sym_preproc_line] = STATE(1700), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + [sym__else] = ACTIONS(2850), + [sym__elif] = ACTIONS(2850), + }, + [1701] = { + [sym_xml_doc] = STATE(1701), + [sym_block_comment] = STATE(1701), + [sym_preproc_line] = STATE(1701), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_DASH_GT] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + }, + [1702] = { + [sym_xml_doc] = STATE(1702), + [sym_block_comment] = STATE(1702), + [sym_preproc_line] = STATE(1702), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + }, + [1703] = { + [sym_xml_doc] = STATE(1703), + [sym_block_comment] = STATE(1703), + [sym_preproc_line] = STATE(1703), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_DASH_GT] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + }, + [1704] = { + [sym_xml_doc] = STATE(1704), + [sym_block_comment] = STATE(1704), + [sym_preproc_line] = STATE(1704), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_DASH_GT] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_DOT_DOT] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + }, + [1705] = { + [sym_xml_doc] = STATE(1705), + [sym_block_comment] = STATE(1705), + [sym_preproc_line] = STATE(1705), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_as] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2982), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + }, + [1706] = { + [sym_xml_doc] = STATE(1706), + [sym_block_comment] = STATE(1706), + [sym_preproc_line] = STATE(1706), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [sym__else] = ACTIONS(2780), + [sym__elif] = ACTIONS(2780), + }, + [1707] = { + [sym_xml_doc] = STATE(1707), + [sym_block_comment] = STATE(1707), + [sym_preproc_line] = STATE(1707), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2978), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + }, + [1708] = { + [sym_xml_doc] = STATE(1708), + [sym_block_comment] = STATE(1708), + [sym_preproc_line] = STATE(1708), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [sym__else] = ACTIONS(3177), + [sym__elif] = ACTIONS(3177), + }, + [1709] = { + [sym_xml_doc] = STATE(1709), + [sym_block_comment] = STATE(1709), + [sym_preproc_line] = STATE(1709), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2974), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + }, + [1710] = { + [sym_xml_doc] = STATE(1710), + [sym_block_comment] = STATE(1710), + [sym_preproc_line] = STATE(1710), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_DASH_GT] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + }, + [1711] = { + [sym_xml_doc] = STATE(1711), + [sym_block_comment] = STATE(1711), + [sym_preproc_line] = STATE(1711), + [aux_sym_long_identifier_repeat1] = STATE(1786), + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2594), + [anon_sym_namespace] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_and] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [aux_sym_access_modifier_token1] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_member] = ACTIONS(2594), + [anon_sym_interface] = ACTIONS(2594), + [anon_sym_abstract] = ACTIONS(2594), + [anon_sym_override] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_val] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(2596), }, - [1776] = { - [sym_xml_doc] = STATE(1776), - [sym_block_comment] = STATE(1776), - [sym_preproc_line] = STATE(1776), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [sym__else] = ACTIONS(2778), - [sym__elif] = ACTIONS(2778), + [1712] = { + [sym_xml_doc] = STATE(1712), + [sym_block_comment] = STATE(1712), + [sym_preproc_line] = STATE(1712), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + [sym__else] = ACTIONS(3111), + [sym__elif] = ACTIONS(3111), }, - [1777] = { - [sym_xml_doc] = STATE(1777), - [sym_block_comment] = STATE(1777), - [sym_preproc_line] = STATE(1777), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), + [1713] = { + [sym_xml_doc] = STATE(1713), + [sym_block_comment] = STATE(1713), + [sym_preproc_line] = STATE(1713), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), + [sym__else] = ACTIONS(3097), + [sym__elif] = ACTIONS(3097), }, - [1778] = { - [sym_xml_doc] = STATE(1778), - [sym_block_comment] = STATE(1778), - [sym_preproc_line] = STATE(1778), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2634), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_EQ2] = ACTIONS(3454), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [1714] = { + [sym_xml_doc] = STATE(1714), + [sym_block_comment] = STATE(1714), + [sym_preproc_line] = STATE(1714), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + [sym__else] = ACTIONS(3161), + [sym__elif] = ACTIONS(3161), }, - [1779] = { - [sym_xml_doc] = STATE(1779), - [sym_block_comment] = STATE(1779), - [sym_preproc_line] = STATE(1779), - [aux_sym_sequential_expression_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_DASH_GT] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), + [1715] = { + [sym_xml_doc] = STATE(1715), + [sym_block_comment] = STATE(1715), + [sym_preproc_line] = STATE(1715), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + [sym__else] = ACTIONS(3087), + [sym__elif] = ACTIONS(3087), }, - [1780] = { - [sym_xml_doc] = STATE(1780), - [sym_block_comment] = STATE(1780), - [sym_preproc_line] = STATE(1780), - [sym_identifier] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), - [sym__else] = ACTIONS(2906), - [sym__elif] = ACTIONS(2906), + [1716] = { + [sym_xml_doc] = STATE(1716), + [sym_block_comment] = STATE(1716), + [sym_preproc_line] = STATE(1716), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_as] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), }, - [1781] = { - [sym_xml_doc] = STATE(1781), - [sym_block_comment] = STATE(1781), - [sym_preproc_line] = STATE(1781), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__else] = ACTIONS(3034), - [sym__elif] = ACTIONS(3034), + [1717] = { + [sym_xml_doc] = STATE(1717), + [sym_block_comment] = STATE(1717), + [sym_preproc_line] = STATE(1717), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + [sym__else] = ACTIONS(3157), + [sym__elif] = ACTIONS(3157), }, - [1782] = { - [sym_xml_doc] = STATE(1782), - [sym_block_comment] = STATE(1782), - [sym_preproc_line] = STATE(1782), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_DASH_GT] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_DOT_DOT] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1718] = { + [sym_xml_doc] = STATE(1718), + [sym_block_comment] = STATE(1718), + [sym_preproc_line] = STATE(1718), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_as] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + }, + [1719] = { + [sym_xml_doc] = STATE(1719), + [sym_block_comment] = STATE(1719), + [sym_preproc_line] = STATE(1719), + [sym_identifier] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_DASH_GT] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_DOT_DOT] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), }, - [1783] = { - [sym_xml_doc] = STATE(1783), - [sym_block_comment] = STATE(1783), - [sym_preproc_line] = STATE(1783), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__else] = ACTIONS(3070), - [sym__elif] = ACTIONS(3070), + [1720] = { + [sym_xml_doc] = STATE(1720), + [sym_block_comment] = STATE(1720), + [sym_preproc_line] = STATE(1720), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [sym__else] = ACTIONS(2902), + [sym__elif] = ACTIONS(2902), }, - [1784] = { - [sym_xml_doc] = STATE(1784), - [sym_block_comment] = STATE(1784), - [sym_preproc_line] = STATE(1784), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_DASH_GT] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_DOT_DOT] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), + [1721] = { + [sym_xml_doc] = STATE(1721), + [sym_block_comment] = STATE(1721), + [sym_preproc_line] = STATE(1721), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_DASH_GT] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_DOT_DOT] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), }, - [1785] = { - [sym_xml_doc] = STATE(1785), - [sym_block_comment] = STATE(1785), - [sym_preproc_line] = STATE(1785), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_DASH_GT] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_DOT_DOT] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), + [1722] = { + [sym_xml_doc] = STATE(1722), + [sym_block_comment] = STATE(1722), + [sym_preproc_line] = STATE(1722), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_DASH_GT] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_DOT_DOT] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), }, - [1786] = { - [sym_xml_doc] = STATE(1786), - [sym_block_comment] = STATE(1786), - [sym_preproc_line] = STATE(1786), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), + [1723] = { + [sym_xml_doc] = STATE(1723), + [sym_block_comment] = STATE(1723), + [sym_preproc_line] = STATE(1723), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_as] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3139), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), }, - [1787] = { - [sym_xml_doc] = STATE(1787), - [sym_block_comment] = STATE(1787), - [sym_preproc_line] = STATE(1787), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_DASH_GT] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [1724] = { + [sym_xml_doc] = STATE(1724), + [sym_block_comment] = STATE(1724), + [sym_preproc_line] = STATE(1724), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, - [1788] = { - [sym_xml_doc] = STATE(1788), - [sym_block_comment] = STATE(1788), - [sym_preproc_line] = STATE(1788), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - [sym__else] = ACTIONS(2900), - [sym__elif] = ACTIONS(2900), + [1725] = { + [sym_xml_doc] = STATE(1725), + [sym_block_comment] = STATE(1725), + [sym_preproc_line] = STATE(1725), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__else] = ACTIONS(2617), + [sym__elif] = ACTIONS(2617), }, - [1789] = { - [sym_xml_doc] = STATE(1789), - [sym_block_comment] = STATE(1789), - [sym_preproc_line] = STATE(1789), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - [sym__else] = ACTIONS(3000), - [sym__elif] = ACTIONS(3000), + [1726] = { + [sym_xml_doc] = STATE(1726), + [sym_block_comment] = STATE(1726), + [sym_preproc_line] = STATE(1726), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_as] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), }, - [1790] = { - [sym_xml_doc] = STATE(1790), - [sym_block_comment] = STATE(1790), - [sym_preproc_line] = STATE(1790), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_DASH_GT] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_DOT_DOT] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), + [1727] = { + [sym_xml_doc] = STATE(1727), + [sym_block_comment] = STATE(1727), + [sym_preproc_line] = STATE(1727), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), + [sym__else] = ACTIONS(3007), + [sym__elif] = ACTIONS(3007), }, - [1791] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1791), - [sym_block_comment] = STATE(1791), - [sym_preproc_line] = STATE(1791), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(2359), + [1728] = { + [sym_xml_doc] = STATE(1728), + [sym_block_comment] = STATE(1728), + [sym_preproc_line] = STATE(1728), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), + [sym__else] = ACTIONS(3003), + [sym__elif] = ACTIONS(3003), + }, + [1729] = { + [sym_xml_doc] = STATE(1729), + [sym_block_comment] = STATE(1729), + [sym_preproc_line] = STATE(1729), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + }, + [1730] = { + [sym_xml_doc] = STATE(1730), + [sym_block_comment] = STATE(1730), + [sym_preproc_line] = STATE(1730), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_DASH_GT] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + }, + [1731] = { + [sym_xml_doc] = STATE(1731), + [sym_block_comment] = STATE(1731), + [sym_preproc_line] = STATE(1731), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__else] = ACTIONS(2922), + [sym__elif] = ACTIONS(2922), + }, + [1732] = { + [sym_xml_doc] = STATE(1732), + [sym_block_comment] = STATE(1732), + [sym_preproc_line] = STATE(1732), + [aux_sym_long_identifier_repeat1] = STATE(1823), + [sym_identifier] = ACTIONS(2511), + [anon_sym_EQ] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_BANG] = ACTIONS(2514), + [anon_sym_null] = ACTIONS(2511), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_COLON_QMARK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACK_PIPE] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACE_PIPE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_return_BANG] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_yield_BANG] = ACTIONS(2514), + [anon_sym_lazy] = ACTIONS(2511), + [anon_sym_assert] = ACTIONS(2511), + [anon_sym_upcast] = ACTIONS(2511), + [anon_sym_downcast] = ACTIONS(2511), + [anon_sym_LT_AT] = ACTIONS(2511), + [anon_sym_AT_GT] = ACTIONS(2514), + [anon_sym_LT_AT_AT] = ACTIONS(2511), + [anon_sym_AT_AT_GT] = ACTIONS(2514), + [anon_sym_COLON_GT] = ACTIONS(2514), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_fun] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_match_BANG] = ACTIONS(2514), + [anon_sym_function] = ACTIONS(2511), + [anon_sym_LT_DASH] = ACTIONS(2511), + [anon_sym_DOT_LBRACK] = ACTIONS(2514), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_use_BANG] = ACTIONS(2514), + [anon_sym_do_BANG] = ACTIONS(2514), + [anon_sym_begin] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_or] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_AT_DQUOTE] = ACTIONS(2514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2514), + [sym_bool] = ACTIONS(2511), + [sym_unit] = ACTIONS(2511), + [aux_sym__identifier_or_op_token1] = ACTIONS(2511), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS_DOT] = ACTIONS(2511), + [anon_sym_DASH_DOT] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_prefix_op_token1] = ACTIONS(2514), + [aux_sym_infix_op_token1] = ACTIONS(2511), + [anon_sym_PIPE_PIPE] = ACTIONS(2511), + [anon_sym_BANG_EQ] = ACTIONS(2514), + [anon_sym_COLON_EQ] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2514), + [sym_int] = ACTIONS(2511), + [sym_xint] = ACTIONS(2514), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2514), + [sym__newline] = ACTIONS(2514), + [sym__then] = ACTIONS(2514), + }, + [1733] = { + [sym_xml_doc] = STATE(1733), + [sym_block_comment] = STATE(1733), + [sym_preproc_line] = STATE(1733), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [sym__then] = ACTIONS(2784), + }, + [1734] = { + [sym_xml_doc] = STATE(1734), + [sym_block_comment] = STATE(1734), + [sym_preproc_line] = STATE(1734), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + [sym__else] = ACTIONS(3137), + [sym__elif] = ACTIONS(3137), + }, + [1735] = { + [sym_xml_doc] = STATE(1735), + [sym_block_comment] = STATE(1735), + [sym_preproc_line] = STATE(1735), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + [sym__else] = ACTIONS(3133), + [sym__elif] = ACTIONS(3133), + }, + [1736] = { + [sym_xml_doc] = STATE(1736), + [sym_block_comment] = STATE(1736), + [sym_preproc_line] = STATE(1736), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + [sym__else] = ACTIONS(3129), + [sym__elif] = ACTIONS(3129), + }, + [1737] = { + [sym_xml_doc] = STATE(1737), + [sym_block_comment] = STATE(1737), + [sym_preproc_line] = STATE(1737), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + [sym__else] = ACTIONS(3125), + [sym__elif] = ACTIONS(3125), + }, + [1738] = { + [sym_xml_doc] = STATE(1738), + [sym_block_comment] = STATE(1738), + [sym_preproc_line] = STATE(1738), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + [sym__else] = ACTIONS(3083), + [sym__elif] = ACTIONS(3083), + }, + [1739] = { + [sym_xml_doc] = STATE(1739), + [sym_block_comment] = STATE(1739), + [sym_preproc_line] = STATE(1739), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + [sym__else] = ACTIONS(3075), + [sym__elif] = ACTIONS(3075), + }, + [1740] = { + [sym_xml_doc] = STATE(1740), + [sym_block_comment] = STATE(1740), + [sym_preproc_line] = STATE(1740), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + [sym__else] = ACTIONS(3071), + [sym__elif] = ACTIONS(3071), + }, + [1741] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1741), + [sym_block_comment] = STATE(1741), + [sym_preproc_line] = STATE(1741), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(2363), [anon_sym_POUNDnowarn] = ACTIONS(2361), [anon_sym_POUNDr] = ACTIONS(2361), [anon_sym_POUNDload] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2359), + [anon_sym_open] = ACTIONS(2363), [anon_sym_LBRACK_LT] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_and] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_and] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), [anon_sym_let_BANG] = ACTIONS(2361), [aux_sym_access_modifier_token1] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2363), [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2363), [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), [anon_sym_LT_AT_AT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), [anon_sym_use_BANG] = ACTIONS(2361), [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_member] = ACTIONS(2359), - [anon_sym_interface] = ACTIONS(2359), - [anon_sym_abstract] = ACTIONS(2359), - [anon_sym_override] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_val] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_member] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_abstract] = ACTIONS(2363), + [anon_sym_override] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_val] = ACTIONS(2363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), [anon_sym_AT_DQUOTE] = ACTIONS(2361), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), + [sym_bool] = ACTIONS(2363), [sym_unit] = ACTIONS(2361), [aux_sym__identifier_or_op_token1] = ACTIONS(2361), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), [anon_sym_PLUS_DOT] = ACTIONS(2361), [anon_sym_DASH_DOT] = ACTIONS(2361), [anon_sym_PERCENT] = ACTIONS(2361), [anon_sym_AMP_AMP] = ACTIONS(2361), [anon_sym_TILDE] = ACTIONS(2361), [aux_sym_prefix_op_token1] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), + [sym_int] = ACTIONS(2363), [sym_xint] = ACTIONS(2361), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -226880,3125 +219826,5083 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(2361), [sym__dedent] = ACTIONS(2361), }, - [1792] = { - [sym_xml_doc] = STATE(1792), - [sym_block_comment] = STATE(1792), - [sym_preproc_line] = STATE(1792), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_DASH_GT] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_DOT_DOT] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - }, - [1793] = { - [sym_xml_doc] = STATE(1793), - [sym_block_comment] = STATE(1793), - [sym_preproc_line] = STATE(1793), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_DASH_GT] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), + [1742] = { + [sym_xml_doc] = STATE(1742), + [sym_block_comment] = STATE(1742), + [sym_preproc_line] = STATE(1742), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + [sym__else] = ACTIONS(2972), + [sym__elif] = ACTIONS(2972), }, - [1794] = { - [sym_xml_doc] = STATE(1794), - [sym_block_comment] = STATE(1794), - [sym_preproc_line] = STATE(1794), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), + [1743] = { + [sym_xml_doc] = STATE(1743), + [sym_block_comment] = STATE(1743), + [sym_preproc_line] = STATE(1743), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_DASH_GT] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, - [1795] = { - [sym_xml_doc] = STATE(1795), - [sym_block_comment] = STATE(1795), - [sym_preproc_line] = STATE(1795), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_DASH_GT] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_DOT_DOT] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), + [1744] = { + [sym_xml_doc] = STATE(1744), + [sym_block_comment] = STATE(1744), + [sym_preproc_line] = STATE(1744), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), }, - [1796] = { - [sym_xml_doc] = STATE(1796), - [sym_block_comment] = STATE(1796), - [sym_preproc_line] = STATE(1796), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_DASH_GT] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_DOT_DOT] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), + [1745] = { + [sym_xml_doc] = STATE(1745), + [sym_block_comment] = STATE(1745), + [sym_preproc_line] = STATE(1745), + [aux_sym_long_identifier_repeat1] = STATE(1711), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_and] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [aux_sym_access_modifier_token1] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_member] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_override] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_val] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), }, - [1797] = { - [sym_xml_doc] = STATE(1797), - [sym_block_comment] = STATE(1797), - [sym_preproc_line] = STATE(1797), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_DASH_GT] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), + [1746] = { + [sym_xml_doc] = STATE(1746), + [sym_block_comment] = STATE(1746), + [sym_preproc_line] = STATE(1746), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + [sym__else] = ACTIONS(3029), + [sym__elif] = ACTIONS(3029), }, - [1798] = { - [sym_xml_doc] = STATE(1798), - [sym_block_comment] = STATE(1798), - [sym_preproc_line] = STATE(1798), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_DASH_GT] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), + [1747] = { + [sym_xml_doc] = STATE(1747), + [sym_block_comment] = STATE(1747), + [sym_preproc_line] = STATE(1747), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_as] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), }, - [1799] = { - [sym_xml_doc] = STATE(1799), - [sym_block_comment] = STATE(1799), - [sym_preproc_line] = STATE(1799), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_DASH_GT] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), + [1748] = { + [sym_xml_doc] = STATE(1748), + [sym_block_comment] = STATE(1748), + [sym_preproc_line] = STATE(1748), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_DASH_GT] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), }, - [1800] = { - [sym_xml_doc] = STATE(1800), - [sym_block_comment] = STATE(1800), - [sym_preproc_line] = STATE(1800), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_DASH_GT] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), + [1749] = { + [sym_xml_doc] = STATE(1749), + [sym_block_comment] = STATE(1749), + [sym_preproc_line] = STATE(1749), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_DASH_GT] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_DOT_DOT] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), }, - [1801] = { - [sym_xml_doc] = STATE(1801), - [sym_block_comment] = STATE(1801), - [sym_preproc_line] = STATE(1801), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - [sym__else] = ACTIONS(2954), - [sym__elif] = ACTIONS(2954), + [1750] = { + [sym_xml_doc] = STATE(1750), + [sym_block_comment] = STATE(1750), + [sym_preproc_line] = STATE(1750), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3062), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, - [1802] = { - [sym_xml_doc] = STATE(1802), - [sym_block_comment] = STATE(1802), - [sym_preproc_line] = STATE(1802), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_DASH_GT] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), + [1751] = { + [sym_xml_doc] = STATE(1751), + [sym_block_comment] = STATE(1751), + [sym_preproc_line] = STATE(1751), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_as] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), }, - [1803] = { - [sym_xml_doc] = STATE(1803), - [sym_block_comment] = STATE(1803), - [sym_preproc_line] = STATE(1803), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_DASH_GT] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_DOT_DOT] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), + [1752] = { + [sym_xml_doc] = STATE(1752), + [sym_block_comment] = STATE(1752), + [sym_preproc_line] = STATE(1752), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, - [1804] = { - [sym_xml_doc] = STATE(1804), - [sym_block_comment] = STATE(1804), - [sym_preproc_line] = STATE(1804), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [1753] = { + [sym_xml_doc] = STATE(1753), + [sym_block_comment] = STATE(1753), + [sym_preproc_line] = STATE(1753), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, - [1805] = { - [sym_xml_doc] = STATE(1805), - [sym_block_comment] = STATE(1805), - [sym_preproc_line] = STATE(1805), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_DASH_GT] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_DOT_DOT] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), + [1754] = { + [sym_xml_doc] = STATE(1754), + [sym_block_comment] = STATE(1754), + [sym_preproc_line] = STATE(1754), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), }, - [1806] = { - [sym_xml_doc] = STATE(1806), - [sym_block_comment] = STATE(1806), - [sym_preproc_line] = STATE(1806), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_DASH_GT] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_DOT_DOT] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), + [1755] = { + [sym_xml_doc] = STATE(1755), + [sym_block_comment] = STATE(1755), + [sym_preproc_line] = STATE(1755), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + [sym__else] = ACTIONS(2999), + [sym__elif] = ACTIONS(2999), }, - [1807] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), - [sym_xml_doc] = STATE(1807), - [sym_block_comment] = STATE(1807), - [sym_preproc_line] = STATE(1807), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3569), - [anon_sym_module] = ACTIONS(3569), - [anon_sym_POUNDnowarn] = ACTIONS(3567), - [anon_sym_POUNDr] = ACTIONS(3567), - [anon_sym_POUNDload] = ACTIONS(3567), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_LBRACK_LT] = ACTIONS(3567), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_type] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_and] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3567), - [aux_sym_access_modifier_token1] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_DASH_GT] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3567), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_member] = ACTIONS(3569), - [anon_sym_abstract] = ACTIONS(3569), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_default] = ACTIONS(3569), - [anon_sym_val] = ACTIONS(3569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3567), - [aux_sym__identifier_or_op_token1] = ACTIONS(3567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3567), - [anon_sym_DASH_DOT] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3567), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3567), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3567), + [1756] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1756), + [sym_block_comment] = STATE(1756), + [sym_preproc_line] = STATE(1756), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3656), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_POUNDnowarn] = ACTIONS(3656), + [anon_sym_POUNDr] = ACTIONS(3656), + [anon_sym_POUNDload] = ACTIONS(3656), + [anon_sym_open] = ACTIONS(3658), + [anon_sym_LBRACK_LT] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_and] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_let_BANG] = ACTIONS(3656), + [aux_sym_access_modifier_token1] = ACTIONS(3656), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK_PIPE] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_LBRACE_PIPE] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_return_BANG] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_yield_BANG] = ACTIONS(3656), + [anon_sym_lazy] = ACTIONS(3658), + [anon_sym_assert] = ACTIONS(3658), + [anon_sym_upcast] = ACTIONS(3658), + [anon_sym_downcast] = ACTIONS(3658), + [anon_sym_LT_AT] = ACTIONS(3658), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_fun] = ACTIONS(3658), + [anon_sym_DASH_GT] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_match] = ACTIONS(3658), + [anon_sym_match_BANG] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3658), + [anon_sym_use_BANG] = ACTIONS(3656), + [anon_sym_do_BANG] = ACTIONS(3656), + [anon_sym_begin] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_member] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_val] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_AT_DQUOTE] = ACTIONS(3656), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3656), + [sym_bool] = ACTIONS(3658), + [sym_unit] = ACTIONS(3656), + [aux_sym__identifier_or_op_token1] = ACTIONS(3656), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [sym_int] = ACTIONS(3658), + [sym_xint] = ACTIONS(3656), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3567), + [anon_sym_POUNDif] = ACTIONS(3656), }, - [1808] = { - [sym_xml_doc] = STATE(1808), - [sym_block_comment] = STATE(1808), - [sym_preproc_line] = STATE(1808), - [aux_sym_sequential_expression_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_let_BANG] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACK_PIPE] = ACTIONS(2948), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_LBRACE_PIPE] = ACTIONS(2948), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_return_BANG] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_yield_BANG] = ACTIONS(2948), - [anon_sym_lazy] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_upcast] = ACTIONS(2950), - [anon_sym_downcast] = ACTIONS(2950), - [anon_sym_LT_AT] = ACTIONS(2950), - [anon_sym_AT_GT] = ACTIONS(2948), - [anon_sym_LT_AT_AT] = ACTIONS(2950), - [anon_sym_AT_AT_GT] = ACTIONS(2948), - [anon_sym_COLON_GT] = ACTIONS(2948), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_fun] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_match_BANG] = ACTIONS(2948), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_DOT_LBRACK] = ACTIONS(2948), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_use_BANG] = ACTIONS(2948), - [anon_sym_do_BANG] = ACTIONS(2948), - [anon_sym_begin] = ACTIONS(2950), - [anon_sym_LPAREN2] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_AT_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2948), - [sym_bool] = ACTIONS(2950), - [sym_unit] = ACTIONS(2950), - [aux_sym__identifier_or_op_token1] = ACTIONS(2950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_PLUS_DOT] = ACTIONS(2950), - [anon_sym_DASH_DOT] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_prefix_op_token1] = ACTIONS(2948), - [aux_sym_infix_op_token1] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_COLON_EQ] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2948), - [sym_int] = ACTIONS(2950), - [sym_xint] = ACTIONS(2948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [sym__then] = ACTIONS(2948), + [1757] = { + [sym_xml_doc] = STATE(1757), + [sym_block_comment] = STATE(1757), + [sym_preproc_line] = STATE(1757), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_as] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3143), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), }, - [1809] = { - [sym_xml_doc] = STATE(1809), - [sym_block_comment] = STATE(1809), - [sym_preproc_line] = STATE(1809), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_DOT_DOT] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), + [1758] = { + [sym_xml_doc] = STATE(1758), + [sym_block_comment] = STATE(1758), + [sym_preproc_line] = STATE(1758), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [1810] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1810), - [sym_block_comment] = STATE(1810), - [sym_preproc_line] = STATE(1810), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_POUNDnowarn] = ACTIONS(2305), - [anon_sym_POUNDr] = ACTIONS(2305), - [anon_sym_POUNDload] = ACTIONS(2305), - [anon_sym_open] = ACTIONS(2307), - [anon_sym_LBRACK_LT] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_and] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [aux_sym_access_modifier_token1] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_LT_AT_AT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_member] = ACTIONS(2307), - [anon_sym_interface] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2307), - [anon_sym_override] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_val] = ACTIONS(2307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2305), - [aux_sym__identifier_or_op_token1] = ACTIONS(2305), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2305), - [anon_sym_DASH_DOT] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__dedent] = ACTIONS(2305), + [1759] = { + [sym_xml_doc] = STATE(1759), + [sym_block_comment] = STATE(1759), + [sym_preproc_line] = STATE(1759), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), }, - [1811] = { - [sym_xml_doc] = STATE(1811), - [sym_block_comment] = STATE(1811), - [sym_preproc_line] = STATE(1811), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_DASH_GT] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_DOT_DOT] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), + [1760] = { + [sym_xml_doc] = STATE(1760), + [sym_block_comment] = STATE(1760), + [sym_preproc_line] = STATE(1760), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_DASH_GT] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), }, - [1812] = { - [sym_xml_doc] = STATE(1812), - [sym_block_comment] = STATE(1812), - [sym_preproc_line] = STATE(1812), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_DASH_GT] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), + [1761] = { + [sym_xml_doc] = STATE(1761), + [sym_block_comment] = STATE(1761), + [sym_preproc_line] = STATE(1761), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_DASH_GT] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), }, - [1813] = { - [sym_xml_doc] = STATE(1813), - [sym_block_comment] = STATE(1813), - [sym_preproc_line] = STATE(1813), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_DASH_GT] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_DOT_DOT] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), + [1762] = { + [sym_xml_doc] = STATE(1762), + [sym_block_comment] = STATE(1762), + [sym_preproc_line] = STATE(1762), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_with] = ACTIONS(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, - [1814] = { - [sym_xml_doc] = STATE(1814), - [sym_block_comment] = STATE(1814), - [sym_preproc_line] = STATE(1814), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_DASH_GT] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), + [1763] = { + [sym_xml_doc] = STATE(1763), + [sym_block_comment] = STATE(1763), + [sym_preproc_line] = STATE(1763), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_DASH_GT] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_DOT_DOT] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), }, - [1815] = { - [sym_xml_doc] = STATE(1815), - [sym_block_comment] = STATE(1815), - [sym_preproc_line] = STATE(1815), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_DASH_GT] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_DOT_DOT] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), + [1764] = { + [sym_xml_doc] = STATE(1764), + [sym_block_comment] = STATE(1764), + [sym_preproc_line] = STATE(1764), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_DASH_GT] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), }, - [1816] = { - [sym_xml_doc] = STATE(1816), - [sym_block_comment] = STATE(1816), - [sym_preproc_line] = STATE(1816), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_DASH_GT] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_DOT_DOT] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), + [1765] = { + [sym_xml_doc] = STATE(1765), + [sym_block_comment] = STATE(1765), + [sym_preproc_line] = STATE(1765), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_as] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), }, - [1817] = { - [sym_xml_doc] = STATE(1817), - [sym_block_comment] = STATE(1817), - [sym_preproc_line] = STATE(1817), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_DASH_GT] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), + [1766] = { + [sym_xml_doc] = STATE(1766), + [sym_block_comment] = STATE(1766), + [sym_preproc_line] = STATE(1766), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), }, - [1818] = { - [sym_xml_doc] = STATE(1818), - [sym_block_comment] = STATE(1818), - [sym_preproc_line] = STATE(1818), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_DASH_GT] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_DOT_DOT] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), + [1767] = { + [sym_xml_doc] = STATE(1767), + [sym_block_comment] = STATE(1767), + [sym_preproc_line] = STATE(1767), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_DASH_GT] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), }, - [1819] = { - [sym_xml_doc] = STATE(1819), - [sym_block_comment] = STATE(1819), - [sym_preproc_line] = STATE(1819), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_DOT_DOT] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), + [1768] = { + [sym_xml_doc] = STATE(1768), + [sym_block_comment] = STATE(1768), + [sym_preproc_line] = STATE(1768), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_DASH_GT] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), }, - [1820] = { - [sym_xml_doc] = STATE(1820), - [sym_block_comment] = STATE(1820), - [sym_preproc_line] = STATE(1820), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), + [1769] = { + [sym_xml_doc] = STATE(1769), + [sym_block_comment] = STATE(1769), + [sym_preproc_line] = STATE(1769), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [sym__then] = ACTIONS(2776), }, - [1821] = { - [sym_xml_doc] = STATE(1821), - [sym_block_comment] = STATE(1821), - [sym_preproc_line] = STATE(1821), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_DASH_GT] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), + [1770] = { + [sym_xml_doc] = STATE(1770), + [sym_block_comment] = STATE(1770), + [sym_preproc_line] = STATE(1770), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + [sym__else] = ACTIONS(3033), + [sym__elif] = ACTIONS(3033), }, - [1822] = { - [sym_xml_doc] = STATE(1822), - [sym_block_comment] = STATE(1822), - [sym_preproc_line] = STATE(1822), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_DASH_GT] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_DOT_DOT] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), + [1771] = { + [sym_xml_doc] = STATE(1771), + [sym_block_comment] = STATE(1771), + [sym_preproc_line] = STATE(1771), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + [sym__else] = ACTIONS(3141), + [sym__elif] = ACTIONS(3141), }, - [1823] = { - [sym_xml_doc] = STATE(1823), - [sym_block_comment] = STATE(1823), - [sym_preproc_line] = STATE(1823), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_DASH_GT] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_DOT_DOT] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), + [1772] = { + [sym_xml_doc] = STATE(1772), + [sym_block_comment] = STATE(1772), + [sym_preproc_line] = STATE(1772), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + [sym__else] = ACTIONS(3079), + [sym__elif] = ACTIONS(3079), }, - [1824] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1824), - [sym_block_comment] = STATE(1824), - [sym_preproc_line] = STATE(1824), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [aux_sym_access_modifier_token1] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_member] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_val] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [1773] = { + [sym_xml_doc] = STATE(1773), + [sym_block_comment] = STATE(1773), + [sym_preproc_line] = STATE(1773), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [sym__else] = ACTIONS(2870), + [sym__elif] = ACTIONS(2870), + }, + [1774] = { + [sym_xml_doc] = STATE(1774), + [sym_block_comment] = STATE(1774), + [sym_preproc_line] = STATE(1774), + [aux_sym_sequential_expression_repeat1] = STATE(1868), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + [sym__then] = ACTIONS(3050), }, - [1825] = { - [sym_xml_doc] = STATE(1825), - [sym_block_comment] = STATE(1825), - [sym_preproc_line] = STATE(1825), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_DASH_GT] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_DOT_DOT] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), + [1775] = { + [sym_xml_doc] = STATE(1775), + [sym_block_comment] = STATE(1775), + [sym_preproc_line] = STATE(1775), + [aux_sym_long_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [1826] = { - [sym_xml_doc] = STATE(1826), - [sym_block_comment] = STATE(1826), - [sym_preproc_line] = STATE(1826), - [sym_identifier] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_DASH_GT] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_DOT_DOT] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1776] = { + [sym_xml_doc] = STATE(1776), + [sym_block_comment] = STATE(1776), + [sym_preproc_line] = STATE(1776), + [aux_sym_long_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3665), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + }, + [1777] = { + [sym_xml_doc] = STATE(1777), + [sym_block_comment] = STATE(1777), + [sym_preproc_line] = STATE(1777), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__else] = ACTIONS(2605), + [sym__elif] = ACTIONS(2605), + }, + [1778] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1778), + [sym_block_comment] = STATE(1778), + [sym_preproc_line] = STATE(1778), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_POUNDnowarn] = ACTIONS(2375), + [anon_sym_POUNDr] = ACTIONS(2375), + [anon_sym_POUNDload] = ACTIONS(2375), + [anon_sym_open] = ACTIONS(2373), + [anon_sym_LBRACK_LT] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_and] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [aux_sym_access_modifier_token1] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_LT_AT_AT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_member] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_override] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_val] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2375), + [aux_sym__identifier_or_op_token1] = ACTIONS(2375), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2375), + [anon_sym_DASH_DOT] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__dedent] = ACTIONS(2375), }, - [1827] = { - [sym_xml_doc] = STATE(1827), - [sym_block_comment] = STATE(1827), - [sym_preproc_line] = STATE(1827), + [1779] = { + [sym_xml_doc] = STATE(1779), + [sym_block_comment] = STATE(1779), + [sym_preproc_line] = STATE(1779), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + [sym__then] = ACTIONS(2835), + }, + [1780] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1780), + [sym_block_comment] = STATE(1780), + [sym_preproc_line] = STATE(1780), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_and] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [aux_sym_access_modifier_token1] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_member] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2319), + [anon_sym_abstract] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_val] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), + }, + [1781] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1781), + [sym_block_comment] = STATE(1781), + [sym_preproc_line] = STATE(1781), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_POUNDnowarn] = ACTIONS(2409), + [anon_sym_POUNDr] = ACTIONS(2409), + [anon_sym_POUNDload] = ACTIONS(2409), + [anon_sym_open] = ACTIONS(2411), + [anon_sym_LBRACK_LT] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_and] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [aux_sym_access_modifier_token1] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_LT_AT_AT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_member] = ACTIONS(2411), + [anon_sym_interface] = ACTIONS(2411), + [anon_sym_abstract] = ACTIONS(2411), + [anon_sym_override] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_val] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2409), + [aux_sym__identifier_or_op_token1] = ACTIONS(2409), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2409), + [anon_sym_DASH_DOT] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__dedent] = ACTIONS(2409), + }, + [1782] = { + [sym_xml_doc] = STATE(1782), + [sym_block_comment] = STATE(1782), + [sym_preproc_line] = STATE(1782), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + }, + [1783] = { + [sym_xml_doc] = STATE(1783), + [sym_block_comment] = STATE(1783), + [sym_preproc_line] = STATE(1783), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_as] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_with] = ACTIONS(3031), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + }, + [1784] = { + [sym_xml_doc] = STATE(1784), + [sym_block_comment] = STATE(1784), + [sym_preproc_line] = STATE(1784), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_as] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_with] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + }, + [1785] = { + [sym_xml_doc] = STATE(1785), + [sym_block_comment] = STATE(1785), + [sym_preproc_line] = STATE(1785), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_DASH_GT] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + }, + [1786] = { + [sym_xml_doc] = STATE(1786), + [sym_block_comment] = STATE(1786), + [sym_preproc_line] = STATE(1786), + [aux_sym_long_identifier_repeat1] = STATE(1786), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_and] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [aux_sym_access_modifier_token1] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(3667), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_member] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_val] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + }, + [1787] = { + [sym_xml_doc] = STATE(1787), + [sym_block_comment] = STATE(1787), + [sym_preproc_line] = STATE(1787), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + }, + [1788] = { + [sym_xml_doc] = STATE(1788), + [sym_block_comment] = STATE(1788), + [sym_preproc_line] = STATE(1788), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + [sym__else] = ACTIONS(2918), + [sym__elif] = ACTIONS(2918), + }, + [1789] = { + [sym_xml_doc] = STATE(1789), + [sym_block_comment] = STATE(1789), + [sym_preproc_line] = STATE(1789), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [sym__else] = ACTIONS(2940), + [sym__elif] = ACTIONS(2940), + }, + [1790] = { + [sym_xml_doc] = STATE(1790), + [sym_block_comment] = STATE(1790), + [sym_preproc_line] = STATE(1790), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + [sym__else] = ACTIONS(3117), + [sym__elif] = ACTIONS(3117), + }, + [1791] = { + [sym_xml_doc] = STATE(1791), + [sym_block_comment] = STATE(1791), + [sym_preproc_line] = STATE(1791), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + [sym__else] = ACTIONS(3056), + [sym__elif] = ACTIONS(3056), + }, + [1792] = { + [sym_xml_doc] = STATE(1792), + [sym_block_comment] = STATE(1792), + [sym_preproc_line] = STATE(1792), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), + [sym__else] = ACTIONS(3041), + [sym__elif] = ACTIONS(3041), + }, + [1793] = { + [sym_xml_doc] = STATE(1793), + [sym_block_comment] = STATE(1793), + [sym_preproc_line] = STATE(1793), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + [sym__else] = ACTIONS(3037), + [sym__elif] = ACTIONS(3037), + }, + [1794] = { + [sym_xml_doc] = STATE(1794), + [sym_block_comment] = STATE(1794), + [sym_preproc_line] = STATE(1794), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + [sym__else] = ACTIONS(3045), + [sym__elif] = ACTIONS(3045), + }, + [1795] = { + [sym_xml_doc] = STATE(1795), + [sym_block_comment] = STATE(1795), + [sym_preproc_line] = STATE(1795), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + [sym__else] = ACTIONS(2964), + [sym__elif] = ACTIONS(2964), + }, + [1796] = { + [sym_xml_doc] = STATE(1796), + [sym_block_comment] = STATE(1796), + [sym_preproc_line] = STATE(1796), + [aux_sym_sequential_expression_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_let_BANG] = ACTIONS(3050), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACK_PIPE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACE_PIPE] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_return_BANG] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_yield_BANG] = ACTIONS(3050), + [anon_sym_lazy] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_upcast] = ACTIONS(3052), + [anon_sym_downcast] = ACTIONS(3052), + [anon_sym_LT_AT] = ACTIONS(3052), + [anon_sym_AT_GT] = ACTIONS(3050), + [anon_sym_LT_AT_AT] = ACTIONS(3052), + [anon_sym_AT_AT_GT] = ACTIONS(3050), + [anon_sym_COLON_GT] = ACTIONS(3050), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_fun] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_match_BANG] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_DOT_LBRACK] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_use_BANG] = ACTIONS(3050), + [anon_sym_do_BANG] = ACTIONS(3050), + [anon_sym_begin] = ACTIONS(3052), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_AT_DQUOTE] = ACTIONS(3050), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), + [sym_bool] = ACTIONS(3052), + [sym_unit] = ACTIONS(3052), + [aux_sym__identifier_or_op_token1] = ACTIONS(3052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_PLUS_DOT] = ACTIONS(3052), + [anon_sym_DASH_DOT] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_prefix_op_token1] = ACTIONS(3050), + [aux_sym_infix_op_token1] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3052), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), + [sym_int] = ACTIONS(3052), + [sym_xint] = ACTIONS(3050), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3050), + [sym__newline] = ACTIONS(3050), + }, + [1797] = { + [sym_xml_doc] = STATE(1797), + [sym_block_comment] = STATE(1797), + [sym_preproc_line] = STATE(1797), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_DASH_GT] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + }, + [1798] = { + [sym_xml_doc] = STATE(1798), + [sym_block_comment] = STATE(1798), + [sym_preproc_line] = STATE(1798), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + }, + [1799] = { + [sym_xml_doc] = STATE(1799), + [sym_block_comment] = STATE(1799), + [sym_preproc_line] = STATE(1799), [sym_identifier] = ACTIONS(2930), [anon_sym_EQ] = ACTIONS(2932), [anon_sym_COLON] = ACTIONS(2930), @@ -230035,7 +224939,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2930), [anon_sym_if] = ACTIONS(2930), [anon_sym_fun] = ACTIONS(2930), - [anon_sym_DASH_GT] = ACTIONS(2930), [anon_sym_try] = ACTIONS(2930), [anon_sym_match] = ACTIONS(2930), [anon_sym_match_BANG] = ACTIONS(2932), @@ -230047,7 +224950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2930), [anon_sym_use_BANG] = ACTIONS(2932), [anon_sym_do_BANG] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2932), [anon_sym_begin] = ACTIONS(2930), [anon_sym_LPAREN2] = ACTIONS(2932), [anon_sym_SQUOTE] = ACTIONS(2932), @@ -230077,462 +224979,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), + [sym__else] = ACTIONS(2932), + [sym__elif] = ACTIONS(2932), }, - [1828] = { - [sym_xml_doc] = STATE(1828), - [sym_block_comment] = STATE(1828), - [sym_preproc_line] = STATE(1828), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_DOT_DOT] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), + [1800] = { + [sym_xml_doc] = STATE(1800), + [sym_block_comment] = STATE(1800), + [sym_preproc_line] = STATE(1800), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), }, - [1829] = { - [sym_xml_doc] = STATE(1829), - [sym_block_comment] = STATE(1829), - [sym_preproc_line] = STATE(1829), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_DOT_DOT] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), + [1801] = { + [sym_xml_doc] = STATE(1801), + [sym_block_comment] = STATE(1801), + [sym_preproc_line] = STATE(1801), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2938), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), }, - [1830] = { - [sym_xml_doc] = STATE(1830), - [sym_block_comment] = STATE(1830), - [sym_preproc_line] = STATE(1830), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_DASH_GT] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), + [1802] = { + [sym_xml_doc] = STATE(1802), + [sym_block_comment] = STATE(1802), + [sym_preproc_line] = STATE(1802), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [sym__then] = ACTIONS(2710), }, - [1831] = { - [sym_xml_doc] = STATE(1831), - [sym_block_comment] = STATE(1831), - [sym_preproc_line] = STATE(1831), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_DASH_GT] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), + [1803] = { + [sym_xml_doc] = STATE(1803), + [sym_block_comment] = STATE(1803), + [sym_preproc_line] = STATE(1803), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_DOT_DOT] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), }, - [1832] = { - [sym_xml_doc] = STATE(1832), - [sym_block_comment] = STATE(1832), - [sym_preproc_line] = STATE(1832), - [sym_identifier] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_DASH_GT] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - }, - [1833] = { - [sym_xml_doc] = STATE(1833), - [sym_block_comment] = STATE(1833), - [sym_preproc_line] = STATE(1833), + [1804] = { + [sym_xml_doc] = STATE(1804), + [sym_block_comment] = STATE(1804), + [sym_preproc_line] = STATE(1804), [sym_identifier] = ACTIONS(2908), [anon_sym_EQ] = ACTIONS(2910), [anon_sym_COLON] = ACTIONS(2908), @@ -230543,6 +225358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2908), [anon_sym_QMARK] = ACTIONS(2908), [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_as] = ACTIONS(2908), [anon_sym_LPAREN] = ACTIONS(2908), [anon_sym_COMMA] = ACTIONS(2910), [anon_sym_COLON_COLON] = ACTIONS(2910), @@ -230551,6 +225367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2910), [anon_sym_LBRACE] = ACTIONS(2908), [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_with] = ACTIONS(2908), [anon_sym_new] = ACTIONS(2908), [anon_sym_return_BANG] = ACTIONS(2910), [anon_sym_yield] = ACTIONS(2908), @@ -230569,7 +225386,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2908), [anon_sym_if] = ACTIONS(2908), [anon_sym_fun] = ACTIONS(2908), - [anon_sym_DASH_GT] = ACTIONS(2908), [anon_sym_try] = ACTIONS(2908), [anon_sym_match] = ACTIONS(2908), [anon_sym_match_BANG] = ACTIONS(2910), @@ -230581,7 +225397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2908), [anon_sym_use_BANG] = ACTIONS(2910), [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_DOT_DOT] = ACTIONS(2910), [anon_sym_begin] = ACTIONS(2908), [anon_sym_LPAREN2] = ACTIONS(2910), [anon_sym_SQUOTE] = ACTIONS(2910), @@ -230611,2394 +225426,4823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), [sym_int] = ACTIONS(2908), [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2910), [sym__newline] = ACTIONS(2910), }, + [1805] = { + [sym_xml_doc] = STATE(1805), + [sym_block_comment] = STATE(1805), + [sym_preproc_line] = STATE(1805), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_DASH_GT] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + }, + [1806] = { + [sym_xml_doc] = STATE(1806), + [sym_block_comment] = STATE(1806), + [sym_preproc_line] = STATE(1806), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_DASH_GT] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + }, + [1807] = { + [sym_xml_doc] = STATE(1807), + [sym_block_comment] = STATE(1807), + [sym_preproc_line] = STATE(1807), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [1808] = { + [sym_xml_doc] = STATE(1808), + [sym_block_comment] = STATE(1808), + [sym_preproc_line] = STATE(1808), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_DASH_GT] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + }, + [1809] = { + [sym_xml_doc] = STATE(1809), + [sym_block_comment] = STATE(1809), + [sym_preproc_line] = STATE(1809), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_DASH_GT] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + }, + [1810] = { + [sym_xml_doc] = STATE(1810), + [sym_block_comment] = STATE(1810), + [sym_preproc_line] = STATE(1810), + [sym_identifier] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_let_BANG] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_COLON_QMARK] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACK_PIPE] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_LBRACE_PIPE] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_return_BANG] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_yield_BANG] = ACTIONS(2803), + [anon_sym_lazy] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_upcast] = ACTIONS(2801), + [anon_sym_downcast] = ACTIONS(2801), + [anon_sym_LT_AT] = ACTIONS(2801), + [anon_sym_AT_GT] = ACTIONS(2803), + [anon_sym_LT_AT_AT] = ACTIONS(2801), + [anon_sym_AT_AT_GT] = ACTIONS(2803), + [anon_sym_COLON_GT] = ACTIONS(2803), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_done] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_fun] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_match_BANG] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_DOT_LBRACK] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_use_BANG] = ACTIONS(2803), + [anon_sym_do_BANG] = ACTIONS(2803), + [anon_sym_DOT_DOT] = ACTIONS(2803), + [anon_sym_begin] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_AT_DQUOTE] = ACTIONS(2803), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2803), + [sym_bool] = ACTIONS(2801), + [sym_unit] = ACTIONS(2801), + [aux_sym__identifier_or_op_token1] = ACTIONS(2801), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_DOT] = ACTIONS(2801), + [anon_sym_DASH_DOT] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [aux_sym_prefix_op_token1] = ACTIONS(2803), + [aux_sym_infix_op_token1] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_COLON_EQ] = ACTIONS(2803), + [anon_sym_DOLLAR] = ACTIONS(2801), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2803), + [sym_int] = ACTIONS(2801), + [sym_xint] = ACTIONS(2803), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2803), + [sym__newline] = ACTIONS(2803), + }, + [1811] = { + [sym_xml_doc] = STATE(1811), + [sym_block_comment] = STATE(1811), + [sym_preproc_line] = STATE(1811), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_DOT_DOT] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + }, + [1812] = { + [sym_xml_doc] = STATE(1812), + [sym_block_comment] = STATE(1812), + [sym_preproc_line] = STATE(1812), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + [sym__then] = ACTIONS(2797), + }, + [1813] = { + [sym_xml_doc] = STATE(1813), + [sym_block_comment] = STATE(1813), + [sym_preproc_line] = STATE(1813), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [sym__else] = ACTIONS(2950), + [sym__elif] = ACTIONS(2950), + }, + [1814] = { + [sym_xml_doc] = STATE(1814), + [sym_block_comment] = STATE(1814), + [sym_preproc_line] = STATE(1814), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_DASH_GT] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + }, + [1815] = { + [sym_xml_doc] = STATE(1815), + [sym_block_comment] = STATE(1815), + [sym_preproc_line] = STATE(1815), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_with] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + }, + [1816] = { + [sym_xml_doc] = STATE(1816), + [sym_block_comment] = STATE(1816), + [sym_preproc_line] = STATE(1816), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3054), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + }, + [1817] = { + [sym_xml_doc] = STATE(1817), + [sym_block_comment] = STATE(1817), + [sym_preproc_line] = STATE(1817), + [sym_identifier] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym_COLON] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_let_BANG] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_QMARK] = ACTIONS(2782), + [anon_sym_COLON_QMARK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK_PIPE] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_LBRACE_PIPE] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_return_BANG] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_yield_BANG] = ACTIONS(2784), + [anon_sym_lazy] = ACTIONS(2782), + [anon_sym_assert] = ACTIONS(2782), + [anon_sym_upcast] = ACTIONS(2782), + [anon_sym_downcast] = ACTIONS(2782), + [anon_sym_LT_AT] = ACTIONS(2782), + [anon_sym_AT_GT] = ACTIONS(2784), + [anon_sym_LT_AT_AT] = ACTIONS(2782), + [anon_sym_AT_AT_GT] = ACTIONS(2784), + [anon_sym_COLON_GT] = ACTIONS(2784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_fun] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_match_BANG] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2782), + [anon_sym_DOT_LBRACK] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_use_BANG] = ACTIONS(2784), + [anon_sym_do_BANG] = ACTIONS(2784), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [anon_sym_begin] = ACTIONS(2782), + [anon_sym_LPAREN2] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_AT_DQUOTE] = ACTIONS(2784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2784), + [sym_bool] = ACTIONS(2782), + [sym_unit] = ACTIONS(2782), + [aux_sym__identifier_or_op_token1] = ACTIONS(2782), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_PLUS_DOT] = ACTIONS(2782), + [anon_sym_DASH_DOT] = ACTIONS(2782), + [anon_sym_PERCENT] = ACTIONS(2782), + [anon_sym_AMP_AMP] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2784), + [aux_sym_prefix_op_token1] = ACTIONS(2784), + [aux_sym_infix_op_token1] = ACTIONS(2782), + [anon_sym_PIPE_PIPE] = ACTIONS(2782), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2784), + [sym_int] = ACTIONS(2782), + [sym_xint] = ACTIONS(2784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + }, + [1818] = { + [sym_xml_doc] = STATE(1818), + [sym_block_comment] = STATE(1818), + [sym_preproc_line] = STATE(1818), + [sym_identifier] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_COLON] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_let_BANG] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2774), + [anon_sym_QMARK] = ACTIONS(2774), + [anon_sym_COLON_QMARK] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_COMMA] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_LBRACK_PIPE] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_LBRACE_PIPE] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_return_BANG] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_yield_BANG] = ACTIONS(2776), + [anon_sym_lazy] = ACTIONS(2774), + [anon_sym_assert] = ACTIONS(2774), + [anon_sym_upcast] = ACTIONS(2774), + [anon_sym_downcast] = ACTIONS(2774), + [anon_sym_LT_AT] = ACTIONS(2774), + [anon_sym_AT_GT] = ACTIONS(2776), + [anon_sym_LT_AT_AT] = ACTIONS(2774), + [anon_sym_AT_AT_GT] = ACTIONS(2776), + [anon_sym_COLON_GT] = ACTIONS(2776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_done] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_fun] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_match_BANG] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_LT_DASH] = ACTIONS(2774), + [anon_sym_DOT_LBRACK] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_use_BANG] = ACTIONS(2776), + [anon_sym_do_BANG] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_begin] = ACTIONS(2774), + [anon_sym_LPAREN2] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_or] = ACTIONS(2774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_AT_DQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2776), + [sym_bool] = ACTIONS(2774), + [sym_unit] = ACTIONS(2774), + [aux_sym__identifier_or_op_token1] = ACTIONS(2774), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_PLUS_DOT] = ACTIONS(2774), + [anon_sym_DASH_DOT] = ACTIONS(2774), + [anon_sym_PERCENT] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2776), + [aux_sym_prefix_op_token1] = ACTIONS(2776), + [aux_sym_infix_op_token1] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BANG_EQ] = ACTIONS(2776), + [anon_sym_COLON_EQ] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2776), + [sym_int] = ACTIONS(2774), + [sym_xint] = ACTIONS(2776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + }, + [1819] = { + [sym_xml_doc] = STATE(1819), + [sym_block_comment] = STATE(1819), + [sym_preproc_line] = STATE(1819), + [sym_identifier] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_let_BANG] = ACTIONS(2809), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2807), + [anon_sym_COLON_QMARK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACK_PIPE] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACE_PIPE] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_return_BANG] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_yield_BANG] = ACTIONS(2809), + [anon_sym_lazy] = ACTIONS(2807), + [anon_sym_assert] = ACTIONS(2807), + [anon_sym_upcast] = ACTIONS(2807), + [anon_sym_downcast] = ACTIONS(2807), + [anon_sym_LT_AT] = ACTIONS(2807), + [anon_sym_AT_GT] = ACTIONS(2809), + [anon_sym_LT_AT_AT] = ACTIONS(2807), + [anon_sym_AT_AT_GT] = ACTIONS(2809), + [anon_sym_COLON_GT] = ACTIONS(2809), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_done] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_fun] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_match_BANG] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_DOT_LBRACK] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_use_BANG] = ACTIONS(2809), + [anon_sym_do_BANG] = ACTIONS(2809), + [anon_sym_begin] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_AT_DQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2809), + [sym_bool] = ACTIONS(2807), + [sym_unit] = ACTIONS(2807), + [aux_sym__identifier_or_op_token1] = ACTIONS(2807), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS_DOT] = ACTIONS(2807), + [anon_sym_DASH_DOT] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [aux_sym_prefix_op_token1] = ACTIONS(2809), + [aux_sym_infix_op_token1] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2809), + [sym_int] = ACTIONS(2807), + [sym_xint] = ACTIONS(2809), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2809), + [sym__newline] = ACTIONS(2809), + [sym__then] = ACTIONS(2809), + }, + [1820] = { + [sym_xml_doc] = STATE(1820), + [sym_block_comment] = STATE(1820), + [sym_preproc_line] = STATE(1820), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_EQ2] = ACTIONS(3617), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + }, + [1821] = { + [sym_xml_doc] = STATE(1821), + [sym_block_comment] = STATE(1821), + [sym_preproc_line] = STATE(1821), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + [sym__else] = ACTIONS(3107), + [sym__elif] = ACTIONS(3107), + }, + [1822] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1822), + [sym_block_comment] = STATE(1822), + [sym_preproc_line] = STATE(1822), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_POUNDnowarn] = ACTIONS(3676), + [anon_sym_POUNDr] = ACTIONS(3676), + [anon_sym_POUNDload] = ACTIONS(3676), + [anon_sym_open] = ACTIONS(3678), + [anon_sym_LBRACK_LT] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_let_BANG] = ACTIONS(3676), + [aux_sym_access_modifier_token1] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LBRACK_PIPE] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_LBRACE_PIPE] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_return_BANG] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_yield_BANG] = ACTIONS(3676), + [anon_sym_lazy] = ACTIONS(3678), + [anon_sym_assert] = ACTIONS(3678), + [anon_sym_upcast] = ACTIONS(3678), + [anon_sym_downcast] = ACTIONS(3678), + [anon_sym_LT_AT] = ACTIONS(3678), + [anon_sym_LT_AT_AT] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_fun] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_match] = ACTIONS(3678), + [anon_sym_match_BANG] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_use] = ACTIONS(3678), + [anon_sym_use_BANG] = ACTIONS(3676), + [anon_sym_do_BANG] = ACTIONS(3676), + [anon_sym_begin] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_member] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_val] = ACTIONS(3678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_AT_DQUOTE] = ACTIONS(3676), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3676), + [sym_bool] = ACTIONS(3678), + [sym_unit] = ACTIONS(3676), + [aux_sym__identifier_or_op_token1] = ACTIONS(3676), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS_DOT] = ACTIONS(3676), + [anon_sym_DASH_DOT] = ACTIONS(3676), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [aux_sym_prefix_op_token1] = ACTIONS(3676), + [sym_int] = ACTIONS(3678), + [sym_xint] = ACTIONS(3676), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3676), + }, + [1823] = { + [sym_xml_doc] = STATE(1823), + [sym_block_comment] = STATE(1823), + [sym_preproc_line] = STATE(1823), + [aux_sym_long_identifier_repeat1] = STATE(1829), + [sym_identifier] = ACTIONS(2594), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2594), + [anon_sym_COLON_QMARK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_AT_GT] = ACTIONS(2596), + [anon_sym_LT_AT_AT] = ACTIONS(2594), + [anon_sym_AT_AT_GT] = ACTIONS(2596), + [anon_sym_COLON_GT] = ACTIONS(2596), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_LT_DASH] = ACTIONS(2594), + [anon_sym_DOT_LBRACK] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_LPAREN2] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2594), + [aux_sym__identifier_or_op_token1] = ACTIONS(2594), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2594), + [anon_sym_DASH_DOT] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [aux_sym_infix_op_token1] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_COLON_EQ] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2594), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [sym__then] = ACTIONS(2596), + }, + [1824] = { + [sym_xml_doc] = STATE(1824), + [sym_block_comment] = STATE(1824), + [sym_preproc_line] = STATE(1824), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + [sym__else] = ACTIONS(2968), + [sym__elif] = ACTIONS(2968), + }, + [1825] = { + [sym_xml_doc] = STATE(1825), + [sym_block_comment] = STATE(1825), + [sym_preproc_line] = STATE(1825), + [sym_identifier] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_let_BANG] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_COLON_QMARK] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACK_PIPE] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_LBRACE_PIPE] = ACTIONS(2835), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_return_BANG] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_yield_BANG] = ACTIONS(2835), + [anon_sym_lazy] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_upcast] = ACTIONS(2833), + [anon_sym_downcast] = ACTIONS(2833), + [anon_sym_LT_AT] = ACTIONS(2833), + [anon_sym_AT_GT] = ACTIONS(2835), + [anon_sym_LT_AT_AT] = ACTIONS(2833), + [anon_sym_AT_AT_GT] = ACTIONS(2835), + [anon_sym_COLON_GT] = ACTIONS(2835), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_fun] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_match_BANG] = ACTIONS(2835), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_DOT_LBRACK] = ACTIONS(2835), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_use_BANG] = ACTIONS(2835), + [anon_sym_do_BANG] = ACTIONS(2835), + [anon_sym_DOT_DOT] = ACTIONS(2835), + [anon_sym_begin] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_AT_DQUOTE] = ACTIONS(2835), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2835), + [sym_bool] = ACTIONS(2833), + [sym_unit] = ACTIONS(2833), + [aux_sym__identifier_or_op_token1] = ACTIONS(2833), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_DOT] = ACTIONS(2833), + [anon_sym_DASH_DOT] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [aux_sym_prefix_op_token1] = ACTIONS(2835), + [aux_sym_infix_op_token1] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_COLON_EQ] = ACTIONS(2835), + [anon_sym_DOLLAR] = ACTIONS(2833), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2835), + [sym_int] = ACTIONS(2833), + [sym_xint] = ACTIONS(2835), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2835), + [sym__newline] = ACTIONS(2835), + }, + [1826] = { + [sym_xml_doc] = STATE(1826), + [sym_block_comment] = STATE(1826), + [sym_preproc_line] = STATE(1826), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__else] = ACTIONS(2229), + [sym__elif] = ACTIONS(2229), + }, + [1827] = { + [sym_xml_doc] = STATE(1827), + [sym_block_comment] = STATE(1827), + [sym_preproc_line] = STATE(1827), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_DASH_GT] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + }, + [1828] = { + [sym_xml_doc] = STATE(1828), + [sym_block_comment] = STATE(1828), + [sym_preproc_line] = STATE(1828), + [sym_identifier] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_let_BANG] = ACTIONS(2797), + [anon_sym_null] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2795), + [anon_sym_COLON_QMARK] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACK_PIPE] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACE_PIPE] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_return_BANG] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_yield_BANG] = ACTIONS(2797), + [anon_sym_lazy] = ACTIONS(2795), + [anon_sym_assert] = ACTIONS(2795), + [anon_sym_upcast] = ACTIONS(2795), + [anon_sym_downcast] = ACTIONS(2795), + [anon_sym_LT_AT] = ACTIONS(2795), + [anon_sym_AT_GT] = ACTIONS(2797), + [anon_sym_LT_AT_AT] = ACTIONS(2795), + [anon_sym_AT_AT_GT] = ACTIONS(2797), + [anon_sym_COLON_GT] = ACTIONS(2797), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_fun] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_match_BANG] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2795), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_DOT_LBRACK] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_use_BANG] = ACTIONS(2797), + [anon_sym_do_BANG] = ACTIONS(2797), + [anon_sym_DOT_DOT] = ACTIONS(2797), + [anon_sym_begin] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_AT_DQUOTE] = ACTIONS(2797), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2797), + [sym_bool] = ACTIONS(2795), + [sym_unit] = ACTIONS(2795), + [aux_sym__identifier_or_op_token1] = ACTIONS(2795), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS_DOT] = ACTIONS(2795), + [anon_sym_DASH_DOT] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2797), + [aux_sym_prefix_op_token1] = ACTIONS(2797), + [aux_sym_infix_op_token1] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2797), + [anon_sym_COLON_EQ] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2797), + [sym_int] = ACTIONS(2795), + [sym_xint] = ACTIONS(2797), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2797), + [sym__newline] = ACTIONS(2797), + }, + [1829] = { + [sym_xml_doc] = STATE(1829), + [sym_block_comment] = STATE(1829), + [sym_preproc_line] = STATE(1829), + [aux_sym_long_identifier_repeat1] = STATE(1829), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__then] = ACTIONS(2605), + }, + [1830] = { + [sym_xml_doc] = STATE(1830), + [sym_block_comment] = STATE(1830), + [sym_preproc_line] = STATE(1830), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + }, + [1831] = { + [sym_xml_doc] = STATE(1831), + [sym_block_comment] = STATE(1831), + [sym_preproc_line] = STATE(1831), + [sym_identifier] = ACTIONS(2708), + [anon_sym_EQ] = ACTIONS(2710), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_let_BANG] = ACTIONS(2710), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_COMMA] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACK_PIPE] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_LBRACE_PIPE] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_return_BANG] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_yield_BANG] = ACTIONS(2710), + [anon_sym_lazy] = ACTIONS(2708), + [anon_sym_assert] = ACTIONS(2708), + [anon_sym_upcast] = ACTIONS(2708), + [anon_sym_downcast] = ACTIONS(2708), + [anon_sym_LT_AT] = ACTIONS(2708), + [anon_sym_AT_GT] = ACTIONS(2710), + [anon_sym_LT_AT_AT] = ACTIONS(2708), + [anon_sym_AT_AT_GT] = ACTIONS(2710), + [anon_sym_COLON_GT] = ACTIONS(2710), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_fun] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_match_BANG] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_LT_DASH] = ACTIONS(2708), + [anon_sym_DOT_LBRACK] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_use_BANG] = ACTIONS(2710), + [anon_sym_do_BANG] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_begin] = ACTIONS(2708), + [anon_sym_LPAREN2] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_or] = ACTIONS(2708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_AT_DQUOTE] = ACTIONS(2710), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2710), + [sym_bool] = ACTIONS(2708), + [sym_unit] = ACTIONS(2708), + [aux_sym__identifier_or_op_token1] = ACTIONS(2708), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_PLUS_DOT] = ACTIONS(2708), + [anon_sym_DASH_DOT] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_AMP_AMP] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_prefix_op_token1] = ACTIONS(2710), + [aux_sym_infix_op_token1] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2708), + [anon_sym_BANG_EQ] = ACTIONS(2710), + [anon_sym_COLON_EQ] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2710), + [sym_int] = ACTIONS(2708), + [sym_xint] = ACTIONS(2710), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + }, + [1832] = { + [sym_xml_doc] = STATE(1832), + [sym_block_comment] = STATE(1832), + [sym_preproc_line] = STATE(1832), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_DASH_GT] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_DOT_DOT] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + }, + [1833] = { + [sym_xml_doc] = STATE(1833), + [sym_block_comment] = STATE(1833), + [sym_preproc_line] = STATE(1833), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_DASH_GT] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_DOT_DOT] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + }, [1834] = { [sym_xml_doc] = STATE(1834), [sym_block_comment] = STATE(1834), [sym_preproc_line] = STATE(1834), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_DASH_GT] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), }, [1835] = { [sym_xml_doc] = STATE(1835), [sym_block_comment] = STATE(1835), [sym_preproc_line] = STATE(1835), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_DOT_DOT] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + [sym__else] = ACTIONS(3011), + [sym__elif] = ACTIONS(3011), }, [1836] = { [sym_xml_doc] = STATE(1836), [sym_block_comment] = STATE(1836), [sym_preproc_line] = STATE(1836), - [sym_identifier] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_do] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_let_BANG] = ACTIONS(3093), - [anon_sym_null] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3091), - [anon_sym_COLON_QMARK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LBRACE_PIPE] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_return_BANG] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_yield_BANG] = ACTIONS(3093), - [anon_sym_lazy] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_upcast] = ACTIONS(3091), - [anon_sym_downcast] = ACTIONS(3091), - [anon_sym_LT_AT] = ACTIONS(3091), - [anon_sym_AT_GT] = ACTIONS(3093), - [anon_sym_LT_AT_AT] = ACTIONS(3091), - [anon_sym_AT_AT_GT] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3093), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_fun] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_match_BANG] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_DOT_LBRACK] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_use] = ACTIONS(3091), - [anon_sym_use_BANG] = ACTIONS(3093), - [anon_sym_do_BANG] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3091), - [anon_sym_LPAREN2] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [anon_sym_AT_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), - [sym_bool] = ACTIONS(3091), - [sym_unit] = ACTIONS(3091), - [aux_sym__identifier_or_op_token1] = ACTIONS(3091), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3091), - [anon_sym_DASH] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3091), - [anon_sym_DASH_DOT] = ACTIONS(3091), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3093), - [aux_sym_prefix_op_token1] = ACTIONS(3093), - [aux_sym_infix_op_token1] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), - [sym_int] = ACTIONS(3091), - [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3093), - [sym__newline] = ACTIONS(3093), - [sym__then] = ACTIONS(3093), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), + [sym__else] = ACTIONS(2910), + [sym__elif] = ACTIONS(2910), }, [1837] = { [sym_xml_doc] = STATE(1837), [sym_block_comment] = STATE(1837), [sym_preproc_line] = STATE(1837), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - [sym__then] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_DASH_GT] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), }, [1838] = { [sym_xml_doc] = STATE(1838), [sym_block_comment] = STATE(1838), [sym_preproc_line] = STATE(1838), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - [sym__then] = ACTIONS(2840), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_as] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_with] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), }, [1839] = { [sym_xml_doc] = STATE(1839), [sym_block_comment] = STATE(1839), [sym_preproc_line] = STATE(1839), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - [sym__then] = ACTIONS(2485), + [aux_sym_long_identifier_repeat1] = STATE(1711), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(3685), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_and] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [aux_sym_access_modifier_token1] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_member] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_override] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_val] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), }, [1840] = { [sym_xml_doc] = STATE(1840), [sym_block_comment] = STATE(1840), [sym_preproc_line] = STATE(1840), - [sym_identifier] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_let_BANG] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LBRACK_PIPE] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_LBRACE_PIPE] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_return_BANG] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_yield_BANG] = ACTIONS(2914), - [anon_sym_lazy] = ACTIONS(2912), - [anon_sym_assert] = ACTIONS(2912), - [anon_sym_upcast] = ACTIONS(2912), - [anon_sym_downcast] = ACTIONS(2912), - [anon_sym_LT_AT] = ACTIONS(2912), - [anon_sym_AT_GT] = ACTIONS(2914), - [anon_sym_LT_AT_AT] = ACTIONS(2912), - [anon_sym_AT_AT_GT] = ACTIONS(2914), - [anon_sym_COLON_GT] = ACTIONS(2914), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_fun] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_match_BANG] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2912), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_DOT_LBRACK] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_use_BANG] = ACTIONS(2914), - [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_begin] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2912), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_AT_DQUOTE] = ACTIONS(2914), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), - [sym_bool] = ACTIONS(2912), - [sym_unit] = ACTIONS(2912), - [aux_sym__identifier_or_op_token1] = ACTIONS(2912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS_DOT] = ACTIONS(2912), - [anon_sym_DASH_DOT] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2914), - [aux_sym_prefix_op_token1] = ACTIONS(2914), - [aux_sym_infix_op_token1] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), - [sym_int] = ACTIONS(2912), - [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2914), - [sym__newline] = ACTIONS(2914), - [sym__then] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + [sym__else] = ACTIONS(2874), + [sym__elif] = ACTIONS(2874), }, [1841] = { [sym_xml_doc] = STATE(1841), [sym_block_comment] = STATE(1841), [sym_preproc_line] = STATE(1841), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - [sym__then] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + [sym__else] = ACTIONS(2862), + [sym__elif] = ACTIONS(2862), }, [1842] = { [sym_xml_doc] = STATE(1842), [sym_block_comment] = STATE(1842), [sym_preproc_line] = STATE(1842), - [aux_sym__compound_type_repeat1] = STATE(1857), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_POUNDnowarn] = ACTIONS(2481), - [anon_sym_POUNDr] = ACTIONS(2481), - [anon_sym_POUNDload] = ACTIONS(2481), - [anon_sym_open] = ACTIONS(2479), - [anon_sym_LBRACK_LT] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_and] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [aux_sym_access_modifier_token1] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_LT_AT_AT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_member] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_val] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2481), - [aux_sym__identifier_or_op_token1] = ACTIONS(2481), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2481), - [anon_sym_DASH_DOT] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_with] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), }, [1843] = { [sym_xml_doc] = STATE(1843), [sym_block_comment] = STATE(1843), [sym_preproc_line] = STATE(1843), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - [sym__then] = ACTIONS(2836), - }, - [1844] = { - [sym_xml_doc] = STATE(1844), - [sym_block_comment] = STATE(1844), - [sym_preproc_line] = STATE(1844), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - [sym__then] = ACTIONS(2832), - }, - [1845] = { - [sym_xml_doc] = STATE(1845), - [sym_block_comment] = STATE(1845), - [sym_preproc_line] = STATE(1845), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - [sym__then] = ACTIONS(2828), - }, - [1846] = { - [sym_xml_doc] = STATE(1846), - [sym_block_comment] = STATE(1846), - [sym_preproc_line] = STATE(1846), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - }, - [1847] = { - [sym_xml_doc] = STATE(1847), - [sym_block_comment] = STATE(1847), - [sym_preproc_line] = STATE(1847), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - }, - [1848] = { - [sym_xml_doc] = STATE(1848), - [sym_block_comment] = STATE(1848), - [sym_preproc_line] = STATE(1848), - [sym_identifier] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_do] = ACTIONS(3030), - [anon_sym_let] = ACTIONS(3030), - [anon_sym_let_BANG] = ACTIONS(2707), - [anon_sym_null] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_COLON_QMARK] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACK_PIPE] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_LBRACE_PIPE] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(3030), - [anon_sym_return_BANG] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(3030), - [anon_sym_yield_BANG] = ACTIONS(2707), - [anon_sym_lazy] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_upcast] = ACTIONS(3030), - [anon_sym_downcast] = ACTIONS(3030), - [anon_sym_LT_AT] = ACTIONS(3030), - [anon_sym_AT_GT] = ACTIONS(2707), - [anon_sym_LT_AT_AT] = ACTIONS(3030), - [anon_sym_AT_AT_GT] = ACTIONS(2707), - [anon_sym_COLON_GT] = ACTIONS(2707), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_while] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_fun] = ACTIONS(3030), - [anon_sym_try] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_match_BANG] = ACTIONS(2707), - [anon_sym_function] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_DOT_LBRACK] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(3030), - [anon_sym_use_BANG] = ACTIONS(2707), - [anon_sym_do_BANG] = ACTIONS(2707), - [anon_sym_begin] = ACTIONS(3030), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(3030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3030), - [anon_sym_AT_DQUOTE] = ACTIONS(2707), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2707), - [sym_bool] = ACTIONS(3030), - [sym_unit] = ACTIONS(3030), - [aux_sym__identifier_or_op_token1] = ACTIONS(3030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_PLUS_DOT] = ACTIONS(3030), - [anon_sym_DASH_DOT] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(2707), - [aux_sym_prefix_op_token1] = ACTIONS(2707), - [aux_sym_infix_op_token1] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(3030), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2707), - [sym_int] = ACTIONS(3030), - [sym_xint] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2707), - [sym__newline] = ACTIONS(2707), - [sym__then] = ACTIONS(2707), - }, - [1849] = { - [sym_xml_doc] = STATE(1849), - [sym_block_comment] = STATE(1849), - [sym_preproc_line] = STATE(1849), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - [sym__then] = ACTIONS(2924), - }, - [1850] = { + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_DASH_GT] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_DOT_DOT] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), + }, + [1844] = { + [sym_xml_doc] = STATE(1844), + [sym_block_comment] = STATE(1844), + [sym_preproc_line] = STATE(1844), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_as] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_with] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + }, + [1845] = { + [sym_xml_doc] = STATE(1845), + [sym_block_comment] = STATE(1845), + [sym_preproc_line] = STATE(1845), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2603), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_EQ2] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [1846] = { + [sym_xml_doc] = STATE(1846), + [sym_block_comment] = STATE(1846), + [sym_preproc_line] = STATE(1846), + [aux_sym_sequential_expression_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3687), + }, + [1847] = { + [sym_xml_doc] = STATE(1847), + [sym_block_comment] = STATE(1847), + [sym_preproc_line] = STATE(1847), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + }, + [1848] = { + [sym_xml_doc] = STATE(1848), + [sym_block_comment] = STATE(1848), + [sym_preproc_line] = STATE(1848), + [sym_identifier] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(2734), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_QMARK] = ACTIONS(2732), + [anon_sym_COLON_QMARK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_AT_GT] = ACTIONS(2734), + [anon_sym_LT_AT_AT] = ACTIONS(2732), + [anon_sym_AT_AT_GT] = ACTIONS(2734), + [anon_sym_COLON_GT] = ACTIONS(2734), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_LT_DASH] = ACTIONS(2732), + [anon_sym_DOT_LBRACK] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2732), + [aux_sym__identifier_or_op_token1] = ACTIONS(2732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2732), + [anon_sym_DASH_DOT] = ACTIONS(2732), + [anon_sym_PERCENT] = ACTIONS(2732), + [anon_sym_AMP_AMP] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [aux_sym_infix_op_token1] = ACTIONS(2732), + [anon_sym_PIPE_PIPE] = ACTIONS(2732), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_COLON_EQ] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__newline] = ACTIONS(2734), + }, + [1849] = { + [sym_xml_doc] = STATE(1849), + [sym_block_comment] = STATE(1849), + [sym_preproc_line] = STATE(1849), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [1850] = { [sym_xml_doc] = STATE(1850), [sym_block_comment] = STATE(1850), [sym_preproc_line] = STATE(1850), - [sym_identifier] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3028), - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_let_BANG] = ACTIONS(3028), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_COLON_QMARK] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACK_PIPE] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_LBRACE_PIPE] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_return_BANG] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_yield_BANG] = ACTIONS(3028), - [anon_sym_lazy] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_upcast] = ACTIONS(3026), - [anon_sym_downcast] = ACTIONS(3026), - [anon_sym_LT_AT] = ACTIONS(3026), - [anon_sym_AT_GT] = ACTIONS(3028), - [anon_sym_LT_AT_AT] = ACTIONS(3026), - [anon_sym_AT_AT_GT] = ACTIONS(3028), - [anon_sym_COLON_GT] = ACTIONS(3028), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_fun] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_match_BANG] = ACTIONS(3028), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_DOT_LBRACK] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3026), - [anon_sym_use_BANG] = ACTIONS(3028), - [anon_sym_do_BANG] = ACTIONS(3028), - [anon_sym_begin] = ACTIONS(3026), - [anon_sym_LPAREN2] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3026), - [anon_sym_AT_DQUOTE] = ACTIONS(3028), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3028), - [sym_bool] = ACTIONS(3026), - [sym_unit] = ACTIONS(3026), - [aux_sym__identifier_or_op_token1] = ACTIONS(3026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS_DOT] = ACTIONS(3026), - [anon_sym_DASH_DOT] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3028), - [aux_sym_prefix_op_token1] = ACTIONS(3028), - [aux_sym_infix_op_token1] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_COLON_EQ] = ACTIONS(3028), - [anon_sym_DOLLAR] = ACTIONS(3026), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3028), - [sym_int] = ACTIONS(3026), - [sym_xint] = ACTIONS(3028), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3028), - [sym__newline] = ACTIONS(3028), - [sym__then] = ACTIONS(3028), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + [sym__else] = ACTIONS(2866), + [sym__elif] = ACTIONS(2866), }, [1851] = { [sym_xml_doc] = STATE(1851), [sym_block_comment] = STATE(1851), [sym_preproc_line] = STATE(1851), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), - [sym__then] = ACTIONS(3024), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_DASH_GT] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), }, [1852] = { [sym_xml_doc] = STATE(1852), [sym_block_comment] = STATE(1852), [sym_preproc_line] = STATE(1852), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - [sym__then] = ACTIONS(3016), + [sym_identifier] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_DASH_GT] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), }, [1853] = { [sym_xml_doc] = STATE(1853), [sym_block_comment] = STATE(1853), [sym_preproc_line] = STATE(1853), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_DOT_DOT] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_DASH_GT] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), }, [1854] = { [sym_xml_doc] = STATE(1854), [sym_block_comment] = STATE(1854), [sym_preproc_line] = STATE(1854), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_DOT_DOT] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + [sym__else] = ACTIONS(2858), + [sym__elif] = ACTIONS(2858), }, [1855] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1855), [sym_block_comment] = STATE(1855), [sym_preproc_line] = STATE(1855), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3571), - [sym_identifier] = ACTIONS(3573), - [anon_sym_namespace] = ACTIONS(3573), - [anon_sym_module] = ACTIONS(3573), - [anon_sym_POUNDnowarn] = ACTIONS(3571), - [anon_sym_POUNDr] = ACTIONS(3571), - [anon_sym_POUNDload] = ACTIONS(3571), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_LBRACK_LT] = ACTIONS(3571), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_type] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_and] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3571), - [aux_sym_access_modifier_token1] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3571), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_member] = ACTIONS(3573), - [anon_sym_abstract] = ACTIONS(3573), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_default] = ACTIONS(3573), - [anon_sym_val] = ACTIONS(3573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3571), - [aux_sym__identifier_or_op_token1] = ACTIONS(3571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3571), - [anon_sym_DASH_DOT] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_AMP_AMP] = ACTIONS(3571), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3571), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3571), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3571), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + [sym__else] = ACTIONS(2894), + [sym__elif] = ACTIONS(2894), }, [1856] = { [sym_xml_doc] = STATE(1856), [sym_block_comment] = STATE(1856), [sym_preproc_line] = STATE(1856), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_DOT_DOT] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [sym__else] = ACTIONS(2890), + [sym__elif] = ACTIONS(2890), }, [1857] = { [sym_xml_doc] = STATE(1857), [sym_block_comment] = STATE(1857), [sym_preproc_line] = STATE(1857), - [aux_sym__compound_type_repeat1] = STATE(1857), - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2343), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [aux_sym_access_modifier_token1] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(3575), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_member] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_val] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [sym__else] = ACTIONS(2886), + [sym__elif] = ACTIONS(2886), }, [1858] = { [sym_xml_doc] = STATE(1858), [sym_block_comment] = STATE(1858), [sym_preproc_line] = STATE(1858), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_DASH_GT] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), }, [1859] = { [sym_xml_doc] = STATE(1859), [sym_block_comment] = STATE(1859), [sym_preproc_line] = STATE(1859), - [aux_sym_long_identifier_repeat1] = STATE(1980), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_and] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [aux_sym_access_modifier_token1] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_member] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_val] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), - }, - [1860] = { - [sym_xml_doc] = STATE(1860), - [sym_block_comment] = STATE(1860), - [sym_preproc_line] = STATE(1860), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_DOT_DOT] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - }, - [1861] = { - [sym_xml_doc] = STATE(1861), - [sym_block_comment] = STATE(1861), - [sym_preproc_line] = STATE(1861), [sym_identifier] = ACTIONS(3091), [anon_sym_EQ] = ACTIONS(3093), [anon_sym_COLON] = ACTIONS(3091), @@ -233035,6 +230279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3091), [anon_sym_if] = ACTIONS(3091), [anon_sym_fun] = ACTIONS(3091), + [anon_sym_DASH_GT] = ACTIONS(3091), [anon_sym_try] = ACTIONS(3091), [anon_sym_match] = ACTIONS(3091), [anon_sym_match_BANG] = ACTIONS(3093), @@ -233076,1073 +230321,2242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), [sym_int] = ACTIONS(3091), [sym_xint] = ACTIONS(3093), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3093), [sym__newline] = ACTIONS(3093), }, + [1860] = { + [sym_xml_doc] = STATE(1860), + [sym_block_comment] = STATE(1860), + [sym_preproc_line] = STATE(1860), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + }, + [1861] = { + [sym_xml_doc] = STATE(1861), + [sym_block_comment] = STATE(1861), + [sym_preproc_line] = STATE(1861), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_DASH_GT] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + }, [1862] = { [sym_xml_doc] = STATE(1862), [sym_block_comment] = STATE(1862), [sym_preproc_line] = STATE(1862), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_DOT_DOT] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_DASH_GT] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), }, [1863] = { [sym_xml_doc] = STATE(1863), [sym_block_comment] = STATE(1863), [sym_preproc_line] = STATE(1863), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), - [sym__then] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_DASH_GT] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), }, [1864] = { [sym_xml_doc] = STATE(1864), [sym_block_comment] = STATE(1864), [sym_preproc_line] = STATE(1864), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - [sym__then] = ACTIONS(2954), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_DASH_GT] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), }, [1865] = { [sym_xml_doc] = STATE(1865), [sym_block_comment] = STATE(1865), [sym_preproc_line] = STATE(1865), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_DOT_DOT] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_DASH_GT] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), }, [1866] = { [sym_xml_doc] = STATE(1866), [sym_block_comment] = STATE(1866), [sym_preproc_line] = STATE(1866), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_DOT_DOT] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_DASH_GT] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), }, [1867] = { [sym_xml_doc] = STATE(1867), [sym_block_comment] = STATE(1867), [sym_preproc_line] = STATE(1867), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [sym__then] = ACTIONS(2928), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), }, [1868] = { - [sym_attributes] = STATE(3596), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4360), - [sym_member_defn] = STATE(2100), - [sym_additional_constr_defn] = STATE(2121), [sym_xml_doc] = STATE(1868), [sym_block_comment] = STATE(1868), [sym_preproc_line] = STATE(1868), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(1868), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_POUNDnowarn] = ACTIONS(3580), - [anon_sym_POUNDr] = ACTIONS(3580), - [anon_sym_POUNDload] = ACTIONS(3580), - [anon_sym_open] = ACTIONS(3582), - [anon_sym_LBRACK_LT] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_and] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3580), - [aux_sym_access_modifier_token1] = ACTIONS(3587), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3580), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3580), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3580), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3580), - [anon_sym_do_BANG] = ACTIONS(3580), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3593), - [anon_sym_member] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3599), - [anon_sym_override] = ACTIONS(3602), - [anon_sym_default] = ACTIONS(3602), - [anon_sym_val] = ACTIONS(3605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3580), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3580), - [aux_sym__identifier_or_op_token1] = ACTIONS(3580), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3580), - [anon_sym_DASH_DOT] = ACTIONS(3580), - [anon_sym_PERCENT] = ACTIONS(3580), - [anon_sym_AMP_AMP] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3580), - [aux_sym_prefix_op_token1] = ACTIONS(3580), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3580), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3580), - }, - [1869] = { - [sym_xml_doc] = STATE(1869), - [sym_block_comment] = STATE(1869), - [sym_preproc_line] = STATE(1869), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - [sym__then] = ACTIONS(2820), - }, - [1870] = { - [sym_xml_doc] = STATE(1870), - [sym_block_comment] = STATE(1870), - [sym_preproc_line] = STATE(1870), - [sym_identifier] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym_COLON] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2952), - [anon_sym_COLON_QMARK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_AT_GT] = ACTIONS(2954), - [anon_sym_LT_AT_AT] = ACTIONS(2952), - [anon_sym_AT_AT_GT] = ACTIONS(2954), - [anon_sym_COLON_GT] = ACTIONS(2954), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_DOT_LBRACK] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2952), - [aux_sym__identifier_or_op_token1] = ACTIONS(2952), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2952), - [anon_sym_DASH_DOT] = ACTIONS(2952), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [aux_sym_infix_op_token1] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__newline] = ACTIONS(2954), - }, - [1871] = { - [sym_xml_doc] = STATE(1871), - [sym_block_comment] = STATE(1871), - [sym_preproc_line] = STATE(1871), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__then] = ACTIONS(2632), + [aux_sym_sequential_expression_repeat1] = STATE(1868), + [sym_identifier] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_let_BANG] = ACTIONS(2986), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACK_PIPE] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_LBRACE_PIPE] = ACTIONS(2986), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_return_BANG] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2988), + [anon_sym_yield_BANG] = ACTIONS(2986), + [anon_sym_lazy] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_upcast] = ACTIONS(2988), + [anon_sym_downcast] = ACTIONS(2988), + [anon_sym_LT_AT] = ACTIONS(2988), + [anon_sym_AT_GT] = ACTIONS(2986), + [anon_sym_LT_AT_AT] = ACTIONS(2988), + [anon_sym_AT_AT_GT] = ACTIONS(2986), + [anon_sym_COLON_GT] = ACTIONS(2986), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_fun] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_match_BANG] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_DOT_LBRACK] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2988), + [anon_sym_use_BANG] = ACTIONS(2986), + [anon_sym_do_BANG] = ACTIONS(2986), + [anon_sym_begin] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [anon_sym_AT_DQUOTE] = ACTIONS(2986), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), + [sym_bool] = ACTIONS(2988), + [sym_unit] = ACTIONS(2988), + [aux_sym__identifier_or_op_token1] = ACTIONS(2988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS_DOT] = ACTIONS(2988), + [anon_sym_DASH_DOT] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_prefix_op_token1] = ACTIONS(2986), + [aux_sym_infix_op_token1] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_COLON_EQ] = ACTIONS(2986), + [anon_sym_DOLLAR] = ACTIONS(2988), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), + [sym_int] = ACTIONS(2988), + [sym_xint] = ACTIONS(2986), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2986), + [sym__newline] = ACTIONS(3690), + [sym__then] = ACTIONS(2986), + }, + [1869] = { + [sym_xml_doc] = STATE(1869), + [sym_block_comment] = STATE(1869), + [sym_preproc_line] = STATE(1869), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_DASH_GT] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_DOT_DOT] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + }, + [1870] = { + [sym_xml_doc] = STATE(1870), + [sym_block_comment] = STATE(1870), + [sym_preproc_line] = STATE(1870), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_DASH_GT] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_DOT_DOT] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + }, + [1871] = { + [sym_xml_doc] = STATE(1871), + [sym_block_comment] = STATE(1871), + [sym_preproc_line] = STATE(1871), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_DASH_GT] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_DOT_DOT] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), }, [1872] = { [sym_xml_doc] = STATE(1872), [sym_block_comment] = STATE(1872), [sym_preproc_line] = STATE(1872), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_with] = ACTIONS(3039), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), }, [1873] = { [sym_xml_doc] = STATE(1873), [sym_block_comment] = STATE(1873), [sym_preproc_line] = STATE(1873), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_DOT_DOT] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_DASH_GT] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), }, [1874] = { [sym_xml_doc] = STATE(1874), [sym_block_comment] = STATE(1874), [sym_preproc_line] = STATE(1874), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_DASH_GT] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + }, + [1875] = { + [sym_xml_doc] = STATE(1875), + [sym_block_comment] = STATE(1875), + [sym_preproc_line] = STATE(1875), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + }, + [1876] = { + [sym_xml_doc] = STATE(1876), + [sym_block_comment] = STATE(1876), + [sym_preproc_line] = STATE(1876), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_DASH_GT] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_DOT_DOT] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + }, + [1877] = { + [sym_xml_doc] = STATE(1877), + [sym_block_comment] = STATE(1877), + [sym_preproc_line] = STATE(1877), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_DASH_GT] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + }, + [1878] = { + [sym_xml_doc] = STATE(1878), + [sym_block_comment] = STATE(1878), + [sym_preproc_line] = STATE(1878), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_DASH_GT] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_DOT_DOT] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + }, + [1879] = { + [sym_xml_doc] = STATE(1879), + [sym_block_comment] = STATE(1879), + [sym_preproc_line] = STATE(1879), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_DASH_GT] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_DOT_DOT] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + }, + [1880] = { + [sym_xml_doc] = STATE(1880), + [sym_block_comment] = STATE(1880), + [sym_preproc_line] = STATE(1880), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_DASH_GT] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_DOT_DOT] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + }, + [1881] = { + [sym_xml_doc] = STATE(1881), + [sym_block_comment] = STATE(1881), + [sym_preproc_line] = STATE(1881), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + }, + [1882] = { + [sym_xml_doc] = STATE(1882), + [sym_block_comment] = STATE(1882), + [sym_preproc_line] = STATE(1882), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_DASH_GT] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_DOT_DOT] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + }, + [1883] = { + [sym_xml_doc] = STATE(1883), + [sym_block_comment] = STATE(1883), + [sym_preproc_line] = STATE(1883), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_as] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + }, + [1884] = { + [sym_xml_doc] = STATE(1884), + [sym_block_comment] = STATE(1884), + [sym_preproc_line] = STATE(1884), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_DASH_GT] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + }, + [1885] = { + [sym_xml_doc] = STATE(1885), + [sym_block_comment] = STATE(1885), + [sym_preproc_line] = STATE(1885), [sym_identifier] = ACTIONS(2930), [anon_sym_EQ] = ACTIONS(2932), [anon_sym_COLON] = ACTIONS(2930), @@ -234153,6 +232567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(2930), [anon_sym_QMARK] = ACTIONS(2930), [anon_sym_COLON_QMARK] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), [anon_sym_LPAREN] = ACTIONS(2930), [anon_sym_COMMA] = ACTIONS(2932), [anon_sym_COLON_COLON] = ACTIONS(2932), @@ -234161,6 +232576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(2932), [anon_sym_LBRACE] = ACTIONS(2930), [anon_sym_LBRACE_PIPE] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2930), [anon_sym_new] = ACTIONS(2930), [anon_sym_return_BANG] = ACTIONS(2932), [anon_sym_yield] = ACTIONS(2930), @@ -234219,6970 +232635,3632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), [sym_int] = ACTIONS(2930), [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2932), [sym__newline] = ACTIONS(2932), - [sym__then] = ACTIONS(2932), - }, - [1875] = { - [sym_xml_doc] = STATE(1875), - [sym_block_comment] = STATE(1875), - [sym_preproc_line] = STATE(1875), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_DOT_DOT] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - }, - [1876] = { - [sym_xml_doc] = STATE(1876), - [sym_block_comment] = STATE(1876), - [sym_preproc_line] = STATE(1876), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_DOT_DOT] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - }, - [1877] = { - [sym_xml_doc] = STATE(1877), - [sym_block_comment] = STATE(1877), - [sym_preproc_line] = STATE(1877), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [sym__then] = ACTIONS(2632), - }, - [1878] = { - [sym_xml_doc] = STATE(1878), - [sym_block_comment] = STATE(1878), - [sym_preproc_line] = STATE(1878), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), - [sym__then] = ACTIONS(2994), - }, - [1879] = { - [sym_xml_doc] = STATE(1879), - [sym_block_comment] = STATE(1879), - [sym_preproc_line] = STATE(1879), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2988), - [aux_sym__identifier_or_op_token1] = ACTIONS(2988), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - [sym__then] = ACTIONS(2990), - }, - [1880] = { - [sym_xml_doc] = STATE(1880), - [sym_block_comment] = STATE(1880), - [sym_preproc_line] = STATE(1880), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_DOT_DOT] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - }, - [1881] = { - [sym_xml_doc] = STATE(1881), - [sym_block_comment] = STATE(1881), - [sym_preproc_line] = STATE(1881), - [sym_identifier] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), - [sym__then] = ACTIONS(2936), - }, - [1882] = { - [sym_xml_doc] = STATE(1882), - [sym_block_comment] = STATE(1882), - [sym_preproc_line] = STATE(1882), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - }, - [1883] = { - [sym_xml_doc] = STATE(1883), - [sym_block_comment] = STATE(1883), - [sym_preproc_line] = STATE(1883), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_DOT_DOT] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - }, - [1884] = { - [sym_xml_doc] = STATE(1884), - [sym_block_comment] = STATE(1884), - [sym_preproc_line] = STATE(1884), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [sym__then] = ACTIONS(2800), - }, - [1885] = { - [sym_xml_doc] = STATE(1885), - [sym_block_comment] = STATE(1885), - [sym_preproc_line] = STATE(1885), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - [sym__then] = ACTIONS(2962), }, [1886] = { [sym_xml_doc] = STATE(1886), [sym_block_comment] = STATE(1886), [sym_preproc_line] = STATE(1886), - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_POUNDnowarn] = ACTIONS(2611), - [anon_sym_POUNDr] = ACTIONS(2611), - [anon_sym_POUNDload] = ACTIONS(2611), - [anon_sym_open] = ACTIONS(2609), - [anon_sym_LBRACK_LT] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_and] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [aux_sym_access_modifier_token1] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_LT_AT_AT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_member] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_override] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_val] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2611), - [aux_sym__identifier_or_op_token1] = ACTIONS(2611), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2611), - [anon_sym_DASH_DOT] = ACTIONS(2611), - [anon_sym_PERCENT] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_with] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), }, [1887] = { [sym_xml_doc] = STATE(1887), [sym_block_comment] = STATE(1887), [sym_preproc_line] = STATE(1887), - [sym_identifier] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym_COLON] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_COLON_QMARK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_AT_GT] = ACTIONS(3070), - [anon_sym_LT_AT_AT] = ACTIONS(3068), - [anon_sym_AT_AT_GT] = ACTIONS(3070), - [anon_sym_COLON_GT] = ACTIONS(3070), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_DOT_LBRACK] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_LPAREN2] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3068), - [aux_sym__identifier_or_op_token1] = ACTIONS(3068), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3068), - [anon_sym_DASH_DOT] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [aux_sym_infix_op_token1] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3068), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__newline] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_with] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), }, [1888] = { [sym_xml_doc] = STATE(1888), [sym_block_comment] = STATE(1888), [sym_preproc_line] = STATE(1888), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_as] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), }, [1889] = { [sym_xml_doc] = STATE(1889), [sym_block_comment] = STATE(1889), [sym_preproc_line] = STATE(1889), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_DOT_DOT] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__else] = ACTIONS(2882), + [sym__elif] = ACTIONS(2882), }, [1890] = { [sym_xml_doc] = STATE(1890), [sym_block_comment] = STATE(1890), [sym_preproc_line] = STATE(1890), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - [sym__then] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [1891] = { [sym_xml_doc] = STATE(1891), [sym_block_comment] = STATE(1891), [sym_preproc_line] = STATE(1891), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_DOT_DOT] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + [sym__else] = ACTIONS(2878), + [sym__elif] = ACTIONS(2878), }, [1892] = { [sym_xml_doc] = STATE(1892), [sym_block_comment] = STATE(1892), [sym_preproc_line] = STATE(1892), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_DOT_DOT] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), }, [1893] = { [sym_xml_doc] = STATE(1893), [sym_block_comment] = STATE(1893), [sym_preproc_line] = STATE(1893), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_and] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [aux_sym_access_modifier_token1] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(3693), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_member] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_val] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), }, [1894] = { [sym_xml_doc] = STATE(1894), [sym_block_comment] = STATE(1894), [sym_preproc_line] = STATE(1894), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - [sym__then] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), }, [1895] = { [sym_xml_doc] = STATE(1895), [sym_block_comment] = STATE(1895), [sym_preproc_line] = STATE(1895), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), - [sym__then] = ACTIONS(2816), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), }, [1896] = { [sym_xml_doc] = STATE(1896), [sym_block_comment] = STATE(1896), [sym_preproc_line] = STATE(1896), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_DOT_DOT] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), }, [1897] = { + [sym_attributes] = STATE(3700), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4544), + [sym_member_defn] = STATE(2162), + [sym_additional_constr_defn] = STATE(2164), [sym_xml_doc] = STATE(1897), [sym_block_comment] = STATE(1897), [sym_preproc_line] = STATE(1897), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - [sym__then] = ACTIONS(2966), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(1897), + [ts_builtin_sym_end] = ACTIONS(3695), + [sym_identifier] = ACTIONS(3697), + [anon_sym_namespace] = ACTIONS(3697), + [anon_sym_module] = ACTIONS(3697), + [anon_sym_POUNDnowarn] = ACTIONS(3695), + [anon_sym_POUNDr] = ACTIONS(3695), + [anon_sym_POUNDload] = ACTIONS(3695), + [anon_sym_open] = ACTIONS(3697), + [anon_sym_LBRACK_LT] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_type] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3695), + [aux_sym_access_modifier_token1] = ACTIONS(3702), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_SQUOTE] = ACTIONS(3695), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_member] = ACTIONS(3711), + [anon_sym_abstract] = ACTIONS(3714), + [anon_sym_override] = ACTIONS(3717), + [anon_sym_default] = ACTIONS(3717), + [anon_sym_val] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3695), + [aux_sym__identifier_or_op_token1] = ACTIONS(3695), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3695), + [anon_sym_DASH_DOT] = ACTIONS(3695), + [anon_sym_PERCENT] = ACTIONS(3695), + [anon_sym_AMP_AMP] = ACTIONS(3695), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3695), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3695), }, [1898] = { [sym_xml_doc] = STATE(1898), [sym_block_comment] = STATE(1898), [sym_preproc_line] = STATE(1898), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), - [sym__then] = ACTIONS(2970), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), }, [1899] = { [sym_xml_doc] = STATE(1899), [sym_block_comment] = STATE(1899), [sym_preproc_line] = STATE(1899), - [sym_identifier] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_let_BANG] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_LBRACK_PIPE] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_LBRACE_PIPE] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_return_BANG] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_yield_BANG] = ACTIONS(2906), - [anon_sym_lazy] = ACTIONS(2904), - [anon_sym_assert] = ACTIONS(2904), - [anon_sym_upcast] = ACTIONS(2904), - [anon_sym_downcast] = ACTIONS(2904), - [anon_sym_LT_AT] = ACTIONS(2904), - [anon_sym_AT_GT] = ACTIONS(2906), - [anon_sym_LT_AT_AT] = ACTIONS(2904), - [anon_sym_AT_AT_GT] = ACTIONS(2906), - [anon_sym_COLON_GT] = ACTIONS(2906), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_fun] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_match_BANG] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2904), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_DOT_LBRACK] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_use_BANG] = ACTIONS(2906), - [anon_sym_do_BANG] = ACTIONS(2906), - [anon_sym_begin] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_AT_DQUOTE] = ACTIONS(2906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), - [sym_bool] = ACTIONS(2904), - [sym_unit] = ACTIONS(2904), - [aux_sym__identifier_or_op_token1] = ACTIONS(2904), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS_DOT] = ACTIONS(2904), - [anon_sym_DASH_DOT] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2906), - [aux_sym_prefix_op_token1] = ACTIONS(2906), - [aux_sym_infix_op_token1] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2904), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), - [sym_int] = ACTIONS(2904), - [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2906), - [sym__newline] = ACTIONS(2906), - [sym__then] = ACTIONS(2906), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), + [sym__then] = ACTIONS(3145), }, [1900] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1900), [sym_block_comment] = STATE(1900), [sym_preproc_line] = STATE(1900), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3608), - [sym_identifier] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_POUNDnowarn] = ACTIONS(3608), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3608), - [aux_sym_access_modifier_token1] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_member] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_val] = ACTIONS(3610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3608), - [aux_sym__identifier_or_op_token1] = ACTIONS(3608), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3608), - [anon_sym_DASH_DOT] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3608), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), + [sym__then] = ACTIONS(3064), }, [1901] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), [sym_xml_doc] = STATE(1901), [sym_block_comment] = STATE(1901), [sym_preproc_line] = STATE(1901), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3612), - [sym_identifier] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_POUNDnowarn] = ACTIONS(3612), - [anon_sym_POUNDr] = ACTIONS(3612), - [anon_sym_POUNDload] = ACTIONS(3612), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_LBRACK_LT] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_and] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3612), - [aux_sym_access_modifier_token1] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_member] = ACTIONS(3614), - [anon_sym_abstract] = ACTIONS(3614), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_val] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3612), - [aux_sym__identifier_or_op_token1] = ACTIONS(3612), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3612), - [anon_sym_DASH_DOT] = ACTIONS(3612), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3612), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3612), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), + [sym__then] = ACTIONS(2946), }, [1902] = { [sym_xml_doc] = STATE(1902), [sym_block_comment] = STATE(1902), [sym_preproc_line] = STATE(1902), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), - [sym__then] = ACTIONS(2974), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [sym__then] = ACTIONS(2780), }, [1903] = { [sym_xml_doc] = STATE(1903), [sym_block_comment] = STATE(1903), [sym_preproc_line] = STATE(1903), - [sym_identifier] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2816), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2816), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2816), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2816), - [anon_sym_COLON_GT] = ACTIONS(2816), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2816), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2816), - [anon_sym_do_BANG] = ACTIONS(2816), - [anon_sym_DOT_DOT] = ACTIONS(2816), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2816), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [aux_sym__identifier_or_op_token1] = ACTIONS(2814), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2816), - [aux_sym_prefix_op_token1] = ACTIONS(2816), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2816), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2816), - [sym__newline] = ACTIONS(2816), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), }, [1904] = { [sym_xml_doc] = STATE(1904), [sym_block_comment] = STATE(1904), [sym_preproc_line] = STATE(1904), - [sym_identifier] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_let_BANG] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_COLON_QMARK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LBRACK_PIPE] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_LBRACE_PIPE] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2976), - [anon_sym_return_BANG] = ACTIONS(2978), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_yield_BANG] = ACTIONS(2978), - [anon_sym_lazy] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_upcast] = ACTIONS(2976), - [anon_sym_downcast] = ACTIONS(2976), - [anon_sym_LT_AT] = ACTIONS(2976), - [anon_sym_AT_GT] = ACTIONS(2978), - [anon_sym_LT_AT_AT] = ACTIONS(2976), - [anon_sym_AT_AT_GT] = ACTIONS(2978), - [anon_sym_COLON_GT] = ACTIONS(2978), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_match_BANG] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_DOT_LBRACK] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_use_BANG] = ACTIONS(2978), - [anon_sym_do_BANG] = ACTIONS(2978), - [anon_sym_begin] = ACTIONS(2976), - [anon_sym_LPAREN2] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_AT_DQUOTE] = ACTIONS(2978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2978), - [sym_bool] = ACTIONS(2976), - [sym_unit] = ACTIONS(2976), - [aux_sym__identifier_or_op_token1] = ACTIONS(2976), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_PLUS_DOT] = ACTIONS(2976), - [anon_sym_DASH_DOT] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2978), - [aux_sym_prefix_op_token1] = ACTIONS(2978), - [aux_sym_infix_op_token1] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_DOLLAR] = ACTIONS(2976), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2978), - [sym_int] = ACTIONS(2976), - [sym_xint] = ACTIONS(2978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2978), - [sym__newline] = ACTIONS(2978), - [sym__then] = ACTIONS(2978), + [aux_sym_long_identifier_repeat1] = STATE(1978), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_COLON] = ACTIONS(3685), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_and] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [aux_sym_access_modifier_token1] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_member] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_override] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_val] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2523), }, [1905] = { [sym_xml_doc] = STATE(1905), [sym_block_comment] = STATE(1905), [sym_preproc_line] = STATE(1905), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__then] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), }, [1906] = { [sym_xml_doc] = STATE(1906), [sym_block_comment] = STATE(1906), [sym_preproc_line] = STATE(1906), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__then] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), + [sym__then] = ACTIONS(2976), }, [1907] = { [sym_xml_doc] = STATE(1907), [sym_block_comment] = STATE(1907), [sym_preproc_line] = STATE(1907), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_DOT_DOT] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2648), + [anon_sym_namespace] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_POUNDnowarn] = ACTIONS(2650), + [anon_sym_POUNDr] = ACTIONS(2650), + [anon_sym_POUNDload] = ACTIONS(2650), + [anon_sym_open] = ACTIONS(2648), + [anon_sym_LBRACK_LT] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_and] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [aux_sym_access_modifier_token1] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_LT_AT_AT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_member] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_override] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2650), + [aux_sym__identifier_or_op_token1] = ACTIONS(2650), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2650), + [anon_sym_DASH_DOT] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_AMP_AMP] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), }, [1908] = { [sym_xml_doc] = STATE(1908), [sym_block_comment] = STATE(1908), [sym_preproc_line] = STATE(1908), - [sym_identifier] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym_COLON] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_do] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_let_BANG] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2980), - [anon_sym_QMARK] = ACTIONS(2980), - [anon_sym_COLON_QMARK] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_LBRACK_PIPE] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_LBRACE_PIPE] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2980), - [anon_sym_return_BANG] = ACTIONS(2982), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_yield_BANG] = ACTIONS(2982), - [anon_sym_lazy] = ACTIONS(2980), - [anon_sym_assert] = ACTIONS(2980), - [anon_sym_upcast] = ACTIONS(2980), - [anon_sym_downcast] = ACTIONS(2980), - [anon_sym_LT_AT] = ACTIONS(2980), - [anon_sym_AT_GT] = ACTIONS(2982), - [anon_sym_LT_AT_AT] = ACTIONS(2980), - [anon_sym_AT_AT_GT] = ACTIONS(2982), - [anon_sym_COLON_GT] = ACTIONS(2982), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_fun] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_match_BANG] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2980), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_DOT_LBRACK] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2980), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_use_BANG] = ACTIONS(2982), - [anon_sym_do_BANG] = ACTIONS(2982), - [anon_sym_begin] = ACTIONS(2980), - [anon_sym_LPAREN2] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_or] = ACTIONS(2980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_AT_DQUOTE] = ACTIONS(2982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2982), - [sym_bool] = ACTIONS(2980), - [sym_unit] = ACTIONS(2980), - [aux_sym__identifier_or_op_token1] = ACTIONS(2980), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2980), - [anon_sym_PLUS] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2980), - [anon_sym_PLUS_DOT] = ACTIONS(2980), - [anon_sym_DASH_DOT] = ACTIONS(2980), - [anon_sym_PERCENT] = ACTIONS(2980), - [anon_sym_AMP_AMP] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2982), - [aux_sym_prefix_op_token1] = ACTIONS(2982), - [aux_sym_infix_op_token1] = ACTIONS(2980), - [anon_sym_PIPE_PIPE] = ACTIONS(2980), - [anon_sym_BANG_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_DOLLAR] = ACTIONS(2980), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2982), - [sym_int] = ACTIONS(2980), - [sym_xint] = ACTIONS(2982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2982), - [sym__newline] = ACTIONS(2982), - [sym__then] = ACTIONS(2982), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), }, [1909] = { [sym_xml_doc] = STATE(1909), [sym_block_comment] = STATE(1909), [sym_preproc_line] = STATE(1909), - [sym_identifier] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_do] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_let_BANG] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_COLON_QMARK] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_LBRACK_PIPE] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_LBRACE_PIPE] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2984), - [anon_sym_return_BANG] = ACTIONS(2986), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_yield_BANG] = ACTIONS(2986), - [anon_sym_lazy] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_upcast] = ACTIONS(2984), - [anon_sym_downcast] = ACTIONS(2984), - [anon_sym_LT_AT] = ACTIONS(2984), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2984), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2986), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_fun] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_match_BANG] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_DOT_LBRACK] = ACTIONS(2986), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_use_BANG] = ACTIONS(2986), - [anon_sym_do_BANG] = ACTIONS(2986), - [anon_sym_begin] = ACTIONS(2984), - [anon_sym_LPAREN2] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_or] = ACTIONS(2984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_AT_DQUOTE] = ACTIONS(2986), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2986), - [sym_bool] = ACTIONS(2984), - [sym_unit] = ACTIONS(2984), - [aux_sym__identifier_or_op_token1] = ACTIONS(2984), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_PLUS_DOT] = ACTIONS(2984), - [anon_sym_DASH_DOT] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2986), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2986), - [anon_sym_DOLLAR] = ACTIONS(2984), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2984), - [sym_xint] = ACTIONS(2986), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2986), - [sym__newline] = ACTIONS(2986), - [sym__then] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), + [sym__then] = ACTIONS(2980), }, [1910] = { [sym_xml_doc] = STATE(1910), [sym_block_comment] = STATE(1910), [sym_preproc_line] = STATE(1910), - [sym_identifier] = ACTIONS(2998), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_COLON] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_QMARK] = ACTIONS(2998), - [anon_sym_COLON_QMARK] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_AT_GT] = ACTIONS(3000), - [anon_sym_LT_AT_AT] = ACTIONS(2998), - [anon_sym_AT_AT_GT] = ACTIONS(3000), - [anon_sym_COLON_GT] = ACTIONS(3000), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_LT_DASH] = ACTIONS(2998), - [anon_sym_DOT_LBRACK] = ACTIONS(3000), - [anon_sym_DOT] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_LPAREN2] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(2998), - [aux_sym__identifier_or_op_token1] = ACTIONS(2998), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(2998), - [anon_sym_DASH_DOT] = ACTIONS(2998), - [anon_sym_PERCENT] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [aux_sym_infix_op_token1] = ACTIONS(2998), - [anon_sym_PIPE_PIPE] = ACTIONS(2998), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_COLON_EQ] = ACTIONS(3000), - [anon_sym_DOLLAR] = ACTIONS(2998), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__newline] = ACTIONS(3000), - [sym__then] = ACTIONS(3000), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), + [sym__then] = ACTIONS(2984), }, [1911] = { [sym_xml_doc] = STATE(1911), [sym_block_comment] = STATE(1911), [sym_preproc_line] = STATE(1911), - [sym_identifier] = ACTIONS(3032), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym_COLON] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3032), - [anon_sym_COLON_QMARK] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_AT_GT] = ACTIONS(3034), - [anon_sym_LT_AT_AT] = ACTIONS(3032), - [anon_sym_AT_AT_GT] = ACTIONS(3034), - [anon_sym_COLON_GT] = ACTIONS(3034), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_DOT_LBRACK] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_LPAREN2] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3032), - [aux_sym__identifier_or_op_token1] = ACTIONS(3032), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3032), - [anon_sym_DASH_DOT] = ACTIONS(3032), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [aux_sym_infix_op_token1] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_DOLLAR] = ACTIONS(3032), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__newline] = ACTIONS(3034), - [sym__then] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), }, [1912] = { [sym_xml_doc] = STATE(1912), [sym_block_comment] = STATE(1912), [sym_preproc_line] = STATE(1912), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - [sym__then] = ACTIONS(2225), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_DOT_DOT] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), }, [1913] = { [sym_xml_doc] = STATE(1913), [sym_block_comment] = STATE(1913), [sym_preproc_line] = STATE(1913), - [sym_identifier] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_let_BANG] = ACTIONS(3024), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_COLON_QMARK] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACK_PIPE] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_LBRACE_PIPE] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_return_BANG] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3022), - [anon_sym_yield_BANG] = ACTIONS(3024), - [anon_sym_lazy] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_upcast] = ACTIONS(3022), - [anon_sym_downcast] = ACTIONS(3022), - [anon_sym_LT_AT] = ACTIONS(3022), - [anon_sym_AT_GT] = ACTIONS(3024), - [anon_sym_LT_AT_AT] = ACTIONS(3022), - [anon_sym_AT_AT_GT] = ACTIONS(3024), - [anon_sym_COLON_GT] = ACTIONS(3024), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_fun] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_match_BANG] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_DOT_LBRACK] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3022), - [anon_sym_use_BANG] = ACTIONS(3024), - [anon_sym_do_BANG] = ACTIONS(3024), - [anon_sym_DOT_DOT] = ACTIONS(3024), - [anon_sym_begin] = ACTIONS(3022), - [anon_sym_LPAREN2] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), - [anon_sym_DQUOTE] = ACTIONS(3022), - [anon_sym_AT_DQUOTE] = ACTIONS(3024), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3024), - [sym_bool] = ACTIONS(3022), - [sym_unit] = ACTIONS(3022), - [aux_sym__identifier_or_op_token1] = ACTIONS(3022), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_PLUS_DOT] = ACTIONS(3022), - [anon_sym_DASH_DOT] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_prefix_op_token1] = ACTIONS(3024), - [aux_sym_infix_op_token1] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_COLON_EQ] = ACTIONS(3024), - [anon_sym_DOLLAR] = ACTIONS(3022), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), - [sym_int] = ACTIONS(3022), - [sym_xint] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3024), - [sym__newline] = ACTIONS(3024), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), + [sym__then] = ACTIONS(2995), }, [1914] = { [sym_xml_doc] = STATE(1914), [sym_block_comment] = STATE(1914), [sym_preproc_line] = STATE(1914), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - [sym__then] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [1915] = { [sym_xml_doc] = STATE(1915), [sym_block_comment] = STATE(1915), [sym_preproc_line] = STATE(1915), - [sym_identifier] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_COLON] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_let_BANG] = ACTIONS(3004), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_COLON_QMARK] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACK_PIPE] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LBRACE_PIPE] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_return_BANG] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_yield_BANG] = ACTIONS(3004), - [anon_sym_lazy] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_upcast] = ACTIONS(3002), - [anon_sym_downcast] = ACTIONS(3002), - [anon_sym_LT_AT] = ACTIONS(3002), - [anon_sym_AT_GT] = ACTIONS(3004), - [anon_sym_LT_AT_AT] = ACTIONS(3002), - [anon_sym_AT_AT_GT] = ACTIONS(3004), - [anon_sym_COLON_GT] = ACTIONS(3004), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_fun] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_match_BANG] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_DOT_LBRACK] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3002), - [anon_sym_use_BANG] = ACTIONS(3004), - [anon_sym_do_BANG] = ACTIONS(3004), - [anon_sym_begin] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_AT_DQUOTE] = ACTIONS(3004), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3004), - [sym_bool] = ACTIONS(3002), - [sym_unit] = ACTIONS(3002), - [aux_sym__identifier_or_op_token1] = ACTIONS(3002), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_PLUS_DOT] = ACTIONS(3002), - [anon_sym_DASH_DOT] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_prefix_op_token1] = ACTIONS(3004), - [aux_sym_infix_op_token1] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_COLON_EQ] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3002), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3004), - [sym_int] = ACTIONS(3002), - [sym_xint] = ACTIONS(3004), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3004), - [sym__newline] = ACTIONS(3004), - [sym__then] = ACTIONS(3004), + [aux_sym__compound_type_repeat1] = STATE(1915), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2319), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_and] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [aux_sym_access_modifier_token1] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(3725), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_member] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2319), + [anon_sym_abstract] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_val] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), }, [1916] = { [sym_xml_doc] = STATE(1916), [sym_block_comment] = STATE(1916), [sym_preproc_line] = STATE(1916), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__then] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), }, [1917] = { [sym_xml_doc] = STATE(1917), [sym_block_comment] = STATE(1917), [sym_preproc_line] = STATE(1917), - [sym_identifier] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_do] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_let_BANG] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2972), - [anon_sym_COLON_QMARK] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2972), - [anon_sym_return_BANG] = ACTIONS(2974), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_yield_BANG] = ACTIONS(2974), - [anon_sym_lazy] = ACTIONS(2972), - [anon_sym_assert] = ACTIONS(2972), - [anon_sym_upcast] = ACTIONS(2972), - [anon_sym_downcast] = ACTIONS(2972), - [anon_sym_LT_AT] = ACTIONS(2972), - [anon_sym_AT_GT] = ACTIONS(2974), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_AT_AT_GT] = ACTIONS(2974), - [anon_sym_COLON_GT] = ACTIONS(2974), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_fun] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_match_BANG] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_DOT_LBRACK] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_use_BANG] = ACTIONS(2974), - [anon_sym_do_BANG] = ACTIONS(2974), - [anon_sym_DOT_DOT] = ACTIONS(2974), - [anon_sym_begin] = ACTIONS(2972), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_AT_DQUOTE] = ACTIONS(2974), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2974), - [sym_bool] = ACTIONS(2972), - [sym_unit] = ACTIONS(2972), - [aux_sym__identifier_or_op_token1] = ACTIONS(2972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2972), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2974), - [aux_sym_prefix_op_token1] = ACTIONS(2974), - [aux_sym_infix_op_token1] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_DOLLAR] = ACTIONS(2972), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2974), - [sym_int] = ACTIONS(2972), - [sym_xint] = ACTIONS(2974), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2974), - [sym__newline] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), }, [1918] = { [sym_xml_doc] = STATE(1918), [sym_block_comment] = STATE(1918), [sym_preproc_line] = STATE(1918), - [sym_identifier] = ACTIONS(2780), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_let_BANG] = ACTIONS(2782), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_LBRACK_PIPE] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACE_PIPE] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_return_BANG] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_yield_BANG] = ACTIONS(2782), - [anon_sym_lazy] = ACTIONS(2780), - [anon_sym_assert] = ACTIONS(2780), - [anon_sym_upcast] = ACTIONS(2780), - [anon_sym_downcast] = ACTIONS(2780), - [anon_sym_LT_AT] = ACTIONS(2780), - [anon_sym_AT_GT] = ACTIONS(2782), - [anon_sym_LT_AT_AT] = ACTIONS(2780), - [anon_sym_AT_AT_GT] = ACTIONS(2782), - [anon_sym_COLON_GT] = ACTIONS(2782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_fun] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_match_BANG] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_DOT_LBRACK] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_use_BANG] = ACTIONS(2782), - [anon_sym_do_BANG] = ACTIONS(2782), - [anon_sym_begin] = ACTIONS(2780), - [anon_sym_LPAREN2] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_AT_DQUOTE] = ACTIONS(2782), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2782), - [sym_bool] = ACTIONS(2780), - [sym_unit] = ACTIONS(2780), - [aux_sym__identifier_or_op_token1] = ACTIONS(2780), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_PLUS_DOT] = ACTIONS(2780), - [anon_sym_DASH_DOT] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_prefix_op_token1] = ACTIONS(2782), - [aux_sym_infix_op_token1] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2782), - [sym_int] = ACTIONS(2780), - [sym_xint] = ACTIONS(2782), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2782), - [sym__newline] = ACTIONS(2782), - [sym__then] = ACTIONS(2782), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_DOT_DOT] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), }, [1919] = { [sym_xml_doc] = STATE(1919), [sym_block_comment] = STATE(1919), [sym_preproc_line] = STATE(1919), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - [sym__then] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), }, [1920] = { [sym_xml_doc] = STATE(1920), [sym_block_comment] = STATE(1920), [sym_preproc_line] = STATE(1920), - [sym_identifier] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_let_BANG] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_COLON_QMARK] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_return_BANG] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_yield_BANG] = ACTIONS(2970), - [anon_sym_lazy] = ACTIONS(2968), - [anon_sym_assert] = ACTIONS(2968), - [anon_sym_upcast] = ACTIONS(2968), - [anon_sym_downcast] = ACTIONS(2968), - [anon_sym_LT_AT] = ACTIONS(2968), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2970), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_fun] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_match_BANG] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2968), - [anon_sym_LT_DASH] = ACTIONS(2968), - [anon_sym_DOT_LBRACK] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_use_BANG] = ACTIONS(2970), - [anon_sym_do_BANG] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2970), - [anon_sym_begin] = ACTIONS(2968), - [anon_sym_LPAREN2] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_AT_DQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2970), - [sym_bool] = ACTIONS(2968), - [sym_unit] = ACTIONS(2968), - [aux_sym__identifier_or_op_token1] = ACTIONS(2968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2970), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2968), - [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2968), - [sym_xint] = ACTIONS(2970), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2970), - [sym__newline] = ACTIONS(2970), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), }, [1921] = { [sym_xml_doc] = STATE(1921), [sym_block_comment] = STATE(1921), [sym_preproc_line] = STATE(1921), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), - [sym__then] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + [sym__then] = ACTIONS(2605), }, [1922] = { [sym_xml_doc] = STATE(1922), [sym_block_comment] = STATE(1922), [sym_preproc_line] = STATE(1922), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_and] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [aux_sym_access_modifier_token1] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_member] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_val] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), }, [1923] = { [sym_xml_doc] = STATE(1923), [sym_block_comment] = STATE(1923), [sym_preproc_line] = STATE(1923), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_COLON_QMARK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_upcast] = ACTIONS(2802), - [anon_sym_downcast] = ACTIONS(2802), - [anon_sym_LT_AT] = ACTIONS(2802), - [anon_sym_AT_GT] = ACTIONS(2804), - [anon_sym_LT_AT_AT] = ACTIONS(2802), - [anon_sym_AT_AT_GT] = ACTIONS(2804), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_fun] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2802), - [sym_unit] = ACTIONS(2802), - [aux_sym__identifier_or_op_token1] = ACTIONS(2802), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS_DOT] = ACTIONS(2802), - [anon_sym_DASH_DOT] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [aux_sym_infix_op_token1] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2802), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2804), - [sym_int] = ACTIONS(2802), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_DOT_DOT] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), }, [1924] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), [sym_xml_doc] = STATE(1924), [sym_block_comment] = STATE(1924), [sym_preproc_line] = STATE(1924), - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_and] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [aux_sym_access_modifier_token1] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_member] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_override] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_val] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_POUNDnowarn] = ACTIONS(3728), + [anon_sym_POUNDr] = ACTIONS(3728), + [anon_sym_POUNDload] = ACTIONS(3728), + [anon_sym_open] = ACTIONS(3730), + [anon_sym_LBRACK_LT] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_type] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_and] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3728), + [aux_sym_access_modifier_token1] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_member] = ACTIONS(3730), + [anon_sym_abstract] = ACTIONS(3730), + [anon_sym_override] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_val] = ACTIONS(3730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3728), + [aux_sym__identifier_or_op_token1] = ACTIONS(3728), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3728), + [anon_sym_DASH_DOT] = ACTIONS(3728), + [anon_sym_PERCENT] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3728), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3728), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(3728), }, [1925] = { [sym_xml_doc] = STATE(1925), [sym_block_comment] = STATE(1925), [sym_preproc_line] = STATE(1925), - [sym_identifier] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2808), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2808), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [aux_sym__identifier_or_op_token1] = ACTIONS(2806), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2808), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym_long_identifier_repeat1] = STATE(1978), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_and] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [aux_sym_access_modifier_token1] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_member] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_override] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_val] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2523), }, [1926] = { [sym_xml_doc] = STATE(1926), [sym_block_comment] = STATE(1926), [sym_preproc_line] = STATE(1926), - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_POUNDnowarn] = ACTIONS(2603), - [anon_sym_POUNDr] = ACTIONS(2603), - [anon_sym_POUNDload] = ACTIONS(2603), - [anon_sym_open] = ACTIONS(2601), - [anon_sym_LBRACK_LT] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_and] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [aux_sym_access_modifier_token1] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_LT_AT_AT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_member] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_override] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_val] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2603), - [aux_sym__identifier_or_op_token1] = ACTIONS(2603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2603), - [anon_sym_DASH_DOT] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_DOT_DOT] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), }, [1927] = { [sym_xml_doc] = STATE(1927), [sym_block_comment] = STATE(1927), [sym_preproc_line] = STATE(1927), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2812), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2812), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [aux_sym__identifier_or_op_token1] = ACTIONS(2810), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2812), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - }, - [1928] = { - [sym_xml_doc] = STATE(1928), - [sym_block_comment] = STATE(1928), - [sym_preproc_line] = STATE(1928), - [sym_identifier] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_let_BANG] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACK_PIPE] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_LBRACE_PIPE] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_return_BANG] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_yield_BANG] = ACTIONS(2824), - [anon_sym_lazy] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_upcast] = ACTIONS(2822), - [anon_sym_downcast] = ACTIONS(2822), - [anon_sym_LT_AT] = ACTIONS(2822), - [anon_sym_AT_GT] = ACTIONS(2824), - [anon_sym_LT_AT_AT] = ACTIONS(2822), - [anon_sym_AT_AT_GT] = ACTIONS(2824), - [anon_sym_COLON_GT] = ACTIONS(2824), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_match_BANG] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_DOT_LBRACK] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_use_BANG] = ACTIONS(2824), - [anon_sym_do_BANG] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2824), - [anon_sym_begin] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [anon_sym_AT_DQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2824), - [sym_bool] = ACTIONS(2822), - [sym_unit] = ACTIONS(2822), - [aux_sym__identifier_or_op_token1] = ACTIONS(2822), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS_DOT] = ACTIONS(2822), - [anon_sym_DASH_DOT] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2824), - [aux_sym_prefix_op_token1] = ACTIONS(2824), - [aux_sym_infix_op_token1] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2824), - [sym_int] = ACTIONS(2822), - [sym_xint] = ACTIONS(2824), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2824), - [sym__newline] = ACTIONS(2824), - }, - [1929] = { - [sym_xml_doc] = STATE(1929), - [sym_block_comment] = STATE(1929), - [sym_preproc_line] = STATE(1929), - [sym_identifier] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_do] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_let_BANG] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_COLON_QMARK] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_LBRACK_PIPE] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_LBRACE_PIPE] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2964), - [anon_sym_return_BANG] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_yield_BANG] = ACTIONS(2966), - [anon_sym_lazy] = ACTIONS(2964), - [anon_sym_assert] = ACTIONS(2964), - [anon_sym_upcast] = ACTIONS(2964), - [anon_sym_downcast] = ACTIONS(2964), - [anon_sym_LT_AT] = ACTIONS(2964), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2964), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2966), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_fun] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_match_BANG] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2964), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_DOT_LBRACK] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_use_BANG] = ACTIONS(2966), - [anon_sym_do_BANG] = ACTIONS(2966), - [anon_sym_DOT_DOT] = ACTIONS(2966), - [anon_sym_begin] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_AT_DQUOTE] = ACTIONS(2966), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2966), - [sym_bool] = ACTIONS(2964), - [sym_unit] = ACTIONS(2964), - [aux_sym__identifier_or_op_token1] = ACTIONS(2964), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2964), - [anon_sym_PLUS_DOT] = ACTIONS(2964), - [anon_sym_DASH_DOT] = ACTIONS(2964), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2966), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_DOLLAR] = ACTIONS(2964), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2964), - [sym_xint] = ACTIONS(2966), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2966), - [sym__newline] = ACTIONS(2966), - }, - [1930] = { - [sym_xml_doc] = STATE(1930), - [sym_block_comment] = STATE(1930), - [sym_preproc_line] = STATE(1930), - [sym_identifier] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_do] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_let_BANG] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_COLON_QMARK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LBRACK_PIPE] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_LBRACE_PIPE] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_return_BANG] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_yield_BANG] = ACTIONS(2962), - [anon_sym_lazy] = ACTIONS(2960), - [anon_sym_assert] = ACTIONS(2960), - [anon_sym_upcast] = ACTIONS(2960), - [anon_sym_downcast] = ACTIONS(2960), - [anon_sym_LT_AT] = ACTIONS(2960), - [anon_sym_AT_GT] = ACTIONS(2962), - [anon_sym_LT_AT_AT] = ACTIONS(2960), - [anon_sym_AT_AT_GT] = ACTIONS(2962), - [anon_sym_COLON_GT] = ACTIONS(2962), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_fun] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_match_BANG] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2960), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_DOT_LBRACK] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_use_BANG] = ACTIONS(2962), - [anon_sym_do_BANG] = ACTIONS(2962), - [anon_sym_DOT_DOT] = ACTIONS(2962), - [anon_sym_begin] = ACTIONS(2960), - [anon_sym_LPAREN2] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_AT_DQUOTE] = ACTIONS(2962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2962), - [sym_bool] = ACTIONS(2960), - [sym_unit] = ACTIONS(2960), - [aux_sym__identifier_or_op_token1] = ACTIONS(2960), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS_DOT] = ACTIONS(2960), - [anon_sym_DASH_DOT] = ACTIONS(2960), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [aux_sym_prefix_op_token1] = ACTIONS(2962), - [aux_sym_infix_op_token1] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_DOLLAR] = ACTIONS(2960), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2962), - [sym_int] = ACTIONS(2960), - [sym_xint] = ACTIONS(2962), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2962), - [sym__newline] = ACTIONS(2962), - }, - [1931] = { - [sym_xml_doc] = STATE(1931), - [sym_block_comment] = STATE(1931), - [sym_preproc_line] = STATE(1931), - [sym_identifier] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2786), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_let_BANG] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACK_PIPE] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACE_PIPE] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_return_BANG] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_yield_BANG] = ACTIONS(2786), - [anon_sym_lazy] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_upcast] = ACTIONS(2784), - [anon_sym_downcast] = ACTIONS(2784), - [anon_sym_LT_AT] = ACTIONS(2784), - [anon_sym_AT_GT] = ACTIONS(2786), - [anon_sym_LT_AT_AT] = ACTIONS(2784), - [anon_sym_AT_AT_GT] = ACTIONS(2786), - [anon_sym_COLON_GT] = ACTIONS(2786), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_fun] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_match_BANG] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_DOT_LBRACK] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_use_BANG] = ACTIONS(2786), - [anon_sym_do_BANG] = ACTIONS(2786), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_begin] = ACTIONS(2784), - [anon_sym_LPAREN2] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_AT_DQUOTE] = ACTIONS(2786), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2786), - [sym_bool] = ACTIONS(2784), - [sym_unit] = ACTIONS(2784), - [aux_sym__identifier_or_op_token1] = ACTIONS(2784), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_PLUS_DOT] = ACTIONS(2784), - [anon_sym_DASH_DOT] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_prefix_op_token1] = ACTIONS(2786), - [aux_sym_infix_op_token1] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_COLON_EQ] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2784), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2786), - [sym_int] = ACTIONS(2784), - [sym_xint] = ACTIONS(2786), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2786), - [sym__newline] = ACTIONS(2786), - }, - [1932] = { - [sym_xml_doc] = STATE(1932), - [sym_block_comment] = STATE(1932), - [sym_preproc_line] = STATE(1932), - [sym_identifier] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym_COLON] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_let_BANG] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_COLON_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACK_PIPE] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_LBRACE_PIPE] = ACTIONS(2800), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_return_BANG] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_yield_BANG] = ACTIONS(2800), - [anon_sym_lazy] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_upcast] = ACTIONS(2798), - [anon_sym_downcast] = ACTIONS(2798), - [anon_sym_LT_AT] = ACTIONS(2798), - [anon_sym_AT_GT] = ACTIONS(2800), - [anon_sym_LT_AT_AT] = ACTIONS(2798), - [anon_sym_AT_AT_GT] = ACTIONS(2800), - [anon_sym_COLON_GT] = ACTIONS(2800), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_fun] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_match_BANG] = ACTIONS(2800), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_DOT_LBRACK] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_use_BANG] = ACTIONS(2800), - [anon_sym_do_BANG] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2800), - [anon_sym_begin] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), - [anon_sym_DQUOTE] = ACTIONS(2798), - [anon_sym_AT_DQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2800), - [sym_bool] = ACTIONS(2798), - [sym_unit] = ACTIONS(2798), - [aux_sym__identifier_or_op_token1] = ACTIONS(2798), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS_DOT] = ACTIONS(2798), - [anon_sym_DASH_DOT] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2800), - [aux_sym_prefix_op_token1] = ACTIONS(2800), - [aux_sym_infix_op_token1] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2800), - [sym_int] = ACTIONS(2798), - [sym_xint] = ACTIONS(2800), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - }, - [1933] = { - [sym_xml_doc] = STATE(1933), - [sym_block_comment] = STATE(1933), - [sym_preproc_line] = STATE(1933), - [sym_identifier] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_let_BANG] = ACTIONS(2828), - [anon_sym_null] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_COLON_QMARK] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACK_PIPE] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_LBRACE_PIPE] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_return_BANG] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_yield_BANG] = ACTIONS(2828), - [anon_sym_lazy] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_upcast] = ACTIONS(2826), - [anon_sym_downcast] = ACTIONS(2826), - [anon_sym_LT_AT] = ACTIONS(2826), - [anon_sym_AT_GT] = ACTIONS(2828), - [anon_sym_LT_AT_AT] = ACTIONS(2826), - [anon_sym_AT_AT_GT] = ACTIONS(2828), - [anon_sym_COLON_GT] = ACTIONS(2828), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_fun] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_match_BANG] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_DOT_LBRACK] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_use_BANG] = ACTIONS(2828), - [anon_sym_do_BANG] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(2828), - [anon_sym_begin] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2826), - [anon_sym_AT_DQUOTE] = ACTIONS(2828), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2828), - [sym_bool] = ACTIONS(2826), - [sym_unit] = ACTIONS(2826), - [aux_sym__identifier_or_op_token1] = ACTIONS(2826), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS_DOT] = ACTIONS(2826), - [anon_sym_DASH_DOT] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2828), - [aux_sym_prefix_op_token1] = ACTIONS(2828), - [aux_sym_infix_op_token1] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_DOLLAR] = ACTIONS(2826), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2828), - [sym_int] = ACTIONS(2826), - [sym_xint] = ACTIONS(2828), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2828), - [sym__newline] = ACTIONS(2828), - }, - [1934] = { - [sym_xml_doc] = STATE(1934), - [sym_block_comment] = STATE(1934), - [sym_preproc_line] = STATE(1934), - [sym_identifier] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_let_BANG] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACK_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_LBRACE_PIPE] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_return_BANG] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_yield_BANG] = ACTIONS(2832), - [anon_sym_lazy] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_upcast] = ACTIONS(2830), - [anon_sym_downcast] = ACTIONS(2830), - [anon_sym_LT_AT] = ACTIONS(2830), - [anon_sym_AT_GT] = ACTIONS(2832), - [anon_sym_LT_AT_AT] = ACTIONS(2830), - [anon_sym_AT_AT_GT] = ACTIONS(2832), - [anon_sym_COLON_GT] = ACTIONS(2832), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_fun] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_match_BANG] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_DOT_LBRACK] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_use_BANG] = ACTIONS(2832), - [anon_sym_do_BANG] = ACTIONS(2832), - [anon_sym_DOT_DOT] = ACTIONS(2832), - [anon_sym_begin] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_AT_DQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2832), - [sym_bool] = ACTIONS(2830), - [sym_unit] = ACTIONS(2830), - [aux_sym__identifier_or_op_token1] = ACTIONS(2830), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS_DOT] = ACTIONS(2830), - [anon_sym_DASH_DOT] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2832), - [aux_sym_prefix_op_token1] = ACTIONS(2832), - [aux_sym_infix_op_token1] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2830), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2832), - [sym_int] = ACTIONS(2830), - [sym_xint] = ACTIONS(2832), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2832), - [sym__newline] = ACTIONS(2832), - }, - [1935] = { - [sym_xml_doc] = STATE(1935), - [sym_block_comment] = STATE(1935), - [sym_preproc_line] = STATE(1935), - [sym_identifier] = ACTIONS(2776), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_AT_GT] = ACTIONS(2778), - [anon_sym_LT_AT_AT] = ACTIONS(2776), - [anon_sym_AT_AT_GT] = ACTIONS(2778), - [anon_sym_COLON_GT] = ACTIONS(2778), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_LPAREN2] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2776), - [aux_sym__identifier_or_op_token1] = ACTIONS(2776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2776), - [anon_sym_DASH_DOT] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [aux_sym_infix_op_token1] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__newline] = ACTIONS(2778), - [sym__then] = ACTIONS(2778), - }, - [1936] = { - [sym_xml_doc] = STATE(1936), - [sym_block_comment] = STATE(1936), - [sym_preproc_line] = STATE(1936), - [sym_identifier] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_let_BANG] = ACTIONS(2836), - [anon_sym_null] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_COLON_QMARK] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACK_PIPE] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_LBRACE_PIPE] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_return_BANG] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_yield_BANG] = ACTIONS(2836), - [anon_sym_lazy] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_upcast] = ACTIONS(2834), - [anon_sym_downcast] = ACTIONS(2834), - [anon_sym_LT_AT] = ACTIONS(2834), - [anon_sym_AT_GT] = ACTIONS(2836), - [anon_sym_LT_AT_AT] = ACTIONS(2834), - [anon_sym_AT_AT_GT] = ACTIONS(2836), - [anon_sym_COLON_GT] = ACTIONS(2836), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_fun] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_match_BANG] = ACTIONS(2836), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_DOT_LBRACK] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2834), - [anon_sym_use_BANG] = ACTIONS(2836), - [anon_sym_do_BANG] = ACTIONS(2836), - [anon_sym_DOT_DOT] = ACTIONS(2836), - [anon_sym_begin] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2834), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_AT_DQUOTE] = ACTIONS(2836), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2836), - [sym_bool] = ACTIONS(2834), - [sym_unit] = ACTIONS(2834), - [aux_sym__identifier_or_op_token1] = ACTIONS(2834), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS_DOT] = ACTIONS(2834), - [anon_sym_DASH_DOT] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2836), - [aux_sym_prefix_op_token1] = ACTIONS(2836), - [aux_sym_infix_op_token1] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2836), - [sym_int] = ACTIONS(2834), - [sym_xint] = ACTIONS(2836), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2836), - [sym__newline] = ACTIONS(2836), - }, - [1937] = { - [sym_xml_doc] = STATE(1937), - [sym_block_comment] = STATE(1937), - [sym_preproc_line] = STATE(1937), - [sym_identifier] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_let_BANG] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACK_PIPE] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_LBRACE_PIPE] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_return_BANG] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_yield_BANG] = ACTIONS(2840), - [anon_sym_lazy] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_upcast] = ACTIONS(2838), - [anon_sym_downcast] = ACTIONS(2838), - [anon_sym_LT_AT] = ACTIONS(2838), - [anon_sym_AT_GT] = ACTIONS(2840), - [anon_sym_LT_AT_AT] = ACTIONS(2838), - [anon_sym_AT_AT_GT] = ACTIONS(2840), - [anon_sym_COLON_GT] = ACTIONS(2840), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_fun] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_match_BANG] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_DOT_LBRACK] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2838), - [anon_sym_use_BANG] = ACTIONS(2840), - [anon_sym_do_BANG] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2840), - [anon_sym_begin] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_AT_DQUOTE] = ACTIONS(2840), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2840), - [sym_bool] = ACTIONS(2838), - [sym_unit] = ACTIONS(2838), - [aux_sym__identifier_or_op_token1] = ACTIONS(2838), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS_DOT] = ACTIONS(2838), - [anon_sym_DASH_DOT] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2840), - [aux_sym_prefix_op_token1] = ACTIONS(2840), - [aux_sym_infix_op_token1] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_DOLLAR] = ACTIONS(2838), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2840), - [sym_int] = ACTIONS(2838), - [sym_xint] = ACTIONS(2840), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2840), - [sym__newline] = ACTIONS(2840), - }, - [1938] = { - [sym_xml_doc] = STATE(1938), - [sym_block_comment] = STATE(1938), - [sym_preproc_line] = STATE(1938), - [sym_identifier] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym_COLON] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_let_BANG] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_COLON_QMARK] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACK_PIPE] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LBRACE_PIPE] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_return_BANG] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_yield_BANG] = ACTIONS(2844), - [anon_sym_lazy] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_upcast] = ACTIONS(2842), - [anon_sym_downcast] = ACTIONS(2842), - [anon_sym_LT_AT] = ACTIONS(2842), - [anon_sym_AT_GT] = ACTIONS(2844), - [anon_sym_LT_AT_AT] = ACTIONS(2842), - [anon_sym_AT_AT_GT] = ACTIONS(2844), - [anon_sym_COLON_GT] = ACTIONS(2844), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_fun] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_match_BANG] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_DOT_LBRACK] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2842), - [anon_sym_use_BANG] = ACTIONS(2844), - [anon_sym_do_BANG] = ACTIONS(2844), - [anon_sym_DOT_DOT] = ACTIONS(2844), - [anon_sym_begin] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [anon_sym_AT_DQUOTE] = ACTIONS(2844), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2844), - [sym_bool] = ACTIONS(2842), - [sym_unit] = ACTIONS(2842), - [aux_sym__identifier_or_op_token1] = ACTIONS(2842), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS_DOT] = ACTIONS(2842), - [anon_sym_DASH_DOT] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_prefix_op_token1] = ACTIONS(2844), - [aux_sym_infix_op_token1] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_DOLLAR] = ACTIONS(2842), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2844), - [sym_int] = ACTIONS(2842), - [sym_xint] = ACTIONS(2844), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2844), - [sym__newline] = ACTIONS(2844), - }, - [1939] = { - [sym_xml_doc] = STATE(1939), - [sym_block_comment] = STATE(1939), - [sym_preproc_line] = STATE(1939), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - }, - [1940] = { - [sym_xml_doc] = STATE(1940), - [sym_block_comment] = STATE(1940), - [sym_preproc_line] = STATE(1940), - [sym_identifier] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_COLON] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_let_BANG] = ACTIONS(3008), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_COLON_QMARK] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACK_PIPE] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_LBRACE_PIPE] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_return_BANG] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3006), - [anon_sym_yield_BANG] = ACTIONS(3008), - [anon_sym_lazy] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_upcast] = ACTIONS(3006), - [anon_sym_downcast] = ACTIONS(3006), - [anon_sym_LT_AT] = ACTIONS(3006), - [anon_sym_AT_GT] = ACTIONS(3008), - [anon_sym_LT_AT_AT] = ACTIONS(3006), - [anon_sym_AT_AT_GT] = ACTIONS(3008), - [anon_sym_COLON_GT] = ACTIONS(3008), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_fun] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_match_BANG] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_DOT_LBRACK] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3006), - [anon_sym_use_BANG] = ACTIONS(3008), - [anon_sym_do_BANG] = ACTIONS(3008), - [anon_sym_begin] = ACTIONS(3006), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_AT_DQUOTE] = ACTIONS(3008), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3008), - [sym_bool] = ACTIONS(3006), - [sym_unit] = ACTIONS(3006), - [aux_sym__identifier_or_op_token1] = ACTIONS(3006), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_PLUS_DOT] = ACTIONS(3006), - [anon_sym_DASH_DOT] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_prefix_op_token1] = ACTIONS(3008), - [aux_sym_infix_op_token1] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_COLON_EQ] = ACTIONS(3008), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3008), - [sym_int] = ACTIONS(3006), - [sym_xint] = ACTIONS(3008), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3008), - [sym__newline] = ACTIONS(3008), - [sym__then] = ACTIONS(3008), - }, - [1941] = { - [sym_xml_doc] = STATE(1941), - [sym_block_comment] = STATE(1941), - [sym_preproc_line] = STATE(1941), - [sym_identifier] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2936), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_let_BANG] = ACTIONS(2936), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_COLON_QMARK] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_COLON_COLON] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACK_PIPE] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_LBRACE_PIPE] = ACTIONS(2936), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_return_BANG] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_yield_BANG] = ACTIONS(2936), - [anon_sym_lazy] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_upcast] = ACTIONS(2934), - [anon_sym_downcast] = ACTIONS(2934), - [anon_sym_LT_AT] = ACTIONS(2934), - [anon_sym_AT_GT] = ACTIONS(2936), - [anon_sym_LT_AT_AT] = ACTIONS(2934), - [anon_sym_AT_AT_GT] = ACTIONS(2936), - [anon_sym_COLON_GT] = ACTIONS(2936), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_fun] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_match_BANG] = ACTIONS(2936), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_DOT_LBRACK] = ACTIONS(2936), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2934), - [anon_sym_use_BANG] = ACTIONS(2936), - [anon_sym_do_BANG] = ACTIONS(2936), - [anon_sym_DOT_DOT] = ACTIONS(2936), - [anon_sym_begin] = ACTIONS(2934), - [anon_sym_LPAREN2] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2934), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_AT_DQUOTE] = ACTIONS(2936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), - [sym_bool] = ACTIONS(2934), - [sym_unit] = ACTIONS(2934), - [aux_sym__identifier_or_op_token1] = ACTIONS(2934), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_PLUS_DOT] = ACTIONS(2934), - [anon_sym_DASH_DOT] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_prefix_op_token1] = ACTIONS(2936), - [aux_sym_infix_op_token1] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_COLON_EQ] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2934), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), - [sym_int] = ACTIONS(2934), - [sym_xint] = ACTIONS(2936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2936), - [sym__newline] = ACTIONS(2936), - }, - [1942] = { - [sym_xml_doc] = STATE(1942), - [sym_block_comment] = STATE(1942), - [sym_preproc_line] = STATE(1942), - [sym_identifier] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_COLON] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_let_BANG] = ACTIONS(3012), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_COLON_QMARK] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_COLON_COLON] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACK_PIPE] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_LBRACE_PIPE] = ACTIONS(3012), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_return_BANG] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3010), - [anon_sym_yield_BANG] = ACTIONS(3012), - [anon_sym_lazy] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_upcast] = ACTIONS(3010), - [anon_sym_downcast] = ACTIONS(3010), - [anon_sym_LT_AT] = ACTIONS(3010), - [anon_sym_AT_GT] = ACTIONS(3012), - [anon_sym_LT_AT_AT] = ACTIONS(3010), - [anon_sym_AT_AT_GT] = ACTIONS(3012), - [anon_sym_COLON_GT] = ACTIONS(3012), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_fun] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_match_BANG] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_DOT_LBRACK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3010), - [anon_sym_use_BANG] = ACTIONS(3012), - [anon_sym_do_BANG] = ACTIONS(3012), - [anon_sym_begin] = ACTIONS(3010), - [anon_sym_LPAREN2] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_AT_DQUOTE] = ACTIONS(3012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3012), - [sym_bool] = ACTIONS(3010), - [sym_unit] = ACTIONS(3010), - [aux_sym__identifier_or_op_token1] = ACTIONS(3010), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS_DOT] = ACTIONS(3010), - [anon_sym_DASH_DOT] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_prefix_op_token1] = ACTIONS(3012), - [aux_sym_infix_op_token1] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_COLON_EQ] = ACTIONS(3012), - [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), - [sym_int] = ACTIONS(3010), - [sym_xint] = ACTIONS(3012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3012), - [sym__newline] = ACTIONS(3012), - [sym__then] = ACTIONS(3012), - }, - [1943] = { - [sym_xml_doc] = STATE(1943), - [sym_block_comment] = STATE(1943), - [sym_preproc_line] = STATE(1943), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_DOT_DOT] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - }, - [1944] = { - [sym_xml_doc] = STATE(1944), - [sym_block_comment] = STATE(1944), - [sym_preproc_line] = STATE(1944), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_DOT_DOT] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - }, - [1945] = { - [sym_xml_doc] = STATE(1945), - [sym_block_comment] = STATE(1945), - [sym_preproc_line] = STATE(1945), - [sym_identifier] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_let_BANG] = ACTIONS(3020), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_COLON_QMARK] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACK_PIPE] = ACTIONS(3020), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3020), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_return_BANG] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_yield_BANG] = ACTIONS(3020), - [anon_sym_lazy] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_upcast] = ACTIONS(3018), - [anon_sym_downcast] = ACTIONS(3018), - [anon_sym_LT_AT] = ACTIONS(3018), - [anon_sym_AT_GT] = ACTIONS(3020), - [anon_sym_LT_AT_AT] = ACTIONS(3018), - [anon_sym_AT_AT_GT] = ACTIONS(3020), - [anon_sym_COLON_GT] = ACTIONS(3020), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_fun] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_match_BANG] = ACTIONS(3020), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_DOT_LBRACK] = ACTIONS(3020), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3018), - [anon_sym_use_BANG] = ACTIONS(3020), - [anon_sym_do_BANG] = ACTIONS(3020), - [anon_sym_begin] = ACTIONS(3018), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_AT_DQUOTE] = ACTIONS(3020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3020), - [sym_bool] = ACTIONS(3018), - [sym_unit] = ACTIONS(3018), - [aux_sym__identifier_or_op_token1] = ACTIONS(3018), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_PLUS_DOT] = ACTIONS(3018), - [anon_sym_DASH_DOT] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_prefix_op_token1] = ACTIONS(3020), - [aux_sym_infix_op_token1] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_COLON_EQ] = ACTIONS(3020), - [anon_sym_DOLLAR] = ACTIONS(3018), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3020), - [sym_int] = ACTIONS(3018), - [sym_xint] = ACTIONS(3020), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3020), - [sym__newline] = ACTIONS(3020), - [sym__then] = ACTIONS(3020), - }, - [1946] = { - [sym_xml_doc] = STATE(1946), - [sym_block_comment] = STATE(1946), - [sym_preproc_line] = STATE(1946), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - }, - [1947] = { - [sym_xml_doc] = STATE(1947), - [sym_block_comment] = STATE(1947), - [sym_preproc_line] = STATE(1947), - [sym_identifier] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2932), - [anon_sym_COLON] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_let_BANG] = ACTIONS(2932), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_COLON_QMARK] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2932), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACK_PIPE] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_LBRACE_PIPE] = ACTIONS(2932), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_return_BANG] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_yield_BANG] = ACTIONS(2932), - [anon_sym_lazy] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_upcast] = ACTIONS(2930), - [anon_sym_downcast] = ACTIONS(2930), - [anon_sym_LT_AT] = ACTIONS(2930), - [anon_sym_AT_GT] = ACTIONS(2932), - [anon_sym_LT_AT_AT] = ACTIONS(2930), - [anon_sym_AT_AT_GT] = ACTIONS(2932), - [anon_sym_COLON_GT] = ACTIONS(2932), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_fun] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_match_BANG] = ACTIONS(2932), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_DOT_LBRACK] = ACTIONS(2932), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2930), - [anon_sym_use_BANG] = ACTIONS(2932), - [anon_sym_do_BANG] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2932), - [anon_sym_begin] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_or] = ACTIONS(2930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(2930), - [anon_sym_AT_DQUOTE] = ACTIONS(2932), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), - [sym_bool] = ACTIONS(2930), - [sym_unit] = ACTIONS(2930), - [aux_sym__identifier_or_op_token1] = ACTIONS(2930), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS_DOT] = ACTIONS(2930), - [anon_sym_DASH_DOT] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_prefix_op_token1] = ACTIONS(2932), - [aux_sym_infix_op_token1] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_COLON_EQ] = ACTIONS(2932), - [anon_sym_DOLLAR] = ACTIONS(2930), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), - [sym_int] = ACTIONS(2930), - [sym_xint] = ACTIONS(2932), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2932), - [sym__newline] = ACTIONS(2932), - }, - [1948] = { - [sym_xml_doc] = STATE(1948), - [sym_block_comment] = STATE(1948), - [sym_preproc_line] = STATE(1948), - [sym_identifier] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_let_BANG] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_COLON_QMARK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2928), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2928), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_return_BANG] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2926), - [anon_sym_yield_BANG] = ACTIONS(2928), - [anon_sym_lazy] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_upcast] = ACTIONS(2926), - [anon_sym_downcast] = ACTIONS(2926), - [anon_sym_LT_AT] = ACTIONS(2926), - [anon_sym_AT_GT] = ACTIONS(2928), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_AT_AT_GT] = ACTIONS(2928), - [anon_sym_COLON_GT] = ACTIONS(2928), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_fun] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_match_BANG] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_DOT_LBRACK] = ACTIONS(2928), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2926), - [anon_sym_use_BANG] = ACTIONS(2928), - [anon_sym_do_BANG] = ACTIONS(2928), - [anon_sym_DOT_DOT] = ACTIONS(2928), - [anon_sym_begin] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_AT_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2928), - [sym_bool] = ACTIONS(2926), - [sym_unit] = ACTIONS(2926), - [aux_sym__identifier_or_op_token1] = ACTIONS(2926), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_prefix_op_token1] = ACTIONS(2928), - [aux_sym_infix_op_token1] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_COLON_EQ] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2926), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2928), - [sym_int] = ACTIONS(2926), - [sym_xint] = ACTIONS(2928), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - }, - [1949] = { - [sym_xml_doc] = STATE(1949), - [sym_block_comment] = STATE(1949), - [sym_preproc_line] = STATE(1949), - [sym_identifier] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_let_BANG] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_COLON_QMARK] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACK_PIPE] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_LBRACE_PIPE] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_return_BANG] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_yield_BANG] = ACTIONS(2924), - [anon_sym_lazy] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_upcast] = ACTIONS(2922), - [anon_sym_downcast] = ACTIONS(2922), - [anon_sym_LT_AT] = ACTIONS(2922), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2922), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2924), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_fun] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_match_BANG] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_DOT_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2922), - [anon_sym_use_BANG] = ACTIONS(2924), - [anon_sym_do_BANG] = ACTIONS(2924), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LPAREN2] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_AT_DQUOTE] = ACTIONS(2924), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2924), - [sym_bool] = ACTIONS(2922), - [sym_unit] = ACTIONS(2922), - [aux_sym__identifier_or_op_token1] = ACTIONS(2922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_PLUS_DOT] = ACTIONS(2922), - [anon_sym_DASH_DOT] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_DOLLAR] = ACTIONS(2922), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2922), - [sym_xint] = ACTIONS(2924), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2924), - [sym__newline] = ACTIONS(2924), - }, - [1950] = { - [sym_xml_doc] = STATE(1950), - [sym_block_comment] = STATE(1950), - [sym_preproc_line] = STATE(1950), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_DOT_DOT] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - }, - [1951] = { - [sym_xml_doc] = STATE(1951), - [sym_block_comment] = STATE(1951), - [sym_preproc_line] = STATE(1951), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_DOT_DOT] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - }, - [1952] = { - [sym_xml_doc] = STATE(1952), - [sym_block_comment] = STATE(1952), - [sym_preproc_line] = STATE(1952), - [sym_identifier] = ACTIONS(3036), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym_COLON] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_do] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_let_BANG] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3036), - [anon_sym_COLON_QMARK] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_LBRACK_PIPE] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LBRACE_PIPE] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3036), - [anon_sym_return_BANG] = ACTIONS(3038), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_yield_BANG] = ACTIONS(3038), - [anon_sym_lazy] = ACTIONS(3036), - [anon_sym_assert] = ACTIONS(3036), - [anon_sym_upcast] = ACTIONS(3036), - [anon_sym_downcast] = ACTIONS(3036), - [anon_sym_LT_AT] = ACTIONS(3036), - [anon_sym_AT_GT] = ACTIONS(3038), - [anon_sym_LT_AT_AT] = ACTIONS(3036), - [anon_sym_AT_AT_GT] = ACTIONS(3038), - [anon_sym_COLON_GT] = ACTIONS(3038), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_fun] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_match_BANG] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3036), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_DOT_LBRACK] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_use_BANG] = ACTIONS(3038), - [anon_sym_do_BANG] = ACTIONS(3038), - [anon_sym_begin] = ACTIONS(3036), - [anon_sym_LPAREN2] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_AT_DQUOTE] = ACTIONS(3038), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3038), - [sym_bool] = ACTIONS(3036), - [sym_unit] = ACTIONS(3036), - [aux_sym__identifier_or_op_token1] = ACTIONS(3036), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3036), - [anon_sym_PLUS] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3036), - [anon_sym_PLUS_DOT] = ACTIONS(3036), - [anon_sym_DASH_DOT] = ACTIONS(3036), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3038), - [aux_sym_prefix_op_token1] = ACTIONS(3038), - [aux_sym_infix_op_token1] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_DOLLAR] = ACTIONS(3036), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3038), - [sym_int] = ACTIONS(3036), - [sym_xint] = ACTIONS(3038), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3038), - [sym__newline] = ACTIONS(3038), - [sym__then] = ACTIONS(3038), - }, - [1953] = { - [sym_xml_doc] = STATE(1953), - [sym_block_comment] = STATE(1953), - [sym_preproc_line] = STATE(1953), - [sym_identifier] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_let_BANG] = ACTIONS(2920), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_COLON_QMARK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_LBRACE_PIPE] = ACTIONS(2920), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_return_BANG] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_yield_BANG] = ACTIONS(2920), - [anon_sym_lazy] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_upcast] = ACTIONS(2918), - [anon_sym_downcast] = ACTIONS(2918), - [anon_sym_LT_AT] = ACTIONS(2918), - [anon_sym_AT_GT] = ACTIONS(2920), - [anon_sym_LT_AT_AT] = ACTIONS(2918), - [anon_sym_AT_AT_GT] = ACTIONS(2920), - [anon_sym_COLON_GT] = ACTIONS(2920), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_fun] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_match_BANG] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_DOT_LBRACK] = ACTIONS(2920), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2918), - [anon_sym_use_BANG] = ACTIONS(2920), - [anon_sym_do_BANG] = ACTIONS(2920), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_DQUOTE] = ACTIONS(2918), - [anon_sym_AT_DQUOTE] = ACTIONS(2920), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2920), - [sym_bool] = ACTIONS(2918), - [sym_unit] = ACTIONS(2918), - [aux_sym__identifier_or_op_token1] = ACTIONS(2918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_PLUS_DOT] = ACTIONS(2918), - [anon_sym_DASH_DOT] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_prefix_op_token1] = ACTIONS(2920), - [aux_sym_infix_op_token1] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_COLON_EQ] = ACTIONS(2920), - [anon_sym_DOLLAR] = ACTIONS(2918), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2920), - [sym_int] = ACTIONS(2918), - [sym_xint] = ACTIONS(2920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2920), - [sym__newline] = ACTIONS(2920), - }, - [1954] = { - [sym_xml_doc] = STATE(1954), - [sym_block_comment] = STATE(1954), - [sym_preproc_line] = STATE(1954), [sym_identifier] = ACTIONS(2912), [anon_sym_EQ] = ACTIONS(2914), [anon_sym_COLON] = ACTIONS(2912), @@ -241230,7 +236308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2912), [anon_sym_use_BANG] = ACTIONS(2914), [anon_sym_do_BANG] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), [anon_sym_begin] = ACTIONS(2912), [anon_sym_LPAREN2] = ACTIONS(2914), [anon_sym_SQUOTE] = ACTIONS(2914), @@ -241260,545 +236337,1162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), [sym_int] = ACTIONS(2912), [sym_xint] = ACTIONS(2914), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2914), [sym__newline] = ACTIONS(2914), + [sym__then] = ACTIONS(2914), }, - [1955] = { - [sym_attributes] = STATE(3596), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4360), - [sym_member_defn] = STATE(2100), - [sym_additional_constr_defn] = STATE(2121), - [sym_xml_doc] = STATE(1955), - [sym_block_comment] = STATE(1955), - [sym_preproc_line] = STATE(1955), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(2004), - [ts_builtin_sym_end] = ACTIONS(3618), - [sym_identifier] = ACTIONS(3620), - [anon_sym_namespace] = ACTIONS(3620), - [anon_sym_module] = ACTIONS(3620), - [anon_sym_POUNDnowarn] = ACTIONS(3618), - [anon_sym_POUNDr] = ACTIONS(3618), - [anon_sym_POUNDload] = ACTIONS(3618), - [anon_sym_open] = ACTIONS(3620), - [anon_sym_LBRACK_LT] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_type] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_and] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_let_BANG] = ACTIONS(3618), - [aux_sym_access_modifier_token1] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_LBRACK_PIPE] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_LBRACE_PIPE] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_return_BANG] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_yield_BANG] = ACTIONS(3618), - [anon_sym_lazy] = ACTIONS(3620), - [anon_sym_assert] = ACTIONS(3620), - [anon_sym_upcast] = ACTIONS(3620), - [anon_sym_downcast] = ACTIONS(3620), - [anon_sym_LT_AT] = ACTIONS(3620), - [anon_sym_LT_AT_AT] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_fun] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_match] = ACTIONS(3620), - [anon_sym_match_BANG] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3620), - [anon_sym_use] = ACTIONS(3620), - [anon_sym_use_BANG] = ACTIONS(3618), - [anon_sym_do_BANG] = ACTIONS(3618), - [anon_sym_begin] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_member] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_val] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_AT_DQUOTE] = ACTIONS(3618), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), - [sym_bool] = ACTIONS(3620), - [sym_unit] = ACTIONS(3618), - [aux_sym__identifier_or_op_token1] = ACTIONS(3618), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_PLUS_DOT] = ACTIONS(3618), - [anon_sym_DASH_DOT] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3618), - [anon_sym_AMP_AMP] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [aux_sym_prefix_op_token1] = ACTIONS(3618), - [sym_int] = ACTIONS(3620), - [sym_xint] = ACTIONS(3618), + [1928] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1928), + [sym_block_comment] = STATE(1928), + [sym_preproc_line] = STATE(1928), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_POUNDnowarn] = ACTIONS(3732), + [anon_sym_POUNDr] = ACTIONS(3732), + [anon_sym_POUNDload] = ACTIONS(3732), + [anon_sym_open] = ACTIONS(3734), + [anon_sym_LBRACK_LT] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_type] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_and] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3732), + [aux_sym_access_modifier_token1] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_member] = ACTIONS(3734), + [anon_sym_abstract] = ACTIONS(3734), + [anon_sym_override] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_val] = ACTIONS(3734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [aux_sym__identifier_or_op_token1] = ACTIONS(3732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3732), + [anon_sym_DASH_DOT] = ACTIONS(3732), + [anon_sym_PERCENT] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3732), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3618), + [anon_sym_POUNDif] = ACTIONS(3732), }, - [1956] = { - [sym_xml_doc] = STATE(1956), - [sym_block_comment] = STATE(1956), - [sym_preproc_line] = STATE(1956), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_DOT_DOT] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), + [1929] = { + [sym_xml_doc] = STATE(1929), + [sym_block_comment] = STATE(1929), + [sym_preproc_line] = STATE(1929), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), }, - [1957] = { - [sym_xml_doc] = STATE(1957), - [sym_block_comment] = STATE(1957), - [sym_preproc_line] = STATE(1957), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), + [1930] = { + [sym_xml_doc] = STATE(1930), + [sym_block_comment] = STATE(1930), + [sym_preproc_line] = STATE(1930), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), }, - [1958] = { - [sym_xml_doc] = STATE(1958), - [sym_block_comment] = STATE(1958), - [sym_preproc_line] = STATE(1958), - [sym_identifier] = ACTIONS(3040), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym_COLON] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_do] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_let_BANG] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3040), - [anon_sym_COLON_QMARK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3040), - [anon_sym_return_BANG] = ACTIONS(3042), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_yield_BANG] = ACTIONS(3042), - [anon_sym_lazy] = ACTIONS(3040), - [anon_sym_assert] = ACTIONS(3040), - [anon_sym_upcast] = ACTIONS(3040), - [anon_sym_downcast] = ACTIONS(3040), - [anon_sym_LT_AT] = ACTIONS(3040), - [anon_sym_AT_GT] = ACTIONS(3042), - [anon_sym_LT_AT_AT] = ACTIONS(3040), - [anon_sym_AT_AT_GT] = ACTIONS(3042), - [anon_sym_COLON_GT] = ACTIONS(3042), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_fun] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_match_BANG] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3040), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_DOT_LBRACK] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_use_BANG] = ACTIONS(3042), - [anon_sym_do_BANG] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3040), - [anon_sym_LPAREN2] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_AT_DQUOTE] = ACTIONS(3042), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3042), - [sym_bool] = ACTIONS(3040), - [sym_unit] = ACTIONS(3040), - [aux_sym__identifier_or_op_token1] = ACTIONS(3040), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3040), - [anon_sym_PLUS] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3040), - [anon_sym_PLUS_DOT] = ACTIONS(3040), - [anon_sym_DASH_DOT] = ACTIONS(3040), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3042), - [aux_sym_prefix_op_token1] = ACTIONS(3042), - [aux_sym_infix_op_token1] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3040), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3042), - [sym_int] = ACTIONS(3040), - [sym_xint] = ACTIONS(3042), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3042), - [sym__newline] = ACTIONS(3042), - [sym__then] = ACTIONS(3042), + [1931] = { + [sym_xml_doc] = STATE(1931), + [sym_block_comment] = STATE(1931), + [sym_preproc_line] = STATE(1931), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), + [sym__then] = ACTIONS(2968), }, - [1959] = { - [sym_xml_doc] = STATE(1959), - [sym_block_comment] = STATE(1959), - [sym_preproc_line] = STATE(1959), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), + [1932] = { + [sym_xml_doc] = STATE(1932), + [sym_block_comment] = STATE(1932), + [sym_preproc_line] = STATE(1932), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_DOT_DOT] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), }, - [1960] = { - [sym_xml_doc] = STATE(1960), - [sym_block_comment] = STATE(1960), - [sym_preproc_line] = STATE(1960), - [sym_identifier] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_do] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_let_BANG] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_LBRACK_PIPE] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LBRACE_PIPE] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_return_BANG] = ACTIONS(3046), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_yield_BANG] = ACTIONS(3046), - [anon_sym_lazy] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_upcast] = ACTIONS(3044), - [anon_sym_downcast] = ACTIONS(3044), - [anon_sym_LT_AT] = ACTIONS(3044), - [anon_sym_AT_GT] = ACTIONS(3046), - [anon_sym_LT_AT_AT] = ACTIONS(3044), - [anon_sym_AT_AT_GT] = ACTIONS(3046), - [anon_sym_COLON_GT] = ACTIONS(3046), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_fun] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_match_BANG] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_DOT_LBRACK] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_use_BANG] = ACTIONS(3046), - [anon_sym_do_BANG] = ACTIONS(3046), - [anon_sym_begin] = ACTIONS(3044), - [anon_sym_LPAREN2] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_AT_DQUOTE] = ACTIONS(3046), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3046), - [sym_bool] = ACTIONS(3044), - [sym_unit] = ACTIONS(3044), - [aux_sym__identifier_or_op_token1] = ACTIONS(3044), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS_DOT] = ACTIONS(3044), - [anon_sym_DASH_DOT] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [aux_sym_prefix_op_token1] = ACTIONS(3046), - [aux_sym_infix_op_token1] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3046), - [sym_int] = ACTIONS(3044), - [sym_xint] = ACTIONS(3046), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3046), - [sym__newline] = ACTIONS(3046), - [sym__then] = ACTIONS(3046), + [1933] = { + [sym_xml_doc] = STATE(1933), + [sym_block_comment] = STATE(1933), + [sym_preproc_line] = STATE(1933), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), }, - [1961] = { - [sym_xml_doc] = STATE(1961), - [sym_block_comment] = STATE(1961), - [sym_preproc_line] = STATE(1961), + [1934] = { + [sym_xml_doc] = STATE(1934), + [sym_block_comment] = STATE(1934), + [sym_preproc_line] = STATE(1934), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_DOT_DOT] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + }, + [1935] = { + [sym_xml_doc] = STATE(1935), + [sym_block_comment] = STATE(1935), + [sym_preproc_line] = STATE(1935), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_DOT_DOT] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + }, + [1936] = { + [sym_xml_doc] = STATE(1936), + [sym_block_comment] = STATE(1936), + [sym_preproc_line] = STATE(1936), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_DOT_DOT] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + }, + [1937] = { + [sym_xml_doc] = STATE(1937), + [sym_block_comment] = STATE(1937), + [sym_preproc_line] = STATE(1937), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), + [sym__then] = ACTIONS(2950), + }, + [1938] = { + [sym_xml_doc] = STATE(1938), + [sym_block_comment] = STATE(1938), + [sym_preproc_line] = STATE(1938), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_DOT_DOT] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + }, + [1939] = { + [sym_xml_doc] = STATE(1939), + [sym_block_comment] = STATE(1939), + [sym_preproc_line] = STATE(1939), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + }, + [1940] = { + [sym_xml_doc] = STATE(1940), + [sym_block_comment] = STATE(1940), + [sym_preproc_line] = STATE(1940), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_DOT_DOT] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + }, + [1941] = { + [sym_xml_doc] = STATE(1941), + [sym_block_comment] = STATE(1941), + [sym_preproc_line] = STATE(1941), [sym_identifier] = ACTIONS(2904), [anon_sym_EQ] = ACTIONS(2906), [anon_sym_COLON] = ACTIONS(2904), @@ -241876,12633 +237570,12462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), [sym_int] = ACTIONS(2904), [sym_xint] = ACTIONS(2906), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2906), [sym__newline] = ACTIONS(2906), }, - [1962] = { - [sym_xml_doc] = STATE(1962), - [sym_block_comment] = STATE(1962), - [sym_preproc_line] = STATE(1962), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - }, - [1963] = { - [sym_xml_doc] = STATE(1963), - [sym_block_comment] = STATE(1963), - [sym_preproc_line] = STATE(1963), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - }, - [1964] = { - [sym_xml_doc] = STATE(1964), - [sym_block_comment] = STATE(1964), - [sym_preproc_line] = STATE(1964), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - }, - [1965] = { - [sym_xml_doc] = STATE(1965), - [sym_block_comment] = STATE(1965), - [sym_preproc_line] = STATE(1965), - [sym_identifier] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2852), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2852), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2852), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2852), - [anon_sym_COLON_GT] = ACTIONS(2852), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2852), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2852), - [anon_sym_do_BANG] = ACTIONS(2852), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2852), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2852), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [aux_sym__identifier_or_op_token1] = ACTIONS(2850), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_prefix_op_token1] = ACTIONS(2852), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2852), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2852), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2852), - [sym__newline] = ACTIONS(2852), - [sym__then] = ACTIONS(2852), - }, - [1966] = { - [sym_xml_doc] = STATE(1966), - [sym_block_comment] = STATE(1966), - [sym_preproc_line] = STATE(1966), - [sym_identifier] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_let_BANG] = ACTIONS(2896), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_COLON_QMARK] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_return_BANG] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_yield_BANG] = ACTIONS(2896), - [anon_sym_lazy] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_upcast] = ACTIONS(2894), - [anon_sym_downcast] = ACTIONS(2894), - [anon_sym_LT_AT] = ACTIONS(2894), - [anon_sym_AT_GT] = ACTIONS(2896), - [anon_sym_LT_AT_AT] = ACTIONS(2894), - [anon_sym_AT_AT_GT] = ACTIONS(2896), - [anon_sym_COLON_GT] = ACTIONS(2896), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_fun] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_match_BANG] = ACTIONS(2896), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_DOT_LBRACK] = ACTIONS(2896), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2894), - [anon_sym_use_BANG] = ACTIONS(2896), - [anon_sym_do_BANG] = ACTIONS(2896), - [anon_sym_DOT_DOT] = ACTIONS(2896), - [anon_sym_begin] = ACTIONS(2894), - [anon_sym_LPAREN2] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [anon_sym_AT_DQUOTE] = ACTIONS(2896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2896), - [sym_bool] = ACTIONS(2894), - [sym_unit] = ACTIONS(2894), - [aux_sym__identifier_or_op_token1] = ACTIONS(2894), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_PLUS_DOT] = ACTIONS(2894), - [anon_sym_DASH_DOT] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_prefix_op_token1] = ACTIONS(2896), - [aux_sym_infix_op_token1] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_COLON_EQ] = ACTIONS(2896), - [anon_sym_DOLLAR] = ACTIONS(2894), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2896), - [sym_int] = ACTIONS(2894), - [sym_xint] = ACTIONS(2896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2896), - [sym__newline] = ACTIONS(2896), - }, - [1967] = { - [sym_xml_doc] = STATE(1967), - [sym_block_comment] = STATE(1967), - [sym_preproc_line] = STATE(1967), - [sym_identifier] = ACTIONS(2223), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_do] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_let_BANG] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2223), - [anon_sym_COLON_QMARK] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACK_PIPE] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LBRACE_PIPE] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_return_BANG] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_yield_BANG] = ACTIONS(2225), - [anon_sym_lazy] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_upcast] = ACTIONS(2223), - [anon_sym_downcast] = ACTIONS(2223), - [anon_sym_LT_AT] = ACTIONS(2223), - [anon_sym_AT_GT] = ACTIONS(2225), - [anon_sym_LT_AT_AT] = ACTIONS(2223), - [anon_sym_AT_AT_GT] = ACTIONS(2225), - [anon_sym_COLON_GT] = ACTIONS(2225), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_fun] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_match_BANG] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2223), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_DOT_LBRACK] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_use_BANG] = ACTIONS(2225), - [anon_sym_do_BANG] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_begin] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2223), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_AT_DQUOTE] = ACTIONS(2225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [sym_bool] = ACTIONS(2223), - [sym_unit] = ACTIONS(2223), - [aux_sym__identifier_or_op_token1] = ACTIONS(2223), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_PLUS_DOT] = ACTIONS(2223), - [anon_sym_DASH_DOT] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2225), - [aux_sym_prefix_op_token1] = ACTIONS(2225), - [aux_sym_infix_op_token1] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2225), - [sym_int] = ACTIONS(2223), - [sym_xint] = ACTIONS(2225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2225), - [sym__newline] = ACTIONS(2225), - }, - [1968] = { - [sym_xml_doc] = STATE(1968), - [sym_block_comment] = STATE(1968), - [sym_preproc_line] = STATE(1968), - [sym_identifier] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_let_BANG] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACK_PIPE] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACE_PIPE] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_return_BANG] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_yield_BANG] = ACTIONS(2900), - [anon_sym_lazy] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_upcast] = ACTIONS(2898), - [anon_sym_downcast] = ACTIONS(2898), - [anon_sym_LT_AT] = ACTIONS(2898), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2898), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2900), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_fun] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_match_BANG] = ACTIONS(2900), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_DOT_LBRACK] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2898), - [anon_sym_use_BANG] = ACTIONS(2900), - [anon_sym_do_BANG] = ACTIONS(2900), - [anon_sym_DOT_DOT] = ACTIONS(2900), - [anon_sym_begin] = ACTIONS(2898), - [anon_sym_LPAREN2] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_AT_DQUOTE] = ACTIONS(2900), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2900), - [sym_bool] = ACTIONS(2898), - [sym_unit] = ACTIONS(2898), - [aux_sym__identifier_or_op_token1] = ACTIONS(2898), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_PLUS_DOT] = ACTIONS(2898), - [anon_sym_DASH_DOT] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2900), - [anon_sym_DOLLAR] = ACTIONS(2898), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2898), - [sym_xint] = ACTIONS(2900), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2900), - [sym__newline] = ACTIONS(2900), - }, - [1969] = { - [sym_xml_doc] = STATE(1969), - [sym_block_comment] = STATE(1969), - [sym_preproc_line] = STATE(1969), - [sym_identifier] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_let_BANG] = ACTIONS(2856), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_LBRACE_PIPE] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_return_BANG] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_yield_BANG] = ACTIONS(2856), - [anon_sym_lazy] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_upcast] = ACTIONS(2854), - [anon_sym_downcast] = ACTIONS(2854), - [anon_sym_LT_AT] = ACTIONS(2854), - [anon_sym_AT_GT] = ACTIONS(2856), - [anon_sym_LT_AT_AT] = ACTIONS(2854), - [anon_sym_AT_AT_GT] = ACTIONS(2856), - [anon_sym_COLON_GT] = ACTIONS(2856), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_fun] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_match_BANG] = ACTIONS(2856), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_DOT_LBRACK] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2854), - [anon_sym_use_BANG] = ACTIONS(2856), - [anon_sym_do_BANG] = ACTIONS(2856), - [anon_sym_begin] = ACTIONS(2854), - [anon_sym_LPAREN2] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [anon_sym_AT_DQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2856), - [sym_bool] = ACTIONS(2854), - [sym_unit] = ACTIONS(2854), - [aux_sym__identifier_or_op_token1] = ACTIONS(2854), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_PLUS_DOT] = ACTIONS(2854), - [anon_sym_DASH_DOT] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_prefix_op_token1] = ACTIONS(2856), - [aux_sym_infix_op_token1] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2854), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2856), - [sym_int] = ACTIONS(2854), - [sym_xint] = ACTIONS(2856), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2856), - [sym__newline] = ACTIONS(2856), - [sym__then] = ACTIONS(2856), - }, - [1970] = { - [sym_xml_doc] = STATE(1970), - [sym_block_comment] = STATE(1970), - [sym_preproc_line] = STATE(1970), - [sym_identifier] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_let_BANG] = ACTIONS(2860), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_COLON_QMARK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACK_PIPE] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_LBRACE_PIPE] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_return_BANG] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_yield_BANG] = ACTIONS(2860), - [anon_sym_lazy] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_upcast] = ACTIONS(2858), - [anon_sym_downcast] = ACTIONS(2858), - [anon_sym_LT_AT] = ACTIONS(2858), - [anon_sym_AT_GT] = ACTIONS(2860), - [anon_sym_LT_AT_AT] = ACTIONS(2858), - [anon_sym_AT_AT_GT] = ACTIONS(2860), - [anon_sym_COLON_GT] = ACTIONS(2860), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_fun] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_match_BANG] = ACTIONS(2860), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_DOT_LBRACK] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2858), - [anon_sym_use_BANG] = ACTIONS(2860), - [anon_sym_do_BANG] = ACTIONS(2860), - [anon_sym_begin] = ACTIONS(2858), - [anon_sym_LPAREN2] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [anon_sym_AT_DQUOTE] = ACTIONS(2860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2860), - [sym_bool] = ACTIONS(2858), - [sym_unit] = ACTIONS(2858), - [aux_sym__identifier_or_op_token1] = ACTIONS(2858), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_PLUS_DOT] = ACTIONS(2858), - [anon_sym_DASH_DOT] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_prefix_op_token1] = ACTIONS(2860), - [aux_sym_infix_op_token1] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2860), - [sym_int] = ACTIONS(2858), - [sym_xint] = ACTIONS(2860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2860), - [sym__newline] = ACTIONS(2860), - [sym__then] = ACTIONS(2860), - }, - [1971] = { - [sym_xml_doc] = STATE(1971), - [sym_block_comment] = STATE(1971), - [sym_preproc_line] = STATE(1971), - [sym_identifier] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_COLON] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_let_BANG] = ACTIONS(2864), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_COLON_QMARK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACK_PIPE] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_LBRACE_PIPE] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_return_BANG] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_yield_BANG] = ACTIONS(2864), - [anon_sym_lazy] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_upcast] = ACTIONS(2862), - [anon_sym_downcast] = ACTIONS(2862), - [anon_sym_LT_AT] = ACTIONS(2862), - [anon_sym_AT_GT] = ACTIONS(2864), - [anon_sym_LT_AT_AT] = ACTIONS(2862), - [anon_sym_AT_AT_GT] = ACTIONS(2864), - [anon_sym_COLON_GT] = ACTIONS(2864), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_fun] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_match_BANG] = ACTIONS(2864), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_DOT_LBRACK] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2862), - [anon_sym_use_BANG] = ACTIONS(2864), - [anon_sym_do_BANG] = ACTIONS(2864), - [anon_sym_begin] = ACTIONS(2862), - [anon_sym_LPAREN2] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [anon_sym_AT_DQUOTE] = ACTIONS(2864), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2864), - [sym_bool] = ACTIONS(2862), - [sym_unit] = ACTIONS(2862), - [aux_sym__identifier_or_op_token1] = ACTIONS(2862), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_PLUS_DOT] = ACTIONS(2862), - [anon_sym_DASH_DOT] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_prefix_op_token1] = ACTIONS(2864), - [aux_sym_infix_op_token1] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_DOLLAR] = ACTIONS(2862), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2864), - [sym_int] = ACTIONS(2862), - [sym_xint] = ACTIONS(2864), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2864), - [sym__newline] = ACTIONS(2864), - [sym__then] = ACTIONS(2864), - }, - [1972] = { - [sym_xml_doc] = STATE(1972), - [sym_block_comment] = STATE(1972), - [sym_preproc_line] = STATE(1972), - [sym_identifier] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_let_BANG] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_COLON_QMARK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACK_PIPE] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_LBRACE_PIPE] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_return_BANG] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_yield_BANG] = ACTIONS(2868), - [anon_sym_lazy] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_upcast] = ACTIONS(2866), - [anon_sym_downcast] = ACTIONS(2866), - [anon_sym_LT_AT] = ACTIONS(2866), - [anon_sym_AT_GT] = ACTIONS(2868), - [anon_sym_LT_AT_AT] = ACTIONS(2866), - [anon_sym_AT_AT_GT] = ACTIONS(2868), - [anon_sym_COLON_GT] = ACTIONS(2868), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_match_BANG] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_DOT_LBRACK] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2866), - [anon_sym_use_BANG] = ACTIONS(2868), - [anon_sym_do_BANG] = ACTIONS(2868), - [anon_sym_begin] = ACTIONS(2866), - [anon_sym_LPAREN2] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_AT_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2868), - [sym_bool] = ACTIONS(2866), - [sym_unit] = ACTIONS(2866), - [aux_sym__identifier_or_op_token1] = ACTIONS(2866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_PLUS_DOT] = ACTIONS(2866), - [anon_sym_DASH_DOT] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_prefix_op_token1] = ACTIONS(2868), - [aux_sym_infix_op_token1] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2866), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2868), - [sym_int] = ACTIONS(2866), - [sym_xint] = ACTIONS(2868), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2868), - [sym__newline] = ACTIONS(2868), - [sym__then] = ACTIONS(2868), - }, - [1973] = { - [sym_xml_doc] = STATE(1973), - [sym_block_comment] = STATE(1973), - [sym_preproc_line] = STATE(1973), - [sym_identifier] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_AT_GT] = ACTIONS(2485), - [anon_sym_LT_AT_AT] = ACTIONS(2483), - [anon_sym_AT_AT_GT] = ACTIONS(2485), - [anon_sym_COLON_GT] = ACTIONS(2485), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_LT_DASH] = ACTIONS(2483), - [anon_sym_DOT_LBRACK] = ACTIONS(2485), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_or] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2483), - [aux_sym__identifier_or_op_token1] = ACTIONS(2483), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2483), - [anon_sym_DASH_DOT] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [aux_sym_infix_op_token1] = ACTIONS(2483), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2485), - [anon_sym_COLON_EQ] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), - }, - [1974] = { - [sym_xml_doc] = STATE(1974), - [sym_block_comment] = STATE(1974), - [sym_preproc_line] = STATE(1974), - [sym_identifier] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_let_BANG] = ACTIONS(3074), - [anon_sym_null] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3072), - [anon_sym_COLON_QMARK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LBRACK_PIPE] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LBRACE_PIPE] = ACTIONS(3074), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_return_BANG] = ACTIONS(3074), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_yield_BANG] = ACTIONS(3074), - [anon_sym_lazy] = ACTIONS(3072), - [anon_sym_assert] = ACTIONS(3072), - [anon_sym_upcast] = ACTIONS(3072), - [anon_sym_downcast] = ACTIONS(3072), - [anon_sym_LT_AT] = ACTIONS(3072), - [anon_sym_AT_GT] = ACTIONS(3074), - [anon_sym_LT_AT_AT] = ACTIONS(3072), - [anon_sym_AT_AT_GT] = ACTIONS(3074), - [anon_sym_COLON_GT] = ACTIONS(3074), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3072), - [anon_sym_match_BANG] = ACTIONS(3074), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_DOT_LBRACK] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_use] = ACTIONS(3072), - [anon_sym_use_BANG] = ACTIONS(3074), - [anon_sym_do_BANG] = ACTIONS(3074), - [anon_sym_begin] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_AT_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3074), - [sym_bool] = ACTIONS(3072), - [sym_unit] = ACTIONS(3072), - [aux_sym__identifier_or_op_token1] = ACTIONS(3072), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS_DOT] = ACTIONS(3072), - [anon_sym_DASH_DOT] = ACTIONS(3072), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_prefix_op_token1] = ACTIONS(3074), - [aux_sym_infix_op_token1] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(3072), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3074), - [sym_int] = ACTIONS(3072), - [sym_xint] = ACTIONS(3074), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3074), - [sym__newline] = ACTIONS(3074), - [sym__then] = ACTIONS(3074), - }, - [1975] = { - [sym_xml_doc] = STATE(1975), - [sym_block_comment] = STATE(1975), - [sym_preproc_line] = STATE(1975), - [sym_identifier] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_let_BANG] = ACTIONS(2820), - [anon_sym_null] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_COLON_QMARK] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACK_PIPE] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_LBRACE_PIPE] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_return_BANG] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_yield_BANG] = ACTIONS(2820), - [anon_sym_lazy] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_upcast] = ACTIONS(2818), - [anon_sym_downcast] = ACTIONS(2818), - [anon_sym_LT_AT] = ACTIONS(2818), - [anon_sym_AT_GT] = ACTIONS(2820), - [anon_sym_LT_AT_AT] = ACTIONS(2818), - [anon_sym_AT_AT_GT] = ACTIONS(2820), - [anon_sym_COLON_GT] = ACTIONS(2820), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_fun] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_match_BANG] = ACTIONS(2820), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_DOT_LBRACK] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_use_BANG] = ACTIONS(2820), - [anon_sym_do_BANG] = ACTIONS(2820), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_begin] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2818), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2818), - [anon_sym_DQUOTE] = ACTIONS(2818), - [anon_sym_AT_DQUOTE] = ACTIONS(2820), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2820), - [sym_bool] = ACTIONS(2818), - [sym_unit] = ACTIONS(2818), - [aux_sym__identifier_or_op_token1] = ACTIONS(2818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS_DOT] = ACTIONS(2818), - [anon_sym_DASH_DOT] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2820), - [aux_sym_prefix_op_token1] = ACTIONS(2820), - [aux_sym_infix_op_token1] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_DOLLAR] = ACTIONS(2818), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2820), - [sym_int] = ACTIONS(2818), - [sym_xint] = ACTIONS(2820), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2820), - [sym__newline] = ACTIONS(2820), - }, - [1976] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1976), - [sym_block_comment] = STATE(1976), - [sym_preproc_line] = STATE(1976), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3569), - [anon_sym_POUNDnowarn] = ACTIONS(3567), - [anon_sym_POUNDr] = ACTIONS(3567), - [anon_sym_POUNDload] = ACTIONS(3567), - [anon_sym_open] = ACTIONS(3569), - [anon_sym_LBRACK_LT] = ACTIONS(3567), - [anon_sym_return] = ACTIONS(3569), - [anon_sym_type] = ACTIONS(3569), - [anon_sym_do] = ACTIONS(3569), - [anon_sym_and] = ACTIONS(3569), - [anon_sym_let] = ACTIONS(3569), - [anon_sym_let_BANG] = ACTIONS(3567), - [aux_sym_access_modifier_token1] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_AMP] = ACTIONS(3569), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LBRACK_PIPE] = ACTIONS(3567), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_LBRACE_PIPE] = ACTIONS(3567), - [anon_sym_with] = ACTIONS(3569), - [anon_sym_new] = ACTIONS(3569), - [anon_sym_return_BANG] = ACTIONS(3567), - [anon_sym_yield] = ACTIONS(3569), - [anon_sym_yield_BANG] = ACTIONS(3567), - [anon_sym_lazy] = ACTIONS(3569), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_upcast] = ACTIONS(3569), - [anon_sym_downcast] = ACTIONS(3569), - [anon_sym_LT_AT] = ACTIONS(3569), - [anon_sym_LT_AT_AT] = ACTIONS(3567), - [anon_sym_for] = ACTIONS(3569), - [anon_sym_while] = ACTIONS(3569), - [anon_sym_if] = ACTIONS(3569), - [anon_sym_fun] = ACTIONS(3569), - [anon_sym_DASH_GT] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3569), - [anon_sym_match] = ACTIONS(3569), - [anon_sym_match_BANG] = ACTIONS(3567), - [anon_sym_function] = ACTIONS(3569), - [anon_sym_use] = ACTIONS(3569), - [anon_sym_use_BANG] = ACTIONS(3567), - [anon_sym_do_BANG] = ACTIONS(3567), - [anon_sym_begin] = ACTIONS(3569), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3567), - [anon_sym_static] = ACTIONS(3569), - [anon_sym_member] = ACTIONS(3569), - [anon_sym_abstract] = ACTIONS(3569), - [anon_sym_override] = ACTIONS(3569), - [anon_sym_default] = ACTIONS(3569), - [anon_sym_val] = ACTIONS(3569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [anon_sym_AT_DQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3567), - [sym_bool] = ACTIONS(3569), - [sym_unit] = ACTIONS(3567), - [aux_sym__identifier_or_op_token1] = ACTIONS(3567), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3569), - [anon_sym_PLUS] = ACTIONS(3569), - [anon_sym_DASH] = ACTIONS(3569), - [anon_sym_PLUS_DOT] = ACTIONS(3567), - [anon_sym_DASH_DOT] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_AMP_AMP] = ACTIONS(3567), - [anon_sym_TILDE] = ACTIONS(3567), - [aux_sym_prefix_op_token1] = ACTIONS(3567), - [sym_int] = ACTIONS(3569), - [sym_xint] = ACTIONS(3567), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3567), - [sym__dedent] = ACTIONS(3567), - }, - [1977] = { - [sym_xml_doc] = STATE(1977), - [sym_block_comment] = STATE(1977), - [sym_preproc_line] = STATE(1977), - [sym_identifier] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3083), - [anon_sym_do] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_let_BANG] = ACTIONS(3085), - [anon_sym_null] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3083), - [anon_sym_COLON_QMARK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_LBRACE_PIPE] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3083), - [anon_sym_return_BANG] = ACTIONS(3085), - [anon_sym_yield] = ACTIONS(3083), - [anon_sym_yield_BANG] = ACTIONS(3085), - [anon_sym_lazy] = ACTIONS(3083), - [anon_sym_assert] = ACTIONS(3083), - [anon_sym_upcast] = ACTIONS(3083), - [anon_sym_downcast] = ACTIONS(3083), - [anon_sym_LT_AT] = ACTIONS(3083), - [anon_sym_AT_GT] = ACTIONS(3085), - [anon_sym_LT_AT_AT] = ACTIONS(3083), - [anon_sym_AT_AT_GT] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3085), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3083), - [anon_sym_fun] = ACTIONS(3083), - [anon_sym_try] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3083), - [anon_sym_match_BANG] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3083), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_DOT_LBRACK] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_use] = ACTIONS(3083), - [anon_sym_use_BANG] = ACTIONS(3085), - [anon_sym_do_BANG] = ACTIONS(3085), - [anon_sym_begin] = ACTIONS(3083), - [anon_sym_LPAREN2] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [anon_sym_AT_DQUOTE] = ACTIONS(3085), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3085), - [sym_bool] = ACTIONS(3083), - [sym_unit] = ACTIONS(3083), - [aux_sym__identifier_or_op_token1] = ACTIONS(3083), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3083), - [anon_sym_DASH_DOT] = ACTIONS(3083), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3085), - [aux_sym_prefix_op_token1] = ACTIONS(3085), - [aux_sym_infix_op_token1] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3085), - [sym_int] = ACTIONS(3083), - [sym_xint] = ACTIONS(3085), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3085), - [sym__newline] = ACTIONS(3085), - [sym__then] = ACTIONS(3085), - }, - [1978] = { - [sym_xml_doc] = STATE(1978), - [sym_block_comment] = STATE(1978), - [sym_preproc_line] = STATE(1978), - [aux_sym_long_identifier_repeat1] = STATE(1978), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_and] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [aux_sym_access_modifier_token1] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(3634), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_member] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_val] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), - }, - [1979] = { - [sym_xml_doc] = STATE(1979), - [sym_block_comment] = STATE(1979), - [sym_preproc_line] = STATE(1979), - [sym_identifier] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_let_BANG] = ACTIONS(3089), - [anon_sym_null] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_LBRACE_PIPE] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_return_BANG] = ACTIONS(3089), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_yield_BANG] = ACTIONS(3089), - [anon_sym_lazy] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_upcast] = ACTIONS(3087), - [anon_sym_downcast] = ACTIONS(3087), - [anon_sym_LT_AT] = ACTIONS(3087), - [anon_sym_AT_GT] = ACTIONS(3089), - [anon_sym_LT_AT_AT] = ACTIONS(3087), - [anon_sym_AT_AT_GT] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3089), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_fun] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_match_BANG] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_DOT_LBRACK] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_use] = ACTIONS(3087), - [anon_sym_use_BANG] = ACTIONS(3089), - [anon_sym_do_BANG] = ACTIONS(3089), - [anon_sym_begin] = ACTIONS(3087), - [anon_sym_LPAREN2] = ACTIONS(3089), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [anon_sym_AT_DQUOTE] = ACTIONS(3089), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3089), - [sym_bool] = ACTIONS(3087), - [sym_unit] = ACTIONS(3087), - [aux_sym__identifier_or_op_token1] = ACTIONS(3087), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3087), - [anon_sym_DASH_DOT] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3089), - [aux_sym_prefix_op_token1] = ACTIONS(3089), - [aux_sym_infix_op_token1] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3089), - [sym_int] = ACTIONS(3087), - [sym_xint] = ACTIONS(3089), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3089), - [sym__newline] = ACTIONS(3089), - [sym__then] = ACTIONS(3089), - }, - [1980] = { - [sym_xml_doc] = STATE(1980), - [sym_block_comment] = STATE(1980), - [sym_preproc_line] = STATE(1980), - [aux_sym_long_identifier_repeat1] = STATE(1978), - [sym_identifier] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_and] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [aux_sym_access_modifier_token1] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_member] = ACTIONS(2492), - [anon_sym_interface] = ACTIONS(2492), - [anon_sym_abstract] = ACTIONS(2492), - [anon_sym_override] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_val] = ACTIONS(2492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), - }, - [1981] = { - [sym_xml_doc] = STATE(1981), - [sym_block_comment] = STATE(1981), - [sym_preproc_line] = STATE(1981), - [sym_identifier] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_COLON_QMARK] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_upcast] = ACTIONS(2846), - [anon_sym_downcast] = ACTIONS(2846), - [anon_sym_LT_AT] = ACTIONS(2846), - [anon_sym_AT_GT] = ACTIONS(2848), - [anon_sym_LT_AT_AT] = ACTIONS(2846), - [anon_sym_AT_AT_GT] = ACTIONS(2848), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_fun] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2846), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2846), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2846), - [sym_unit] = ACTIONS(2846), - [aux_sym__identifier_or_op_token1] = ACTIONS(2846), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_PLUS_DOT] = ACTIONS(2846), - [anon_sym_DASH_DOT] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [aux_sym_infix_op_token1] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2846), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2848), - [sym_int] = ACTIONS(2846), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__then] = ACTIONS(2848), - }, - [1982] = { - [sym_xml_doc] = STATE(1982), - [sym_block_comment] = STATE(1982), - [sym_preproc_line] = STATE(1982), - [sym_identifier] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_let_BANG] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACK_PIPE] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_LBRACE_PIPE] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_return_BANG] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_yield_BANG] = ACTIONS(2872), - [anon_sym_lazy] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_upcast] = ACTIONS(2870), - [anon_sym_downcast] = ACTIONS(2870), - [anon_sym_LT_AT] = ACTIONS(2870), - [anon_sym_AT_GT] = ACTIONS(2872), - [anon_sym_LT_AT_AT] = ACTIONS(2870), - [anon_sym_AT_AT_GT] = ACTIONS(2872), - [anon_sym_COLON_GT] = ACTIONS(2872), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_fun] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_match_BANG] = ACTIONS(2872), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_DOT_LBRACK] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2870), - [anon_sym_use_BANG] = ACTIONS(2872), - [anon_sym_do_BANG] = ACTIONS(2872), - [anon_sym_begin] = ACTIONS(2870), - [anon_sym_LPAREN2] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_AT_DQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2872), - [sym_bool] = ACTIONS(2870), - [sym_unit] = ACTIONS(2870), - [aux_sym__identifier_or_op_token1] = ACTIONS(2870), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_PLUS_DOT] = ACTIONS(2870), - [anon_sym_DASH_DOT] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_prefix_op_token1] = ACTIONS(2872), - [aux_sym_infix_op_token1] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2872), - [sym_int] = ACTIONS(2870), - [sym_xint] = ACTIONS(2872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2872), - [sym__newline] = ACTIONS(2872), - [sym__then] = ACTIONS(2872), - }, - [1983] = { - [sym_xml_doc] = STATE(1983), - [sym_block_comment] = STATE(1983), - [sym_preproc_line] = STATE(1983), - [sym_identifier] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3016), - [anon_sym_COLON] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_let_BANG] = ACTIONS(3016), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_COLON_QMARK] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACK_PIPE] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_LBRACE_PIPE] = ACTIONS(3016), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_return_BANG] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3014), - [anon_sym_yield_BANG] = ACTIONS(3016), - [anon_sym_lazy] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_upcast] = ACTIONS(3014), - [anon_sym_downcast] = ACTIONS(3014), - [anon_sym_LT_AT] = ACTIONS(3014), - [anon_sym_AT_GT] = ACTIONS(3016), - [anon_sym_LT_AT_AT] = ACTIONS(3014), - [anon_sym_AT_AT_GT] = ACTIONS(3016), - [anon_sym_COLON_GT] = ACTIONS(3016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_fun] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_match_BANG] = ACTIONS(3016), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_DOT_LBRACK] = ACTIONS(3016), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3014), - [anon_sym_use_BANG] = ACTIONS(3016), - [anon_sym_do_BANG] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3016), - [anon_sym_begin] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3014), - [anon_sym_AT_DQUOTE] = ACTIONS(3016), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3016), - [sym_bool] = ACTIONS(3014), - [sym_unit] = ACTIONS(3014), - [aux_sym__identifier_or_op_token1] = ACTIONS(3014), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_PLUS_DOT] = ACTIONS(3014), - [anon_sym_DASH_DOT] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_prefix_op_token1] = ACTIONS(3016), - [aux_sym_infix_op_token1] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_COLON_EQ] = ACTIONS(3016), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3016), - [sym_int] = ACTIONS(3014), - [sym_xint] = ACTIONS(3016), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3016), - [sym__newline] = ACTIONS(3016), - }, - [1984] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(1984), - [sym_block_comment] = STATE(1984), - [sym_preproc_line] = STATE(1984), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_POUNDnowarn] = ACTIONS(3526), - [anon_sym_POUNDr] = ACTIONS(3526), - [anon_sym_POUNDload] = ACTIONS(3526), - [anon_sym_open] = ACTIONS(3528), - [anon_sym_LBRACK_LT] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_and] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3526), - [aux_sym_access_modifier_token1] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_DASH_GT] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_member] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_val] = ACTIONS(3528), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3526), - [aux_sym__identifier_or_op_token1] = ACTIONS(3526), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3526), - [anon_sym_DASH_DOT] = ACTIONS(3526), - [anon_sym_PERCENT] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3526), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1942] = { + [sym_xml_doc] = STATE(1942), + [sym_block_comment] = STATE(1942), + [sym_preproc_line] = STATE(1942), + [sym_identifier] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_let_BANG] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK_PIPE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE_PIPE] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_return_BANG] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_yield_BANG] = ACTIONS(2914), + [anon_sym_lazy] = ACTIONS(2912), + [anon_sym_assert] = ACTIONS(2912), + [anon_sym_upcast] = ACTIONS(2912), + [anon_sym_downcast] = ACTIONS(2912), + [anon_sym_LT_AT] = ACTIONS(2912), + [anon_sym_AT_GT] = ACTIONS(2914), + [anon_sym_LT_AT_AT] = ACTIONS(2912), + [anon_sym_AT_AT_GT] = ACTIONS(2914), + [anon_sym_COLON_GT] = ACTIONS(2914), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_fun] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_match_BANG] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_DOT_LBRACK] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_use_BANG] = ACTIONS(2914), + [anon_sym_do_BANG] = ACTIONS(2914), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_begin] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_AT_DQUOTE] = ACTIONS(2914), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2914), + [sym_bool] = ACTIONS(2912), + [sym_unit] = ACTIONS(2912), + [aux_sym__identifier_or_op_token1] = ACTIONS(2912), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS_DOT] = ACTIONS(2912), + [anon_sym_DASH_DOT] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_prefix_op_token1] = ACTIONS(2914), + [aux_sym_infix_op_token1] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2914), + [sym_int] = ACTIONS(2912), + [sym_xint] = ACTIONS(2914), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__dedent] = ACTIONS(3526), + [anon_sym_POUNDif] = ACTIONS(2914), + [sym__newline] = ACTIONS(2914), }, - [1985] = { - [sym_xml_doc] = STATE(1985), - [sym_block_comment] = STATE(1985), - [sym_preproc_line] = STATE(1985), - [sym_identifier] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_let_BANG] = ACTIONS(2876), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACK_PIPE] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_LBRACE_PIPE] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_return_BANG] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_yield_BANG] = ACTIONS(2876), - [anon_sym_lazy] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_upcast] = ACTIONS(2874), - [anon_sym_downcast] = ACTIONS(2874), - [anon_sym_LT_AT] = ACTIONS(2874), - [anon_sym_AT_GT] = ACTIONS(2876), - [anon_sym_LT_AT_AT] = ACTIONS(2874), - [anon_sym_AT_AT_GT] = ACTIONS(2876), - [anon_sym_COLON_GT] = ACTIONS(2876), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_fun] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_match_BANG] = ACTIONS(2876), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_DOT_LBRACK] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2874), - [anon_sym_use_BANG] = ACTIONS(2876), - [anon_sym_do_BANG] = ACTIONS(2876), - [anon_sym_begin] = ACTIONS(2874), - [anon_sym_LPAREN2] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [anon_sym_AT_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2876), - [sym_bool] = ACTIONS(2874), - [sym_unit] = ACTIONS(2874), - [aux_sym__identifier_or_op_token1] = ACTIONS(2874), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_PLUS_DOT] = ACTIONS(2874), - [anon_sym_DASH_DOT] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_prefix_op_token1] = ACTIONS(2876), - [aux_sym_infix_op_token1] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2874), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2876), - [sym_int] = ACTIONS(2874), - [sym_xint] = ACTIONS(2876), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2876), - [sym__newline] = ACTIONS(2876), - [sym__then] = ACTIONS(2876), + [1943] = { + [sym_xml_doc] = STATE(1943), + [sym_block_comment] = STATE(1943), + [sym_preproc_line] = STATE(1943), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), }, - [1986] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), - [sym_xml_doc] = STATE(1986), - [sym_block_comment] = STATE(1986), - [sym_preproc_line] = STATE(1986), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3639), - [anon_sym_namespace] = ACTIONS(3639), - [anon_sym_module] = ACTIONS(3639), - [anon_sym_POUNDnowarn] = ACTIONS(3637), - [anon_sym_POUNDr] = ACTIONS(3637), - [anon_sym_POUNDload] = ACTIONS(3637), - [anon_sym_open] = ACTIONS(3639), - [anon_sym_LBRACK_LT] = ACTIONS(3637), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_type] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_and] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3637), - [aux_sym_access_modifier_token1] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_static] = ACTIONS(3639), - [anon_sym_member] = ACTIONS(3639), - [anon_sym_abstract] = ACTIONS(3639), - [anon_sym_override] = ACTIONS(3639), - [anon_sym_default] = ACTIONS(3639), - [anon_sym_val] = ACTIONS(3639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3637), - [aux_sym__identifier_or_op_token1] = ACTIONS(3637), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3637), - [anon_sym_DASH_DOT] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP_AMP] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3637), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3637), + [1944] = { + [sym_xml_doc] = STATE(1944), + [sym_block_comment] = STATE(1944), + [sym_preproc_line] = STATE(1944), + [aux_sym__compound_type_repeat1] = STATE(1915), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_POUNDnowarn] = ACTIONS(2589), + [anon_sym_POUNDr] = ACTIONS(2589), + [anon_sym_POUNDload] = ACTIONS(2589), + [anon_sym_open] = ACTIONS(2587), + [anon_sym_LBRACK_LT] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_and] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [aux_sym_access_modifier_token1] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_LT_AT_AT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_member] = ACTIONS(2587), + [anon_sym_interface] = ACTIONS(2587), + [anon_sym_abstract] = ACTIONS(2587), + [anon_sym_override] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_val] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2589), + [aux_sym__identifier_or_op_token1] = ACTIONS(2589), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2589), + [anon_sym_DASH_DOT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3637), - }, - [1987] = { - [sym_xml_doc] = STATE(1987), - [sym_block_comment] = STATE(1987), - [sym_preproc_line] = STATE(1987), - [sym_identifier] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_let_BANG] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACK_PIPE] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_PIPE] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_return_BANG] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_yield_BANG] = ACTIONS(2880), - [anon_sym_lazy] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_upcast] = ACTIONS(2878), - [anon_sym_downcast] = ACTIONS(2878), - [anon_sym_LT_AT] = ACTIONS(2878), - [anon_sym_AT_GT] = ACTIONS(2880), - [anon_sym_LT_AT_AT] = ACTIONS(2878), - [anon_sym_AT_AT_GT] = ACTIONS(2880), - [anon_sym_COLON_GT] = ACTIONS(2880), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_fun] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_match_BANG] = ACTIONS(2880), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_DOT_LBRACK] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2878), - [anon_sym_use_BANG] = ACTIONS(2880), - [anon_sym_do_BANG] = ACTIONS(2880), - [anon_sym_begin] = ACTIONS(2878), - [anon_sym_LPAREN2] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_AT_DQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2880), - [sym_bool] = ACTIONS(2878), - [sym_unit] = ACTIONS(2878), - [aux_sym__identifier_or_op_token1] = ACTIONS(2878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_PLUS_DOT] = ACTIONS(2878), - [anon_sym_DASH_DOT] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_prefix_op_token1] = ACTIONS(2880), - [aux_sym_infix_op_token1] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2880), - [sym_int] = ACTIONS(2878), - [sym_xint] = ACTIONS(2880), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2880), - [sym__newline] = ACTIONS(2880), - [sym__then] = ACTIONS(2880), - }, - [1988] = { - [sym_xml_doc] = STATE(1988), - [sym_block_comment] = STATE(1988), - [sym_preproc_line] = STATE(1988), - [sym_identifier] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_let_BANG] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_COLON_QMARK] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACK_PIPE] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACE_PIPE] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_return_BANG] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_yield_BANG] = ACTIONS(2884), - [anon_sym_lazy] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_upcast] = ACTIONS(2882), - [anon_sym_downcast] = ACTIONS(2882), - [anon_sym_LT_AT] = ACTIONS(2882), - [anon_sym_AT_GT] = ACTIONS(2884), - [anon_sym_LT_AT_AT] = ACTIONS(2882), - [anon_sym_AT_AT_GT] = ACTIONS(2884), - [anon_sym_COLON_GT] = ACTIONS(2884), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_fun] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_match_BANG] = ACTIONS(2884), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_DOT_LBRACK] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2882), - [anon_sym_use_BANG] = ACTIONS(2884), - [anon_sym_do_BANG] = ACTIONS(2884), - [anon_sym_begin] = ACTIONS(2882), - [anon_sym_LPAREN2] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [anon_sym_AT_DQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2884), - [sym_bool] = ACTIONS(2882), - [sym_unit] = ACTIONS(2882), - [aux_sym__identifier_or_op_token1] = ACTIONS(2882), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_PLUS_DOT] = ACTIONS(2882), - [anon_sym_DASH_DOT] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_prefix_op_token1] = ACTIONS(2884), - [aux_sym_infix_op_token1] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2884), - [sym_int] = ACTIONS(2882), - [sym_xint] = ACTIONS(2884), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [sym__then] = ACTIONS(2884), - }, - [1989] = { - [sym_xml_doc] = STATE(1989), - [sym_block_comment] = STATE(1989), - [sym_preproc_line] = STATE(1989), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [anon_sym_POUNDif] = ACTIONS(2589), }, - [1990] = { - [sym_xml_doc] = STATE(1990), - [sym_block_comment] = STATE(1990), - [sym_preproc_line] = STATE(1990), - [sym_identifier] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym_COLON] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_let_BANG] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_COLON_QMARK] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_LBRACK_PIPE] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LBRACE_PIPE] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3064), - [anon_sym_return_BANG] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_yield_BANG] = ACTIONS(3066), - [anon_sym_lazy] = ACTIONS(3064), - [anon_sym_assert] = ACTIONS(3064), - [anon_sym_upcast] = ACTIONS(3064), - [anon_sym_downcast] = ACTIONS(3064), - [anon_sym_LT_AT] = ACTIONS(3064), - [anon_sym_AT_GT] = ACTIONS(3066), - [anon_sym_LT_AT_AT] = ACTIONS(3064), - [anon_sym_AT_AT_GT] = ACTIONS(3066), - [anon_sym_COLON_GT] = ACTIONS(3066), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_match_BANG] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_DOT_LBRACK] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_use_BANG] = ACTIONS(3066), - [anon_sym_do_BANG] = ACTIONS(3066), - [anon_sym_begin] = ACTIONS(3064), - [anon_sym_LPAREN2] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_AT_DQUOTE] = ACTIONS(3066), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3066), - [sym_bool] = ACTIONS(3064), - [sym_unit] = ACTIONS(3064), - [aux_sym__identifier_or_op_token1] = ACTIONS(3064), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_PLUS_DOT] = ACTIONS(3064), - [anon_sym_DASH_DOT] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3066), - [aux_sym_prefix_op_token1] = ACTIONS(3066), - [aux_sym_infix_op_token1] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_DOLLAR] = ACTIONS(3064), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3066), - [sym_int] = ACTIONS(3064), - [sym_xint] = ACTIONS(3066), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3066), - [sym__newline] = ACTIONS(3066), - [sym__then] = ACTIONS(3066), - }, - [1991] = { - [sym_xml_doc] = STATE(1991), - [sym_block_comment] = STATE(1991), - [sym_preproc_line] = STATE(1991), - [sym_identifier] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_COLON] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_let_BANG] = ACTIONS(2888), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_COLON_QMARK] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACK_PIPE] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACE_PIPE] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_return_BANG] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_yield_BANG] = ACTIONS(2888), - [anon_sym_lazy] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_upcast] = ACTIONS(2886), - [anon_sym_downcast] = ACTIONS(2886), - [anon_sym_LT_AT] = ACTIONS(2886), - [anon_sym_AT_GT] = ACTIONS(2888), - [anon_sym_LT_AT_AT] = ACTIONS(2886), - [anon_sym_AT_AT_GT] = ACTIONS(2888), - [anon_sym_COLON_GT] = ACTIONS(2888), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_fun] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_match_BANG] = ACTIONS(2888), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_DOT_LBRACK] = ACTIONS(2888), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2886), - [anon_sym_use_BANG] = ACTIONS(2888), - [anon_sym_do_BANG] = ACTIONS(2888), - [anon_sym_begin] = ACTIONS(2886), - [anon_sym_LPAREN2] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [anon_sym_AT_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2888), - [sym_bool] = ACTIONS(2886), - [sym_unit] = ACTIONS(2886), - [aux_sym__identifier_or_op_token1] = ACTIONS(2886), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_PLUS_DOT] = ACTIONS(2886), - [anon_sym_DASH_DOT] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_prefix_op_token1] = ACTIONS(2888), - [aux_sym_infix_op_token1] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_COLON_EQ] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2886), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2888), - [sym_int] = ACTIONS(2886), - [sym_xint] = ACTIONS(2888), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2888), - [sym__newline] = ACTIONS(2888), - [sym__then] = ACTIONS(2888), - }, - [1992] = { - [sym_xml_doc] = STATE(1992), - [sym_block_comment] = STATE(1992), - [sym_preproc_line] = STATE(1992), - [sym_identifier] = ACTIONS(2908), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_let_BANG] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_COLON_QMARK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LBRACK_PIPE] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_LBRACE_PIPE] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_return_BANG] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_yield_BANG] = ACTIONS(2910), - [anon_sym_lazy] = ACTIONS(2908), - [anon_sym_assert] = ACTIONS(2908), - [anon_sym_upcast] = ACTIONS(2908), - [anon_sym_downcast] = ACTIONS(2908), - [anon_sym_LT_AT] = ACTIONS(2908), - [anon_sym_AT_GT] = ACTIONS(2910), - [anon_sym_LT_AT_AT] = ACTIONS(2908), - [anon_sym_AT_AT_GT] = ACTIONS(2910), - [anon_sym_COLON_GT] = ACTIONS(2910), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_fun] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_match_BANG] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2908), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_DOT_LBRACK] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_use_BANG] = ACTIONS(2910), - [anon_sym_do_BANG] = ACTIONS(2910), - [anon_sym_begin] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_AT_DQUOTE] = ACTIONS(2910), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), - [sym_bool] = ACTIONS(2908), - [sym_unit] = ACTIONS(2908), - [aux_sym__identifier_or_op_token1] = ACTIONS(2908), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS_DOT] = ACTIONS(2908), - [anon_sym_DASH_DOT] = ACTIONS(2908), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2910), - [aux_sym_prefix_op_token1] = ACTIONS(2910), - [aux_sym_infix_op_token1] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2908), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), - [sym_int] = ACTIONS(2908), - [sym_xint] = ACTIONS(2910), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), + [1945] = { + [sym_xml_doc] = STATE(1945), + [sym_block_comment] = STATE(1945), + [sym_preproc_line] = STATE(1945), + [sym_identifier] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_let_BANG] = ACTIONS(2906), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACK_PIPE] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_LBRACE_PIPE] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_return_BANG] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_yield_BANG] = ACTIONS(2906), + [anon_sym_lazy] = ACTIONS(2904), + [anon_sym_assert] = ACTIONS(2904), + [anon_sym_upcast] = ACTIONS(2904), + [anon_sym_downcast] = ACTIONS(2904), + [anon_sym_LT_AT] = ACTIONS(2904), + [anon_sym_AT_GT] = ACTIONS(2906), + [anon_sym_LT_AT_AT] = ACTIONS(2904), + [anon_sym_AT_AT_GT] = ACTIONS(2906), + [anon_sym_COLON_GT] = ACTIONS(2906), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_fun] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_match_BANG] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_DOT_LBRACK] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_use_BANG] = ACTIONS(2906), + [anon_sym_do_BANG] = ACTIONS(2906), + [anon_sym_begin] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_AT_DQUOTE] = ACTIONS(2906), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2906), + [sym_bool] = ACTIONS(2904), + [sym_unit] = ACTIONS(2904), + [aux_sym__identifier_or_op_token1] = ACTIONS(2904), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS_DOT] = ACTIONS(2904), + [anon_sym_DASH_DOT] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_prefix_op_token1] = ACTIONS(2906), + [aux_sym_infix_op_token1] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_DOLLAR] = ACTIONS(2904), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2906), + [sym_int] = ACTIONS(2904), + [sym_xint] = ACTIONS(2906), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2910), - [sym__newline] = ACTIONS(2910), - [sym__then] = ACTIONS(2910), - }, - [1993] = { - [sym_xml_doc] = STATE(1993), - [sym_block_comment] = STATE(1993), - [sym_preproc_line] = STATE(1993), - [sym_identifier] = ACTIONS(3060), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_do] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_let_BANG] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3060), - [anon_sym_COLON_QMARK] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_LBRACK_PIPE] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3060), - [anon_sym_return_BANG] = ACTIONS(3062), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_yield_BANG] = ACTIONS(3062), - [anon_sym_lazy] = ACTIONS(3060), - [anon_sym_assert] = ACTIONS(3060), - [anon_sym_upcast] = ACTIONS(3060), - [anon_sym_downcast] = ACTIONS(3060), - [anon_sym_LT_AT] = ACTIONS(3060), - [anon_sym_AT_GT] = ACTIONS(3062), - [anon_sym_LT_AT_AT] = ACTIONS(3060), - [anon_sym_AT_AT_GT] = ACTIONS(3062), - [anon_sym_COLON_GT] = ACTIONS(3062), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_fun] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_match_BANG] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3060), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_DOT_LBRACK] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_use_BANG] = ACTIONS(3062), - [anon_sym_do_BANG] = ACTIONS(3062), - [anon_sym_begin] = ACTIONS(3060), - [anon_sym_LPAREN2] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_AT_DQUOTE] = ACTIONS(3062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3062), - [sym_bool] = ACTIONS(3060), - [sym_unit] = ACTIONS(3060), - [aux_sym__identifier_or_op_token1] = ACTIONS(3060), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3060), - [anon_sym_PLUS] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_PLUS_DOT] = ACTIONS(3060), - [anon_sym_DASH_DOT] = ACTIONS(3060), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3062), - [aux_sym_prefix_op_token1] = ACTIONS(3062), - [aux_sym_infix_op_token1] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(3060), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3062), - [sym_int] = ACTIONS(3060), - [sym_xint] = ACTIONS(3062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3062), - [sym__newline] = ACTIONS(3062), - [sym__then] = ACTIONS(3062), - }, - [1994] = { - [sym_xml_doc] = STATE(1994), - [sym_block_comment] = STATE(1994), - [sym_preproc_line] = STATE(1994), - [sym_identifier] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_let_BANG] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LBRACK_PIPE] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LBRACE_PIPE] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_return_BANG] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_yield_BANG] = ACTIONS(3058), - [anon_sym_lazy] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_upcast] = ACTIONS(3056), - [anon_sym_downcast] = ACTIONS(3056), - [anon_sym_LT_AT] = ACTIONS(3056), - [anon_sym_AT_GT] = ACTIONS(3058), - [anon_sym_LT_AT_AT] = ACTIONS(3056), - [anon_sym_AT_AT_GT] = ACTIONS(3058), - [anon_sym_COLON_GT] = ACTIONS(3058), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_fun] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_match_BANG] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_DOT_LBRACK] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_use_BANG] = ACTIONS(3058), - [anon_sym_do_BANG] = ACTIONS(3058), - [anon_sym_begin] = ACTIONS(3056), - [anon_sym_LPAREN2] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_AT_DQUOTE] = ACTIONS(3058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3058), - [sym_bool] = ACTIONS(3056), - [sym_unit] = ACTIONS(3056), - [aux_sym__identifier_or_op_token1] = ACTIONS(3056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_PLUS_DOT] = ACTIONS(3056), - [anon_sym_DASH_DOT] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3058), - [aux_sym_prefix_op_token1] = ACTIONS(3058), - [aux_sym_infix_op_token1] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_DOLLAR] = ACTIONS(3056), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3058), - [sym_int] = ACTIONS(3056), - [sym_xint] = ACTIONS(3058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3058), - [sym__newline] = ACTIONS(3058), - [sym__then] = ACTIONS(3058), - }, - [1995] = { - [sym_xml_doc] = STATE(1995), - [sym_block_comment] = STATE(1995), - [sym_preproc_line] = STATE(1995), - [sym_identifier] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_let_BANG] = ACTIONS(2892), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACK_PIPE] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACE_PIPE] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_return_BANG] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_yield_BANG] = ACTIONS(2892), - [anon_sym_lazy] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_upcast] = ACTIONS(2890), - [anon_sym_downcast] = ACTIONS(2890), - [anon_sym_LT_AT] = ACTIONS(2890), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2890), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2892), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_fun] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_match_BANG] = ACTIONS(2892), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_DOT_LBRACK] = ACTIONS(2892), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2890), - [anon_sym_use_BANG] = ACTIONS(2892), - [anon_sym_do_BANG] = ACTIONS(2892), - [anon_sym_begin] = ACTIONS(2890), - [anon_sym_LPAREN2] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_AT_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2892), - [sym_bool] = ACTIONS(2890), - [sym_unit] = ACTIONS(2890), - [aux_sym__identifier_or_op_token1] = ACTIONS(2890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_PLUS_DOT] = ACTIONS(2890), - [anon_sym_DASH_DOT] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2890), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2890), - [sym_xint] = ACTIONS(2892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2892), - [sym__newline] = ACTIONS(2892), - [sym__then] = ACTIONS(2892), - }, - [1996] = { - [sym_xml_doc] = STATE(1996), - [sym_block_comment] = STATE(1996), - [sym_preproc_line] = STATE(1996), - [sym_identifier] = ACTIONS(2634), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_let_BANG] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_COLON_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACK_PIPE] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_LBRACE_PIPE] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_return_BANG] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_yield_BANG] = ACTIONS(2632), - [anon_sym_lazy] = ACTIONS(2634), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_upcast] = ACTIONS(2634), - [anon_sym_downcast] = ACTIONS(2634), - [anon_sym_LT_AT] = ACTIONS(2634), - [anon_sym_AT_GT] = ACTIONS(2632), - [anon_sym_LT_AT_AT] = ACTIONS(2634), - [anon_sym_AT_AT_GT] = ACTIONS(2632), - [anon_sym_COLON_GT] = ACTIONS(2632), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_fun] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_match_BANG] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_DOT_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_use_BANG] = ACTIONS(2632), - [anon_sym_do_BANG] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_begin] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2634), - [anon_sym_AT_DQUOTE] = ACTIONS(2632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2632), - [sym_bool] = ACTIONS(2634), - [sym_unit] = ACTIONS(2634), - [aux_sym__identifier_or_op_token1] = ACTIONS(2634), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [aux_sym_prefix_op_token1] = ACTIONS(2632), - [aux_sym_infix_op_token1] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [anon_sym_BANG_EQ] = ACTIONS(2632), - [anon_sym_COLON_EQ] = ACTIONS(2632), - [anon_sym_DOLLAR] = ACTIONS(2634), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2632), - [sym_int] = ACTIONS(2634), - [sym_xint] = ACTIONS(2632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), + [anon_sym_POUNDif] = ACTIONS(2906), + [sym__newline] = ACTIONS(2906), + [sym__then] = ACTIONS(2906), }, - [1997] = { - [sym_xml_doc] = STATE(1997), - [sym_block_comment] = STATE(1997), - [sym_preproc_line] = STATE(1997), - [sym_identifier] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_let_BANG] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_return_BANG] = ACTIONS(2994), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_yield_BANG] = ACTIONS(2994), - [anon_sym_lazy] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_upcast] = ACTIONS(2992), - [anon_sym_downcast] = ACTIONS(2992), - [anon_sym_LT_AT] = ACTIONS(2992), - [anon_sym_AT_GT] = ACTIONS(2994), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_AT_AT_GT] = ACTIONS(2994), - [anon_sym_COLON_GT] = ACTIONS(2994), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_fun] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_match_BANG] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_DOT_LBRACK] = ACTIONS(2994), - [anon_sym_DOT] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_use_BANG] = ACTIONS(2994), - [anon_sym_do_BANG] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_begin] = ACTIONS(2992), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_AT_DQUOTE] = ACTIONS(2994), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2994), - [sym_bool] = ACTIONS(2992), - [sym_unit] = ACTIONS(2992), - [aux_sym__identifier_or_op_token1] = ACTIONS(2992), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [aux_sym_prefix_op_token1] = ACTIONS(2994), - [aux_sym_infix_op_token1] = ACTIONS(2992), - [anon_sym_PIPE_PIPE] = ACTIONS(2992), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2994), - [sym_int] = ACTIONS(2992), - [sym_xint] = ACTIONS(2994), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2994), - [sym__newline] = ACTIONS(2994), + [1946] = { + [sym_xml_doc] = STATE(1946), + [sym_block_comment] = STATE(1946), + [sym_preproc_line] = STATE(1946), + [sym_identifier] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_let_BANG] = ACTIONS(2898), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACK_PIPE] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_PIPE] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_return_BANG] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_yield_BANG] = ACTIONS(2898), + [anon_sym_lazy] = ACTIONS(2896), + [anon_sym_assert] = ACTIONS(2896), + [anon_sym_upcast] = ACTIONS(2896), + [anon_sym_downcast] = ACTIONS(2896), + [anon_sym_LT_AT] = ACTIONS(2896), + [anon_sym_AT_GT] = ACTIONS(2898), + [anon_sym_LT_AT_AT] = ACTIONS(2896), + [anon_sym_AT_AT_GT] = ACTIONS(2898), + [anon_sym_COLON_GT] = ACTIONS(2898), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_fun] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_match_BANG] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_DOT_LBRACK] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_use_BANG] = ACTIONS(2898), + [anon_sym_do_BANG] = ACTIONS(2898), + [anon_sym_begin] = ACTIONS(2896), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_AT_DQUOTE] = ACTIONS(2898), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2898), + [sym_bool] = ACTIONS(2896), + [sym_unit] = ACTIONS(2896), + [aux_sym__identifier_or_op_token1] = ACTIONS(2896), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_PLUS_DOT] = ACTIONS(2896), + [anon_sym_DASH_DOT] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_prefix_op_token1] = ACTIONS(2898), + [aux_sym_infix_op_token1] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2898), + [sym_int] = ACTIONS(2896), + [sym_xint] = ACTIONS(2898), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2898), + [sym__newline] = ACTIONS(2898), + [sym__then] = ACTIONS(2898), }, - [1998] = { - [sym_xml_doc] = STATE(1998), - [sym_block_comment] = STATE(1998), - [sym_preproc_line] = STATE(1998), - [sym_identifier] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_do] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_let_BANG] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LBRACK_PIPE] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3052), - [anon_sym_return_BANG] = ACTIONS(3054), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_yield_BANG] = ACTIONS(3054), - [anon_sym_lazy] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_upcast] = ACTIONS(3052), - [anon_sym_downcast] = ACTIONS(3052), - [anon_sym_LT_AT] = ACTIONS(3052), - [anon_sym_AT_GT] = ACTIONS(3054), - [anon_sym_LT_AT_AT] = ACTIONS(3052), - [anon_sym_AT_AT_GT] = ACTIONS(3054), - [anon_sym_COLON_GT] = ACTIONS(3054), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_fun] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_match_BANG] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_DOT_LBRACK] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_use_BANG] = ACTIONS(3054), - [anon_sym_do_BANG] = ACTIONS(3054), - [anon_sym_begin] = ACTIONS(3052), - [anon_sym_LPAREN2] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_AT_DQUOTE] = ACTIONS(3054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3054), - [sym_bool] = ACTIONS(3052), - [sym_unit] = ACTIONS(3052), - [aux_sym__identifier_or_op_token1] = ACTIONS(3052), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_PLUS_DOT] = ACTIONS(3052), - [anon_sym_DASH_DOT] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3054), - [aux_sym_prefix_op_token1] = ACTIONS(3054), - [aux_sym_infix_op_token1] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_DOLLAR] = ACTIONS(3052), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3054), - [sym_int] = ACTIONS(3052), - [sym_xint] = ACTIONS(3054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3054), - [sym__newline] = ACTIONS(3054), - [sym__then] = ACTIONS(3054), + [1947] = { + [sym_xml_doc] = STATE(1947), + [sym_block_comment] = STATE(1947), + [sym_preproc_line] = STATE(1947), + [sym_identifier] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_do] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_let_BANG] = ACTIONS(3145), + [anon_sym_null] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LBRACK_PIPE] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_LBRACE_PIPE] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3143), + [anon_sym_return_BANG] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_yield_BANG] = ACTIONS(3145), + [anon_sym_lazy] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3143), + [anon_sym_upcast] = ACTIONS(3143), + [anon_sym_downcast] = ACTIONS(3143), + [anon_sym_LT_AT] = ACTIONS(3143), + [anon_sym_AT_GT] = ACTIONS(3145), + [anon_sym_LT_AT_AT] = ACTIONS(3143), + [anon_sym_AT_AT_GT] = ACTIONS(3145), + [anon_sym_COLON_GT] = ACTIONS(3145), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_fun] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_match_BANG] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3143), + [anon_sym_LT_DASH] = ACTIONS(3143), + [anon_sym_DOT_LBRACK] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_use_BANG] = ACTIONS(3145), + [anon_sym_do_BANG] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3145), + [anon_sym_begin] = ACTIONS(3143), + [anon_sym_LPAREN2] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_AT_DQUOTE] = ACTIONS(3145), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3145), + [sym_bool] = ACTIONS(3143), + [sym_unit] = ACTIONS(3143), + [aux_sym__identifier_or_op_token1] = ACTIONS(3143), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_PLUS_DOT] = ACTIONS(3143), + [anon_sym_DASH_DOT] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3145), + [aux_sym_prefix_op_token1] = ACTIONS(3145), + [aux_sym_infix_op_token1] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_COLON_EQ] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3145), + [sym_int] = ACTIONS(3143), + [sym_xint] = ACTIONS(3145), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3145), + [sym__newline] = ACTIONS(3145), }, - [1999] = { - [sym_type_arguments] = STATE(2013), - [sym_long_identifier] = STATE(2012), - [sym_xml_doc] = STATE(1999), - [sym_block_comment] = STATE(1999), - [sym_preproc_line] = STATE(1999), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3643), - [anon_sym_namespace] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_POUNDnowarn] = ACTIONS(3641), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_and] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3641), - [aux_sym_access_modifier_token1] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3643), - [anon_sym_member] = ACTIONS(3643), - [anon_sym_abstract] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3643), - [anon_sym_default] = ACTIONS(3643), - [anon_sym_val] = ACTIONS(3643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3641), - [aux_sym__identifier_or_op_token1] = ACTIONS(3641), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3641), - [anon_sym_DASH_DOT] = ACTIONS(3641), - [anon_sym_PERCENT] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3641), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3641), + [1948] = { + [sym_xml_doc] = STATE(1948), + [sym_block_comment] = STATE(1948), + [sym_preproc_line] = STATE(1948), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2644), + [anon_sym_namespace] = ACTIONS(2644), + [anon_sym_module] = ACTIONS(2644), + [anon_sym_POUNDnowarn] = ACTIONS(2646), + [anon_sym_POUNDr] = ACTIONS(2646), + [anon_sym_POUNDload] = ACTIONS(2646), + [anon_sym_open] = ACTIONS(2644), + [anon_sym_LBRACK_LT] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_and] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [aux_sym_access_modifier_token1] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_LT_AT_AT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_member] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_val] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2646), + [aux_sym__identifier_or_op_token1] = ACTIONS(2646), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2646), + [anon_sym_DASH_DOT] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3641), - }, - [2000] = { - [sym_xml_doc] = STATE(2000), - [sym_block_comment] = STATE(2000), - [sym_preproc_line] = STATE(2000), - [sym_identifier] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_let_BANG] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2988), - [anon_sym_QMARK] = ACTIONS(2988), - [anon_sym_COLON_QMARK] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2988), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2988), - [anon_sym_return_BANG] = ACTIONS(2990), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_yield_BANG] = ACTIONS(2990), - [anon_sym_lazy] = ACTIONS(2988), - [anon_sym_assert] = ACTIONS(2988), - [anon_sym_upcast] = ACTIONS(2988), - [anon_sym_downcast] = ACTIONS(2988), - [anon_sym_LT_AT] = ACTIONS(2988), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2990), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_fun] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_match_BANG] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_LT_DASH] = ACTIONS(2988), - [anon_sym_DOT_LBRACK] = ACTIONS(2990), - [anon_sym_DOT] = ACTIONS(2988), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_use_BANG] = ACTIONS(2990), - [anon_sym_do_BANG] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_begin] = ACTIONS(2988), - [anon_sym_LPAREN2] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2990), - [anon_sym_or] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_AT_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2990), - [sym_bool] = ACTIONS(2988), - [sym_unit] = ACTIONS(2988), - [aux_sym__identifier_or_op_token1] = ACTIONS(2988), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2988), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2990), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2988), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2988), - [sym_xint] = ACTIONS(2990), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2990), - [sym__newline] = ACTIONS(2990), - }, - [2001] = { - [sym_xml_doc] = STATE(2001), - [sym_block_comment] = STATE(2001), - [sym_preproc_line] = STATE(2001), - [sym_identifier] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_do] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_let_BANG] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_COLON_QMARK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LBRACK_PIPE] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LBRACE_PIPE] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3048), - [anon_sym_return_BANG] = ACTIONS(3050), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_yield_BANG] = ACTIONS(3050), - [anon_sym_lazy] = ACTIONS(3048), - [anon_sym_assert] = ACTIONS(3048), - [anon_sym_upcast] = ACTIONS(3048), - [anon_sym_downcast] = ACTIONS(3048), - [anon_sym_LT_AT] = ACTIONS(3048), - [anon_sym_AT_GT] = ACTIONS(3050), - [anon_sym_LT_AT_AT] = ACTIONS(3048), - [anon_sym_AT_AT_GT] = ACTIONS(3050), - [anon_sym_COLON_GT] = ACTIONS(3050), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_fun] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_match_BANG] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3048), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_DOT_LBRACK] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_use_BANG] = ACTIONS(3050), - [anon_sym_do_BANG] = ACTIONS(3050), - [anon_sym_begin] = ACTIONS(3048), - [anon_sym_LPAREN2] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_AT_DQUOTE] = ACTIONS(3050), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3050), - [sym_bool] = ACTIONS(3048), - [sym_unit] = ACTIONS(3048), - [aux_sym__identifier_or_op_token1] = ACTIONS(3048), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3048), - [anon_sym_PLUS_DOT] = ACTIONS(3048), - [anon_sym_DASH_DOT] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3050), - [aux_sym_prefix_op_token1] = ACTIONS(3050), - [aux_sym_infix_op_token1] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3050), - [sym_int] = ACTIONS(3048), - [sym_xint] = ACTIONS(3050), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3050), - [sym__newline] = ACTIONS(3050), - [sym__then] = ACTIONS(3050), + [anon_sym_POUNDif] = ACTIONS(2646), }, - [2002] = { - [sym_xml_doc] = STATE(2002), - [sym_block_comment] = STATE(2002), - [sym_preproc_line] = STATE(2002), - [sym_identifier] = ACTIONS(2956), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_let_BANG] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_COLON_QMARK] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2956), - [anon_sym_return_BANG] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_yield_BANG] = ACTIONS(2958), - [anon_sym_lazy] = ACTIONS(2956), - [anon_sym_assert] = ACTIONS(2956), - [anon_sym_upcast] = ACTIONS(2956), - [anon_sym_downcast] = ACTIONS(2956), - [anon_sym_LT_AT] = ACTIONS(2956), - [anon_sym_AT_GT] = ACTIONS(2958), - [anon_sym_LT_AT_AT] = ACTIONS(2956), - [anon_sym_AT_AT_GT] = ACTIONS(2958), - [anon_sym_COLON_GT] = ACTIONS(2958), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_fun] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_match_BANG] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2956), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_DOT_LBRACK] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_use_BANG] = ACTIONS(2958), - [anon_sym_do_BANG] = ACTIONS(2958), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_begin] = ACTIONS(2956), - [anon_sym_LPAREN2] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_AT_DQUOTE] = ACTIONS(2958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2958), - [sym_bool] = ACTIONS(2956), - [sym_unit] = ACTIONS(2956), - [aux_sym__identifier_or_op_token1] = ACTIONS(2956), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2956), - [anon_sym_PLUS_DOT] = ACTIONS(2956), - [anon_sym_DASH_DOT] = ACTIONS(2956), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [aux_sym_prefix_op_token1] = ACTIONS(2958), - [aux_sym_infix_op_token1] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2958), - [sym_int] = ACTIONS(2956), - [sym_xint] = ACTIONS(2958), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(123), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(125), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2958), - [sym__newline] = ACTIONS(2958), + [1949] = { + [sym_xml_doc] = STATE(1949), + [sym_block_comment] = STATE(1949), + [sym_preproc_line] = STATE(1949), + [sym_identifier] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_COLON_QMARK] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_AT_GT] = ACTIONS(2968), + [anon_sym_LT_AT_AT] = ACTIONS(2966), + [anon_sym_AT_AT_GT] = ACTIONS(2968), + [anon_sym_COLON_GT] = ACTIONS(2968), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_DOT_LBRACK] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_DOT_DOT] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2966), + [aux_sym__identifier_or_op_token1] = ACTIONS(2966), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2966), + [anon_sym_DASH_DOT] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [aux_sym_infix_op_token1] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__newline] = ACTIONS(2968), }, - [2003] = { - [sym_xml_doc] = STATE(2003), - [sym_block_comment] = STATE(2003), - [sym_preproc_line] = STATE(2003), - [aux_sym_long_identifier_repeat1] = STATE(1980), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_and] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [aux_sym_access_modifier_token1] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_member] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_val] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [1950] = { + [sym_xml_doc] = STATE(1950), + [sym_block_comment] = STATE(1950), + [sym_preproc_line] = STATE(1950), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_and] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [aux_sym_access_modifier_token1] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_member] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_val] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(2605), }, - [2004] = { - [sym_attributes] = STATE(3596), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4360), - [sym_member_defn] = STATE(2100), - [sym_additional_constr_defn] = STATE(2121), - [sym_xml_doc] = STATE(2004), - [sym_block_comment] = STATE(2004), - [sym_preproc_line] = STATE(2004), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(1868), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3647), - [anon_sym_namespace] = ACTIONS(3647), - [anon_sym_module] = ACTIONS(3647), - [anon_sym_POUNDnowarn] = ACTIONS(3645), - [anon_sym_POUNDr] = ACTIONS(3645), - [anon_sym_POUNDload] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3647), - [anon_sym_LBRACK_LT] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3647), - [anon_sym_type] = ACTIONS(3647), - [anon_sym_do] = ACTIONS(3647), - [anon_sym_and] = ACTIONS(3647), - [anon_sym_let] = ACTIONS(3647), - [anon_sym_let_BANG] = ACTIONS(3645), - [aux_sym_access_modifier_token1] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3647), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3647), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3647), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3647), - [anon_sym_assert] = ACTIONS(3647), - [anon_sym_upcast] = ACTIONS(3647), - [anon_sym_downcast] = ACTIONS(3647), - [anon_sym_LT_AT] = ACTIONS(3647), - [anon_sym_LT_AT_AT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3647), - [anon_sym_while] = ACTIONS(3647), - [anon_sym_if] = ACTIONS(3647), - [anon_sym_fun] = ACTIONS(3647), - [anon_sym_try] = ACTIONS(3647), - [anon_sym_match] = ACTIONS(3647), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3647), - [anon_sym_use] = ACTIONS(3647), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3647), - [anon_sym_SQUOTE] = ACTIONS(3645), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_member] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_val] = ACTIONS(3632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3647), - [sym_unit] = ACTIONS(3645), - [aux_sym__identifier_or_op_token1] = ACTIONS(3645), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_PLUS_DOT] = ACTIONS(3645), - [anon_sym_DASH_DOT] = ACTIONS(3645), - [anon_sym_PERCENT] = ACTIONS(3645), - [anon_sym_AMP_AMP] = ACTIONS(3645), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3645), - [sym_int] = ACTIONS(3647), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3645), + [1951] = { + [sym_xml_doc] = STATE(1951), + [sym_block_comment] = STATE(1951), + [sym_preproc_line] = STATE(1951), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_DOT_DOT] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), }, - [2005] = { - [sym_xml_doc] = STATE(2005), - [sym_block_comment] = STATE(2005), - [sym_preproc_line] = STATE(2005), - [sym_identifier] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_and] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [aux_sym_access_modifier_token1] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(3649), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_member] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_override] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_val] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), + [1952] = { + [sym_xml_doc] = STATE(1952), + [sym_block_comment] = STATE(1952), + [sym_preproc_line] = STATE(1952), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), + [sym__then] = ACTIONS(3153), }, - [2006] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2006), - [sym_block_comment] = STATE(2006), - [sym_preproc_line] = STATE(2006), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3639), - [anon_sym_module] = ACTIONS(3639), - [anon_sym_POUNDnowarn] = ACTIONS(3637), - [anon_sym_POUNDr] = ACTIONS(3637), - [anon_sym_POUNDload] = ACTIONS(3637), - [anon_sym_open] = ACTIONS(3639), - [anon_sym_LBRACK_LT] = ACTIONS(3637), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_type] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_and] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3637), - [aux_sym_access_modifier_token1] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3637), - [anon_sym_static] = ACTIONS(3639), - [anon_sym_member] = ACTIONS(3639), - [anon_sym_abstract] = ACTIONS(3639), - [anon_sym_override] = ACTIONS(3639), - [anon_sym_default] = ACTIONS(3639), - [anon_sym_val] = ACTIONS(3639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3637), - [aux_sym__identifier_or_op_token1] = ACTIONS(3637), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3637), - [anon_sym_DASH_DOT] = ACTIONS(3637), - [anon_sym_PERCENT] = ACTIONS(3637), - [anon_sym_AMP_AMP] = ACTIONS(3637), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3637), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__dedent] = ACTIONS(3637), + [1953] = { + [sym_xml_doc] = STATE(1953), + [sym_block_comment] = STATE(1953), + [sym_preproc_line] = STATE(1953), + [sym_identifier] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2900), + [anon_sym_COLON_QMARK] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_AT_GT] = ACTIONS(2902), + [anon_sym_LT_AT_AT] = ACTIONS(2900), + [anon_sym_AT_AT_GT] = ACTIONS(2902), + [anon_sym_COLON_GT] = ACTIONS(2902), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_DOT_LBRACK] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2900), + [aux_sym__identifier_or_op_token1] = ACTIONS(2900), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2900), + [anon_sym_DASH_DOT] = ACTIONS(2900), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [aux_sym_infix_op_token1] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2900), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [sym__then] = ACTIONS(2902), }, - [2007] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3458), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2036), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2007), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2007), - [sym_block_comment] = STATE(2007), - [sym_preproc_line] = STATE(2007), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_PIPE_RBRACK] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LT2] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1954] = { + [sym_xml_doc] = STATE(1954), + [sym_block_comment] = STATE(1954), + [sym_preproc_line] = STATE(1954), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), + [sym__then] = ACTIONS(3141), }, - [2008] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2008), - [sym_block_comment] = STATE(2008), - [sym_preproc_line] = STATE(2008), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_POUNDnowarn] = ACTIONS(3612), - [anon_sym_POUNDr] = ACTIONS(3612), - [anon_sym_POUNDload] = ACTIONS(3612), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_LBRACK_LT] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_and] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3612), - [aux_sym_access_modifier_token1] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_member] = ACTIONS(3614), - [anon_sym_abstract] = ACTIONS(3614), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_val] = ACTIONS(3614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3612), - [aux_sym__identifier_or_op_token1] = ACTIONS(3612), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3612), - [anon_sym_DASH_DOT] = ACTIONS(3612), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3612), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__dedent] = ACTIONS(3612), + [1955] = { + [sym_xml_doc] = STATE(1955), + [sym_block_comment] = STATE(1955), + [sym_preproc_line] = STATE(1955), + [sym_identifier] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2995), + [anon_sym_COLON] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_let] = ACTIONS(2993), + [anon_sym_let_BANG] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_COLON_QMARK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACK_PIPE] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_LBRACE_PIPE] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_return_BANG] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_yield_BANG] = ACTIONS(2995), + [anon_sym_lazy] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_upcast] = ACTIONS(2993), + [anon_sym_downcast] = ACTIONS(2993), + [anon_sym_LT_AT] = ACTIONS(2993), + [anon_sym_AT_GT] = ACTIONS(2995), + [anon_sym_LT_AT_AT] = ACTIONS(2993), + [anon_sym_AT_AT_GT] = ACTIONS(2995), + [anon_sym_COLON_GT] = ACTIONS(2995), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_fun] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_match_BANG] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_DOT_LBRACK] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2993), + [anon_sym_use_BANG] = ACTIONS(2995), + [anon_sym_do_BANG] = ACTIONS(2995), + [anon_sym_DOT_DOT] = ACTIONS(2995), + [anon_sym_begin] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_AT_DQUOTE] = ACTIONS(2995), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2995), + [sym_bool] = ACTIONS(2993), + [sym_unit] = ACTIONS(2993), + [aux_sym__identifier_or_op_token1] = ACTIONS(2993), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_DOT] = ACTIONS(2993), + [anon_sym_DASH_DOT] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [aux_sym_prefix_op_token1] = ACTIONS(2995), + [aux_sym_infix_op_token1] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2995), + [sym_int] = ACTIONS(2993), + [sym_xint] = ACTIONS(2995), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2995), + [sym__newline] = ACTIONS(2995), }, - [2009] = { - [sym_xml_doc] = STATE(2009), - [sym_block_comment] = STATE(2009), - [sym_preproc_line] = STATE(2009), - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2567), - [anon_sym_namespace] = ACTIONS(2567), - [anon_sym_module] = ACTIONS(2567), - [anon_sym_POUNDnowarn] = ACTIONS(2569), - [anon_sym_POUNDr] = ACTIONS(2569), - [anon_sym_POUNDload] = ACTIONS(2569), - [anon_sym_open] = ACTIONS(2567), - [anon_sym_LBRACK_LT] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_and] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [aux_sym_access_modifier_token1] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_LT_AT_AT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_member] = ACTIONS(2567), - [anon_sym_interface] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2567), - [anon_sym_override] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_val] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2569), - [aux_sym__identifier_or_op_token1] = ACTIONS(2569), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2569), - [anon_sym_DASH_DOT] = ACTIONS(2569), - [anon_sym_PERCENT] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), + [1956] = { + [sym_xml_doc] = STATE(1956), + [sym_block_comment] = STATE(1956), + [sym_preproc_line] = STATE(1956), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_DOT_DOT] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), }, - [2010] = { - [sym_xml_doc] = STATE(2010), - [sym_block_comment] = STATE(2010), - [sym_preproc_line] = STATE(2010), - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2571), - [anon_sym_module] = ACTIONS(2571), - [anon_sym_POUNDnowarn] = ACTIONS(2573), - [anon_sym_POUNDr] = ACTIONS(2573), - [anon_sym_POUNDload] = ACTIONS(2573), - [anon_sym_open] = ACTIONS(2571), - [anon_sym_LBRACK_LT] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [aux_sym_access_modifier_token1] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_LT_AT_AT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_member] = ACTIONS(2571), - [anon_sym_interface] = ACTIONS(2571), - [anon_sym_abstract] = ACTIONS(2571), - [anon_sym_override] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_val] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2573), - [aux_sym__identifier_or_op_token1] = ACTIONS(2573), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2573), - [anon_sym_DASH_DOT] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), + [1957] = { + [sym_xml_doc] = STATE(1957), + [sym_block_comment] = STATE(1957), + [sym_preproc_line] = STATE(1957), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_DOT_DOT] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), }, - [2011] = { - [sym_attributes] = STATE(3685), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4460), - [sym_member_defn] = STATE(2139), - [sym_additional_constr_defn] = STATE(2137), - [sym_xml_doc] = STATE(2011), - [sym_block_comment] = STATE(2011), - [sym_preproc_line] = STATE(2011), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(3620), - [anon_sym_module] = ACTIONS(3620), - [anon_sym_POUNDnowarn] = ACTIONS(3618), - [anon_sym_POUNDr] = ACTIONS(3618), - [anon_sym_POUNDload] = ACTIONS(3618), - [anon_sym_open] = ACTIONS(3620), - [anon_sym_LBRACK_LT] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_type] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_and] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_let_BANG] = ACTIONS(3618), - [aux_sym_access_modifier_token1] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_LBRACK_PIPE] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_LBRACE_PIPE] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_return_BANG] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_yield_BANG] = ACTIONS(3618), - [anon_sym_lazy] = ACTIONS(3620), - [anon_sym_assert] = ACTIONS(3620), - [anon_sym_upcast] = ACTIONS(3620), - [anon_sym_downcast] = ACTIONS(3620), - [anon_sym_LT_AT] = ACTIONS(3620), - [anon_sym_LT_AT_AT] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_fun] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_match] = ACTIONS(3620), - [anon_sym_match_BANG] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3620), - [anon_sym_use] = ACTIONS(3620), - [anon_sym_use_BANG] = ACTIONS(3618), - [anon_sym_do_BANG] = ACTIONS(3618), - [anon_sym_begin] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_member] = ACTIONS(3659), - [anon_sym_abstract] = ACTIONS(3661), - [anon_sym_override] = ACTIONS(3663), - [anon_sym_default] = ACTIONS(3663), - [anon_sym_val] = ACTIONS(3665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_AT_DQUOTE] = ACTIONS(3618), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), - [sym_bool] = ACTIONS(3620), - [sym_unit] = ACTIONS(3618), - [aux_sym__identifier_or_op_token1] = ACTIONS(3618), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_PLUS_DOT] = ACTIONS(3618), - [anon_sym_DASH_DOT] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3618), - [anon_sym_AMP_AMP] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [aux_sym_prefix_op_token1] = ACTIONS(3618), - [sym_int] = ACTIONS(3620), - [sym_xint] = ACTIONS(3618), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3618), - [sym__dedent] = ACTIONS(3618), + [1958] = { + [sym_xml_doc] = STATE(1958), + [sym_block_comment] = STATE(1958), + [sym_preproc_line] = STATE(1958), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_DOT_DOT] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), }, - [2012] = { - [sym_xml_doc] = STATE(2012), - [sym_block_comment] = STATE(2012), - [sym_preproc_line] = STATE(2012), - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2591), - [anon_sym_POUNDnowarn] = ACTIONS(2593), - [anon_sym_POUNDr] = ACTIONS(2593), - [anon_sym_POUNDload] = ACTIONS(2593), - [anon_sym_open] = ACTIONS(2591), - [anon_sym_LBRACK_LT] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_and] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [aux_sym_access_modifier_token1] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_LT_AT_AT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_member] = ACTIONS(2591), - [anon_sym_interface] = ACTIONS(2591), - [anon_sym_abstract] = ACTIONS(2591), - [anon_sym_override] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_val] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2593), - [aux_sym__identifier_or_op_token1] = ACTIONS(2593), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2593), - [anon_sym_DASH_DOT] = ACTIONS(2593), - [anon_sym_PERCENT] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), + [1959] = { + [sym_xml_doc] = STATE(1959), + [sym_block_comment] = STATE(1959), + [sym_preproc_line] = STATE(1959), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_DOT_DOT] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), }, - [2013] = { - [sym_xml_doc] = STATE(2013), - [sym_block_comment] = STATE(2013), - [sym_preproc_line] = STATE(2013), - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_POUNDnowarn] = ACTIONS(2628), - [anon_sym_POUNDr] = ACTIONS(2628), - [anon_sym_POUNDload] = ACTIONS(2628), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_LBRACK_LT] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_and] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [aux_sym_access_modifier_token1] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_LT_AT_AT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_member] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_val] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2628), - [aux_sym__identifier_or_op_token1] = ACTIONS(2628), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2628), - [anon_sym_DASH_DOT] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - }, - [2014] = { - [sym_xml_doc] = STATE(2014), - [sym_block_comment] = STATE(2014), - [sym_preproc_line] = STATE(2014), - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_POUNDnowarn] = ACTIONS(2585), - [anon_sym_POUNDr] = ACTIONS(2585), - [anon_sym_POUNDload] = ACTIONS(2585), - [anon_sym_open] = ACTIONS(2583), - [anon_sym_LBRACK_LT] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_and] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [aux_sym_access_modifier_token1] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_LT_AT_AT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_member] = ACTIONS(2583), - [anon_sym_interface] = ACTIONS(2583), - [anon_sym_abstract] = ACTIONS(2583), - [anon_sym_override] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_val] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2585), - [aux_sym__identifier_or_op_token1] = ACTIONS(2585), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2585), - [anon_sym_DASH_DOT] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), + [1960] = { + [sym_xml_doc] = STATE(1960), + [sym_block_comment] = STATE(1960), + [sym_preproc_line] = STATE(1960), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), + [sym__then] = ACTIONS(3029), }, - [2015] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2015), - [sym_block_comment] = STATE(2015), - [sym_preproc_line] = STATE(2015), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_POUNDnowarn] = ACTIONS(3608), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3608), - [aux_sym_access_modifier_token1] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_member] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_val] = ACTIONS(3610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3608), - [aux_sym__identifier_or_op_token1] = ACTIONS(3608), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3608), - [anon_sym_DASH_DOT] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3608), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__dedent] = ACTIONS(3608), + [1961] = { + [sym_xml_doc] = STATE(1961), + [sym_block_comment] = STATE(1961), + [sym_preproc_line] = STATE(1961), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), }, - [2016] = { - [sym_xml_doc] = STATE(2016), - [sym_block_comment] = STATE(2016), - [sym_preproc_line] = STATE(2016), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_and] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [aux_sym_access_modifier_token1] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_member] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_val] = ACTIONS(2483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), + [1962] = { + [sym_xml_doc] = STATE(1962), + [sym_block_comment] = STATE(1962), + [sym_preproc_line] = STATE(1962), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), }, - [2017] = { - [sym_attributes] = STATE(3685), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4460), - [sym_member_defn] = STATE(2139), - [sym_additional_constr_defn] = STATE(2137), - [sym_xml_doc] = STATE(2017), - [sym_block_comment] = STATE(2017), - [sym_preproc_line] = STATE(2017), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(2021), - [sym_identifier] = ACTIONS(3647), - [anon_sym_module] = ACTIONS(3647), - [anon_sym_POUNDnowarn] = ACTIONS(3645), - [anon_sym_POUNDr] = ACTIONS(3645), - [anon_sym_POUNDload] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3647), - [anon_sym_LBRACK_LT] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3647), - [anon_sym_type] = ACTIONS(3647), - [anon_sym_do] = ACTIONS(3647), - [anon_sym_and] = ACTIONS(3647), - [anon_sym_let] = ACTIONS(3647), - [anon_sym_let_BANG] = ACTIONS(3645), - [aux_sym_access_modifier_token1] = ACTIONS(3622), - [anon_sym_null] = ACTIONS(3647), - [anon_sym_LPAREN] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3647), - [anon_sym_LBRACK] = ACTIONS(3647), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3647), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3647), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3647), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3647), - [anon_sym_assert] = ACTIONS(3647), - [anon_sym_upcast] = ACTIONS(3647), - [anon_sym_downcast] = ACTIONS(3647), - [anon_sym_LT_AT] = ACTIONS(3647), - [anon_sym_LT_AT_AT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3647), - [anon_sym_while] = ACTIONS(3647), - [anon_sym_if] = ACTIONS(3647), - [anon_sym_fun] = ACTIONS(3647), - [anon_sym_try] = ACTIONS(3647), - [anon_sym_match] = ACTIONS(3647), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3647), - [anon_sym_use] = ACTIONS(3647), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3647), - [anon_sym_SQUOTE] = ACTIONS(3645), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_member] = ACTIONS(3659), - [anon_sym_abstract] = ACTIONS(3661), - [anon_sym_override] = ACTIONS(3663), - [anon_sym_default] = ACTIONS(3663), - [anon_sym_val] = ACTIONS(3665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(3647), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3647), - [sym_unit] = ACTIONS(3645), - [aux_sym__identifier_or_op_token1] = ACTIONS(3645), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3647), - [anon_sym_PLUS] = ACTIONS(3647), - [anon_sym_DASH] = ACTIONS(3647), - [anon_sym_PLUS_DOT] = ACTIONS(3645), - [anon_sym_DASH_DOT] = ACTIONS(3645), - [anon_sym_PERCENT] = ACTIONS(3645), - [anon_sym_AMP_AMP] = ACTIONS(3645), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3645), - [sym_int] = ACTIONS(3647), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__dedent] = ACTIONS(3645), + [1963] = { + [sym_xml_doc] = STATE(1963), + [sym_block_comment] = STATE(1963), + [sym_preproc_line] = STATE(1963), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), }, - [2018] = { - [sym_xml_doc] = STATE(2018), - [sym_block_comment] = STATE(2018), - [sym_preproc_line] = STATE(2018), - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_identifier] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_POUNDnowarn] = ACTIONS(2622), - [anon_sym_POUNDr] = ACTIONS(2622), - [anon_sym_POUNDload] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_LBRACK_LT] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_and] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [aux_sym_access_modifier_token1] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_LT_AT_AT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(3667), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_member] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_val] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2622), - [aux_sym__identifier_or_op_token1] = ACTIONS(2622), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), + [1964] = { + [sym_xml_doc] = STATE(1964), + [sym_block_comment] = STATE(1964), + [sym_preproc_line] = STATE(1964), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), }, - [2019] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2019), - [sym_block_comment] = STATE(2019), - [sym_preproc_line] = STATE(2019), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_POUNDnowarn] = ACTIONS(3641), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_and] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3641), - [aux_sym_access_modifier_token1] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3643), - [anon_sym_member] = ACTIONS(3643), - [anon_sym_abstract] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3643), - [anon_sym_default] = ACTIONS(3643), - [anon_sym_val] = ACTIONS(3643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3641), - [aux_sym__identifier_or_op_token1] = ACTIONS(3641), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3641), - [anon_sym_DASH_DOT] = ACTIONS(3641), - [anon_sym_PERCENT] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3641), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__dedent] = ACTIONS(3641), + [1965] = { + [sym_xml_doc] = STATE(1965), + [sym_block_comment] = STATE(1965), + [sym_preproc_line] = STATE(1965), + [sym_identifier] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_COLON] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_COLON_QMARK] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_AT_GT] = ACTIONS(2950), + [anon_sym_LT_AT_AT] = ACTIONS(2948), + [anon_sym_AT_AT_GT] = ACTIONS(2950), + [anon_sym_COLON_GT] = ACTIONS(2950), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_DOT_LBRACK] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2948), + [aux_sym__identifier_or_op_token1] = ACTIONS(2948), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2948), + [anon_sym_DASH_DOT] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [aux_sym_infix_op_token1] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__newline] = ACTIONS(2950), }, - [2020] = { - [sym_xml_doc] = STATE(2020), - [sym_block_comment] = STATE(2020), - [sym_preproc_line] = STATE(2020), - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_and] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [aux_sym_access_modifier_token1] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_member] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_override] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_val] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [1966] = { + [sym_xml_doc] = STATE(1966), + [sym_block_comment] = STATE(1966), + [sym_preproc_line] = STATE(1966), + [sym_identifier] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_do] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_let_BANG] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACK_PIPE] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LBRACE_PIPE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_return_BANG] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_yield_BANG] = ACTIONS(3060), + [anon_sym_lazy] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_upcast] = ACTIONS(3058), + [anon_sym_downcast] = ACTIONS(3058), + [anon_sym_LT_AT] = ACTIONS(3058), + [anon_sym_AT_GT] = ACTIONS(3060), + [anon_sym_LT_AT_AT] = ACTIONS(3058), + [anon_sym_AT_AT_GT] = ACTIONS(3060), + [anon_sym_COLON_GT] = ACTIONS(3060), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_fun] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_match_BANG] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_DOT_LBRACK] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_use_BANG] = ACTIONS(3060), + [anon_sym_do_BANG] = ACTIONS(3060), + [anon_sym_begin] = ACTIONS(3058), + [anon_sym_LPAREN2] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_AT_DQUOTE] = ACTIONS(3060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3060), + [sym_bool] = ACTIONS(3058), + [sym_unit] = ACTIONS(3058), + [aux_sym__identifier_or_op_token1] = ACTIONS(3058), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_PLUS_DOT] = ACTIONS(3058), + [anon_sym_DASH_DOT] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3060), + [aux_sym_prefix_op_token1] = ACTIONS(3060), + [aux_sym_infix_op_token1] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_DOLLAR] = ACTIONS(3058), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3060), + [sym_int] = ACTIONS(3058), + [sym_xint] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3060), + [sym__newline] = ACTIONS(3060), + [sym__then] = ACTIONS(3060), }, - [2021] = { - [sym_attributes] = STATE(3685), - [sym_attribute_set] = STATE(3120), - [sym_access_modifier] = STATE(4460), - [sym_member_defn] = STATE(2139), - [sym_additional_constr_defn] = STATE(2137), - [sym_xml_doc] = STATE(2021), - [sym_block_comment] = STATE(2021), - [sym_preproc_line] = STATE(2021), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym__member_defns_repeat1] = STATE(2021), - [sym_identifier] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_POUNDnowarn] = ACTIONS(3580), - [anon_sym_POUNDr] = ACTIONS(3580), - [anon_sym_POUNDload] = ACTIONS(3580), - [anon_sym_open] = ACTIONS(3582), - [anon_sym_LBRACK_LT] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_and] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3580), - [aux_sym_access_modifier_token1] = ACTIONS(3587), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3669), - [anon_sym_return_BANG] = ACTIONS(3580), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3580), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3580), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3580), - [anon_sym_do_BANG] = ACTIONS(3580), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_member] = ACTIONS(3675), - [anon_sym_abstract] = ACTIONS(3678), - [anon_sym_override] = ACTIONS(3681), - [anon_sym_default] = ACTIONS(3681), - [anon_sym_val] = ACTIONS(3684), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3580), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3580), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3580), - [aux_sym__identifier_or_op_token1] = ACTIONS(3580), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3580), - [anon_sym_DASH_DOT] = ACTIONS(3580), - [anon_sym_PERCENT] = ACTIONS(3580), - [anon_sym_AMP_AMP] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(3580), - [aux_sym_prefix_op_token1] = ACTIONS(3580), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3580), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3580), - [sym__dedent] = ACTIONS(3580), + [1967] = { + [sym_xml_doc] = STATE(1967), + [sym_block_comment] = STATE(1967), + [sym_preproc_line] = STATE(1967), + [sym_identifier] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_let_BANG] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_LBRACK_PIPE] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2982), + [anon_sym_return_BANG] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_yield_BANG] = ACTIONS(2984), + [anon_sym_lazy] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_upcast] = ACTIONS(2982), + [anon_sym_downcast] = ACTIONS(2982), + [anon_sym_LT_AT] = ACTIONS(2982), + [anon_sym_AT_GT] = ACTIONS(2984), + [anon_sym_LT_AT_AT] = ACTIONS(2982), + [anon_sym_AT_AT_GT] = ACTIONS(2984), + [anon_sym_COLON_GT] = ACTIONS(2984), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_fun] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_match_BANG] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_DOT_LBRACK] = ACTIONS(2984), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_use_BANG] = ACTIONS(2984), + [anon_sym_do_BANG] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(2984), + [anon_sym_begin] = ACTIONS(2982), + [anon_sym_LPAREN2] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_AT_DQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2984), + [sym_bool] = ACTIONS(2982), + [sym_unit] = ACTIONS(2982), + [aux_sym__identifier_or_op_token1] = ACTIONS(2982), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_PLUS_DOT] = ACTIONS(2982), + [anon_sym_DASH_DOT] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), + [aux_sym_prefix_op_token1] = ACTIONS(2984), + [aux_sym_infix_op_token1] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2984), + [sym_int] = ACTIONS(2982), + [sym_xint] = ACTIONS(2984), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2984), + [sym__newline] = ACTIONS(2984), }, - [2022] = { - [sym_xml_doc] = STATE(2022), - [sym_block_comment] = STATE(2022), - [sym_preproc_line] = STATE(2022), - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_POUNDnowarn] = ACTIONS(2599), - [anon_sym_POUNDr] = ACTIONS(2599), - [anon_sym_POUNDload] = ACTIONS(2599), - [anon_sym_open] = ACTIONS(2597), - [anon_sym_LBRACK_LT] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_and] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [aux_sym_access_modifier_token1] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_LT_AT_AT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_member] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_override] = ACTIONS(2597), - [anon_sym_default] = ACTIONS(2597), - [anon_sym_val] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2599), - [aux_sym__identifier_or_op_token1] = ACTIONS(2599), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2599), - [anon_sym_DASH_DOT] = ACTIONS(2599), - [anon_sym_PERCENT] = ACTIONS(2599), - [anon_sym_AMP_AMP] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1968] = { + [sym_xml_doc] = STATE(1968), + [sym_block_comment] = STATE(1968), + [sym_preproc_line] = STATE(1968), + [sym_identifier] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_do] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_let_BANG] = ACTIONS(3093), + [anon_sym_null] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_COLON_QMARK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LBRACK_PIPE] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACE_PIPE] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3091), + [anon_sym_return_BANG] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_yield_BANG] = ACTIONS(3093), + [anon_sym_lazy] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_upcast] = ACTIONS(3091), + [anon_sym_downcast] = ACTIONS(3091), + [anon_sym_LT_AT] = ACTIONS(3091), + [anon_sym_AT_GT] = ACTIONS(3093), + [anon_sym_LT_AT_AT] = ACTIONS(3091), + [anon_sym_AT_AT_GT] = ACTIONS(3093), + [anon_sym_COLON_GT] = ACTIONS(3093), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_fun] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_match_BANG] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_DOT_LBRACK] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_use_BANG] = ACTIONS(3093), + [anon_sym_do_BANG] = ACTIONS(3093), + [anon_sym_begin] = ACTIONS(3091), + [anon_sym_LPAREN2] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3091), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_AT_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3093), + [sym_bool] = ACTIONS(3091), + [sym_unit] = ACTIONS(3091), + [aux_sym__identifier_or_op_token1] = ACTIONS(3091), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_PLUS_DOT] = ACTIONS(3091), + [anon_sym_DASH_DOT] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3093), + [aux_sym_prefix_op_token1] = ACTIONS(3093), + [aux_sym_infix_op_token1] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_COLON_EQ] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3091), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3093), + [sym_int] = ACTIONS(3091), + [sym_xint] = ACTIONS(3093), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), + [anon_sym_POUNDif] = ACTIONS(3093), + [sym__newline] = ACTIONS(3093), + [sym__then] = ACTIONS(3093), }, - [2023] = { - [sym_xml_doc] = STATE(2023), - [sym_block_comment] = STATE(2023), - [sym_preproc_line] = STATE(2023), - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2579), - [anon_sym_namespace] = ACTIONS(2579), - [anon_sym_module] = ACTIONS(2579), - [anon_sym_POUNDnowarn] = ACTIONS(2581), - [anon_sym_POUNDr] = ACTIONS(2581), - [anon_sym_POUNDload] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2579), - [anon_sym_LBRACK_LT] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_and] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [aux_sym_access_modifier_token1] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_LT_AT_AT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2579), - [anon_sym_member] = ACTIONS(2579), - [anon_sym_interface] = ACTIONS(2579), - [anon_sym_abstract] = ACTIONS(2579), - [anon_sym_override] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_val] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2581), - [aux_sym__identifier_or_op_token1] = ACTIONS(2581), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2581), - [anon_sym_DASH_DOT] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), + [1969] = { + [sym_xml_doc] = STATE(1969), + [sym_block_comment] = STATE(1969), + [sym_preproc_line] = STATE(1969), + [sym_identifier] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_let] = ACTIONS(3101), + [anon_sym_let_BANG] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3101), + [anon_sym_COLON_QMARK] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACK_PIPE] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_LBRACE_PIPE] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_return_BANG] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_yield_BANG] = ACTIONS(3103), + [anon_sym_lazy] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_upcast] = ACTIONS(3101), + [anon_sym_downcast] = ACTIONS(3101), + [anon_sym_LT_AT] = ACTIONS(3101), + [anon_sym_AT_GT] = ACTIONS(3103), + [anon_sym_LT_AT_AT] = ACTIONS(3101), + [anon_sym_AT_AT_GT] = ACTIONS(3103), + [anon_sym_COLON_GT] = ACTIONS(3103), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_fun] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_match_BANG] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_DOT_LBRACK] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3101), + [anon_sym_use_BANG] = ACTIONS(3103), + [anon_sym_do_BANG] = ACTIONS(3103), + [anon_sym_begin] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3101), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [anon_sym_AT_DQUOTE] = ACTIONS(3103), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3103), + [sym_bool] = ACTIONS(3101), + [sym_unit] = ACTIONS(3101), + [aux_sym__identifier_or_op_token1] = ACTIONS(3101), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_DOT] = ACTIONS(3101), + [anon_sym_DASH_DOT] = ACTIONS(3101), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [aux_sym_prefix_op_token1] = ACTIONS(3103), + [aux_sym_infix_op_token1] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_COLON_EQ] = ACTIONS(3103), + [anon_sym_DOLLAR] = ACTIONS(3101), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3103), + [sym_int] = ACTIONS(3101), + [sym_xint] = ACTIONS(3103), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3103), + [sym__newline] = ACTIONS(3103), + [sym__then] = ACTIONS(3103), }, - [2024] = { - [sym_xml_doc] = STATE(2024), - [sym_block_comment] = STATE(2024), - [sym_preproc_line] = STATE(2024), - [aux_sym__compound_type_repeat1] = STATE(2024), - [sym_identifier] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_POUNDnowarn] = ACTIONS(2345), - [anon_sym_POUNDr] = ACTIONS(2345), - [anon_sym_POUNDload] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2343), - [anon_sym_LBRACK_LT] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [aux_sym_access_modifier_token1] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(3687), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_member] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_val] = ACTIONS(2343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2345), + [1970] = { + [sym_xml_doc] = STATE(1970), + [sym_block_comment] = STATE(1970), + [sym_preproc_line] = STATE(1970), + [sym_identifier] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_let_BANG] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_COLON_QMARK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LBRACK_PIPE] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACE_PIPE] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2978), + [anon_sym_return_BANG] = ACTIONS(2980), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_yield_BANG] = ACTIONS(2980), + [anon_sym_lazy] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_upcast] = ACTIONS(2978), + [anon_sym_downcast] = ACTIONS(2978), + [anon_sym_LT_AT] = ACTIONS(2978), + [anon_sym_AT_GT] = ACTIONS(2980), + [anon_sym_LT_AT_AT] = ACTIONS(2978), + [anon_sym_AT_AT_GT] = ACTIONS(2980), + [anon_sym_COLON_GT] = ACTIONS(2980), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_fun] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_match_BANG] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_DOT_LBRACK] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_use_BANG] = ACTIONS(2980), + [anon_sym_do_BANG] = ACTIONS(2980), + [anon_sym_DOT_DOT] = ACTIONS(2980), + [anon_sym_begin] = ACTIONS(2978), + [anon_sym_LPAREN2] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_AT_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2980), + [sym_bool] = ACTIONS(2978), + [sym_unit] = ACTIONS(2978), + [aux_sym__identifier_or_op_token1] = ACTIONS(2978), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_PLUS_DOT] = ACTIONS(2978), + [anon_sym_DASH_DOT] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2980), + [aux_sym_prefix_op_token1] = ACTIONS(2980), + [aux_sym_infix_op_token1] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2978), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2980), + [sym_int] = ACTIONS(2978), + [sym_xint] = ACTIONS(2980), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2980), + [sym__newline] = ACTIONS(2980), }, - [2025] = { - [sym_xml_doc] = STATE(2025), - [sym_block_comment] = STATE(2025), - [sym_preproc_line] = STATE(2025), - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_module] = ACTIONS(2587), - [anon_sym_POUNDnowarn] = ACTIONS(2589), - [anon_sym_POUNDr] = ACTIONS(2589), - [anon_sym_POUNDload] = ACTIONS(2589), - [anon_sym_open] = ACTIONS(2587), - [anon_sym_LBRACK_LT] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_and] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [aux_sym_access_modifier_token1] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_LT_AT_AT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_member] = ACTIONS(2587), - [anon_sym_interface] = ACTIONS(2587), - [anon_sym_abstract] = ACTIONS(2587), - [anon_sym_override] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_val] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2589), - [aux_sym__identifier_or_op_token1] = ACTIONS(2589), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2589), - [anon_sym_DASH_DOT] = ACTIONS(2589), - [anon_sym_PERCENT] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), + [1971] = { + [sym_xml_doc] = STATE(1971), + [sym_block_comment] = STATE(1971), + [sym_preproc_line] = STATE(1971), + [sym_identifier] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_let_BANG] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_COLON_QMARK] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_LBRACK_PIPE] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_return_BANG] = ACTIONS(2976), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_yield_BANG] = ACTIONS(2976), + [anon_sym_lazy] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_upcast] = ACTIONS(2974), + [anon_sym_downcast] = ACTIONS(2974), + [anon_sym_LT_AT] = ACTIONS(2974), + [anon_sym_AT_GT] = ACTIONS(2976), + [anon_sym_LT_AT_AT] = ACTIONS(2974), + [anon_sym_AT_AT_GT] = ACTIONS(2976), + [anon_sym_COLON_GT] = ACTIONS(2976), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_fun] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_match_BANG] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_DOT_LBRACK] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_use_BANG] = ACTIONS(2976), + [anon_sym_do_BANG] = ACTIONS(2976), + [anon_sym_DOT_DOT] = ACTIONS(2976), + [anon_sym_begin] = ACTIONS(2974), + [anon_sym_LPAREN2] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_AT_DQUOTE] = ACTIONS(2976), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2976), + [sym_bool] = ACTIONS(2974), + [sym_unit] = ACTIONS(2974), + [aux_sym__identifier_or_op_token1] = ACTIONS(2974), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS_DOT] = ACTIONS(2974), + [anon_sym_DASH_DOT] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [aux_sym_prefix_op_token1] = ACTIONS(2976), + [aux_sym_infix_op_token1] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_DOLLAR] = ACTIONS(2974), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2976), + [sym_int] = ACTIONS(2974), + [sym_xint] = ACTIONS(2976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2976), + [sym__newline] = ACTIONS(2976), }, - [2026] = { - [sym_xml_doc] = STATE(2026), - [sym_block_comment] = STATE(2026), - [sym_preproc_line] = STATE(2026), - [sym_identifier] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_POUNDnowarn] = ACTIONS(2603), - [anon_sym_POUNDr] = ACTIONS(2603), - [anon_sym_POUNDload] = ACTIONS(2603), - [anon_sym_open] = ACTIONS(2601), - [anon_sym_LBRACK_LT] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_and] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [aux_sym_access_modifier_token1] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_LT_AT_AT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_member] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_override] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_val] = ACTIONS(2601), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2603), - [aux_sym__identifier_or_op_token1] = ACTIONS(2603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2603), - [anon_sym_DASH_DOT] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__dedent] = ACTIONS(2603), + [1972] = { + [sym_xml_doc] = STATE(1972), + [sym_block_comment] = STATE(1972), + [sym_preproc_line] = STATE(1972), + [sym_identifier] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_do] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_let_BANG] = ACTIONS(3121), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_QMARK] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_COMMA] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_LBRACK_PIPE] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACE_PIPE] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_return_BANG] = ACTIONS(3121), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_yield_BANG] = ACTIONS(3121), + [anon_sym_lazy] = ACTIONS(3119), + [anon_sym_assert] = ACTIONS(3119), + [anon_sym_upcast] = ACTIONS(3119), + [anon_sym_downcast] = ACTIONS(3119), + [anon_sym_LT_AT] = ACTIONS(3119), + [anon_sym_AT_GT] = ACTIONS(3121), + [anon_sym_LT_AT_AT] = ACTIONS(3119), + [anon_sym_AT_AT_GT] = ACTIONS(3121), + [anon_sym_COLON_GT] = ACTIONS(3121), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_fun] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_match_BANG] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_LT_DASH] = ACTIONS(3119), + [anon_sym_DOT_LBRACK] = ACTIONS(3121), + [anon_sym_DOT] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_use_BANG] = ACTIONS(3121), + [anon_sym_do_BANG] = ACTIONS(3121), + [anon_sym_begin] = ACTIONS(3119), + [anon_sym_LPAREN2] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3121), + [anon_sym_or] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [anon_sym_AT_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3121), + [sym_bool] = ACTIONS(3119), + [sym_unit] = ACTIONS(3119), + [aux_sym__identifier_or_op_token1] = ACTIONS(3119), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3119), + [anon_sym_PLUS_DOT] = ACTIONS(3119), + [anon_sym_DASH_DOT] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3121), + [aux_sym_prefix_op_token1] = ACTIONS(3121), + [aux_sym_infix_op_token1] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_COLON_EQ] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3119), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3121), + [sym_int] = ACTIONS(3119), + [sym_xint] = ACTIONS(3121), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3121), + [sym__newline] = ACTIONS(3121), + [sym__then] = ACTIONS(3121), }, - [2027] = { - [sym_xml_doc] = STATE(2027), - [sym_block_comment] = STATE(2027), - [sym_preproc_line] = STATE(2027), - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2575), - [anon_sym_namespace] = ACTIONS(2575), - [anon_sym_module] = ACTIONS(2575), - [anon_sym_POUNDnowarn] = ACTIONS(2577), - [anon_sym_POUNDr] = ACTIONS(2577), - [anon_sym_POUNDload] = ACTIONS(2577), - [anon_sym_open] = ACTIONS(2575), - [anon_sym_LBRACK_LT] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_and] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [aux_sym_access_modifier_token1] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_LT_AT_AT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_member] = ACTIONS(2575), - [anon_sym_interface] = ACTIONS(2575), - [anon_sym_abstract] = ACTIONS(2575), - [anon_sym_override] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_val] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2577), - [aux_sym__identifier_or_op_token1] = ACTIONS(2577), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2577), - [anon_sym_DASH_DOT] = ACTIONS(2577), - [anon_sym_PERCENT] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), + [1973] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1973), + [sym_block_comment] = STATE(1973), + [sym_preproc_line] = STATE(1973), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_POUNDnowarn] = ACTIONS(3736), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3738), + [anon_sym_LBRACK_LT] = ACTIONS(3736), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_and] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3736), + [aux_sym_access_modifier_token1] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_member] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_val] = ACTIONS(3738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3736), + [aux_sym__identifier_or_op_token1] = ACTIONS(3736), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3736), + [anon_sym_DASH_DOT] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3736), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3736), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), + [anon_sym_POUNDif] = ACTIONS(3736), }, - [2028] = { - [sym_xml_doc] = STATE(2028), - [sym_block_comment] = STATE(2028), - [sym_preproc_line] = STATE(2028), - [aux_sym__compound_type_repeat1] = STATE(2024), - [sym_identifier] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_POUNDnowarn] = ACTIONS(2481), - [anon_sym_POUNDr] = ACTIONS(2481), - [anon_sym_POUNDload] = ACTIONS(2481), - [anon_sym_open] = ACTIONS(2479), - [anon_sym_LBRACK_LT] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_and] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [aux_sym_access_modifier_token1] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_LT_AT_AT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_member] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_val] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2481), - [aux_sym__identifier_or_op_token1] = ACTIONS(2481), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2481), - [anon_sym_DASH_DOT] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), + [1974] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(1974), + [sym_block_comment] = STATE(1974), + [sym_preproc_line] = STATE(1974), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_POUNDnowarn] = ACTIONS(3740), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_and] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3740), + [aux_sym_access_modifier_token1] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_member] = ACTIONS(3742), + [anon_sym_abstract] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_val] = ACTIONS(3742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3740), + [aux_sym__identifier_or_op_token1] = ACTIONS(3740), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3740), + [anon_sym_DASH_DOT] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3740), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3740), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__dedent] = ACTIONS(2481), + [anon_sym_POUNDif] = ACTIONS(3740), }, - [2029] = { - [sym_xml_doc] = STATE(2029), - [sym_block_comment] = STATE(2029), - [sym_preproc_line] = STATE(2029), - [sym_identifier] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_POUNDnowarn] = ACTIONS(2611), - [anon_sym_POUNDr] = ACTIONS(2611), - [anon_sym_POUNDload] = ACTIONS(2611), - [anon_sym_open] = ACTIONS(2609), - [anon_sym_LBRACK_LT] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_and] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [aux_sym_access_modifier_token1] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_LT_AT_AT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_member] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_override] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_val] = ACTIONS(2609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2611), - [aux_sym__identifier_or_op_token1] = ACTIONS(2611), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2611), - [anon_sym_DASH_DOT] = ACTIONS(2611), - [anon_sym_PERCENT] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), + [1975] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1975), + [sym_block_comment] = STATE(1975), + [sym_preproc_line] = STATE(1975), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_POUNDnowarn] = ACTIONS(3656), + [anon_sym_POUNDr] = ACTIONS(3656), + [anon_sym_POUNDload] = ACTIONS(3656), + [anon_sym_open] = ACTIONS(3658), + [anon_sym_LBRACK_LT] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_and] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_let_BANG] = ACTIONS(3656), + [aux_sym_access_modifier_token1] = ACTIONS(3656), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACK_PIPE] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_LBRACE_PIPE] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_return_BANG] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_yield_BANG] = ACTIONS(3656), + [anon_sym_lazy] = ACTIONS(3658), + [anon_sym_assert] = ACTIONS(3658), + [anon_sym_upcast] = ACTIONS(3658), + [anon_sym_downcast] = ACTIONS(3658), + [anon_sym_LT_AT] = ACTIONS(3658), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_fun] = ACTIONS(3658), + [anon_sym_DASH_GT] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_match] = ACTIONS(3658), + [anon_sym_match_BANG] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3658), + [anon_sym_use_BANG] = ACTIONS(3656), + [anon_sym_do_BANG] = ACTIONS(3656), + [anon_sym_begin] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_member] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_val] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_AT_DQUOTE] = ACTIONS(3656), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3656), + [sym_bool] = ACTIONS(3658), + [sym_unit] = ACTIONS(3656), + [aux_sym__identifier_or_op_token1] = ACTIONS(3656), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [sym_int] = ACTIONS(3658), + [sym_xint] = ACTIONS(3656), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__dedent] = ACTIONS(2611), + [anon_sym_POUNDif] = ACTIONS(3656), + [sym__dedent] = ACTIONS(3656), }, - [2030] = { - [sym_type_arguments] = STATE(2037), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2030), - [sym_block_comment] = STATE(2030), - [sym_preproc_line] = STATE(2030), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3573), - [anon_sym_module] = ACTIONS(3573), - [anon_sym_POUNDnowarn] = ACTIONS(3571), - [anon_sym_POUNDr] = ACTIONS(3571), - [anon_sym_POUNDload] = ACTIONS(3571), - [anon_sym_open] = ACTIONS(3573), - [anon_sym_LBRACK_LT] = ACTIONS(3571), - [anon_sym_return] = ACTIONS(3573), - [anon_sym_type] = ACTIONS(3573), - [anon_sym_do] = ACTIONS(3573), - [anon_sym_and] = ACTIONS(3573), - [anon_sym_let] = ACTIONS(3573), - [anon_sym_let_BANG] = ACTIONS(3571), - [aux_sym_access_modifier_token1] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_AMP] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LBRACK_PIPE] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_LBRACE_PIPE] = ACTIONS(3571), - [anon_sym_new] = ACTIONS(3573), - [anon_sym_return_BANG] = ACTIONS(3571), - [anon_sym_yield] = ACTIONS(3573), - [anon_sym_yield_BANG] = ACTIONS(3571), - [anon_sym_lazy] = ACTIONS(3573), - [anon_sym_assert] = ACTIONS(3573), - [anon_sym_upcast] = ACTIONS(3573), - [anon_sym_downcast] = ACTIONS(3573), - [anon_sym_LT_AT] = ACTIONS(3573), - [anon_sym_LT_AT_AT] = ACTIONS(3571), - [anon_sym_for] = ACTIONS(3573), - [anon_sym_while] = ACTIONS(3573), - [anon_sym_if] = ACTIONS(3573), - [anon_sym_fun] = ACTIONS(3573), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3573), - [anon_sym_match] = ACTIONS(3573), - [anon_sym_match_BANG] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(3573), - [anon_sym_use] = ACTIONS(3573), - [anon_sym_use_BANG] = ACTIONS(3571), - [anon_sym_do_BANG] = ACTIONS(3571), - [anon_sym_begin] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3571), - [anon_sym_static] = ACTIONS(3573), - [anon_sym_member] = ACTIONS(3573), - [anon_sym_abstract] = ACTIONS(3573), - [anon_sym_override] = ACTIONS(3573), - [anon_sym_default] = ACTIONS(3573), - [anon_sym_val] = ACTIONS(3573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_AT_DQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3571), - [sym_bool] = ACTIONS(3573), - [sym_unit] = ACTIONS(3571), - [aux_sym__identifier_or_op_token1] = ACTIONS(3571), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3573), - [anon_sym_PLUS] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_PLUS_DOT] = ACTIONS(3571), - [anon_sym_DASH_DOT] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3571), - [anon_sym_AMP_AMP] = ACTIONS(3571), - [anon_sym_TILDE] = ACTIONS(3571), - [aux_sym_prefix_op_token1] = ACTIONS(3571), - [sym_int] = ACTIONS(3573), - [sym_xint] = ACTIONS(3571), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3571), - [sym__dedent] = ACTIONS(3571), + [1976] = { + [sym_xml_doc] = STATE(1976), + [sym_block_comment] = STATE(1976), + [sym_preproc_line] = STATE(1976), + [sym_identifier] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3139), + [anon_sym_COLON_QMARK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_AT_GT] = ACTIONS(3141), + [anon_sym_LT_AT_AT] = ACTIONS(3139), + [anon_sym_AT_AT_GT] = ACTIONS(3141), + [anon_sym_COLON_GT] = ACTIONS(3141), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_DOT_LBRACK] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_LPAREN2] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3139), + [aux_sym__identifier_or_op_token1] = ACTIONS(3139), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3139), + [anon_sym_DASH_DOT] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [aux_sym_infix_op_token1] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_DOLLAR] = ACTIONS(3139), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__newline] = ACTIONS(3141), }, - [2031] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3458), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2036), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2007), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2031), - [sym_block_comment] = STATE(2031), - [sym_preproc_line] = STATE(2031), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3698), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3692), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_LT2] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1977] = { + [sym_xml_doc] = STATE(1977), + [sym_block_comment] = STATE(1977), + [sym_preproc_line] = STATE(1977), + [sym_identifier] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_let_BANG] = ACTIONS(2854), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2852), + [anon_sym_COLON_QMARK] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACK_PIPE] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_LBRACE_PIPE] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_return_BANG] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_yield_BANG] = ACTIONS(2854), + [anon_sym_lazy] = ACTIONS(2852), + [anon_sym_assert] = ACTIONS(2852), + [anon_sym_upcast] = ACTIONS(2852), + [anon_sym_downcast] = ACTIONS(2852), + [anon_sym_LT_AT] = ACTIONS(2852), + [anon_sym_AT_GT] = ACTIONS(2854), + [anon_sym_LT_AT_AT] = ACTIONS(2852), + [anon_sym_AT_AT_GT] = ACTIONS(2854), + [anon_sym_COLON_GT] = ACTIONS(2854), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_fun] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_match_BANG] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_DOT_LBRACK] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_use_BANG] = ACTIONS(2854), + [anon_sym_do_BANG] = ACTIONS(2854), + [anon_sym_begin] = ACTIONS(2852), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_AT_DQUOTE] = ACTIONS(2854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2854), + [sym_bool] = ACTIONS(2852), + [sym_unit] = ACTIONS(2852), + [aux_sym__identifier_or_op_token1] = ACTIONS(2852), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_PLUS_DOT] = ACTIONS(2852), + [anon_sym_DASH_DOT] = ACTIONS(2852), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_prefix_op_token1] = ACTIONS(2854), + [aux_sym_infix_op_token1] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2852), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2854), + [sym_int] = ACTIONS(2852), + [sym_xint] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [sym__then] = ACTIONS(2854), }, - [2032] = { - [sym_xml_doc] = STATE(2032), - [sym_block_comment] = STATE(2032), - [sym_preproc_line] = STATE(2032), - [sym_identifier] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_POUNDnowarn] = ACTIONS(2599), - [anon_sym_POUNDr] = ACTIONS(2599), - [anon_sym_POUNDload] = ACTIONS(2599), - [anon_sym_open] = ACTIONS(2597), - [anon_sym_LBRACK_LT] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_and] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [aux_sym_access_modifier_token1] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_LT_AT_AT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_member] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_override] = ACTIONS(2597), - [anon_sym_default] = ACTIONS(2597), - [anon_sym_val] = ACTIONS(2597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2599), - [aux_sym__identifier_or_op_token1] = ACTIONS(2599), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2599), - [anon_sym_DASH_DOT] = ACTIONS(2599), - [anon_sym_PERCENT] = ACTIONS(2599), - [anon_sym_AMP_AMP] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), + [1978] = { + [sym_xml_doc] = STATE(1978), + [sym_block_comment] = STATE(1978), + [sym_preproc_line] = STATE(1978), + [aux_sym_long_identifier_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_and] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [aux_sym_access_modifier_token1] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(3723), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_member] = ACTIONS(2594), + [anon_sym_interface] = ACTIONS(2594), + [anon_sym_abstract] = ACTIONS(2594), + [anon_sym_override] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_val] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__dedent] = ACTIONS(2599), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, - [2033] = { - [sym_xml_doc] = STATE(2033), - [sym_block_comment] = STATE(2033), - [sym_preproc_line] = STATE(2033), - [sym_identifier] = ACTIONS(2605), - [anon_sym_module] = ACTIONS(2605), - [anon_sym_POUNDnowarn] = ACTIONS(2607), - [anon_sym_POUNDr] = ACTIONS(2607), - [anon_sym_POUNDload] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2605), - [anon_sym_LBRACK_LT] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_and] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [aux_sym_access_modifier_token1] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_member] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_override] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_val] = ACTIONS(2605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [1979] = { + [sym_xml_doc] = STATE(1979), + [sym_block_comment] = STATE(1979), + [sym_preproc_line] = STATE(1979), + [aux_sym_long_identifier_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_and] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [aux_sym_access_modifier_token1] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_member] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_val] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__dedent] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, - [2034] = { - [sym_xml_doc] = STATE(2034), - [sym_block_comment] = STATE(2034), - [sym_preproc_line] = STATE(2034), - [sym_identifier] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_POUNDnowarn] = ACTIONS(2622), - [anon_sym_POUNDr] = ACTIONS(2622), - [anon_sym_POUNDload] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_LBRACK_LT] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_and] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [aux_sym_access_modifier_token1] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_LT_AT_AT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(3734), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_member] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_val] = ACTIONS(2620), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2622), - [aux_sym__identifier_or_op_token1] = ACTIONS(2622), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__dedent] = ACTIONS(2622), + [1980] = { + [sym_xml_doc] = STATE(1980), + [sym_block_comment] = STATE(1980), + [sym_preproc_line] = STATE(1980), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), }, - [2035] = { - [sym_xml_doc] = STATE(2035), - [sym_block_comment] = STATE(2035), - [sym_preproc_line] = STATE(2035), - [sym_identifier] = ACTIONS(2567), - [anon_sym_module] = ACTIONS(2567), - [anon_sym_POUNDnowarn] = ACTIONS(2569), - [anon_sym_POUNDr] = ACTIONS(2569), - [anon_sym_POUNDload] = ACTIONS(2569), - [anon_sym_open] = ACTIONS(2567), - [anon_sym_LBRACK_LT] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_and] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [aux_sym_access_modifier_token1] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_LT_AT_AT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_member] = ACTIONS(2567), - [anon_sym_interface] = ACTIONS(2567), - [anon_sym_abstract] = ACTIONS(2567), - [anon_sym_override] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_val] = ACTIONS(2567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2569), - [aux_sym__identifier_or_op_token1] = ACTIONS(2569), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2569), - [anon_sym_DASH_DOT] = ACTIONS(2569), - [anon_sym_PERCENT] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__dedent] = ACTIONS(2569), + [1981] = { + [sym_xml_doc] = STATE(1981), + [sym_block_comment] = STATE(1981), + [sym_preproc_line] = STATE(1981), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_DOT_DOT] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), }, - [2036] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3422), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2036), - [sym_block_comment] = STATE(2036), - [sym_preproc_line] = STATE(2036), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3736), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3738), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(3736), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_LT2] = ACTIONS(3736), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1982] = { + [sym_xml_doc] = STATE(1982), + [sym_block_comment] = STATE(1982), + [sym_preproc_line] = STATE(1982), + [sym_identifier] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_let_BANG] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_LBRACK_PIPE] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_return_BANG] = ACTIONS(3165), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_yield_BANG] = ACTIONS(3165), + [anon_sym_lazy] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_upcast] = ACTIONS(3163), + [anon_sym_downcast] = ACTIONS(3163), + [anon_sym_LT_AT] = ACTIONS(3163), + [anon_sym_AT_GT] = ACTIONS(3165), + [anon_sym_LT_AT_AT] = ACTIONS(3163), + [anon_sym_AT_AT_GT] = ACTIONS(3165), + [anon_sym_COLON_GT] = ACTIONS(3165), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_fun] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_match_BANG] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_DOT_LBRACK] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_use_BANG] = ACTIONS(3165), + [anon_sym_do_BANG] = ACTIONS(3165), + [anon_sym_begin] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(3163), + [anon_sym_AT_DQUOTE] = ACTIONS(3165), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3165), + [sym_bool] = ACTIONS(3163), + [sym_unit] = ACTIONS(3163), + [aux_sym__identifier_or_op_token1] = ACTIONS(3163), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS_DOT] = ACTIONS(3163), + [anon_sym_DASH_DOT] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3165), + [aux_sym_prefix_op_token1] = ACTIONS(3165), + [aux_sym_infix_op_token1] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_COLON_EQ] = ACTIONS(3165), + [anon_sym_DOLLAR] = ACTIONS(3163), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3165), + [sym_int] = ACTIONS(3163), + [sym_xint] = ACTIONS(3165), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3165), + [sym__newline] = ACTIONS(3165), + [sym__then] = ACTIONS(3165), }, - [2037] = { - [sym_xml_doc] = STATE(2037), - [sym_block_comment] = STATE(2037), - [sym_preproc_line] = STATE(2037), - [sym_identifier] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_POUNDnowarn] = ACTIONS(2628), - [anon_sym_POUNDr] = ACTIONS(2628), - [anon_sym_POUNDload] = ACTIONS(2628), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_LBRACK_LT] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_and] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [aux_sym_access_modifier_token1] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_LT_AT_AT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_member] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_val] = ACTIONS(2626), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2628), - [aux_sym__identifier_or_op_token1] = ACTIONS(2628), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2628), - [anon_sym_DASH_DOT] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), + [1983] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(1983), + [sym_block_comment] = STATE(1983), + [sym_preproc_line] = STATE(1983), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_POUNDnowarn] = ACTIONS(3676), + [anon_sym_POUNDr] = ACTIONS(3676), + [anon_sym_POUNDload] = ACTIONS(3676), + [anon_sym_open] = ACTIONS(3678), + [anon_sym_LBRACK_LT] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_and] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_let_BANG] = ACTIONS(3676), + [aux_sym_access_modifier_token1] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LBRACK_PIPE] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_LBRACE_PIPE] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_return_BANG] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_yield_BANG] = ACTIONS(3676), + [anon_sym_lazy] = ACTIONS(3678), + [anon_sym_assert] = ACTIONS(3678), + [anon_sym_upcast] = ACTIONS(3678), + [anon_sym_downcast] = ACTIONS(3678), + [anon_sym_LT_AT] = ACTIONS(3678), + [anon_sym_LT_AT_AT] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_fun] = ACTIONS(3678), + [anon_sym_DASH_GT] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_match] = ACTIONS(3678), + [anon_sym_match_BANG] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_use] = ACTIONS(3678), + [anon_sym_use_BANG] = ACTIONS(3676), + [anon_sym_do_BANG] = ACTIONS(3676), + [anon_sym_begin] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_member] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_val] = ACTIONS(3678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_AT_DQUOTE] = ACTIONS(3676), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3676), + [sym_bool] = ACTIONS(3678), + [sym_unit] = ACTIONS(3676), + [aux_sym__identifier_or_op_token1] = ACTIONS(3676), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS_DOT] = ACTIONS(3676), + [anon_sym_DASH_DOT] = ACTIONS(3676), + [anon_sym_PERCENT] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [aux_sym_prefix_op_token1] = ACTIONS(3676), + [sym_int] = ACTIONS(3678), + [sym_xint] = ACTIONS(3676), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__dedent] = ACTIONS(2628), + [anon_sym_POUNDif] = ACTIONS(3676), + [sym__dedent] = ACTIONS(3676), }, - [2038] = { - [sym_xml_doc] = STATE(2038), - [sym_block_comment] = STATE(2038), - [sym_preproc_line] = STATE(2038), - [sym_identifier] = ACTIONS(2591), - [anon_sym_module] = ACTIONS(2591), - [anon_sym_POUNDnowarn] = ACTIONS(2593), - [anon_sym_POUNDr] = ACTIONS(2593), - [anon_sym_POUNDload] = ACTIONS(2593), - [anon_sym_open] = ACTIONS(2591), - [anon_sym_LBRACK_LT] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_and] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [aux_sym_access_modifier_token1] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_LT_AT_AT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_member] = ACTIONS(2591), - [anon_sym_interface] = ACTIONS(2591), - [anon_sym_abstract] = ACTIONS(2591), - [anon_sym_override] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_val] = ACTIONS(2591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2593), - [aux_sym__identifier_or_op_token1] = ACTIONS(2593), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2593), - [anon_sym_DASH_DOT] = ACTIONS(2593), - [anon_sym_PERCENT] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__dedent] = ACTIONS(2593), + [1984] = { + [sym_xml_doc] = STATE(1984), + [sym_block_comment] = STATE(1984), + [sym_preproc_line] = STATE(1984), + [sym_identifier] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_COLON] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_let_BANG] = ACTIONS(2946), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_COLON_QMARK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACK_PIPE] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_LBRACE_PIPE] = ACTIONS(2946), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_return_BANG] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_yield_BANG] = ACTIONS(2946), + [anon_sym_lazy] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_upcast] = ACTIONS(2944), + [anon_sym_downcast] = ACTIONS(2944), + [anon_sym_LT_AT] = ACTIONS(2944), + [anon_sym_AT_GT] = ACTIONS(2946), + [anon_sym_LT_AT_AT] = ACTIONS(2944), + [anon_sym_AT_AT_GT] = ACTIONS(2946), + [anon_sym_COLON_GT] = ACTIONS(2946), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_fun] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_match_BANG] = ACTIONS(2946), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_DOT_LBRACK] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2944), + [anon_sym_use_BANG] = ACTIONS(2946), + [anon_sym_do_BANG] = ACTIONS(2946), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_begin] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_AT_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_bool] = ACTIONS(2944), + [sym_unit] = ACTIONS(2944), + [aux_sym__identifier_or_op_token1] = ACTIONS(2944), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS_DOT] = ACTIONS(2944), + [anon_sym_DASH_DOT] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_prefix_op_token1] = ACTIONS(2946), + [aux_sym_infix_op_token1] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2944), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2946), + [sym_int] = ACTIONS(2944), + [sym_xint] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2946), + [sym__newline] = ACTIONS(2946), }, - [2039] = { - [sym_xml_doc] = STATE(2039), - [sym_block_comment] = STATE(2039), - [sym_preproc_line] = STATE(2039), - [sym_identifier] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_POUNDnowarn] = ACTIONS(2585), - [anon_sym_POUNDr] = ACTIONS(2585), - [anon_sym_POUNDload] = ACTIONS(2585), - [anon_sym_open] = ACTIONS(2583), - [anon_sym_LBRACK_LT] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_and] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [aux_sym_access_modifier_token1] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_LT_AT_AT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_member] = ACTIONS(2583), - [anon_sym_interface] = ACTIONS(2583), - [anon_sym_abstract] = ACTIONS(2583), - [anon_sym_override] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_val] = ACTIONS(2583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2585), - [aux_sym__identifier_or_op_token1] = ACTIONS(2585), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2585), - [anon_sym_DASH_DOT] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__dedent] = ACTIONS(2585), + [1985] = { + [sym_xml_doc] = STATE(1985), + [sym_block_comment] = STATE(1985), + [sym_preproc_line] = STATE(1985), + [sym_identifier] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_do] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_let_BANG] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_COLON_QMARK] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACK_PIPE] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_LBRACE_PIPE] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_return_BANG] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_yield_BANG] = ACTIONS(3064), + [anon_sym_lazy] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_upcast] = ACTIONS(3062), + [anon_sym_downcast] = ACTIONS(3062), + [anon_sym_LT_AT] = ACTIONS(3062), + [anon_sym_AT_GT] = ACTIONS(3064), + [anon_sym_LT_AT_AT] = ACTIONS(3062), + [anon_sym_AT_AT_GT] = ACTIONS(3064), + [anon_sym_COLON_GT] = ACTIONS(3064), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_fun] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_match_BANG] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_DOT_LBRACK] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_use_BANG] = ACTIONS(3064), + [anon_sym_do_BANG] = ACTIONS(3064), + [anon_sym_DOT_DOT] = ACTIONS(3064), + [anon_sym_begin] = ACTIONS(3062), + [anon_sym_LPAREN2] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_AT_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3064), + [sym_bool] = ACTIONS(3062), + [sym_unit] = ACTIONS(3062), + [aux_sym__identifier_or_op_token1] = ACTIONS(3062), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_PLUS_DOT] = ACTIONS(3062), + [anon_sym_DASH_DOT] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3064), + [aux_sym_prefix_op_token1] = ACTIONS(3064), + [aux_sym_infix_op_token1] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3062), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3064), + [sym_int] = ACTIONS(3062), + [sym_xint] = ACTIONS(3064), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3064), + [sym__newline] = ACTIONS(3064), }, - [2040] = { - [sym_xml_doc] = STATE(2040), - [sym_block_comment] = STATE(2040), - [sym_preproc_line] = STATE(2040), - [sym_identifier] = ACTIONS(2587), - [anon_sym_module] = ACTIONS(2587), - [anon_sym_POUNDnowarn] = ACTIONS(2589), - [anon_sym_POUNDr] = ACTIONS(2589), - [anon_sym_POUNDload] = ACTIONS(2589), - [anon_sym_open] = ACTIONS(2587), - [anon_sym_LBRACK_LT] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_and] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [aux_sym_access_modifier_token1] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_LT_AT_AT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_member] = ACTIONS(2587), - [anon_sym_interface] = ACTIONS(2587), - [anon_sym_abstract] = ACTIONS(2587), - [anon_sym_override] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_val] = ACTIONS(2587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2589), - [aux_sym__identifier_or_op_token1] = ACTIONS(2589), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2589), - [anon_sym_DASH_DOT] = ACTIONS(2589), - [anon_sym_PERCENT] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [sym__dedent] = ACTIONS(2589), + [1986] = { + [sym_xml_doc] = STATE(1986), + [sym_block_comment] = STATE(1986), + [sym_preproc_line] = STATE(1986), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), }, - [2041] = { - [sym_xml_doc] = STATE(2041), - [sym_block_comment] = STATE(2041), - [sym_preproc_line] = STATE(2041), - [sym_identifier] = ACTIONS(2579), - [anon_sym_module] = ACTIONS(2579), - [anon_sym_POUNDnowarn] = ACTIONS(2581), - [anon_sym_POUNDr] = ACTIONS(2581), - [anon_sym_POUNDload] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2579), - [anon_sym_LBRACK_LT] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_and] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [aux_sym_access_modifier_token1] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_LT_AT_AT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2579), - [anon_sym_member] = ACTIONS(2579), - [anon_sym_interface] = ACTIONS(2579), - [anon_sym_abstract] = ACTIONS(2579), - [anon_sym_override] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_val] = ACTIONS(2579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2581), - [aux_sym__identifier_or_op_token1] = ACTIONS(2581), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2581), - [anon_sym_DASH_DOT] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__dedent] = ACTIONS(2581), + [1987] = { + [sym_xml_doc] = STATE(1987), + [sym_block_comment] = STATE(1987), + [sym_preproc_line] = STATE(1987), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), }, - [2042] = { - [sym_xml_doc] = STATE(2042), - [sym_block_comment] = STATE(2042), - [sym_preproc_line] = STATE(2042), - [sym_identifier] = ACTIONS(2575), - [anon_sym_module] = ACTIONS(2575), - [anon_sym_POUNDnowarn] = ACTIONS(2577), - [anon_sym_POUNDr] = ACTIONS(2577), - [anon_sym_POUNDload] = ACTIONS(2577), - [anon_sym_open] = ACTIONS(2575), - [anon_sym_LBRACK_LT] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_and] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [aux_sym_access_modifier_token1] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_LT_AT_AT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_member] = ACTIONS(2575), - [anon_sym_interface] = ACTIONS(2575), - [anon_sym_abstract] = ACTIONS(2575), - [anon_sym_override] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_val] = ACTIONS(2575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2577), - [aux_sym__identifier_or_op_token1] = ACTIONS(2577), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2577), - [anon_sym_DASH_DOT] = ACTIONS(2577), - [anon_sym_PERCENT] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__dedent] = ACTIONS(2577), + [1988] = { + [sym_xml_doc] = STATE(1988), + [sym_block_comment] = STATE(1988), + [sym_preproc_line] = STATE(1988), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_DOT_DOT] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), }, - [2043] = { - [sym_xml_doc] = STATE(2043), - [sym_block_comment] = STATE(2043), - [sym_preproc_line] = STATE(2043), - [sym_identifier] = ACTIONS(2571), - [anon_sym_module] = ACTIONS(2571), - [anon_sym_POUNDnowarn] = ACTIONS(2573), - [anon_sym_POUNDr] = ACTIONS(2573), - [anon_sym_POUNDload] = ACTIONS(2573), - [anon_sym_open] = ACTIONS(2571), - [anon_sym_LBRACK_LT] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [aux_sym_access_modifier_token1] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_LT_AT_AT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_member] = ACTIONS(2571), - [anon_sym_interface] = ACTIONS(2571), - [anon_sym_abstract] = ACTIONS(2571), - [anon_sym_override] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_val] = ACTIONS(2571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2573), - [aux_sym__identifier_or_op_token1] = ACTIONS(2573), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2573), - [anon_sym_DASH_DOT] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__dedent] = ACTIONS(2573), + [1989] = { + [sym_xml_doc] = STATE(1989), + [sym_block_comment] = STATE(1989), + [sym_preproc_line] = STATE(1989), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_DOT_DOT] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), }, - [2044] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(2426), - [sym__function_or_value_defn_body] = STATE(2249), - [sym_function_declaration_left] = STATE(4363), - [sym_value_declaration_left] = STATE(4363), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2044), - [sym_block_comment] = STATE(2044), - [sym_preproc_line] = STATE(2044), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1990] = { + [sym_xml_doc] = STATE(1990), + [sym_block_comment] = STATE(1990), + [sym_preproc_line] = STATE(1990), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_DOT_DOT] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), }, - [2045] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(4454), - [sym__function_or_value_defn_body] = STATE(4119), - [sym_function_declaration_left] = STATE(4566), - [sym_value_declaration_left] = STATE(4566), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2045), - [sym_block_comment] = STATE(2045), - [sym_preproc_line] = STATE(2045), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [1991] = { + [sym_xml_doc] = STATE(1991), + [sym_block_comment] = STATE(1991), + [sym_preproc_line] = STATE(1991), + [sym_identifier] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_COLON] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_let_BANG] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_COLON_QMARK] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_LBRACK_PIPE] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACE_PIPE] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_return_BANG] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2930), + [anon_sym_yield_BANG] = ACTIONS(2932), + [anon_sym_lazy] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_upcast] = ACTIONS(2930), + [anon_sym_downcast] = ACTIONS(2930), + [anon_sym_LT_AT] = ACTIONS(2930), + [anon_sym_AT_GT] = ACTIONS(2932), + [anon_sym_LT_AT_AT] = ACTIONS(2930), + [anon_sym_AT_AT_GT] = ACTIONS(2932), + [anon_sym_COLON_GT] = ACTIONS(2932), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_fun] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_match_BANG] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_DOT_LBRACK] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_use_BANG] = ACTIONS(2932), + [anon_sym_do_BANG] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(2932), + [anon_sym_begin] = ACTIONS(2930), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_or] = ACTIONS(2930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_AT_DQUOTE] = ACTIONS(2932), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [sym_bool] = ACTIONS(2930), + [sym_unit] = ACTIONS(2930), + [aux_sym__identifier_or_op_token1] = ACTIONS(2930), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_DOT] = ACTIONS(2930), + [anon_sym_DASH_DOT] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [aux_sym_prefix_op_token1] = ACTIONS(2932), + [aux_sym_infix_op_token1] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_COLON_EQ] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), + [sym_int] = ACTIONS(2930), + [sym_xint] = ACTIONS(2932), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2932), + [sym__newline] = ACTIONS(2932), }, - [2046] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(2462), - [sym__function_or_value_defn_body] = STATE(2401), - [sym_function_declaration_left] = STATE(4653), - [sym_value_declaration_left] = STATE(4653), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2046), - [sym_block_comment] = STATE(2046), - [sym_preproc_line] = STATE(2046), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1992] = { + [sym_xml_doc] = STATE(1992), + [sym_block_comment] = STATE(1992), + [sym_preproc_line] = STATE(1992), + [sym_identifier] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_let_BANG] = ACTIONS(3153), + [anon_sym_null] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_COLON_QMARK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_LBRACK_PIPE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_LBRACE_PIPE] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_return_BANG] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_yield_BANG] = ACTIONS(3153), + [anon_sym_lazy] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_upcast] = ACTIONS(3151), + [anon_sym_downcast] = ACTIONS(3151), + [anon_sym_LT_AT] = ACTIONS(3151), + [anon_sym_AT_GT] = ACTIONS(3153), + [anon_sym_LT_AT_AT] = ACTIONS(3151), + [anon_sym_AT_AT_GT] = ACTIONS(3153), + [anon_sym_COLON_GT] = ACTIONS(3153), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_fun] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_match_BANG] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_DOT_LBRACK] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_use_BANG] = ACTIONS(3153), + [anon_sym_do_BANG] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3153), + [anon_sym_begin] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [anon_sym_AT_DQUOTE] = ACTIONS(3153), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3153), + [sym_bool] = ACTIONS(3151), + [sym_unit] = ACTIONS(3151), + [aux_sym__identifier_or_op_token1] = ACTIONS(3151), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS_DOT] = ACTIONS(3151), + [anon_sym_DASH_DOT] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3153), + [aux_sym_prefix_op_token1] = ACTIONS(3153), + [aux_sym_infix_op_token1] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_COLON_EQ] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3153), + [sym_int] = ACTIONS(3151), + [sym_xint] = ACTIONS(3153), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3153), + [sym__newline] = ACTIONS(3153), }, - [2047] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(4954), - [sym__function_or_value_defn_body] = STATE(4178), - [sym_function_declaration_left] = STATE(4515), - [sym_value_declaration_left] = STATE(4515), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2047), - [sym_block_comment] = STATE(2047), - [sym_preproc_line] = STATE(2047), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [1993] = { + [sym_attributes] = STATE(3700), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4544), + [sym_member_defn] = STATE(2162), + [sym_additional_constr_defn] = STATE(2164), + [sym_xml_doc] = STATE(1993), + [sym_block_comment] = STATE(1993), + [sym_preproc_line] = STATE(1993), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(1897), + [ts_builtin_sym_end] = ACTIONS(3747), + [sym_identifier] = ACTIONS(3749), + [anon_sym_namespace] = ACTIONS(3749), + [anon_sym_module] = ACTIONS(3749), + [anon_sym_POUNDnowarn] = ACTIONS(3747), + [anon_sym_POUNDr] = ACTIONS(3747), + [anon_sym_POUNDload] = ACTIONS(3747), + [anon_sym_open] = ACTIONS(3749), + [anon_sym_LBRACK_LT] = ACTIONS(3747), + [anon_sym_return] = ACTIONS(3749), + [anon_sym_type] = ACTIONS(3749), + [anon_sym_do] = ACTIONS(3749), + [anon_sym_and] = ACTIONS(3749), + [anon_sym_let] = ACTIONS(3749), + [anon_sym_let_BANG] = ACTIONS(3747), + [aux_sym_access_modifier_token1] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3749), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym_LBRACK_PIPE] = ACTIONS(3747), + [anon_sym_LBRACE] = ACTIONS(3749), + [anon_sym_LBRACE_PIPE] = ACTIONS(3747), + [anon_sym_new] = ACTIONS(3749), + [anon_sym_return_BANG] = ACTIONS(3747), + [anon_sym_yield] = ACTIONS(3749), + [anon_sym_yield_BANG] = ACTIONS(3747), + [anon_sym_lazy] = ACTIONS(3749), + [anon_sym_assert] = ACTIONS(3749), + [anon_sym_upcast] = ACTIONS(3749), + [anon_sym_downcast] = ACTIONS(3749), + [anon_sym_LT_AT] = ACTIONS(3749), + [anon_sym_LT_AT_AT] = ACTIONS(3747), + [anon_sym_for] = ACTIONS(3749), + [anon_sym_while] = ACTIONS(3749), + [anon_sym_if] = ACTIONS(3749), + [anon_sym_fun] = ACTIONS(3749), + [anon_sym_try] = ACTIONS(3749), + [anon_sym_match] = ACTIONS(3749), + [anon_sym_match_BANG] = ACTIONS(3747), + [anon_sym_function] = ACTIONS(3749), + [anon_sym_use] = ACTIONS(3749), + [anon_sym_use_BANG] = ACTIONS(3747), + [anon_sym_do_BANG] = ACTIONS(3747), + [anon_sym_begin] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(3747), + [anon_sym_static] = ACTIONS(3753), + [anon_sym_member] = ACTIONS(3755), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3759), + [anon_sym_default] = ACTIONS(3759), + [anon_sym_val] = ACTIONS(3761), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(3749), + [anon_sym_AT_DQUOTE] = ACTIONS(3747), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3747), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3747), + [sym_bool] = ACTIONS(3749), + [sym_unit] = ACTIONS(3747), + [aux_sym__identifier_or_op_token1] = ACTIONS(3747), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3749), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_PLUS_DOT] = ACTIONS(3747), + [anon_sym_DASH_DOT] = ACTIONS(3747), + [anon_sym_PERCENT] = ACTIONS(3747), + [anon_sym_AMP_AMP] = ACTIONS(3747), + [anon_sym_TILDE] = ACTIONS(3747), + [aux_sym_prefix_op_token1] = ACTIONS(3747), + [sym_int] = ACTIONS(3749), + [sym_xint] = ACTIONS(3747), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3747), }, - [2048] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(5277), - [sym__function_or_value_defn_body] = STATE(4178), - [sym_function_declaration_left] = STATE(4515), - [sym_value_declaration_left] = STATE(4515), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2048), - [sym_block_comment] = STATE(2048), - [sym_preproc_line] = STATE(2048), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1994] = { + [sym_xml_doc] = STATE(1994), + [sym_block_comment] = STATE(1994), + [sym_preproc_line] = STATE(1994), + [sym_identifier] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_let_BANG] = ACTIONS(3169), + [anon_sym_null] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_COLON_QMARK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LBRACK_PIPE] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_return_BANG] = ACTIONS(3169), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_yield_BANG] = ACTIONS(3169), + [anon_sym_lazy] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_upcast] = ACTIONS(3167), + [anon_sym_downcast] = ACTIONS(3167), + [anon_sym_LT_AT] = ACTIONS(3167), + [anon_sym_AT_GT] = ACTIONS(3169), + [anon_sym_LT_AT_AT] = ACTIONS(3167), + [anon_sym_AT_AT_GT] = ACTIONS(3169), + [anon_sym_COLON_GT] = ACTIONS(3169), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_match_BANG] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_DOT_LBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_use_BANG] = ACTIONS(3169), + [anon_sym_do_BANG] = ACTIONS(3169), + [anon_sym_begin] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_AT_DQUOTE] = ACTIONS(3169), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), + [sym_bool] = ACTIONS(3167), + [sym_unit] = ACTIONS(3167), + [aux_sym__identifier_or_op_token1] = ACTIONS(3167), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS_DOT] = ACTIONS(3167), + [anon_sym_DASH_DOT] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3169), + [aux_sym_prefix_op_token1] = ACTIONS(3169), + [aux_sym_infix_op_token1] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_COLON_EQ] = ACTIONS(3169), + [anon_sym_DOLLAR] = ACTIONS(3167), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3169), + [sym_int] = ACTIONS(3167), + [sym_xint] = ACTIONS(3169), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3169), + [sym__newline] = ACTIONS(3169), + [sym__then] = ACTIONS(3169), }, - [2049] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2546), - [sym_function_declaration_left] = STATE(4545), - [sym_value_declaration_left] = STATE(4545), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2049), - [sym_block_comment] = STATE(2049), - [sym_preproc_line] = STATE(2049), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_rec] = ACTIONS(3780), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1995] = { + [sym_xml_doc] = STATE(1995), + [sym_block_comment] = STATE(1995), + [sym_preproc_line] = STATE(1995), + [sym_identifier] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_let_BANG] = ACTIONS(3173), + [anon_sym_null] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_LBRACK_PIPE] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_return_BANG] = ACTIONS(3173), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_yield_BANG] = ACTIONS(3173), + [anon_sym_lazy] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_upcast] = ACTIONS(3171), + [anon_sym_downcast] = ACTIONS(3171), + [anon_sym_LT_AT] = ACTIONS(3171), + [anon_sym_AT_GT] = ACTIONS(3173), + [anon_sym_LT_AT_AT] = ACTIONS(3171), + [anon_sym_AT_AT_GT] = ACTIONS(3173), + [anon_sym_COLON_GT] = ACTIONS(3173), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_fun] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_match_BANG] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_DOT_LBRACK] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_use_BANG] = ACTIONS(3173), + [anon_sym_do_BANG] = ACTIONS(3173), + [anon_sym_begin] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3171), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [anon_sym_AT_DQUOTE] = ACTIONS(3173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3173), + [sym_bool] = ACTIONS(3171), + [sym_unit] = ACTIONS(3171), + [aux_sym__identifier_or_op_token1] = ACTIONS(3171), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS_DOT] = ACTIONS(3171), + [anon_sym_DASH_DOT] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3173), + [aux_sym_prefix_op_token1] = ACTIONS(3173), + [aux_sym_infix_op_token1] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_DOLLAR] = ACTIONS(3171), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), + [sym_int] = ACTIONS(3171), + [sym_xint] = ACTIONS(3173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3173), + [sym__newline] = ACTIONS(3173), + [sym__then] = ACTIONS(3173), }, - [2050] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2416), - [sym_function_declaration_left] = STATE(4363), - [sym_value_declaration_left] = STATE(4363), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2050), - [sym_block_comment] = STATE(2050), - [sym_preproc_line] = STATE(2050), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_rec] = ACTIONS(3782), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1996] = { + [sym_xml_doc] = STATE(1996), + [sym_block_comment] = STATE(1996), + [sym_preproc_line] = STATE(1996), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), }, - [2051] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(4485), - [sym_function_declaration_left] = STATE(4566), - [sym_value_declaration_left] = STATE(4566), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2051), - [sym_block_comment] = STATE(2051), - [sym_preproc_line] = STATE(2051), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_rec] = ACTIONS(3784), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1997] = { + [sym_xml_doc] = STATE(1997), + [sym_block_comment] = STATE(1997), + [sym_preproc_line] = STATE(1997), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), }, - [2052] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(5211), - [sym__function_or_value_defn_body] = STATE(4178), - [sym_function_declaration_left] = STATE(4515), - [sym_value_declaration_left] = STATE(4515), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2052), - [sym_block_comment] = STATE(2052), - [sym_preproc_line] = STATE(2052), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1998] = { + [sym_xml_doc] = STATE(1998), + [sym_block_comment] = STATE(1998), + [sym_preproc_line] = STATE(1998), + [sym_identifier] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_let_BANG] = ACTIONS(2850), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2848), + [anon_sym_COLON_QMARK] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACK_PIPE] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_LBRACE_PIPE] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_return_BANG] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_yield_BANG] = ACTIONS(2850), + [anon_sym_lazy] = ACTIONS(2848), + [anon_sym_assert] = ACTIONS(2848), + [anon_sym_upcast] = ACTIONS(2848), + [anon_sym_downcast] = ACTIONS(2848), + [anon_sym_LT_AT] = ACTIONS(2848), + [anon_sym_AT_GT] = ACTIONS(2850), + [anon_sym_LT_AT_AT] = ACTIONS(2848), + [anon_sym_AT_AT_GT] = ACTIONS(2850), + [anon_sym_COLON_GT] = ACTIONS(2850), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_fun] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_match_BANG] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_DOT_LBRACK] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_use_BANG] = ACTIONS(2850), + [anon_sym_do_BANG] = ACTIONS(2850), + [anon_sym_begin] = ACTIONS(2848), + [anon_sym_LPAREN2] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_AT_DQUOTE] = ACTIONS(2850), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2850), + [sym_bool] = ACTIONS(2848), + [sym_unit] = ACTIONS(2848), + [aux_sym__identifier_or_op_token1] = ACTIONS(2848), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_PLUS_DOT] = ACTIONS(2848), + [anon_sym_DASH_DOT] = ACTIONS(2848), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_prefix_op_token1] = ACTIONS(2850), + [aux_sym_infix_op_token1] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_DOLLAR] = ACTIONS(2848), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), + [sym_int] = ACTIONS(2848), + [sym_xint] = ACTIONS(2850), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2850), + [sym__newline] = ACTIONS(2850), + [sym__then] = ACTIONS(2850), }, - [2053] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(2549), - [sym__function_or_value_defn_body] = STATE(2536), - [sym_function_declaration_left] = STATE(4545), - [sym_value_declaration_left] = STATE(4545), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2053), - [sym_block_comment] = STATE(2053), - [sym_preproc_line] = STATE(2053), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [1999] = { + [sym_xml_doc] = STATE(1999), + [sym_block_comment] = STATE(1999), + [sym_preproc_line] = STATE(1999), + [sym_identifier] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_let_BANG] = ACTIONS(3177), + [anon_sym_null] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_COLON_QMARK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LBRACK_PIPE] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_LBRACE_PIPE] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_return_BANG] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_yield_BANG] = ACTIONS(3177), + [anon_sym_lazy] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_upcast] = ACTIONS(3175), + [anon_sym_downcast] = ACTIONS(3175), + [anon_sym_LT_AT] = ACTIONS(3175), + [anon_sym_AT_GT] = ACTIONS(3177), + [anon_sym_LT_AT_AT] = ACTIONS(3175), + [anon_sym_AT_AT_GT] = ACTIONS(3177), + [anon_sym_COLON_GT] = ACTIONS(3177), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_fun] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_match_BANG] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_DOT_LBRACK] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_use_BANG] = ACTIONS(3177), + [anon_sym_do_BANG] = ACTIONS(3177), + [anon_sym_begin] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3175), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3175), + [anon_sym_DQUOTE] = ACTIONS(3175), + [anon_sym_AT_DQUOTE] = ACTIONS(3177), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3177), + [sym_bool] = ACTIONS(3175), + [sym_unit] = ACTIONS(3175), + [aux_sym__identifier_or_op_token1] = ACTIONS(3175), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS_DOT] = ACTIONS(3175), + [anon_sym_DASH_DOT] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3177), + [aux_sym_prefix_op_token1] = ACTIONS(3177), + [aux_sym_infix_op_token1] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_DOLLAR] = ACTIONS(3175), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), + [sym_int] = ACTIONS(3175), + [sym_xint] = ACTIONS(3177), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3177), + [sym__newline] = ACTIONS(3177), + [sym__then] = ACTIONS(3177), }, - [2054] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2465), - [sym_function_declaration_left] = STATE(4653), - [sym_value_declaration_left] = STATE(4653), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2054), - [sym_block_comment] = STATE(2054), - [sym_preproc_line] = STATE(2054), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_rec] = ACTIONS(3786), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2000] = { + [sym_xml_doc] = STATE(2000), + [sym_block_comment] = STATE(2000), + [sym_preproc_line] = STATE(2000), + [sym_identifier] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_COLON_QMARK] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_AT_GT] = ACTIONS(3029), + [anon_sym_LT_AT_AT] = ACTIONS(3027), + [anon_sym_AT_AT_GT] = ACTIONS(3029), + [anon_sym_COLON_GT] = ACTIONS(3029), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_DOT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3027), + [aux_sym__identifier_or_op_token1] = ACTIONS(3027), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3027), + [anon_sym_DASH_DOT] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [aux_sym_infix_op_token1] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3027), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__newline] = ACTIONS(3029), }, - [2055] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defns] = STATE(5332), - [sym__function_or_value_defn_body] = STATE(4178), - [sym_function_declaration_left] = STATE(4515), - [sym_value_declaration_left] = STATE(4515), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2055), - [sym_block_comment] = STATE(2055), - [sym_preproc_line] = STATE(2055), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2001] = { + [sym_xml_doc] = STATE(2001), + [sym_block_comment] = STATE(2001), + [sym_preproc_line] = STATE(2001), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), }, - [2056] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2542), - [sym_function_declaration_left] = STATE(4545), - [sym_value_declaration_left] = STATE(4545), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2056), - [sym_block_comment] = STATE(2056), - [sym_preproc_line] = STATE(2056), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2002] = { + [sym_xml_doc] = STATE(2002), + [sym_block_comment] = STATE(2002), + [sym_preproc_line] = STATE(2002), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), }, - [2057] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2446), - [sym_function_declaration_left] = STATE(4653), - [sym_value_declaration_left] = STATE(4653), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2057), - [sym_block_comment] = STATE(2057), - [sym_preproc_line] = STATE(2057), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2003] = { + [sym_xml_doc] = STATE(2003), + [sym_block_comment] = STATE(2003), + [sym_preproc_line] = STATE(2003), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), }, - [2058] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(2315), - [sym_function_declaration_left] = STATE(4363), - [sym_value_declaration_left] = STATE(4363), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2058), - [sym_block_comment] = STATE(2058), - [sym_preproc_line] = STATE(2058), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2004] = { + [sym_type_arguments] = STATE(2079), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(2004), + [sym_block_comment] = STATE(2004), + [sym_preproc_line] = STATE(2004), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3763), + [sym_identifier] = ACTIONS(3765), + [anon_sym_namespace] = ACTIONS(3765), + [anon_sym_module] = ACTIONS(3765), + [anon_sym_POUNDnowarn] = ACTIONS(3763), + [anon_sym_POUNDr] = ACTIONS(3763), + [anon_sym_POUNDload] = ACTIONS(3763), + [anon_sym_open] = ACTIONS(3765), + [anon_sym_LBRACK_LT] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3765), + [anon_sym_type] = ACTIONS(3765), + [anon_sym_do] = ACTIONS(3765), + [anon_sym_and] = ACTIONS(3765), + [anon_sym_let] = ACTIONS(3765), + [anon_sym_let_BANG] = ACTIONS(3763), + [aux_sym_access_modifier_token1] = ACTIONS(3763), + [anon_sym_null] = ACTIONS(3765), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_LBRACK_PIPE] = ACTIONS(3763), + [anon_sym_LBRACE] = ACTIONS(3765), + [anon_sym_LBRACE_PIPE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_return_BANG] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3765), + [anon_sym_yield_BANG] = ACTIONS(3763), + [anon_sym_lazy] = ACTIONS(3765), + [anon_sym_assert] = ACTIONS(3765), + [anon_sym_upcast] = ACTIONS(3765), + [anon_sym_downcast] = ACTIONS(3765), + [anon_sym_LT_AT] = ACTIONS(3765), + [anon_sym_LT_AT_AT] = ACTIONS(3763), + [anon_sym_for] = ACTIONS(3765), + [anon_sym_while] = ACTIONS(3765), + [anon_sym_if] = ACTIONS(3765), + [anon_sym_fun] = ACTIONS(3765), + [anon_sym_DASH_GT] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3765), + [anon_sym_match] = ACTIONS(3765), + [anon_sym_match_BANG] = ACTIONS(3763), + [anon_sym_function] = ACTIONS(3765), + [anon_sym_use] = ACTIONS(3765), + [anon_sym_use_BANG] = ACTIONS(3763), + [anon_sym_do_BANG] = ACTIONS(3763), + [anon_sym_begin] = ACTIONS(3765), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_static] = ACTIONS(3765), + [anon_sym_member] = ACTIONS(3765), + [anon_sym_abstract] = ACTIONS(3765), + [anon_sym_override] = ACTIONS(3765), + [anon_sym_default] = ACTIONS(3765), + [anon_sym_val] = ACTIONS(3765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3765), + [anon_sym_DQUOTE] = ACTIONS(3765), + [anon_sym_AT_DQUOTE] = ACTIONS(3763), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3763), + [sym_bool] = ACTIONS(3765), + [sym_unit] = ACTIONS(3763), + [aux_sym__identifier_or_op_token1] = ACTIONS(3763), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3765), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_PLUS_DOT] = ACTIONS(3763), + [anon_sym_DASH_DOT] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(3763), + [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_TILDE] = ACTIONS(3763), + [aux_sym_prefix_op_token1] = ACTIONS(3763), + [sym_int] = ACTIONS(3765), + [sym_xint] = ACTIONS(3763), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3763), }, - [2059] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3600), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2076), - [sym_char] = STATE(2727), - [sym_format_string] = STATE(2736), - [sym__string_literal] = STATE(2736), - [sym_string] = STATE(2727), - [sym_verbatim_string] = STATE(2727), - [sym_bytechar] = STATE(2727), - [sym_bytearray] = STATE(2727), - [sym_verbatim_bytearray] = STATE(2727), - [sym_format_triple_quoted_string] = STATE(2721), - [sym_triple_quoted_string] = STATE(2727), - [sym_const] = STATE(2724), - [sym_long_identifier] = STATE(2059), - [sym_sbyte] = STATE(2727), - [sym_byte] = STATE(2727), - [sym_int16] = STATE(2727), - [sym_uint16] = STATE(2727), - [sym_int32] = STATE(2727), - [sym_uint32] = STATE(2727), - [sym_nativeint] = STATE(2727), - [sym_unativeint] = STATE(2727), - [sym_int64] = STATE(2727), - [sym_uint64] = STATE(2727), - [sym_ieee32] = STATE(2727), - [sym_ieee64] = STATE(2727), - [sym_bignum] = STATE(2727), - [sym_decimal] = STATE(2727), - [sym_float] = STATE(4462), - [sym_xml_doc] = STATE(2059), - [sym_block_comment] = STATE(2059), - [sym_preproc_line] = STATE(2059), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3653), - [anon_sym_when] = ACTIONS(3651), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2060] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3600), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2076), - [sym_char] = STATE(2727), - [sym_format_string] = STATE(2736), - [sym__string_literal] = STATE(2736), - [sym_string] = STATE(2727), - [sym_verbatim_string] = STATE(2727), - [sym_bytechar] = STATE(2727), - [sym_bytearray] = STATE(2727), - [sym_verbatim_bytearray] = STATE(2727), - [sym_format_triple_quoted_string] = STATE(2721), - [sym_triple_quoted_string] = STATE(2727), - [sym_const] = STATE(2724), - [sym_long_identifier] = STATE(2059), - [sym_sbyte] = STATE(2727), - [sym_byte] = STATE(2727), - [sym_int16] = STATE(2727), - [sym_uint16] = STATE(2727), - [sym_int32] = STATE(2727), - [sym_uint32] = STATE(2727), - [sym_nativeint] = STATE(2727), - [sym_unativeint] = STATE(2727), - [sym_int64] = STATE(2727), - [sym_uint64] = STATE(2727), - [sym_ieee32] = STATE(2727), - [sym_ieee64] = STATE(2727), - [sym_bignum] = STATE(2727), - [sym_decimal] = STATE(2727), - [sym_float] = STATE(4462), - [sym_xml_doc] = STATE(2060), - [sym_block_comment] = STATE(2060), - [sym_preproc_line] = STATE(2060), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3790), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_DASH_GT] = ACTIONS(3692), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), - [anon_sym_DQUOTE] = ACTIONS(3802), - [anon_sym_AT_DQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), - [sym_bool] = ACTIONS(3810), - [sym_unit] = ACTIONS(3812), - [sym_int] = ACTIONS(3814), - [sym_xint] = ACTIONS(3816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2005] = { + [sym_xml_doc] = STATE(2005), + [sym_block_comment] = STATE(2005), + [sym_preproc_line] = STATE(2005), + [sym_identifier] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_let_BANG] = ACTIONS(3161), + [anon_sym_null] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_COLON_QMARK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LBRACK_PIPE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_LBRACE_PIPE] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_return_BANG] = ACTIONS(3161), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_yield_BANG] = ACTIONS(3161), + [anon_sym_lazy] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_upcast] = ACTIONS(3159), + [anon_sym_downcast] = ACTIONS(3159), + [anon_sym_LT_AT] = ACTIONS(3159), + [anon_sym_AT_GT] = ACTIONS(3161), + [anon_sym_LT_AT_AT] = ACTIONS(3159), + [anon_sym_AT_AT_GT] = ACTIONS(3161), + [anon_sym_COLON_GT] = ACTIONS(3161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3161), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_fun] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_match_BANG] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_DOT_LBRACK] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_use_BANG] = ACTIONS(3161), + [anon_sym_do_BANG] = ACTIONS(3161), + [anon_sym_begin] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [anon_sym_AT_DQUOTE] = ACTIONS(3161), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3161), + [sym_bool] = ACTIONS(3159), + [sym_unit] = ACTIONS(3159), + [aux_sym__identifier_or_op_token1] = ACTIONS(3159), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS_DOT] = ACTIONS(3159), + [anon_sym_DASH_DOT] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3161), + [aux_sym_prefix_op_token1] = ACTIONS(3161), + [aux_sym_infix_op_token1] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_COLON_EQ] = ACTIONS(3161), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3161), + [sym_int] = ACTIONS(3159), + [sym_xint] = ACTIONS(3161), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3161), + [sym__newline] = ACTIONS(3161), + [sym__then] = ACTIONS(3161), }, - [2061] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(4179), - [sym_function_declaration_left] = STATE(4566), - [sym_value_declaration_left] = STATE(4566), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2061), - [sym_block_comment] = STATE(2061), - [sym_preproc_line] = STATE(2061), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2006] = { + [sym_attributes] = STATE(3700), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4544), + [sym_member_defn] = STATE(2162), + [sym_additional_constr_defn] = STATE(2164), + [sym_xml_doc] = STATE(2006), + [sym_block_comment] = STATE(2006), + [sym_preproc_line] = STATE(2006), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(1993), + [ts_builtin_sym_end] = ACTIONS(3767), + [sym_identifier] = ACTIONS(3769), + [anon_sym_namespace] = ACTIONS(3769), + [anon_sym_module] = ACTIONS(3769), + [anon_sym_POUNDnowarn] = ACTIONS(3767), + [anon_sym_POUNDr] = ACTIONS(3767), + [anon_sym_POUNDload] = ACTIONS(3767), + [anon_sym_open] = ACTIONS(3769), + [anon_sym_LBRACK_LT] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3769), + [anon_sym_type] = ACTIONS(3769), + [anon_sym_do] = ACTIONS(3769), + [anon_sym_and] = ACTIONS(3769), + [anon_sym_let] = ACTIONS(3769), + [anon_sym_let_BANG] = ACTIONS(3767), + [aux_sym_access_modifier_token1] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3769), + [anon_sym_LPAREN] = ACTIONS(3769), + [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_LBRACK] = ACTIONS(3769), + [anon_sym_LBRACK_PIPE] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_PIPE] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3769), + [anon_sym_return_BANG] = ACTIONS(3767), + [anon_sym_yield] = ACTIONS(3769), + [anon_sym_yield_BANG] = ACTIONS(3767), + [anon_sym_lazy] = ACTIONS(3769), + [anon_sym_assert] = ACTIONS(3769), + [anon_sym_upcast] = ACTIONS(3769), + [anon_sym_downcast] = ACTIONS(3769), + [anon_sym_LT_AT] = ACTIONS(3769), + [anon_sym_LT_AT_AT] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3769), + [anon_sym_while] = ACTIONS(3769), + [anon_sym_if] = ACTIONS(3769), + [anon_sym_fun] = ACTIONS(3769), + [anon_sym_try] = ACTIONS(3769), + [anon_sym_match] = ACTIONS(3769), + [anon_sym_match_BANG] = ACTIONS(3767), + [anon_sym_function] = ACTIONS(3769), + [anon_sym_use] = ACTIONS(3769), + [anon_sym_use_BANG] = ACTIONS(3767), + [anon_sym_do_BANG] = ACTIONS(3767), + [anon_sym_begin] = ACTIONS(3769), + [anon_sym_SQUOTE] = ACTIONS(3767), + [anon_sym_static] = ACTIONS(3753), + [anon_sym_member] = ACTIONS(3755), + [anon_sym_abstract] = ACTIONS(3757), + [anon_sym_override] = ACTIONS(3759), + [anon_sym_default] = ACTIONS(3759), + [anon_sym_val] = ACTIONS(3761), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3769), + [anon_sym_DQUOTE] = ACTIONS(3769), + [anon_sym_AT_DQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3767), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3767), + [sym_bool] = ACTIONS(3769), + [sym_unit] = ACTIONS(3767), + [aux_sym__identifier_or_op_token1] = ACTIONS(3767), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_PLUS_DOT] = ACTIONS(3767), + [anon_sym_DASH_DOT] = ACTIONS(3767), + [anon_sym_PERCENT] = ACTIONS(3767), + [anon_sym_AMP_AMP] = ACTIONS(3767), + [anon_sym_TILDE] = ACTIONS(3767), + [aux_sym_prefix_op_token1] = ACTIONS(3767), + [sym_int] = ACTIONS(3769), + [sym_xint] = ACTIONS(3767), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3767), }, - [2062] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3621), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2070), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2062), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2062), - [sym_block_comment] = STATE(2062), - [sym_preproc_line] = STATE(2062), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_LT2] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2007] = { + [sym_xml_doc] = STATE(2007), + [sym_block_comment] = STATE(2007), + [sym_preproc_line] = STATE(2007), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), }, - [2063] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__function_or_value_defn_body] = STATE(4510), - [sym_function_declaration_left] = STATE(4515), - [sym_value_declaration_left] = STATE(4515), - [sym_access_modifier] = STATE(2154), - [sym__pattern] = STATE(3671), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2551), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2063), - [sym_block_comment] = STATE(2063), - [sym_preproc_line] = STATE(2063), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_inline] = ACTIONS(3764), - [anon_sym_mutable] = ACTIONS(3766), - [aux_sym_access_modifier_token1] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2008] = { + [sym_xml_doc] = STATE(2008), + [sym_block_comment] = STATE(2008), + [sym_preproc_line] = STATE(2008), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), }, - [2064] = { - [sym_type_arguments] = STATE(2013), - [sym__object_members] = STATE(2239), - [sym_long_identifier] = STATE(2012), - [sym_xml_doc] = STATE(2064), - [sym_block_comment] = STATE(2064), - [sym_preproc_line] = STATE(2064), - [aux_sym__compound_type_repeat1] = STATE(1842), - [ts_builtin_sym_end] = ACTIONS(3818), - [sym_identifier] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3820), - [anon_sym_module] = ACTIONS(3820), - [anon_sym_POUNDnowarn] = ACTIONS(3818), - [anon_sym_POUNDr] = ACTIONS(3818), - [anon_sym_POUNDload] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3820), - [anon_sym_LBRACK_LT] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3820), - [anon_sym_type] = ACTIONS(3820), - [anon_sym_do] = ACTIONS(3820), - [anon_sym_and] = ACTIONS(3820), - [anon_sym_let] = ACTIONS(3820), - [anon_sym_let_BANG] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3820), - [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_LBRACK_PIPE] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3820), - [anon_sym_LBRACE_PIPE] = ACTIONS(3818), - [anon_sym_with] = ACTIONS(3822), - [anon_sym_new] = ACTIONS(3820), - [anon_sym_return_BANG] = ACTIONS(3818), - [anon_sym_yield] = ACTIONS(3820), - [anon_sym_yield_BANG] = ACTIONS(3818), - [anon_sym_lazy] = ACTIONS(3820), - [anon_sym_assert] = ACTIONS(3820), - [anon_sym_upcast] = ACTIONS(3820), - [anon_sym_downcast] = ACTIONS(3820), - [anon_sym_LT_AT] = ACTIONS(3820), - [anon_sym_LT_AT_AT] = ACTIONS(3818), - [anon_sym_for] = ACTIONS(3820), - [anon_sym_while] = ACTIONS(3820), - [anon_sym_if] = ACTIONS(3820), - [anon_sym_fun] = ACTIONS(3820), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3820), - [anon_sym_match] = ACTIONS(3820), - [anon_sym_match_BANG] = ACTIONS(3818), - [anon_sym_function] = ACTIONS(3820), - [anon_sym_use] = ACTIONS(3820), - [anon_sym_use_BANG] = ACTIONS(3818), - [anon_sym_do_BANG] = ACTIONS(3818), - [anon_sym_begin] = ACTIONS(3820), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_LT2] = ACTIONS(3413), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3818), - [anon_sym_interface] = ACTIONS(3820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), - [anon_sym_DQUOTE] = ACTIONS(3820), - [anon_sym_AT_DQUOTE] = ACTIONS(3818), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3818), - [sym_bool] = ACTIONS(3820), - [sym_unit] = ACTIONS(3818), - [aux_sym__identifier_or_op_token1] = ACTIONS(3818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3820), - [anon_sym_PLUS] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), - [anon_sym_PLUS_DOT] = ACTIONS(3818), - [anon_sym_DASH_DOT] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_AMP_AMP] = ACTIONS(3818), - [anon_sym_TILDE] = ACTIONS(3818), - [aux_sym_prefix_op_token1] = ACTIONS(3818), - [sym_int] = ACTIONS(3820), - [sym_xint] = ACTIONS(3818), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3818), + [2009] = { + [sym_xml_doc] = STATE(2009), + [sym_block_comment] = STATE(2009), + [sym_preproc_line] = STATE(2009), + [sym_identifier] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_let_BANG] = ACTIONS(3157), + [anon_sym_null] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_LBRACK_PIPE] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACE_PIPE] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_return_BANG] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_yield_BANG] = ACTIONS(3157), + [anon_sym_lazy] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_upcast] = ACTIONS(3155), + [anon_sym_downcast] = ACTIONS(3155), + [anon_sym_LT_AT] = ACTIONS(3155), + [anon_sym_AT_GT] = ACTIONS(3157), + [anon_sym_LT_AT_AT] = ACTIONS(3155), + [anon_sym_AT_AT_GT] = ACTIONS(3157), + [anon_sym_COLON_GT] = ACTIONS(3157), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_fun] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_match_BANG] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_DOT_LBRACK] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_use_BANG] = ACTIONS(3157), + [anon_sym_do_BANG] = ACTIONS(3157), + [anon_sym_begin] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [anon_sym_AT_DQUOTE] = ACTIONS(3157), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3157), + [sym_bool] = ACTIONS(3155), + [sym_unit] = ACTIONS(3155), + [aux_sym__identifier_or_op_token1] = ACTIONS(3155), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS_DOT] = ACTIONS(3155), + [anon_sym_DASH_DOT] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3157), + [aux_sym_prefix_op_token1] = ACTIONS(3157), + [aux_sym_infix_op_token1] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_COLON_EQ] = ACTIONS(3157), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3157), + [sym_int] = ACTIONS(3155), + [sym_xint] = ACTIONS(3157), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3157), + [sym__newline] = ACTIONS(3157), + [sym__then] = ACTIONS(3157), }, - [2065] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3621), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2070), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2062), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2065), - [sym_block_comment] = STATE(2065), - [sym_preproc_line] = STATE(2065), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3698), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3692), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_LT2] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2010] = { + [sym_xml_doc] = STATE(2010), + [sym_block_comment] = STATE(2010), + [sym_preproc_line] = STATE(2010), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), }, - [2066] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3778), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2091), - [sym_char] = STATE(2727), - [sym_format_string] = STATE(2736), - [sym__string_literal] = STATE(2736), - [sym_string] = STATE(2727), - [sym_verbatim_string] = STATE(2727), - [sym_bytechar] = STATE(2727), - [sym_bytearray] = STATE(2727), - [sym_verbatim_bytearray] = STATE(2727), - [sym_format_triple_quoted_string] = STATE(2721), - [sym_triple_quoted_string] = STATE(2727), - [sym_const] = STATE(2724), - [sym_long_identifier] = STATE(2077), - [sym_sbyte] = STATE(2727), - [sym_byte] = STATE(2727), - [sym_int16] = STATE(2727), - [sym_uint16] = STATE(2727), - [sym_int32] = STATE(2727), - [sym_uint32] = STATE(2727), - [sym_nativeint] = STATE(2727), - [sym_unativeint] = STATE(2727), - [sym_int64] = STATE(2727), - [sym_uint64] = STATE(2727), - [sym_ieee32] = STATE(2727), - [sym_ieee64] = STATE(2727), - [sym_bignum] = STATE(2727), - [sym_decimal] = STATE(2727), - [sym_float] = STATE(4462), - [sym_xml_doc] = STATE(2066), - [sym_block_comment] = STATE(2066), - [sym_preproc_line] = STATE(2066), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3790), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_DASH_GT] = ACTIONS(3692), - [anon_sym_when] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), - [anon_sym_DQUOTE] = ACTIONS(3802), - [anon_sym_AT_DQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), - [sym_bool] = ACTIONS(3810), - [sym_unit] = ACTIONS(3812), - [sym_int] = ACTIONS(3814), - [sym_xint] = ACTIONS(3816), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2011] = { + [sym_xml_doc] = STATE(2011), + [sym_block_comment] = STATE(2011), + [sym_preproc_line] = STATE(2011), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), }, - [2067] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2865), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym__pattern_param] = STATE(2084), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2073), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2067), - [sym_block_comment] = STATE(2067), - [sym_preproc_line] = STATE(2067), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym__] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_AT_DQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [sym_bool] = ACTIONS(3696), - [sym_unit] = ACTIONS(3692), - [sym_int] = ACTIONS(3696), - [sym_xint] = ACTIONS(3692), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2012] = { + [sym_xml_doc] = STATE(2012), + [sym_block_comment] = STATE(2012), + [sym_preproc_line] = STATE(2012), + [sym_identifier] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_let_BANG] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_COLON_QMARK] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_LBRACK_PIPE] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACE_PIPE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_return_BANG] = ACTIONS(2972), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_yield_BANG] = ACTIONS(2972), + [anon_sym_lazy] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_upcast] = ACTIONS(2970), + [anon_sym_downcast] = ACTIONS(2970), + [anon_sym_LT_AT] = ACTIONS(2970), + [anon_sym_AT_GT] = ACTIONS(2972), + [anon_sym_LT_AT_AT] = ACTIONS(2970), + [anon_sym_AT_AT_GT] = ACTIONS(2972), + [anon_sym_COLON_GT] = ACTIONS(2972), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_fun] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_match_BANG] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_DOT_LBRACK] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_use_BANG] = ACTIONS(2972), + [anon_sym_do_BANG] = ACTIONS(2972), + [anon_sym_begin] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_AT_DQUOTE] = ACTIONS(2972), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), + [sym_bool] = ACTIONS(2970), + [sym_unit] = ACTIONS(2970), + [aux_sym__identifier_or_op_token1] = ACTIONS(2970), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PLUS_DOT] = ACTIONS(2970), + [anon_sym_DASH_DOT] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2972), + [aux_sym_prefix_op_token1] = ACTIONS(2972), + [aux_sym_infix_op_token1] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2972), + [sym_int] = ACTIONS(2970), + [sym_xint] = ACTIONS(2972), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2972), + [sym__newline] = ACTIONS(2972), + [sym__then] = ACTIONS(2972), }, - [2068] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3806), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2081), - [sym_char] = STATE(2799), - [sym_format_string] = STATE(2805), - [sym__string_literal] = STATE(2805), - [sym_string] = STATE(2799), - [sym_verbatim_string] = STATE(2799), - [sym_bytechar] = STATE(2799), - [sym_bytearray] = STATE(2799), - [sym_verbatim_bytearray] = STATE(2799), - [sym_format_triple_quoted_string] = STATE(2797), - [sym_triple_quoted_string] = STATE(2799), - [sym_const] = STATE(2772), - [sym_long_identifier] = STATE(2069), - [sym_sbyte] = STATE(2799), - [sym_byte] = STATE(2799), - [sym_int16] = STATE(2799), - [sym_uint16] = STATE(2799), - [sym_int32] = STATE(2799), - [sym_uint32] = STATE(2799), - [sym_nativeint] = STATE(2799), - [sym_unativeint] = STATE(2799), - [sym_int64] = STATE(2799), - [sym_uint64] = STATE(2799), - [sym_ieee32] = STATE(2799), - [sym_ieee64] = STATE(2799), - [sym_bignum] = STATE(2799), - [sym_decimal] = STATE(2799), - [sym_float] = STATE(4529), - [sym_xml_doc] = STATE(2068), - [sym_block_comment] = STATE(2068), - [sym_preproc_line] = STATE(2068), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3834), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_in] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3844), - [anon_sym_DQUOTE] = ACTIONS(3846), - [anon_sym_AT_DQUOTE] = ACTIONS(3848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3850), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3852), - [sym_bool] = ACTIONS(3854), - [sym_unit] = ACTIONS(3856), - [sym_int] = ACTIONS(3858), - [sym_xint] = ACTIONS(3860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2013] = { + [sym_xml_doc] = STATE(2013), + [sym_block_comment] = STATE(2013), + [sym_preproc_line] = STATE(2013), + [sym_identifier] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_do] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_let_BANG] = ACTIONS(3033), + [anon_sym_null] = ACTIONS(3031), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_COLON_QMARK] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_LBRACK_PIPE] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3031), + [anon_sym_return_BANG] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_yield_BANG] = ACTIONS(3033), + [anon_sym_lazy] = ACTIONS(3031), + [anon_sym_assert] = ACTIONS(3031), + [anon_sym_upcast] = ACTIONS(3031), + [anon_sym_downcast] = ACTIONS(3031), + [anon_sym_LT_AT] = ACTIONS(3031), + [anon_sym_AT_GT] = ACTIONS(3033), + [anon_sym_LT_AT_AT] = ACTIONS(3031), + [anon_sym_AT_AT_GT] = ACTIONS(3033), + [anon_sym_COLON_GT] = ACTIONS(3033), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_fun] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_match_BANG] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3031), + [anon_sym_LT_DASH] = ACTIONS(3031), + [anon_sym_DOT_LBRACK] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_use_BANG] = ACTIONS(3033), + [anon_sym_do_BANG] = ACTIONS(3033), + [anon_sym_begin] = ACTIONS(3031), + [anon_sym_LPAREN2] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3033), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [anon_sym_AT_DQUOTE] = ACTIONS(3033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3033), + [sym_bool] = ACTIONS(3031), + [sym_unit] = ACTIONS(3031), + [aux_sym__identifier_or_op_token1] = ACTIONS(3031), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_PLUS_DOT] = ACTIONS(3031), + [anon_sym_DASH_DOT] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_TILDE] = ACTIONS(3033), + [aux_sym_prefix_op_token1] = ACTIONS(3033), + [aux_sym_infix_op_token1] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3033), + [anon_sym_COLON_EQ] = ACTIONS(3033), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), + [sym_int] = ACTIONS(3031), + [sym_xint] = ACTIONS(3033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3033), + [sym__newline] = ACTIONS(3033), + [sym__then] = ACTIONS(3033), }, - [2069] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3806), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2081), - [sym_char] = STATE(2799), - [sym_format_string] = STATE(2805), - [sym__string_literal] = STATE(2805), - [sym_string] = STATE(2799), - [sym_verbatim_string] = STATE(2799), - [sym_bytechar] = STATE(2799), - [sym_bytearray] = STATE(2799), - [sym_verbatim_bytearray] = STATE(2799), - [sym_format_triple_quoted_string] = STATE(2797), - [sym_triple_quoted_string] = STATE(2799), - [sym_const] = STATE(2772), - [sym_long_identifier] = STATE(2069), - [sym_sbyte] = STATE(2799), - [sym_byte] = STATE(2799), - [sym_int16] = STATE(2799), - [sym_uint16] = STATE(2799), - [sym_int32] = STATE(2799), - [sym_uint32] = STATE(2799), - [sym_nativeint] = STATE(2799), - [sym_unativeint] = STATE(2799), - [sym_int64] = STATE(2799), - [sym_uint64] = STATE(2799), - [sym_ieee32] = STATE(2799), - [sym_ieee64] = STATE(2799), - [sym_bignum] = STATE(2799), - [sym_decimal] = STATE(2799), - [sym_float] = STATE(4529), - [sym_xml_doc] = STATE(2069), - [sym_block_comment] = STATE(2069), - [sym_preproc_line] = STATE(2069), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3651), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2070] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3676), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2070), - [sym_block_comment] = STATE(2070), - [sym_preproc_line] = STATE(2070), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(3736), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_LT2] = ACTIONS(3736), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2014] = { + [sym_xml_doc] = STATE(2014), + [sym_block_comment] = STATE(2014), + [sym_preproc_line] = STATE(2014), + [sym_identifier] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_COLON] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_let] = ACTIONS(3077), + [anon_sym_let_BANG] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_COLON_QMARK] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACK_PIPE] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACE_PIPE] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_return_BANG] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3077), + [anon_sym_yield_BANG] = ACTIONS(3079), + [anon_sym_lazy] = ACTIONS(3077), + [anon_sym_assert] = ACTIONS(3077), + [anon_sym_upcast] = ACTIONS(3077), + [anon_sym_downcast] = ACTIONS(3077), + [anon_sym_LT_AT] = ACTIONS(3077), + [anon_sym_AT_GT] = ACTIONS(3079), + [anon_sym_LT_AT_AT] = ACTIONS(3077), + [anon_sym_AT_AT_GT] = ACTIONS(3079), + [anon_sym_COLON_GT] = ACTIONS(3079), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_fun] = ACTIONS(3077), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_match] = ACTIONS(3077), + [anon_sym_match_BANG] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_LT_DASH] = ACTIONS(3077), + [anon_sym_DOT_LBRACK] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3077), + [anon_sym_use_BANG] = ACTIONS(3079), + [anon_sym_do_BANG] = ACTIONS(3079), + [anon_sym_begin] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_or] = ACTIONS(3077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [anon_sym_AT_DQUOTE] = ACTIONS(3079), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3079), + [sym_bool] = ACTIONS(3077), + [sym_unit] = ACTIONS(3077), + [aux_sym__identifier_or_op_token1] = ACTIONS(3077), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_DOT] = ACTIONS(3077), + [anon_sym_DASH_DOT] = ACTIONS(3077), + [anon_sym_PERCENT] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [aux_sym_prefix_op_token1] = ACTIONS(3079), + [aux_sym_infix_op_token1] = ACTIONS(3077), + [anon_sym_PIPE_PIPE] = ACTIONS(3077), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_COLON_EQ] = ACTIONS(3079), + [anon_sym_DOLLAR] = ACTIONS(3077), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), + [sym_int] = ACTIONS(3077), + [sym_xint] = ACTIONS(3079), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3079), + [sym__newline] = ACTIONS(3079), + [sym__then] = ACTIONS(3079), }, - [2071] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2729), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym__pattern_param] = STATE(2092), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2071), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2071), - [sym_block_comment] = STATE(2071), - [sym_preproc_line] = STATE(2071), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2015] = { + [sym_xml_doc] = STATE(2015), + [sym_block_comment] = STATE(2015), + [sym_preproc_line] = STATE(2015), + [sym_identifier] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2999), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_let] = ACTIONS(2997), + [anon_sym_let_BANG] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_COLON_QMARK] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACK_PIPE] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_LBRACE_PIPE] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_return_BANG] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2997), + [anon_sym_yield_BANG] = ACTIONS(2999), + [anon_sym_lazy] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_upcast] = ACTIONS(2997), + [anon_sym_downcast] = ACTIONS(2997), + [anon_sym_LT_AT] = ACTIONS(2997), + [anon_sym_AT_GT] = ACTIONS(2999), + [anon_sym_LT_AT_AT] = ACTIONS(2997), + [anon_sym_AT_AT_GT] = ACTIONS(2999), + [anon_sym_COLON_GT] = ACTIONS(2999), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_fun] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_match_BANG] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_DOT_LBRACK] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2997), + [anon_sym_use_BANG] = ACTIONS(2999), + [anon_sym_do_BANG] = ACTIONS(2999), + [anon_sym_begin] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_AT_DQUOTE] = ACTIONS(2999), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2999), + [sym_bool] = ACTIONS(2997), + [sym_unit] = ACTIONS(2997), + [aux_sym__identifier_or_op_token1] = ACTIONS(2997), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_DOT] = ACTIONS(2997), + [anon_sym_DASH_DOT] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [aux_sym_prefix_op_token1] = ACTIONS(2999), + [aux_sym_infix_op_token1] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2999), + [sym_int] = ACTIONS(2997), + [sym_xint] = ACTIONS(2999), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2999), + [sym__newline] = ACTIONS(2999), + [sym__then] = ACTIONS(2999), }, - [2072] = { - [sym_type_arguments] = STATE(2037), - [sym__object_members] = STATE(2339), - [sym_long_identifier] = STATE(2038), - [sym_xml_doc] = STATE(2072), - [sym_block_comment] = STATE(2072), - [sym_preproc_line] = STATE(2072), - [aux_sym__compound_type_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3820), - [anon_sym_POUNDnowarn] = ACTIONS(3818), - [anon_sym_POUNDr] = ACTIONS(3818), - [anon_sym_POUNDload] = ACTIONS(3818), - [anon_sym_open] = ACTIONS(3820), - [anon_sym_LBRACK_LT] = ACTIONS(3818), - [anon_sym_return] = ACTIONS(3820), - [anon_sym_type] = ACTIONS(3820), - [anon_sym_do] = ACTIONS(3820), - [anon_sym_and] = ACTIONS(3820), - [anon_sym_let] = ACTIONS(3820), - [anon_sym_let_BANG] = ACTIONS(3818), - [anon_sym_null] = ACTIONS(3820), - [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_LBRACK_PIPE] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3820), - [anon_sym_LBRACE_PIPE] = ACTIONS(3818), - [anon_sym_with] = ACTIONS(3862), - [anon_sym_new] = ACTIONS(3820), - [anon_sym_return_BANG] = ACTIONS(3818), - [anon_sym_yield] = ACTIONS(3820), - [anon_sym_yield_BANG] = ACTIONS(3818), - [anon_sym_lazy] = ACTIONS(3820), - [anon_sym_assert] = ACTIONS(3820), - [anon_sym_upcast] = ACTIONS(3820), - [anon_sym_downcast] = ACTIONS(3820), - [anon_sym_LT_AT] = ACTIONS(3820), - [anon_sym_LT_AT_AT] = ACTIONS(3818), - [anon_sym_for] = ACTIONS(3820), - [anon_sym_while] = ACTIONS(3820), - [anon_sym_if] = ACTIONS(3820), - [anon_sym_fun] = ACTIONS(3820), - [anon_sym_DASH_GT] = ACTIONS(3549), - [anon_sym_try] = ACTIONS(3820), - [anon_sym_match] = ACTIONS(3820), - [anon_sym_match_BANG] = ACTIONS(3818), - [anon_sym_function] = ACTIONS(3820), - [anon_sym_use] = ACTIONS(3820), - [anon_sym_use_BANG] = ACTIONS(3818), - [anon_sym_do_BANG] = ACTIONS(3818), - [anon_sym_begin] = ACTIONS(3820), - [anon_sym_STAR] = ACTIONS(3551), - [anon_sym_LT2] = ACTIONS(3553), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(3818), - [anon_sym_interface] = ACTIONS(3820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), - [anon_sym_DQUOTE] = ACTIONS(3820), - [anon_sym_AT_DQUOTE] = ACTIONS(3818), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3818), - [sym_bool] = ACTIONS(3820), - [sym_unit] = ACTIONS(3818), - [aux_sym__identifier_or_op_token1] = ACTIONS(3818), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3820), - [anon_sym_PLUS] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), - [anon_sym_PLUS_DOT] = ACTIONS(3818), - [anon_sym_DASH_DOT] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_AMP_AMP] = ACTIONS(3818), - [anon_sym_TILDE] = ACTIONS(3818), - [aux_sym_prefix_op_token1] = ACTIONS(3818), - [sym_int] = ACTIONS(3820), - [sym_xint] = ACTIONS(3818), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3818), - [sym__dedent] = ACTIONS(3818), + [2016] = { + [sym_xml_doc] = STATE(2016), + [sym_block_comment] = STATE(2016), + [sym_preproc_line] = STATE(2016), + [sym_identifier] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_let_BANG] = ACTIONS(2870), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2868), + [anon_sym_COLON_QMARK] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACK_PIPE] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_LBRACE_PIPE] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_return_BANG] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_yield_BANG] = ACTIONS(2870), + [anon_sym_lazy] = ACTIONS(2868), + [anon_sym_assert] = ACTIONS(2868), + [anon_sym_upcast] = ACTIONS(2868), + [anon_sym_downcast] = ACTIONS(2868), + [anon_sym_LT_AT] = ACTIONS(2868), + [anon_sym_AT_GT] = ACTIONS(2870), + [anon_sym_LT_AT_AT] = ACTIONS(2868), + [anon_sym_AT_AT_GT] = ACTIONS(2870), + [anon_sym_COLON_GT] = ACTIONS(2870), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_fun] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_match_BANG] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_DOT_LBRACK] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_use_BANG] = ACTIONS(2870), + [anon_sym_do_BANG] = ACTIONS(2870), + [anon_sym_begin] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_AT_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2870), + [sym_bool] = ACTIONS(2868), + [sym_unit] = ACTIONS(2868), + [aux_sym__identifier_or_op_token1] = ACTIONS(2868), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_PLUS_DOT] = ACTIONS(2868), + [anon_sym_DASH_DOT] = ACTIONS(2868), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_prefix_op_token1] = ACTIONS(2870), + [aux_sym_infix_op_token1] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2870), + [sym_int] = ACTIONS(2868), + [sym_xint] = ACTIONS(2870), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2870), + [sym__newline] = ACTIONS(2870), + [sym__then] = ACTIONS(2870), }, - [2073] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2865), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym__pattern_param] = STATE(2084), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2073), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2073), - [sym_block_comment] = STATE(2073), - [sym_preproc_line] = STATE(2073), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2017] = { + [sym_xml_doc] = STATE(2017), + [sym_block_comment] = STATE(2017), + [sym_preproc_line] = STATE(2017), + [sym_identifier] = ACTIONS(2916), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym_COLON] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_let_BANG] = ACTIONS(2918), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2916), + [anon_sym_COLON_QMARK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACK_PIPE] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_LBRACE_PIPE] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_return_BANG] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_yield_BANG] = ACTIONS(2918), + [anon_sym_lazy] = ACTIONS(2916), + [anon_sym_assert] = ACTIONS(2916), + [anon_sym_upcast] = ACTIONS(2916), + [anon_sym_downcast] = ACTIONS(2916), + [anon_sym_LT_AT] = ACTIONS(2916), + [anon_sym_AT_GT] = ACTIONS(2918), + [anon_sym_LT_AT_AT] = ACTIONS(2916), + [anon_sym_AT_AT_GT] = ACTIONS(2918), + [anon_sym_COLON_GT] = ACTIONS(2918), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_fun] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2916), + [anon_sym_match_BANG] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_DOT_LBRACK] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2916), + [anon_sym_use_BANG] = ACTIONS(2918), + [anon_sym_do_BANG] = ACTIONS(2918), + [anon_sym_begin] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_AT_DQUOTE] = ACTIONS(2918), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2918), + [sym_bool] = ACTIONS(2916), + [sym_unit] = ACTIONS(2916), + [aux_sym__identifier_or_op_token1] = ACTIONS(2916), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS_DOT] = ACTIONS(2916), + [anon_sym_DASH_DOT] = ACTIONS(2916), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_prefix_op_token1] = ACTIONS(2918), + [aux_sym_infix_op_token1] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_DOLLAR] = ACTIONS(2916), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2918), + [sym_int] = ACTIONS(2916), + [sym_xint] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2918), + [sym__newline] = ACTIONS(2918), + [sym__then] = ACTIONS(2918), }, - [2074] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2871), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym__pattern_param] = STATE(2089), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2078), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2074), - [sym_block_comment] = STATE(2074), - [sym_preproc_line] = STATE(2074), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3696), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym__] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_DASH_GT] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_AT_DQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [sym_bool] = ACTIONS(3696), - [sym_unit] = ACTIONS(3692), - [sym_int] = ACTIONS(3696), - [sym_xint] = ACTIONS(3692), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2018] = { + [sym_xml_doc] = STATE(2018), + [sym_block_comment] = STATE(2018), + [sym_preproc_line] = STATE(2018), + [sym_identifier] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_let_BANG] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_COLON_QMARK] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_LBRACK_PIPE] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACE_PIPE] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2938), + [anon_sym_return_BANG] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_yield_BANG] = ACTIONS(2940), + [anon_sym_lazy] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_upcast] = ACTIONS(2938), + [anon_sym_downcast] = ACTIONS(2938), + [anon_sym_LT_AT] = ACTIONS(2938), + [anon_sym_AT_GT] = ACTIONS(2940), + [anon_sym_LT_AT_AT] = ACTIONS(2938), + [anon_sym_AT_AT_GT] = ACTIONS(2940), + [anon_sym_COLON_GT] = ACTIONS(2940), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_fun] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_match_BANG] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_DOT_LBRACK] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_use_BANG] = ACTIONS(2940), + [anon_sym_do_BANG] = ACTIONS(2940), + [anon_sym_begin] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_AT_DQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2940), + [sym_bool] = ACTIONS(2938), + [sym_unit] = ACTIONS(2938), + [aux_sym__identifier_or_op_token1] = ACTIONS(2938), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_PLUS_DOT] = ACTIONS(2938), + [anon_sym_DASH_DOT] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2940), + [aux_sym_prefix_op_token1] = ACTIONS(2940), + [aux_sym_infix_op_token1] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2940), + [sym_int] = ACTIONS(2938), + [sym_xint] = ACTIONS(2940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [sym__then] = ACTIONS(2940), }, - [2075] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2729), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym__pattern_param] = STATE(2092), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2071), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2075), - [sym_block_comment] = STATE(2075), - [sym_preproc_line] = STATE(2075), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LBRACK_LT] = ACTIONS(3692), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym__] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3692), - [anon_sym_COLON_QMARK] = ACTIONS(3692), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_LBRACK_PIPE] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_AT_DQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [sym_bool] = ACTIONS(3696), - [sym_unit] = ACTIONS(3692), - [sym_int] = ACTIONS(3696), - [sym_xint] = ACTIONS(3692), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2019] = { + [sym_xml_doc] = STATE(2019), + [sym_block_comment] = STATE(2019), + [sym_preproc_line] = STATE(2019), + [sym_identifier] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_let_BANG] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_LBRACK_PIPE] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_return_BANG] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_yield_BANG] = ACTIONS(3025), + [anon_sym_lazy] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_upcast] = ACTIONS(3023), + [anon_sym_downcast] = ACTIONS(3023), + [anon_sym_LT_AT] = ACTIONS(3023), + [anon_sym_AT_GT] = ACTIONS(3025), + [anon_sym_LT_AT_AT] = ACTIONS(3023), + [anon_sym_AT_AT_GT] = ACTIONS(3025), + [anon_sym_COLON_GT] = ACTIONS(3025), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_fun] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_match_BANG] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_DOT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_use_BANG] = ACTIONS(3025), + [anon_sym_do_BANG] = ACTIONS(3025), + [anon_sym_begin] = ACTIONS(3023), + [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_AT_DQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3025), + [sym_bool] = ACTIONS(3023), + [sym_unit] = ACTIONS(3023), + [aux_sym__identifier_or_op_token1] = ACTIONS(3023), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_PLUS_DOT] = ACTIONS(3023), + [anon_sym_DASH_DOT] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3025), + [aux_sym_prefix_op_token1] = ACTIONS(3025), + [aux_sym_infix_op_token1] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), + [sym_int] = ACTIONS(3023), + [sym_xint] = ACTIONS(3025), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3025), + [sym__newline] = ACTIONS(3025), + [sym__then] = ACTIONS(3025), }, - [2076] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3620), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2076), - [sym_block_comment] = STATE(2076), - [sym_preproc_line] = STATE(2076), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_DASH_GT] = ACTIONS(3736), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2020] = { + [sym_xml_doc] = STATE(2020), + [sym_block_comment] = STATE(2020), + [sym_preproc_line] = STATE(2020), + [sym_identifier] = ACTIONS(2603), + [anon_sym_EQ] = ACTIONS(2605), + [anon_sym_COLON] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_QMARK] = ACTIONS(2603), + [anon_sym_COLON_QMARK] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_AT_GT] = ACTIONS(2605), + [anon_sym_LT_AT_AT] = ACTIONS(2603), + [anon_sym_AT_AT_GT] = ACTIONS(2605), + [anon_sym_COLON_GT] = ACTIONS(2605), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_LT_DASH] = ACTIONS(2603), + [anon_sym_DOT_LBRACK] = ACTIONS(2605), + [anon_sym_DOT] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_DOT_DOT] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_or] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2603), + [aux_sym__identifier_or_op_token1] = ACTIONS(2603), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2603), + [anon_sym_DASH_DOT] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_AMP_AMP] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [aux_sym_infix_op_token1] = ACTIONS(2603), + [anon_sym_PIPE_PIPE] = ACTIONS(2603), + [anon_sym_BANG_EQ] = ACTIONS(2605), + [anon_sym_COLON_EQ] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), }, - [2077] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3778), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2091), - [sym_char] = STATE(2727), - [sym_format_string] = STATE(2736), - [sym__string_literal] = STATE(2736), - [sym_string] = STATE(2727), - [sym_verbatim_string] = STATE(2727), - [sym_bytechar] = STATE(2727), - [sym_bytearray] = STATE(2727), - [sym_verbatim_bytearray] = STATE(2727), - [sym_format_triple_quoted_string] = STATE(2721), - [sym_triple_quoted_string] = STATE(2727), - [sym_const] = STATE(2724), - [sym_long_identifier] = STATE(2077), - [sym_sbyte] = STATE(2727), - [sym_byte] = STATE(2727), - [sym_int16] = STATE(2727), - [sym_uint16] = STATE(2727), - [sym_int32] = STATE(2727), - [sym_uint32] = STATE(2727), - [sym_nativeint] = STATE(2727), - [sym_unativeint] = STATE(2727), - [sym_int64] = STATE(2727), - [sym_uint64] = STATE(2727), - [sym_ieee32] = STATE(2727), - [sym_ieee64] = STATE(2727), - [sym_bignum] = STATE(2727), - [sym_decimal] = STATE(2727), - [sym_float] = STATE(4462), - [sym_xml_doc] = STATE(2077), - [sym_block_comment] = STATE(2077), - [sym_preproc_line] = STATE(2077), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3653), - [anon_sym_when] = ACTIONS(3651), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2021] = { + [sym_xml_doc] = STATE(2021), + [sym_block_comment] = STATE(2021), + [sym_preproc_line] = STATE(2021), + [sym_identifier] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3003), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_let] = ACTIONS(3001), + [anon_sym_let_BANG] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_COLON_QMARK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACK_PIPE] = ACTIONS(3003), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_LBRACE_PIPE] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_return_BANG] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3001), + [anon_sym_yield_BANG] = ACTIONS(3003), + [anon_sym_lazy] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_upcast] = ACTIONS(3001), + [anon_sym_downcast] = ACTIONS(3001), + [anon_sym_LT_AT] = ACTIONS(3001), + [anon_sym_AT_GT] = ACTIONS(3003), + [anon_sym_LT_AT_AT] = ACTIONS(3001), + [anon_sym_AT_AT_GT] = ACTIONS(3003), + [anon_sym_COLON_GT] = ACTIONS(3003), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_fun] = ACTIONS(3001), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_match_BANG] = ACTIONS(3003), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_DOT_LBRACK] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3001), + [anon_sym_use_BANG] = ACTIONS(3003), + [anon_sym_do_BANG] = ACTIONS(3003), + [anon_sym_begin] = ACTIONS(3001), + [anon_sym_LPAREN2] = ACTIONS(3003), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_AT_DQUOTE] = ACTIONS(3003), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3003), + [sym_bool] = ACTIONS(3001), + [sym_unit] = ACTIONS(3001), + [aux_sym__identifier_or_op_token1] = ACTIONS(3001), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_DOT] = ACTIONS(3001), + [anon_sym_DASH_DOT] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [aux_sym_prefix_op_token1] = ACTIONS(3003), + [aux_sym_infix_op_token1] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_COLON_EQ] = ACTIONS(3003), + [anon_sym_DOLLAR] = ACTIONS(3001), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), + [sym_int] = ACTIONS(3001), + [sym_xint] = ACTIONS(3003), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3003), + [sym__newline] = ACTIONS(3003), + [sym__then] = ACTIONS(3003), }, - [2078] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2871), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym__pattern_param] = STATE(2089), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2078), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2078), - [sym_block_comment] = STATE(2078), - [sym_preproc_line] = STATE(2078), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3653), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2022] = { + [sym_xml_doc] = STATE(2022), + [sym_block_comment] = STATE(2022), + [sym_preproc_line] = STATE(2022), + [sym_identifier] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_let] = ACTIONS(3113), + [anon_sym_let_BANG] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_COMMA] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACK_PIPE] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_LBRACE_PIPE] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_return_BANG] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(3113), + [anon_sym_yield_BANG] = ACTIONS(2780), + [anon_sym_lazy] = ACTIONS(3113), + [anon_sym_assert] = ACTIONS(3113), + [anon_sym_upcast] = ACTIONS(3113), + [anon_sym_downcast] = ACTIONS(3113), + [anon_sym_LT_AT] = ACTIONS(3113), + [anon_sym_AT_GT] = ACTIONS(2780), + [anon_sym_LT_AT_AT] = ACTIONS(3113), + [anon_sym_AT_AT_GT] = ACTIONS(2780), + [anon_sym_COLON_GT] = ACTIONS(2780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_fun] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3113), + [anon_sym_match_BANG] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_LT_DASH] = ACTIONS(3113), + [anon_sym_DOT_LBRACK] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(3113), + [anon_sym_use_BANG] = ACTIONS(2780), + [anon_sym_do_BANG] = ACTIONS(2780), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_begin] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_or] = ACTIONS(3113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3113), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_AT_DQUOTE] = ACTIONS(2780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2780), + [sym_bool] = ACTIONS(3113), + [sym_unit] = ACTIONS(3113), + [aux_sym__identifier_or_op_token1] = ACTIONS(3113), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_DOT] = ACTIONS(3113), + [anon_sym_DASH_DOT] = ACTIONS(3113), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(2780), + [aux_sym_prefix_op_token1] = ACTIONS(2780), + [aux_sym_infix_op_token1] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(2780), + [anon_sym_COLON_EQ] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(3113), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2780), + [sym_int] = ACTIONS(3113), + [sym_xint] = ACTIONS(2780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), }, - [2079] = { - [sym_xml_doc] = STATE(2079), - [sym_block_comment] = STATE(2079), - [sym_preproc_line] = STATE(2079), - [ts_builtin_sym_end] = ACTIONS(3866), - [sym_identifier] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_POUNDnowarn] = ACTIONS(3866), - [anon_sym_POUNDr] = ACTIONS(3866), - [anon_sym_POUNDload] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_LBRACK_LT] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_type] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_and] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_BANG] = ACTIONS(3866), - [aux_sym_access_modifier_token1] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_LBRACK_PIPE] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACE_PIPE] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_return_BANG] = ACTIONS(3866), - [anon_sym_yield] = ACTIONS(3868), - [anon_sym_yield_BANG] = ACTIONS(3866), - [anon_sym_lazy] = ACTIONS(3868), - [anon_sym_assert] = ACTIONS(3868), - [anon_sym_upcast] = ACTIONS(3868), - [anon_sym_downcast] = ACTIONS(3868), - [anon_sym_LT_AT] = ACTIONS(3868), - [anon_sym_LT_AT_AT] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_fun] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_match_BANG] = ACTIONS(3866), - [anon_sym_function] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_use_BANG] = ACTIONS(3866), - [anon_sym_do_BANG] = ACTIONS(3866), - [anon_sym_begin] = ACTIONS(3868), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_member] = ACTIONS(3868), - [anon_sym_abstract] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_val] = ACTIONS(3868), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3868), - [anon_sym_DQUOTE] = ACTIONS(3868), - [anon_sym_AT_DQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [sym_bool] = ACTIONS(3868), - [sym_unit] = ACTIONS(3866), - [aux_sym__identifier_or_op_token1] = ACTIONS(3866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS_DOT] = ACTIONS(3866), - [anon_sym_DASH_DOT] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [aux_sym_prefix_op_token1] = ACTIONS(3866), - [sym_int] = ACTIONS(3868), - [sym_xint] = ACTIONS(3866), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [2023] = { + [sym_xml_doc] = STATE(2023), + [sym_block_comment] = STATE(2023), + [sym_preproc_line] = STATE(2023), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_DOT_DOT] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3866), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), }, - [2080] = { - [sym_xml_doc] = STATE(2080), - [sym_block_comment] = STATE(2080), - [sym_preproc_line] = STATE(2080), - [ts_builtin_sym_end] = ACTIONS(3872), - [sym_identifier] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_POUNDnowarn] = ACTIONS(3872), - [anon_sym_POUNDr] = ACTIONS(3872), - [anon_sym_POUNDload] = ACTIONS(3872), - [anon_sym_open] = ACTIONS(3874), - [anon_sym_LBRACK_LT] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_and] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_BANG] = ACTIONS(3872), - [aux_sym_access_modifier_token1] = ACTIONS(3872), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_COMMA] = ACTIONS(3876), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LBRACK_PIPE] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_LBRACE_PIPE] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3874), - [anon_sym_return_BANG] = ACTIONS(3872), - [anon_sym_yield] = ACTIONS(3874), - [anon_sym_yield_BANG] = ACTIONS(3872), - [anon_sym_lazy] = ACTIONS(3874), - [anon_sym_assert] = ACTIONS(3874), - [anon_sym_upcast] = ACTIONS(3874), - [anon_sym_downcast] = ACTIONS(3874), - [anon_sym_LT_AT] = ACTIONS(3874), - [anon_sym_LT_AT_AT] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_fun] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_match_BANG] = ACTIONS(3872), - [anon_sym_function] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_use_BANG] = ACTIONS(3872), - [anon_sym_do_BANG] = ACTIONS(3872), - [anon_sym_begin] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3874), - [anon_sym_member] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3874), - [anon_sym_override] = ACTIONS(3874), - [anon_sym_default] = ACTIONS(3874), - [anon_sym_val] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_AT_DQUOTE] = ACTIONS(3872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [sym_bool] = ACTIONS(3874), - [sym_unit] = ACTIONS(3872), - [aux_sym__identifier_or_op_token1] = ACTIONS(3872), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3874), - [anon_sym_PLUS] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_PLUS_DOT] = ACTIONS(3872), - [anon_sym_DASH_DOT] = ACTIONS(3872), - [anon_sym_PERCENT] = ACTIONS(3872), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3872), - [aux_sym_prefix_op_token1] = ACTIONS(3872), - [sym_int] = ACTIONS(3874), - [sym_xint] = ACTIONS(3872), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3872), + [2024] = { + [sym_xml_doc] = STATE(2024), + [sym_block_comment] = STATE(2024), + [sym_preproc_line] = STATE(2024), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), }, - [2081] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3781), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2081), - [sym_block_comment] = STATE(2081), - [sym_preproc_line] = STATE(2081), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_in] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2025] = { + [sym_xml_doc] = STATE(2025), + [sym_block_comment] = STATE(2025), + [sym_preproc_line] = STATE(2025), + [sym_identifier] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_do] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_let_BANG] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_COLON_QMARK] = ACTIONS(3115), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_LBRACK_PIPE] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACE_PIPE] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3115), + [anon_sym_return_BANG] = ACTIONS(3117), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_yield_BANG] = ACTIONS(3117), + [anon_sym_lazy] = ACTIONS(3115), + [anon_sym_assert] = ACTIONS(3115), + [anon_sym_upcast] = ACTIONS(3115), + [anon_sym_downcast] = ACTIONS(3115), + [anon_sym_LT_AT] = ACTIONS(3115), + [anon_sym_AT_GT] = ACTIONS(3117), + [anon_sym_LT_AT_AT] = ACTIONS(3115), + [anon_sym_AT_AT_GT] = ACTIONS(3117), + [anon_sym_COLON_GT] = ACTIONS(3117), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_match_BANG] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3115), + [anon_sym_LT_DASH] = ACTIONS(3115), + [anon_sym_DOT_LBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_use_BANG] = ACTIONS(3117), + [anon_sym_do_BANG] = ACTIONS(3117), + [anon_sym_begin] = ACTIONS(3115), + [anon_sym_LPAREN2] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [anon_sym_AT_DQUOTE] = ACTIONS(3117), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3117), + [sym_bool] = ACTIONS(3115), + [sym_unit] = ACTIONS(3115), + [aux_sym__identifier_or_op_token1] = ACTIONS(3115), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3115), + [anon_sym_PLUS] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3115), + [anon_sym_PLUS_DOT] = ACTIONS(3115), + [anon_sym_DASH_DOT] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3117), + [aux_sym_prefix_op_token1] = ACTIONS(3117), + [aux_sym_infix_op_token1] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_COLON_EQ] = ACTIONS(3117), + [anon_sym_DOLLAR] = ACTIONS(3115), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3117), + [sym_int] = ACTIONS(3115), + [sym_xint] = ACTIONS(3117), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3117), + [sym__newline] = ACTIONS(3117), + [sym__then] = ACTIONS(3117), }, - [2082] = { - [sym_xml_doc] = STATE(2082), - [sym_block_comment] = STATE(2082), - [sym_preproc_line] = STATE(2082), - [ts_builtin_sym_end] = ACTIONS(3878), - [sym_identifier] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_POUNDnowarn] = ACTIONS(3878), - [anon_sym_POUNDr] = ACTIONS(3878), - [anon_sym_POUNDload] = ACTIONS(3878), - [anon_sym_open] = ACTIONS(3880), - [anon_sym_LBRACK_LT] = ACTIONS(3878), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_and] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_let_BANG] = ACTIONS(3878), - [aux_sym_access_modifier_token1] = ACTIONS(3878), - [anon_sym_null] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_LBRACK_PIPE] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_LBRACE_PIPE] = ACTIONS(3878), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_return_BANG] = ACTIONS(3878), - [anon_sym_yield] = ACTIONS(3880), - [anon_sym_yield_BANG] = ACTIONS(3878), - [anon_sym_lazy] = ACTIONS(3880), - [anon_sym_assert] = ACTIONS(3880), - [anon_sym_upcast] = ACTIONS(3880), - [anon_sym_downcast] = ACTIONS(3880), - [anon_sym_LT_AT] = ACTIONS(3880), - [anon_sym_LT_AT_AT] = ACTIONS(3878), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_fun] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_match] = ACTIONS(3880), - [anon_sym_match_BANG] = ACTIONS(3878), - [anon_sym_function] = ACTIONS(3880), - [anon_sym_use] = ACTIONS(3880), - [anon_sym_use_BANG] = ACTIONS(3878), - [anon_sym_do_BANG] = ACTIONS(3878), - [anon_sym_begin] = ACTIONS(3880), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_member] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3880), - [anon_sym_override] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_val] = ACTIONS(3880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3880), - [anon_sym_AT_DQUOTE] = ACTIONS(3878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [sym_bool] = ACTIONS(3880), - [sym_unit] = ACTIONS(3878), - [aux_sym__identifier_or_op_token1] = ACTIONS(3878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS_DOT] = ACTIONS(3878), - [anon_sym_DASH_DOT] = ACTIONS(3878), - [anon_sym_PERCENT] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [aux_sym_prefix_op_token1] = ACTIONS(3878), - [sym_int] = ACTIONS(3880), - [sym_xint] = ACTIONS(3878), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [2026] = { + [sym_xml_doc] = STATE(2026), + [sym_block_comment] = STATE(2026), + [sym_preproc_line] = STATE(2026), + [sym_identifier] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_do] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_let_BANG] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_COLON_QMARK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK_PIPE] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_LBRACE_PIPE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3054), + [anon_sym_return_BANG] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_yield_BANG] = ACTIONS(3056), + [anon_sym_lazy] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_upcast] = ACTIONS(3054), + [anon_sym_downcast] = ACTIONS(3054), + [anon_sym_LT_AT] = ACTIONS(3054), + [anon_sym_AT_GT] = ACTIONS(3056), + [anon_sym_LT_AT_AT] = ACTIONS(3054), + [anon_sym_AT_AT_GT] = ACTIONS(3056), + [anon_sym_COLON_GT] = ACTIONS(3056), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_fun] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_match_BANG] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_DOT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_use_BANG] = ACTIONS(3056), + [anon_sym_do_BANG] = ACTIONS(3056), + [anon_sym_begin] = ACTIONS(3054), + [anon_sym_LPAREN2] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_AT_DQUOTE] = ACTIONS(3056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3056), + [sym_bool] = ACTIONS(3054), + [sym_unit] = ACTIONS(3054), + [aux_sym__identifier_or_op_token1] = ACTIONS(3054), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_PLUS_DOT] = ACTIONS(3054), + [anon_sym_DASH_DOT] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3056), + [aux_sym_prefix_op_token1] = ACTIONS(3056), + [aux_sym_infix_op_token1] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_DOLLAR] = ACTIONS(3054), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3056), + [sym_int] = ACTIONS(3054), + [sym_xint] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3056), + [sym__newline] = ACTIONS(3056), + [sym__then] = ACTIONS(3056), + }, + [2027] = { + [sym_xml_doc] = STATE(2027), + [sym_block_comment] = STATE(2027), + [sym_preproc_line] = STATE(2027), + [sym_identifier] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_let_BANG] = ACTIONS(3041), + [anon_sym_null] = ACTIONS(3039), + [anon_sym_QMARK] = ACTIONS(3039), + [anon_sym_COLON_QMARK] = ACTIONS(3039), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_LBRACK_PIPE] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3039), + [anon_sym_return_BANG] = ACTIONS(3041), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_yield_BANG] = ACTIONS(3041), + [anon_sym_lazy] = ACTIONS(3039), + [anon_sym_assert] = ACTIONS(3039), + [anon_sym_upcast] = ACTIONS(3039), + [anon_sym_downcast] = ACTIONS(3039), + [anon_sym_LT_AT] = ACTIONS(3039), + [anon_sym_AT_GT] = ACTIONS(3041), + [anon_sym_LT_AT_AT] = ACTIONS(3039), + [anon_sym_AT_AT_GT] = ACTIONS(3041), + [anon_sym_COLON_GT] = ACTIONS(3041), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_fun] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_match_BANG] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3039), + [anon_sym_DOT_LBRACK] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_use_BANG] = ACTIONS(3041), + [anon_sym_do_BANG] = ACTIONS(3041), + [anon_sym_begin] = ACTIONS(3039), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3039), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3039), + [anon_sym_DQUOTE] = ACTIONS(3039), + [anon_sym_AT_DQUOTE] = ACTIONS(3041), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3041), + [sym_bool] = ACTIONS(3039), + [sym_unit] = ACTIONS(3039), + [aux_sym__identifier_or_op_token1] = ACTIONS(3039), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3039), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_PLUS_DOT] = ACTIONS(3039), + [anon_sym_DASH_DOT] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_TILDE] = ACTIONS(3041), + [aux_sym_prefix_op_token1] = ACTIONS(3041), + [aux_sym_infix_op_token1] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_COLON_EQ] = ACTIONS(3041), + [anon_sym_DOLLAR] = ACTIONS(3039), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3041), + [sym_int] = ACTIONS(3039), + [sym_xint] = ACTIONS(3041), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3041), + [sym__newline] = ACTIONS(3041), + [sym__then] = ACTIONS(3041), + }, + [2028] = { + [sym_xml_doc] = STATE(2028), + [sym_block_comment] = STATE(2028), + [sym_preproc_line] = STATE(2028), + [sym_identifier] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_let_BANG] = ACTIONS(3037), + [anon_sym_null] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_COLON_QMARK] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_LBRACK_PIPE] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LBRACE_PIPE] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_return_BANG] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_yield_BANG] = ACTIONS(3037), + [anon_sym_lazy] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_upcast] = ACTIONS(3035), + [anon_sym_downcast] = ACTIONS(3035), + [anon_sym_LT_AT] = ACTIONS(3035), + [anon_sym_AT_GT] = ACTIONS(3037), + [anon_sym_LT_AT_AT] = ACTIONS(3035), + [anon_sym_AT_AT_GT] = ACTIONS(3037), + [anon_sym_COLON_GT] = ACTIONS(3037), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_fun] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_match_BANG] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_DOT_LBRACK] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_use_BANG] = ACTIONS(3037), + [anon_sym_do_BANG] = ACTIONS(3037), + [anon_sym_begin] = ACTIONS(3035), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_or] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [anon_sym_AT_DQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3037), + [sym_bool] = ACTIONS(3035), + [sym_unit] = ACTIONS(3035), + [aux_sym__identifier_or_op_token1] = ACTIONS(3035), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_PLUS_DOT] = ACTIONS(3035), + [anon_sym_DASH_DOT] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3037), + [aux_sym_prefix_op_token1] = ACTIONS(3037), + [aux_sym_infix_op_token1] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3037), + [anon_sym_COLON_EQ] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), + [sym_int] = ACTIONS(3035), + [sym_xint] = ACTIONS(3037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3037), + [sym__newline] = ACTIONS(3037), + [sym__then] = ACTIONS(3037), + }, + [2029] = { + [sym_xml_doc] = STATE(2029), + [sym_block_comment] = STATE(2029), + [sym_preproc_line] = STATE(2029), + [sym_identifier] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_DOT_DOT] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3878), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), }, - [2083] = { - [sym_xml_doc] = STATE(2083), - [sym_block_comment] = STATE(2083), - [sym_preproc_line] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(3878), - [sym_identifier] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_POUNDnowarn] = ACTIONS(3878), - [anon_sym_POUNDr] = ACTIONS(3878), - [anon_sym_POUNDload] = ACTIONS(3878), - [anon_sym_open] = ACTIONS(3880), - [anon_sym_LBRACK_LT] = ACTIONS(3878), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_and] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_let_BANG] = ACTIONS(3878), - [aux_sym_access_modifier_token1] = ACTIONS(3878), - [anon_sym_null] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_LBRACK_PIPE] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_LBRACE_PIPE] = ACTIONS(3878), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_return_BANG] = ACTIONS(3878), - [anon_sym_yield] = ACTIONS(3880), - [anon_sym_yield_BANG] = ACTIONS(3878), - [anon_sym_lazy] = ACTIONS(3880), - [anon_sym_assert] = ACTIONS(3880), - [anon_sym_upcast] = ACTIONS(3880), - [anon_sym_downcast] = ACTIONS(3880), - [anon_sym_LT_AT] = ACTIONS(3880), - [anon_sym_LT_AT_AT] = ACTIONS(3878), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_fun] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_match] = ACTIONS(3880), - [anon_sym_match_BANG] = ACTIONS(3878), - [anon_sym_function] = ACTIONS(3880), - [anon_sym_use] = ACTIONS(3880), - [anon_sym_use_BANG] = ACTIONS(3878), - [anon_sym_do_BANG] = ACTIONS(3878), - [anon_sym_begin] = ACTIONS(3880), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_member] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3880), - [anon_sym_override] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_val] = ACTIONS(3880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3880), - [anon_sym_AT_DQUOTE] = ACTIONS(3878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [sym_bool] = ACTIONS(3880), - [sym_unit] = ACTIONS(3878), - [aux_sym__identifier_or_op_token1] = ACTIONS(3878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS_DOT] = ACTIONS(3878), - [anon_sym_DASH_DOT] = ACTIONS(3878), - [anon_sym_PERCENT] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [aux_sym_prefix_op_token1] = ACTIONS(3878), - [sym_int] = ACTIONS(3880), - [sym_xint] = ACTIONS(3878), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [2030] = { + [sym_xml_doc] = STATE(2030), + [sym_block_comment] = STATE(2030), + [sym_preproc_line] = STATE(2030), + [sym_identifier] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_let_BANG] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_COLON_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_LBRACK_PIPE] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LBRACE_PIPE] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_return_BANG] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_yield_BANG] = ACTIONS(2964), + [anon_sym_lazy] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_upcast] = ACTIONS(2962), + [anon_sym_downcast] = ACTIONS(2962), + [anon_sym_LT_AT] = ACTIONS(2962), + [anon_sym_AT_GT] = ACTIONS(2964), + [anon_sym_LT_AT_AT] = ACTIONS(2962), + [anon_sym_AT_AT_GT] = ACTIONS(2964), + [anon_sym_COLON_GT] = ACTIONS(2964), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_fun] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_match_BANG] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_DOT_LBRACK] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_use_BANG] = ACTIONS(2964), + [anon_sym_do_BANG] = ACTIONS(2964), + [anon_sym_begin] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_AT_DQUOTE] = ACTIONS(2964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2964), + [sym_bool] = ACTIONS(2962), + [sym_unit] = ACTIONS(2962), + [aux_sym__identifier_or_op_token1] = ACTIONS(2962), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS_DOT] = ACTIONS(2962), + [anon_sym_DASH_DOT] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), + [aux_sym_prefix_op_token1] = ACTIONS(2964), + [aux_sym_infix_op_token1] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2964), + [sym_int] = ACTIONS(2962), + [sym_xint] = ACTIONS(2964), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2964), + [sym__newline] = ACTIONS(2964), + [sym__then] = ACTIONS(2964), + }, + [2031] = { + [sym_xml_doc] = STATE(2031), + [sym_block_comment] = STATE(2031), + [sym_preproc_line] = STATE(2031), + [sym_identifier] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_COLON] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_let_BANG] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_COLON_QMARK] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_LBRACK_PIPE] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACE_PIPE] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2930), + [anon_sym_return_BANG] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2930), + [anon_sym_yield_BANG] = ACTIONS(2932), + [anon_sym_lazy] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_upcast] = ACTIONS(2930), + [anon_sym_downcast] = ACTIONS(2930), + [anon_sym_LT_AT] = ACTIONS(2930), + [anon_sym_AT_GT] = ACTIONS(2932), + [anon_sym_LT_AT_AT] = ACTIONS(2930), + [anon_sym_AT_AT_GT] = ACTIONS(2932), + [anon_sym_COLON_GT] = ACTIONS(2932), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_fun] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_match_BANG] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_DOT_LBRACK] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_use_BANG] = ACTIONS(2932), + [anon_sym_do_BANG] = ACTIONS(2932), + [anon_sym_begin] = ACTIONS(2930), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2932), + [anon_sym_or] = ACTIONS(2930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_AT_DQUOTE] = ACTIONS(2932), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2932), + [sym_bool] = ACTIONS(2930), + [sym_unit] = ACTIONS(2930), + [aux_sym__identifier_or_op_token1] = ACTIONS(2930), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_PLUS_DOT] = ACTIONS(2930), + [anon_sym_DASH_DOT] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2932), + [aux_sym_prefix_op_token1] = ACTIONS(2932), + [aux_sym_infix_op_token1] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_COLON_EQ] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2932), + [sym_int] = ACTIONS(2930), + [sym_xint] = ACTIONS(2932), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3878), + [anon_sym_POUNDif] = ACTIONS(2932), + [sym__newline] = ACTIONS(2932), + [sym__then] = ACTIONS(2932), }, - [2084] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2846), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), - [sym_xml_doc] = STATE(2084), - [sym_block_comment] = STATE(2084), - [sym_preproc_line] = STATE(2084), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3738), - [anon_sym__] = ACTIONS(3738), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3736), - [anon_sym_SQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(3738), - [anon_sym_AT_DQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [sym_bool] = ACTIONS(3738), - [sym_unit] = ACTIONS(3736), - [sym_int] = ACTIONS(3738), - [sym_xint] = ACTIONS(3736), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2032] = { + [sym_xml_doc] = STATE(2032), + [sym_block_comment] = STATE(2032), + [sym_preproc_line] = STATE(2032), + [sym_identifier] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_let] = ACTIONS(3105), + [anon_sym_let_BANG] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACK_PIPE] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_LBRACE_PIPE] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_return_BANG] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3105), + [anon_sym_yield_BANG] = ACTIONS(3107), + [anon_sym_lazy] = ACTIONS(3105), + [anon_sym_assert] = ACTIONS(3105), + [anon_sym_upcast] = ACTIONS(3105), + [anon_sym_downcast] = ACTIONS(3105), + [anon_sym_LT_AT] = ACTIONS(3105), + [anon_sym_AT_GT] = ACTIONS(3107), + [anon_sym_LT_AT_AT] = ACTIONS(3105), + [anon_sym_AT_AT_GT] = ACTIONS(3107), + [anon_sym_COLON_GT] = ACTIONS(3107), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_match] = ACTIONS(3105), + [anon_sym_match_BANG] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_LT_DASH] = ACTIONS(3105), + [anon_sym_DOT_LBRACK] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3105), + [anon_sym_use_BANG] = ACTIONS(3107), + [anon_sym_do_BANG] = ACTIONS(3107), + [anon_sym_begin] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_or] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [anon_sym_AT_DQUOTE] = ACTIONS(3107), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3107), + [sym_bool] = ACTIONS(3105), + [sym_unit] = ACTIONS(3105), + [aux_sym__identifier_or_op_token1] = ACTIONS(3105), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_DOT] = ACTIONS(3105), + [anon_sym_DASH_DOT] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [aux_sym_prefix_op_token1] = ACTIONS(3107), + [aux_sym_infix_op_token1] = ACTIONS(3105), + [anon_sym_PIPE_PIPE] = ACTIONS(3105), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_COLON_EQ] = ACTIONS(3107), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3107), + [sym_int] = ACTIONS(3105), + [sym_xint] = ACTIONS(3107), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3107), + [sym__newline] = ACTIONS(3107), + [sym__then] = ACTIONS(3107), }, - [2085] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2766), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym__pattern_param] = STATE(2109), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2085), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2085), - [sym_block_comment] = STATE(2085), - [sym_preproc_line] = STATE(2085), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2033] = { + [sym_xml_doc] = STATE(2033), + [sym_block_comment] = STATE(2033), + [sym_preproc_line] = STATE(2033), + [sym_identifier] = ACTIONS(2856), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_let_BANG] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_COLON_QMARK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACK_PIPE] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_LBRACE_PIPE] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_return_BANG] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_yield_BANG] = ACTIONS(2858), + [anon_sym_lazy] = ACTIONS(2856), + [anon_sym_assert] = ACTIONS(2856), + [anon_sym_upcast] = ACTIONS(2856), + [anon_sym_downcast] = ACTIONS(2856), + [anon_sym_LT_AT] = ACTIONS(2856), + [anon_sym_AT_GT] = ACTIONS(2858), + [anon_sym_LT_AT_AT] = ACTIONS(2856), + [anon_sym_AT_AT_GT] = ACTIONS(2858), + [anon_sym_COLON_GT] = ACTIONS(2858), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_fun] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_match_BANG] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_DOT_LBRACK] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_use_BANG] = ACTIONS(2858), + [anon_sym_do_BANG] = ACTIONS(2858), + [anon_sym_begin] = ACTIONS(2856), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_AT_DQUOTE] = ACTIONS(2858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2858), + [sym_bool] = ACTIONS(2856), + [sym_unit] = ACTIONS(2856), + [aux_sym__identifier_or_op_token1] = ACTIONS(2856), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_PLUS_DOT] = ACTIONS(2856), + [anon_sym_DASH_DOT] = ACTIONS(2856), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_prefix_op_token1] = ACTIONS(2858), + [aux_sym_infix_op_token1] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_DOLLAR] = ACTIONS(2856), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2858), + [sym_int] = ACTIONS(2856), + [sym_xint] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2858), + [sym__newline] = ACTIONS(2858), + [sym__then] = ACTIONS(2858), }, - [2086] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3835), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2116), - [sym_char] = STATE(2799), - [sym_format_string] = STATE(2805), - [sym__string_literal] = STATE(2805), - [sym_string] = STATE(2799), - [sym_verbatim_string] = STATE(2799), - [sym_bytechar] = STATE(2799), - [sym_bytearray] = STATE(2799), - [sym_verbatim_bytearray] = STATE(2799), - [sym_format_triple_quoted_string] = STATE(2797), - [sym_triple_quoted_string] = STATE(2799), - [sym_const] = STATE(2772), - [sym_long_identifier] = STATE(2087), - [sym_sbyte] = STATE(2799), - [sym_byte] = STATE(2799), - [sym_int16] = STATE(2799), - [sym_uint16] = STATE(2799), - [sym_int32] = STATE(2799), - [sym_uint32] = STATE(2799), - [sym_nativeint] = STATE(2799), - [sym_unativeint] = STATE(2799), - [sym_int64] = STATE(2799), - [sym_uint64] = STATE(2799), - [sym_ieee32] = STATE(2799), - [sym_ieee64] = STATE(2799), - [sym_bignum] = STATE(2799), - [sym_decimal] = STATE(2799), - [sym_float] = STATE(4529), - [sym_xml_doc] = STATE(2086), - [sym_block_comment] = STATE(2086), - [sym_preproc_line] = STATE(2086), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3834), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_in] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3844), - [anon_sym_DQUOTE] = ACTIONS(3846), - [anon_sym_AT_DQUOTE] = ACTIONS(3848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3850), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3852), - [sym_bool] = ACTIONS(3854), - [sym_unit] = ACTIONS(3856), - [sym_int] = ACTIONS(3858), - [sym_xint] = ACTIONS(3860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2034] = { + [sym_xml_doc] = STATE(2034), + [sym_block_comment] = STATE(2034), + [sym_preproc_line] = STATE(2034), + [sym_identifier] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_let_BANG] = ACTIONS(2862), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2860), + [anon_sym_COLON_QMARK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACK_PIPE] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_LBRACE_PIPE] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_return_BANG] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_yield_BANG] = ACTIONS(2862), + [anon_sym_lazy] = ACTIONS(2860), + [anon_sym_assert] = ACTIONS(2860), + [anon_sym_upcast] = ACTIONS(2860), + [anon_sym_downcast] = ACTIONS(2860), + [anon_sym_LT_AT] = ACTIONS(2860), + [anon_sym_AT_GT] = ACTIONS(2862), + [anon_sym_LT_AT_AT] = ACTIONS(2860), + [anon_sym_AT_AT_GT] = ACTIONS(2862), + [anon_sym_COLON_GT] = ACTIONS(2862), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_fun] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_match_BANG] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_DOT_LBRACK] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_use_BANG] = ACTIONS(2862), + [anon_sym_do_BANG] = ACTIONS(2862), + [anon_sym_begin] = ACTIONS(2860), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2860), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_AT_DQUOTE] = ACTIONS(2862), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2862), + [sym_bool] = ACTIONS(2860), + [sym_unit] = ACTIONS(2860), + [aux_sym__identifier_or_op_token1] = ACTIONS(2860), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_PLUS_DOT] = ACTIONS(2860), + [anon_sym_DASH_DOT] = ACTIONS(2860), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_prefix_op_token1] = ACTIONS(2862), + [aux_sym_infix_op_token1] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2860), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2862), + [sym_int] = ACTIONS(2860), + [sym_xint] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2862), + [sym__newline] = ACTIONS(2862), + [sym__then] = ACTIONS(2862), }, - [2087] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3835), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym__pattern_param] = STATE(2116), - [sym_char] = STATE(2799), - [sym_format_string] = STATE(2805), - [sym__string_literal] = STATE(2805), - [sym_string] = STATE(2799), - [sym_verbatim_string] = STATE(2799), - [sym_bytechar] = STATE(2799), - [sym_bytearray] = STATE(2799), - [sym_verbatim_bytearray] = STATE(2799), - [sym_format_triple_quoted_string] = STATE(2797), - [sym_triple_quoted_string] = STATE(2799), - [sym_const] = STATE(2772), - [sym_long_identifier] = STATE(2087), - [sym_sbyte] = STATE(2799), - [sym_byte] = STATE(2799), - [sym_int16] = STATE(2799), - [sym_uint16] = STATE(2799), - [sym_int32] = STATE(2799), - [sym_uint32] = STATE(2799), - [sym_nativeint] = STATE(2799), - [sym_unativeint] = STATE(2799), - [sym_int64] = STATE(2799), - [sym_uint64] = STATE(2799), - [sym_ieee32] = STATE(2799), - [sym_ieee64] = STATE(2799), - [sym_bignum] = STATE(2799), - [sym_decimal] = STATE(2799), - [sym_float] = STATE(4529), - [sym_xml_doc] = STATE(2087), - [sym_block_comment] = STATE(2087), - [sym_preproc_line] = STATE(2087), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3651), - [anon_sym_LBRACK_LT] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_null] = ACTIONS(3651), - [anon_sym__] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_COLON_QMARK] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3653), - [anon_sym_COLON_COLON] = ACTIONS(3653), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_PIPE] = ACTIONS(3653), - [anon_sym_LBRACE] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3651), - [anon_sym_SQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3651), - [anon_sym_DQUOTE] = ACTIONS(3651), - [anon_sym_AT_DQUOTE] = ACTIONS(3653), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3653), - [sym_bool] = ACTIONS(3651), - [sym_unit] = ACTIONS(3653), - [sym_int] = ACTIONS(3651), - [sym_xint] = ACTIONS(3653), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), + [2035] = { + [sym_xml_doc] = STATE(2035), + [sym_block_comment] = STATE(2035), + [sym_preproc_line] = STATE(2035), + [sym_identifier] = ACTIONS(2872), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym_COLON] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_let_BANG] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2872), + [anon_sym_COLON_QMARK] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACK_PIPE] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LBRACE_PIPE] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_return_BANG] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_yield_BANG] = ACTIONS(2874), + [anon_sym_lazy] = ACTIONS(2872), + [anon_sym_assert] = ACTIONS(2872), + [anon_sym_upcast] = ACTIONS(2872), + [anon_sym_downcast] = ACTIONS(2872), + [anon_sym_LT_AT] = ACTIONS(2872), + [anon_sym_AT_GT] = ACTIONS(2874), + [anon_sym_LT_AT_AT] = ACTIONS(2872), + [anon_sym_AT_AT_GT] = ACTIONS(2874), + [anon_sym_COLON_GT] = ACTIONS(2874), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_fun] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_match_BANG] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_DOT_LBRACK] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_use_BANG] = ACTIONS(2874), + [anon_sym_do_BANG] = ACTIONS(2874), + [anon_sym_begin] = ACTIONS(2872), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_AT_DQUOTE] = ACTIONS(2874), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2874), + [sym_bool] = ACTIONS(2872), + [sym_unit] = ACTIONS(2872), + [aux_sym__identifier_or_op_token1] = ACTIONS(2872), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_PLUS_DOT] = ACTIONS(2872), + [anon_sym_DASH_DOT] = ACTIONS(2872), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_prefix_op_token1] = ACTIONS(2874), + [aux_sym_infix_op_token1] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_DOLLAR] = ACTIONS(2872), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2874), + [sym_int] = ACTIONS(2872), + [sym_xint] = ACTIONS(2874), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2874), + [sym__newline] = ACTIONS(2874), + [sym__then] = ACTIONS(2874), }, - [2088] = { - [sym_xml_doc] = STATE(2088), - [sym_block_comment] = STATE(2088), - [sym_preproc_line] = STATE(2088), - [ts_builtin_sym_end] = ACTIONS(3890), - [sym_identifier] = ACTIONS(3892), - [anon_sym_namespace] = ACTIONS(3892), - [anon_sym_module] = ACTIONS(3892), - [anon_sym_POUNDnowarn] = ACTIONS(3890), - [anon_sym_POUNDr] = ACTIONS(3890), - [anon_sym_POUNDload] = ACTIONS(3890), - [anon_sym_open] = ACTIONS(3892), - [anon_sym_LBRACK_LT] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3892), - [anon_sym_type] = ACTIONS(3892), - [anon_sym_do] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_let] = ACTIONS(3892), - [anon_sym_let_BANG] = ACTIONS(3890), - [aux_sym_access_modifier_token1] = ACTIONS(3890), - [anon_sym_null] = ACTIONS(3892), - [anon_sym_LPAREN] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_LBRACK_PIPE] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_LBRACE_PIPE] = ACTIONS(3890), - [anon_sym_with] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3892), - [anon_sym_return_BANG] = ACTIONS(3890), - [anon_sym_yield] = ACTIONS(3892), - [anon_sym_yield_BANG] = ACTIONS(3890), - [anon_sym_lazy] = ACTIONS(3892), - [anon_sym_assert] = ACTIONS(3892), - [anon_sym_upcast] = ACTIONS(3892), - [anon_sym_downcast] = ACTIONS(3892), - [anon_sym_LT_AT] = ACTIONS(3892), - [anon_sym_LT_AT_AT] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3892), - [anon_sym_while] = ACTIONS(3892), - [anon_sym_if] = ACTIONS(3892), - [anon_sym_fun] = ACTIONS(3892), - [anon_sym_try] = ACTIONS(3892), - [anon_sym_match] = ACTIONS(3892), - [anon_sym_match_BANG] = ACTIONS(3890), - [anon_sym_function] = ACTIONS(3892), - [anon_sym_use] = ACTIONS(3892), - [anon_sym_use_BANG] = ACTIONS(3890), - [anon_sym_do_BANG] = ACTIONS(3890), - [anon_sym_begin] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_member] = ACTIONS(3892), - [anon_sym_abstract] = ACTIONS(3892), - [anon_sym_override] = ACTIONS(3892), - [anon_sym_default] = ACTIONS(3892), - [anon_sym_val] = ACTIONS(3892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [anon_sym_AT_DQUOTE] = ACTIONS(3890), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), - [sym_bool] = ACTIONS(3892), - [sym_unit] = ACTIONS(3890), - [aux_sym__identifier_or_op_token1] = ACTIONS(3890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS_DOT] = ACTIONS(3890), - [anon_sym_DASH_DOT] = ACTIONS(3890), - [anon_sym_PERCENT] = ACTIONS(3890), - [anon_sym_AMP_AMP] = ACTIONS(3890), - [anon_sym_TILDE] = ACTIONS(3890), - [aux_sym_prefix_op_token1] = ACTIONS(3890), - [sym_int] = ACTIONS(3892), - [sym_xint] = ACTIONS(3890), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3890), + [2036] = { + [sym_xml_doc] = STATE(2036), + [sym_block_comment] = STATE(2036), + [sym_preproc_line] = STATE(2036), + [sym_identifier] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_let_BANG] = ACTIONS(2878), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2876), + [anon_sym_COLON_QMARK] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACK_PIPE] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_LBRACE_PIPE] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_return_BANG] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_yield_BANG] = ACTIONS(2878), + [anon_sym_lazy] = ACTIONS(2876), + [anon_sym_assert] = ACTIONS(2876), + [anon_sym_upcast] = ACTIONS(2876), + [anon_sym_downcast] = ACTIONS(2876), + [anon_sym_LT_AT] = ACTIONS(2876), + [anon_sym_AT_GT] = ACTIONS(2878), + [anon_sym_LT_AT_AT] = ACTIONS(2876), + [anon_sym_AT_AT_GT] = ACTIONS(2878), + [anon_sym_COLON_GT] = ACTIONS(2878), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_fun] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_match_BANG] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_DOT_LBRACK] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_use_BANG] = ACTIONS(2878), + [anon_sym_do_BANG] = ACTIONS(2878), + [anon_sym_begin] = ACTIONS(2876), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2876), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_AT_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2878), + [sym_bool] = ACTIONS(2876), + [sym_unit] = ACTIONS(2876), + [aux_sym__identifier_or_op_token1] = ACTIONS(2876), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_PLUS_DOT] = ACTIONS(2876), + [anon_sym_DASH_DOT] = ACTIONS(2876), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_prefix_op_token1] = ACTIONS(2878), + [aux_sym_infix_op_token1] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2876), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2878), + [sym_int] = ACTIONS(2876), + [sym_xint] = ACTIONS(2878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2878), + [sym__newline] = ACTIONS(2878), + [sym__then] = ACTIONS(2878), }, - [2089] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2828), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), - [sym_xml_doc] = STATE(2089), - [sym_block_comment] = STATE(2089), - [sym_preproc_line] = STATE(2089), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3738), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3738), - [anon_sym__] = ACTIONS(3738), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3736), - [anon_sym_DASH_GT] = ACTIONS(3736), - [anon_sym_SQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(3738), - [anon_sym_AT_DQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [sym_bool] = ACTIONS(3738), - [sym_unit] = ACTIONS(3736), - [sym_int] = ACTIONS(3738), - [sym_xint] = ACTIONS(3736), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), + [2037] = { + [sym_xml_doc] = STATE(2037), + [sym_block_comment] = STATE(2037), + [sym_preproc_line] = STATE(2037), + [sym_identifier] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym_COLON] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_let_BANG] = ACTIONS(2882), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2880), + [anon_sym_COLON_QMARK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACK_PIPE] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_LBRACE_PIPE] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_return_BANG] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_yield_BANG] = ACTIONS(2882), + [anon_sym_lazy] = ACTIONS(2880), + [anon_sym_assert] = ACTIONS(2880), + [anon_sym_upcast] = ACTIONS(2880), + [anon_sym_downcast] = ACTIONS(2880), + [anon_sym_LT_AT] = ACTIONS(2880), + [anon_sym_AT_GT] = ACTIONS(2882), + [anon_sym_LT_AT_AT] = ACTIONS(2880), + [anon_sym_AT_AT_GT] = ACTIONS(2882), + [anon_sym_COLON_GT] = ACTIONS(2882), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_match_BANG] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_DOT_LBRACK] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_use_BANG] = ACTIONS(2882), + [anon_sym_do_BANG] = ACTIONS(2882), + [anon_sym_begin] = ACTIONS(2880), + [anon_sym_LPAREN2] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_AT_DQUOTE] = ACTIONS(2882), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2882), + [sym_bool] = ACTIONS(2880), + [sym_unit] = ACTIONS(2880), + [aux_sym__identifier_or_op_token1] = ACTIONS(2880), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_PLUS_DOT] = ACTIONS(2880), + [anon_sym_DASH_DOT] = ACTIONS(2880), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_prefix_op_token1] = ACTIONS(2882), + [aux_sym_infix_op_token1] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2882), + [sym_int] = ACTIONS(2880), + [sym_xint] = ACTIONS(2882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2882), + [sym__newline] = ACTIONS(2882), + [sym__then] = ACTIONS(2882), + }, + [2038] = { + [sym_xml_doc] = STATE(2038), + [sym_block_comment] = STATE(2038), + [sym_preproc_line] = STATE(2038), + [sym_identifier] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_let_BANG] = ACTIONS(2886), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_COLON_QMARK] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACK_PIPE] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_LBRACE_PIPE] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_return_BANG] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_yield_BANG] = ACTIONS(2886), + [anon_sym_lazy] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_upcast] = ACTIONS(2884), + [anon_sym_downcast] = ACTIONS(2884), + [anon_sym_LT_AT] = ACTIONS(2884), + [anon_sym_AT_GT] = ACTIONS(2886), + [anon_sym_LT_AT_AT] = ACTIONS(2884), + [anon_sym_AT_AT_GT] = ACTIONS(2886), + [anon_sym_COLON_GT] = ACTIONS(2886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_fun] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_match_BANG] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_DOT_LBRACK] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_use_BANG] = ACTIONS(2886), + [anon_sym_do_BANG] = ACTIONS(2886), + [anon_sym_begin] = ACTIONS(2884), + [anon_sym_LPAREN2] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_AT_DQUOTE] = ACTIONS(2886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2886), + [sym_bool] = ACTIONS(2884), + [sym_unit] = ACTIONS(2884), + [aux_sym__identifier_or_op_token1] = ACTIONS(2884), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_PLUS_DOT] = ACTIONS(2884), + [anon_sym_DASH_DOT] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_prefix_op_token1] = ACTIONS(2886), + [aux_sym_infix_op_token1] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2886), + [sym_int] = ACTIONS(2884), + [sym_xint] = ACTIONS(2886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [sym__then] = ACTIONS(2886), + }, + [2039] = { + [sym_xml_doc] = STATE(2039), + [sym_block_comment] = STATE(2039), + [sym_preproc_line] = STATE(2039), + [sym_identifier] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_let_BANG] = ACTIONS(2890), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_COLON_QMARK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACK_PIPE] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_LBRACE_PIPE] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_return_BANG] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_yield_BANG] = ACTIONS(2890), + [anon_sym_lazy] = ACTIONS(2888), + [anon_sym_assert] = ACTIONS(2888), + [anon_sym_upcast] = ACTIONS(2888), + [anon_sym_downcast] = ACTIONS(2888), + [anon_sym_LT_AT] = ACTIONS(2888), + [anon_sym_AT_GT] = ACTIONS(2890), + [anon_sym_LT_AT_AT] = ACTIONS(2888), + [anon_sym_AT_AT_GT] = ACTIONS(2890), + [anon_sym_COLON_GT] = ACTIONS(2890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_fun] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_match_BANG] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_DOT_LBRACK] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_use_BANG] = ACTIONS(2890), + [anon_sym_do_BANG] = ACTIONS(2890), + [anon_sym_begin] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_AT_DQUOTE] = ACTIONS(2890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2890), + [sym_bool] = ACTIONS(2888), + [sym_unit] = ACTIONS(2888), + [aux_sym__identifier_or_op_token1] = ACTIONS(2888), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_PLUS_DOT] = ACTIONS(2888), + [anon_sym_DASH_DOT] = ACTIONS(2888), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_prefix_op_token1] = ACTIONS(2890), + [aux_sym_infix_op_token1] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2890), + [sym_int] = ACTIONS(2888), + [sym_xint] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [sym__then] = ACTIONS(2890), + }, + [2040] = { + [sym_xml_doc] = STATE(2040), + [sym_block_comment] = STATE(2040), + [sym_preproc_line] = STATE(2040), + [sym_identifier] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_let_BANG] = ACTIONS(2894), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_COLON_QMARK] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACK_PIPE] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_LBRACE_PIPE] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_return_BANG] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_yield_BANG] = ACTIONS(2894), + [anon_sym_lazy] = ACTIONS(2892), + [anon_sym_assert] = ACTIONS(2892), + [anon_sym_upcast] = ACTIONS(2892), + [anon_sym_downcast] = ACTIONS(2892), + [anon_sym_LT_AT] = ACTIONS(2892), + [anon_sym_AT_GT] = ACTIONS(2894), + [anon_sym_LT_AT_AT] = ACTIONS(2892), + [anon_sym_AT_AT_GT] = ACTIONS(2894), + [anon_sym_COLON_GT] = ACTIONS(2894), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_fun] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_match_BANG] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_DOT_LBRACK] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_use_BANG] = ACTIONS(2894), + [anon_sym_do_BANG] = ACTIONS(2894), + [anon_sym_begin] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_AT_DQUOTE] = ACTIONS(2894), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), + [sym_bool] = ACTIONS(2892), + [sym_unit] = ACTIONS(2892), + [aux_sym__identifier_or_op_token1] = ACTIONS(2892), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_PLUS_DOT] = ACTIONS(2892), + [anon_sym_DASH_DOT] = ACTIONS(2892), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_prefix_op_token1] = ACTIONS(2894), + [aux_sym_infix_op_token1] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2892), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2894), + [sym_int] = ACTIONS(2892), + [sym_xint] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2894), + [sym__newline] = ACTIONS(2894), + [sym__then] = ACTIONS(2894), + }, + [2041] = { + [sym_xml_doc] = STATE(2041), + [sym_block_comment] = STATE(2041), + [sym_preproc_line] = STATE(2041), + [sym_identifier] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_do] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_let_BANG] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_COLON_QMARK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LBRACK_PIPE] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACE_PIPE] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_return_BANG] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_yield_BANG] = ACTIONS(2936), + [anon_sym_lazy] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_upcast] = ACTIONS(2934), + [anon_sym_downcast] = ACTIONS(2934), + [anon_sym_LT_AT] = ACTIONS(2934), + [anon_sym_AT_GT] = ACTIONS(2936), + [anon_sym_LT_AT_AT] = ACTIONS(2934), + [anon_sym_AT_AT_GT] = ACTIONS(2936), + [anon_sym_COLON_GT] = ACTIONS(2936), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_fun] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_match_BANG] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_DOT_LBRACK] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_use_BANG] = ACTIONS(2936), + [anon_sym_do_BANG] = ACTIONS(2936), + [anon_sym_begin] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_AT_DQUOTE] = ACTIONS(2936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2936), + [sym_bool] = ACTIONS(2934), + [sym_unit] = ACTIONS(2934), + [aux_sym__identifier_or_op_token1] = ACTIONS(2934), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_PLUS_DOT] = ACTIONS(2934), + [anon_sym_DASH_DOT] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2936), + [aux_sym_prefix_op_token1] = ACTIONS(2936), + [aux_sym_infix_op_token1] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2934), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2936), + [sym_int] = ACTIONS(2934), + [sym_xint] = ACTIONS(2936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2936), + [sym__newline] = ACTIONS(2936), + [sym__then] = ACTIONS(2936), }, - [2090] = { - [sym_xml_doc] = STATE(2090), - [sym_block_comment] = STATE(2090), - [sym_preproc_line] = STATE(2090), - [ts_builtin_sym_end] = ACTIONS(3896), - [sym_identifier] = ACTIONS(3898), - [anon_sym_namespace] = ACTIONS(3898), - [anon_sym_module] = ACTIONS(3898), - [anon_sym_POUNDnowarn] = ACTIONS(3896), - [anon_sym_POUNDr] = ACTIONS(3896), - [anon_sym_POUNDload] = ACTIONS(3896), - [anon_sym_open] = ACTIONS(3898), - [anon_sym_LBRACK_LT] = ACTIONS(3896), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_type] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_and] = ACTIONS(3898), - [anon_sym_let] = ACTIONS(3898), - [anon_sym_let_BANG] = ACTIONS(3896), - [aux_sym_access_modifier_token1] = ACTIONS(3896), - [anon_sym_null] = ACTIONS(3898), - [anon_sym_LPAREN] = ACTIONS(3898), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_LBRACK_PIPE] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACE_PIPE] = ACTIONS(3896), - [anon_sym_with] = ACTIONS(3900), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_return_BANG] = ACTIONS(3896), - [anon_sym_yield] = ACTIONS(3898), - [anon_sym_yield_BANG] = ACTIONS(3896), - [anon_sym_lazy] = ACTIONS(3898), - [anon_sym_assert] = ACTIONS(3898), - [anon_sym_upcast] = ACTIONS(3898), - [anon_sym_downcast] = ACTIONS(3898), - [anon_sym_LT_AT] = ACTIONS(3898), - [anon_sym_LT_AT_AT] = ACTIONS(3896), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_fun] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(3898), - [anon_sym_match_BANG] = ACTIONS(3896), - [anon_sym_function] = ACTIONS(3898), - [anon_sym_use] = ACTIONS(3898), - [anon_sym_use_BANG] = ACTIONS(3896), - [anon_sym_do_BANG] = ACTIONS(3896), - [anon_sym_begin] = ACTIONS(3898), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_member] = ACTIONS(3898), - [anon_sym_abstract] = ACTIONS(3898), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_val] = ACTIONS(3898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3898), - [anon_sym_DQUOTE] = ACTIONS(3898), - [anon_sym_AT_DQUOTE] = ACTIONS(3896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3896), - [sym_bool] = ACTIONS(3898), - [sym_unit] = ACTIONS(3896), - [aux_sym__identifier_or_op_token1] = ACTIONS(3896), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS_DOT] = ACTIONS(3896), - [anon_sym_DASH_DOT] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [aux_sym_prefix_op_token1] = ACTIONS(3896), - [sym_int] = ACTIONS(3898), - [sym_xint] = ACTIONS(3896), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [2042] = { + [sym_xml_doc] = STATE(2042), + [sym_block_comment] = STATE(2042), + [sym_preproc_line] = STATE(2042), + [sym_identifier] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_let_BANG] = ACTIONS(2866), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2864), + [anon_sym_COLON_QMARK] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACK_PIPE] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_LBRACE_PIPE] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_return_BANG] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_yield_BANG] = ACTIONS(2866), + [anon_sym_lazy] = ACTIONS(2864), + [anon_sym_assert] = ACTIONS(2864), + [anon_sym_upcast] = ACTIONS(2864), + [anon_sym_downcast] = ACTIONS(2864), + [anon_sym_LT_AT] = ACTIONS(2864), + [anon_sym_AT_GT] = ACTIONS(2866), + [anon_sym_LT_AT_AT] = ACTIONS(2864), + [anon_sym_AT_AT_GT] = ACTIONS(2866), + [anon_sym_COLON_GT] = ACTIONS(2866), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_fun] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_match_BANG] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_DOT_LBRACK] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_use_BANG] = ACTIONS(2866), + [anon_sym_do_BANG] = ACTIONS(2866), + [anon_sym_begin] = ACTIONS(2864), + [anon_sym_LPAREN2] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_AT_DQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2866), + [sym_bool] = ACTIONS(2864), + [sym_unit] = ACTIONS(2864), + [aux_sym__identifier_or_op_token1] = ACTIONS(2864), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_PLUS_DOT] = ACTIONS(2864), + [anon_sym_DASH_DOT] = ACTIONS(2864), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_prefix_op_token1] = ACTIONS(2866), + [aux_sym_infix_op_token1] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2866), + [sym_int] = ACTIONS(2864), + [sym_xint] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2866), + [sym__newline] = ACTIONS(2866), + [sym__then] = ACTIONS(2866), + }, + [2043] = { + [sym_xml_doc] = STATE(2043), + [sym_block_comment] = STATE(2043), + [sym_preproc_line] = STATE(2043), + [sym_identifier] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_do] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_let_BANG] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_LBRACK_PIPE] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_LBRACE_PIPE] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3135), + [anon_sym_return_BANG] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_yield_BANG] = ACTIONS(3137), + [anon_sym_lazy] = ACTIONS(3135), + [anon_sym_assert] = ACTIONS(3135), + [anon_sym_upcast] = ACTIONS(3135), + [anon_sym_downcast] = ACTIONS(3135), + [anon_sym_LT_AT] = ACTIONS(3135), + [anon_sym_AT_GT] = ACTIONS(3137), + [anon_sym_LT_AT_AT] = ACTIONS(3135), + [anon_sym_AT_AT_GT] = ACTIONS(3137), + [anon_sym_COLON_GT] = ACTIONS(3137), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_fun] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_match_BANG] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3135), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_DOT_LBRACK] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_use_BANG] = ACTIONS(3137), + [anon_sym_do_BANG] = ACTIONS(3137), + [anon_sym_begin] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3135), + [anon_sym_DQUOTE] = ACTIONS(3135), + [anon_sym_AT_DQUOTE] = ACTIONS(3137), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3137), + [sym_bool] = ACTIONS(3135), + [sym_unit] = ACTIONS(3135), + [aux_sym__identifier_or_op_token1] = ACTIONS(3135), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3135), + [anon_sym_PLUS_DOT] = ACTIONS(3135), + [anon_sym_DASH_DOT] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_TILDE] = ACTIONS(3137), + [aux_sym_prefix_op_token1] = ACTIONS(3137), + [aux_sym_infix_op_token1] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_COLON_EQ] = ACTIONS(3137), + [anon_sym_DOLLAR] = ACTIONS(3135), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3137), + [sym_int] = ACTIONS(3135), + [sym_xint] = ACTIONS(3137), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3137), + [sym__newline] = ACTIONS(3137), + [sym__then] = ACTIONS(3137), + }, + [2044] = { + [sym_xml_doc] = STATE(2044), + [sym_block_comment] = STATE(2044), + [sym_preproc_line] = STATE(2044), + [sym_identifier] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_do] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_let_BANG] = ACTIONS(3133), + [anon_sym_null] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3131), + [anon_sym_COLON_QMARK] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_LBRACK_PIPE] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_LBRACE_PIPE] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3131), + [anon_sym_return_BANG] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_yield_BANG] = ACTIONS(3133), + [anon_sym_lazy] = ACTIONS(3131), + [anon_sym_assert] = ACTIONS(3131), + [anon_sym_upcast] = ACTIONS(3131), + [anon_sym_downcast] = ACTIONS(3131), + [anon_sym_LT_AT] = ACTIONS(3131), + [anon_sym_AT_GT] = ACTIONS(3133), + [anon_sym_LT_AT_AT] = ACTIONS(3131), + [anon_sym_AT_AT_GT] = ACTIONS(3133), + [anon_sym_COLON_GT] = ACTIONS(3133), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_fun] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_match_BANG] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_DOT_LBRACK] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_use_BANG] = ACTIONS(3133), + [anon_sym_do_BANG] = ACTIONS(3133), + [anon_sym_begin] = ACTIONS(3131), + [anon_sym_LPAREN2] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_AT_DQUOTE] = ACTIONS(3133), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), + [sym_bool] = ACTIONS(3131), + [sym_unit] = ACTIONS(3131), + [aux_sym__identifier_or_op_token1] = ACTIONS(3131), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3131), + [anon_sym_PLUS] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3131), + [anon_sym_PLUS_DOT] = ACTIONS(3131), + [anon_sym_DASH_DOT] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3133), + [aux_sym_prefix_op_token1] = ACTIONS(3133), + [aux_sym_infix_op_token1] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_COLON_EQ] = ACTIONS(3133), + [anon_sym_DOLLAR] = ACTIONS(3131), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3133), + [sym_int] = ACTIONS(3131), + [sym_xint] = ACTIONS(3133), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3133), + [sym__newline] = ACTIONS(3133), + [sym__then] = ACTIONS(3133), + }, + [2045] = { + [sym_xml_doc] = STATE(2045), + [sym_block_comment] = STATE(2045), + [sym_preproc_line] = STATE(2045), + [sym_identifier] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_COLON] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_let_BANG] = ACTIONS(3129), + [anon_sym_null] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_COLON_QMARK] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_LBRACK_PIPE] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACE_PIPE] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_return_BANG] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_yield_BANG] = ACTIONS(3129), + [anon_sym_lazy] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_upcast] = ACTIONS(3127), + [anon_sym_downcast] = ACTIONS(3127), + [anon_sym_LT_AT] = ACTIONS(3127), + [anon_sym_AT_GT] = ACTIONS(3129), + [anon_sym_LT_AT_AT] = ACTIONS(3127), + [anon_sym_AT_AT_GT] = ACTIONS(3129), + [anon_sym_COLON_GT] = ACTIONS(3129), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_fun] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_match_BANG] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3127), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_DOT_LBRACK] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_use_BANG] = ACTIONS(3129), + [anon_sym_do_BANG] = ACTIONS(3129), + [anon_sym_begin] = ACTIONS(3127), + [anon_sym_LPAREN2] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_AT_DQUOTE] = ACTIONS(3129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3129), + [sym_bool] = ACTIONS(3127), + [sym_unit] = ACTIONS(3127), + [aux_sym__identifier_or_op_token1] = ACTIONS(3127), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3127), + [anon_sym_PLUS_DOT] = ACTIONS(3127), + [anon_sym_DASH_DOT] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3129), + [aux_sym_prefix_op_token1] = ACTIONS(3129), + [aux_sym_infix_op_token1] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3129), + [sym_int] = ACTIONS(3127), + [sym_xint] = ACTIONS(3129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3129), + [sym__newline] = ACTIONS(3129), + [sym__then] = ACTIONS(3129), + }, + [2046] = { + [sym_xml_doc] = STATE(2046), + [sym_block_comment] = STATE(2046), + [sym_preproc_line] = STATE(2046), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + }, + [2047] = { + [sym_xml_doc] = STATE(2047), + [sym_block_comment] = STATE(2047), + [sym_preproc_line] = STATE(2047), + [sym_identifier] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_do] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_let_BANG] = ACTIONS(3125), + [anon_sym_null] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_LBRACK_PIPE] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACE_PIPE] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_return_BANG] = ACTIONS(3125), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_yield_BANG] = ACTIONS(3125), + [anon_sym_lazy] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_upcast] = ACTIONS(3123), + [anon_sym_downcast] = ACTIONS(3123), + [anon_sym_LT_AT] = ACTIONS(3123), + [anon_sym_AT_GT] = ACTIONS(3125), + [anon_sym_LT_AT_AT] = ACTIONS(3123), + [anon_sym_AT_AT_GT] = ACTIONS(3125), + [anon_sym_COLON_GT] = ACTIONS(3125), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_fun] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_match_BANG] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3123), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_use_BANG] = ACTIONS(3125), + [anon_sym_do_BANG] = ACTIONS(3125), + [anon_sym_begin] = ACTIONS(3123), + [anon_sym_LPAREN2] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [anon_sym_AT_DQUOTE] = ACTIONS(3125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3125), + [sym_bool] = ACTIONS(3123), + [sym_unit] = ACTIONS(3123), + [aux_sym__identifier_or_op_token1] = ACTIONS(3123), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3123), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_PLUS_DOT] = ACTIONS(3123), + [anon_sym_DASH_DOT] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3125), + [aux_sym_prefix_op_token1] = ACTIONS(3125), + [aux_sym_infix_op_token1] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_COLON_EQ] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3123), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3125), + [sym_int] = ACTIONS(3123), + [sym_xint] = ACTIONS(3125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3125), + [sym__newline] = ACTIONS(3125), + [sym__then] = ACTIONS(3125), + }, + [2048] = { + [sym_xml_doc] = STATE(2048), + [sym_block_comment] = STATE(2048), + [sym_preproc_line] = STATE(2048), + [sym_identifier] = ACTIONS(2920), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_let_BANG] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACK_PIPE] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_LBRACE_PIPE] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_return_BANG] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_yield_BANG] = ACTIONS(2922), + [anon_sym_lazy] = ACTIONS(2920), + [anon_sym_assert] = ACTIONS(2920), + [anon_sym_upcast] = ACTIONS(2920), + [anon_sym_downcast] = ACTIONS(2920), + [anon_sym_LT_AT] = ACTIONS(2920), + [anon_sym_AT_GT] = ACTIONS(2922), + [anon_sym_LT_AT_AT] = ACTIONS(2920), + [anon_sym_AT_AT_GT] = ACTIONS(2922), + [anon_sym_COLON_GT] = ACTIONS(2922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_fun] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2920), + [anon_sym_match_BANG] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_DOT_LBRACK] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2920), + [anon_sym_use_BANG] = ACTIONS(2922), + [anon_sym_do_BANG] = ACTIONS(2922), + [anon_sym_begin] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_AT_DQUOTE] = ACTIONS(2922), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2922), + [sym_bool] = ACTIONS(2920), + [sym_unit] = ACTIONS(2920), + [aux_sym__identifier_or_op_token1] = ACTIONS(2920), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS_DOT] = ACTIONS(2920), + [anon_sym_DASH_DOT] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_prefix_op_token1] = ACTIONS(2922), + [aux_sym_infix_op_token1] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_DOLLAR] = ACTIONS(2920), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2922), + [sym_int] = ACTIONS(2920), + [sym_xint] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2922), + [sym__newline] = ACTIONS(2922), + [sym__then] = ACTIONS(2922), + }, + [2049] = { + [sym_xml_doc] = STATE(2049), + [sym_block_comment] = STATE(2049), + [sym_preproc_line] = STATE(2049), + [sym_identifier] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_let_BANG] = ACTIONS(2910), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2908), + [anon_sym_COLON_QMARK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACK_PIPE] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_LBRACE_PIPE] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_return_BANG] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_yield_BANG] = ACTIONS(2910), + [anon_sym_lazy] = ACTIONS(2908), + [anon_sym_assert] = ACTIONS(2908), + [anon_sym_upcast] = ACTIONS(2908), + [anon_sym_downcast] = ACTIONS(2908), + [anon_sym_LT_AT] = ACTIONS(2908), + [anon_sym_AT_GT] = ACTIONS(2910), + [anon_sym_LT_AT_AT] = ACTIONS(2908), + [anon_sym_AT_AT_GT] = ACTIONS(2910), + [anon_sym_COLON_GT] = ACTIONS(2910), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_fun] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_match_BANG] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_DOT_LBRACK] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_use_BANG] = ACTIONS(2910), + [anon_sym_do_BANG] = ACTIONS(2910), + [anon_sym_begin] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_AT_DQUOTE] = ACTIONS(2910), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2910), + [sym_bool] = ACTIONS(2908), + [sym_unit] = ACTIONS(2908), + [aux_sym__identifier_or_op_token1] = ACTIONS(2908), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS_DOT] = ACTIONS(2908), + [anon_sym_DASH_DOT] = ACTIONS(2908), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_prefix_op_token1] = ACTIONS(2910), + [aux_sym_infix_op_token1] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2908), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2910), + [sym_int] = ACTIONS(2908), + [sym_xint] = ACTIONS(2910), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), [anon_sym_LPAREN_STAR] = ACTIONS(5), - [sym_line_comment] = ACTIONS(7), + [sym_line_comment] = ACTIONS(215), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3896), + [anon_sym_POUNDif] = ACTIONS(2910), + [sym__newline] = ACTIONS(2910), + [sym__then] = ACTIONS(2910), }, - [2091] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3727), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2091), - [sym_block_comment] = STATE(2091), - [sym_preproc_line] = STATE(2091), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_DASH_GT] = ACTIONS(3736), - [anon_sym_when] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2050] = { + [sym_xml_doc] = STATE(2050), + [sym_block_comment] = STATE(2050), + [sym_preproc_line] = STATE(2050), + [sym_identifier] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3007), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_let] = ACTIONS(3005), + [anon_sym_let_BANG] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_COLON_QMARK] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_COLON_COLON] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_PIPE] = ACTIONS(3007), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_LBRACE_PIPE] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_return_BANG] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3005), + [anon_sym_yield_BANG] = ACTIONS(3007), + [anon_sym_lazy] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_upcast] = ACTIONS(3005), + [anon_sym_downcast] = ACTIONS(3005), + [anon_sym_LT_AT] = ACTIONS(3005), + [anon_sym_AT_GT] = ACTIONS(3007), + [anon_sym_LT_AT_AT] = ACTIONS(3005), + [anon_sym_AT_AT_GT] = ACTIONS(3007), + [anon_sym_COLON_GT] = ACTIONS(3007), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_fun] = ACTIONS(3005), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_match_BANG] = ACTIONS(3007), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_DOT_LBRACK] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3005), + [anon_sym_use_BANG] = ACTIONS(3007), + [anon_sym_do_BANG] = ACTIONS(3007), + [anon_sym_begin] = ACTIONS(3005), + [anon_sym_LPAREN2] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3005), + [anon_sym_AT_DQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3007), + [sym_bool] = ACTIONS(3005), + [sym_unit] = ACTIONS(3005), + [aux_sym__identifier_or_op_token1] = ACTIONS(3005), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_DOT] = ACTIONS(3005), + [anon_sym_DASH_DOT] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [aux_sym_prefix_op_token1] = ACTIONS(3007), + [aux_sym_infix_op_token1] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_COLON_EQ] = ACTIONS(3007), + [anon_sym_DOLLAR] = ACTIONS(3005), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), + [sym_int] = ACTIONS(3005), + [sym_xint] = ACTIONS(3007), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3007), + [sym__newline] = ACTIONS(3007), + [sym__then] = ACTIONS(3007), + }, + [2051] = { + [sym_xml_doc] = STATE(2051), + [sym_block_comment] = STATE(2051), + [sym_preproc_line] = STATE(2051), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__then] = ACTIONS(2617), + }, + [2052] = { + [sym_xml_doc] = STATE(2052), + [sym_block_comment] = STATE(2052), + [sym_preproc_line] = STATE(2052), + [sym_identifier] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_BANG] = ACTIONS(2617), + [anon_sym_null] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2619), + [anon_sym_COLON_QMARK] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACK_PIPE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACE_PIPE] = ACTIONS(2617), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_return_BANG] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_yield_BANG] = ACTIONS(2617), + [anon_sym_lazy] = ACTIONS(2619), + [anon_sym_assert] = ACTIONS(2619), + [anon_sym_upcast] = ACTIONS(2619), + [anon_sym_downcast] = ACTIONS(2619), + [anon_sym_LT_AT] = ACTIONS(2619), + [anon_sym_AT_GT] = ACTIONS(2617), + [anon_sym_LT_AT_AT] = ACTIONS(2619), + [anon_sym_AT_AT_GT] = ACTIONS(2617), + [anon_sym_COLON_GT] = ACTIONS(2617), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_fun] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_match_BANG] = ACTIONS(2617), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_DOT_LBRACK] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_use_BANG] = ACTIONS(2617), + [anon_sym_do_BANG] = ACTIONS(2617), + [anon_sym_begin] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_AT_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [sym_bool] = ACTIONS(2619), + [sym_unit] = ACTIONS(2619), + [aux_sym__identifier_or_op_token1] = ACTIONS(2619), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS_DOT] = ACTIONS(2619), + [anon_sym_DASH_DOT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2617), + [aux_sym_prefix_op_token1] = ACTIONS(2617), + [aux_sym_infix_op_token1] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_COLON_EQ] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2617), + [sym_int] = ACTIONS(2619), + [sym_xint] = ACTIONS(2617), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2617), + [sym__newline] = ACTIONS(2617), + [sym__then] = ACTIONS(2617), + }, + [2053] = { + [sym_xml_doc] = STATE(2053), + [sym_block_comment] = STATE(2053), + [sym_preproc_line] = STATE(2053), + [sym_identifier] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_let_BANG] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_QMARK] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACK_PIPE] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LBRACE_PIPE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_return_BANG] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_yield_BANG] = ACTIONS(3111), + [anon_sym_lazy] = ACTIONS(3109), + [anon_sym_assert] = ACTIONS(3109), + [anon_sym_upcast] = ACTIONS(3109), + [anon_sym_downcast] = ACTIONS(3109), + [anon_sym_LT_AT] = ACTIONS(3109), + [anon_sym_AT_GT] = ACTIONS(3111), + [anon_sym_LT_AT_AT] = ACTIONS(3109), + [anon_sym_AT_AT_GT] = ACTIONS(3111), + [anon_sym_COLON_GT] = ACTIONS(3111), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_fun] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_match] = ACTIONS(3109), + [anon_sym_match_BANG] = ACTIONS(3111), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_LT_DASH] = ACTIONS(3109), + [anon_sym_DOT_LBRACK] = ACTIONS(3111), + [anon_sym_DOT] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3109), + [anon_sym_use_BANG] = ACTIONS(3111), + [anon_sym_do_BANG] = ACTIONS(3111), + [anon_sym_begin] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_or] = ACTIONS(3109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_AT_DQUOTE] = ACTIONS(3111), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3111), + [sym_bool] = ACTIONS(3109), + [sym_unit] = ACTIONS(3109), + [aux_sym__identifier_or_op_token1] = ACTIONS(3109), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_DOT] = ACTIONS(3109), + [anon_sym_DASH_DOT] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_AMP_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [aux_sym_prefix_op_token1] = ACTIONS(3111), + [aux_sym_infix_op_token1] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_COLON_EQ] = ACTIONS(3111), + [anon_sym_DOLLAR] = ACTIONS(3109), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3111), + [sym_int] = ACTIONS(3109), + [sym_xint] = ACTIONS(3111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3111), + [sym__newline] = ACTIONS(3111), + [sym__then] = ACTIONS(3111), + }, + [2054] = { + [sym_xml_doc] = STATE(2054), + [sym_block_comment] = STATE(2054), + [sym_preproc_line] = STATE(2054), + [sym_identifier] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_let] = ACTIONS(3009), + [anon_sym_let_BANG] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_COLON_QMARK] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_COLON_COLON] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACK_PIPE] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_LBRACE_PIPE] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_return_BANG] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3009), + [anon_sym_yield_BANG] = ACTIONS(3011), + [anon_sym_lazy] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_upcast] = ACTIONS(3009), + [anon_sym_downcast] = ACTIONS(3009), + [anon_sym_LT_AT] = ACTIONS(3009), + [anon_sym_AT_GT] = ACTIONS(3011), + [anon_sym_LT_AT_AT] = ACTIONS(3009), + [anon_sym_AT_AT_GT] = ACTIONS(3011), + [anon_sym_COLON_GT] = ACTIONS(3011), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_fun] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_match_BANG] = ACTIONS(3011), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_DOT_LBRACK] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3009), + [anon_sym_use_BANG] = ACTIONS(3011), + [anon_sym_do_BANG] = ACTIONS(3011), + [anon_sym_begin] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_AT_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3011), + [sym_bool] = ACTIONS(3009), + [sym_unit] = ACTIONS(3009), + [aux_sym__identifier_or_op_token1] = ACTIONS(3009), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_DOT] = ACTIONS(3009), + [anon_sym_DASH_DOT] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [aux_sym_prefix_op_token1] = ACTIONS(3011), + [aux_sym_infix_op_token1] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3011), + [sym_int] = ACTIONS(3009), + [sym_xint] = ACTIONS(3011), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3011), + [sym__newline] = ACTIONS(3011), + [sym__then] = ACTIONS(3011), + }, + [2055] = { + [sym_xml_doc] = STATE(2055), + [sym_block_comment] = STATE(2055), + [sym_preproc_line] = STATE(2055), + [sym_identifier] = ACTIONS(2231), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_do] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_let_BANG] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2231), + [anon_sym_COLON_QMARK] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACK_PIPE] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_LBRACE_PIPE] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_return_BANG] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_yield_BANG] = ACTIONS(2229), + [anon_sym_lazy] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_upcast] = ACTIONS(2231), + [anon_sym_downcast] = ACTIONS(2231), + [anon_sym_LT_AT] = ACTIONS(2231), + [anon_sym_AT_GT] = ACTIONS(2229), + [anon_sym_LT_AT_AT] = ACTIONS(2231), + [anon_sym_AT_AT_GT] = ACTIONS(2229), + [anon_sym_COLON_GT] = ACTIONS(2229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_fun] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_match_BANG] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2231), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_DOT_LBRACK] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_use_BANG] = ACTIONS(2229), + [anon_sym_do_BANG] = ACTIONS(2229), + [anon_sym_begin] = ACTIONS(2231), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2231), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_AT_DQUOTE] = ACTIONS(2229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2229), + [sym_bool] = ACTIONS(2231), + [sym_unit] = ACTIONS(2231), + [aux_sym__identifier_or_op_token1] = ACTIONS(2231), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_PLUS_DOT] = ACTIONS(2231), + [anon_sym_DASH_DOT] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2229), + [aux_sym_prefix_op_token1] = ACTIONS(2229), + [aux_sym_infix_op_token1] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_COLON_EQ] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2229), + [sym_int] = ACTIONS(2231), + [sym_xint] = ACTIONS(2229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2229), + [sym__newline] = ACTIONS(2229), + [sym__then] = ACTIONS(2229), + }, + [2056] = { + [sym_xml_doc] = STATE(2056), + [sym_block_comment] = STATE(2056), + [sym_preproc_line] = STATE(2056), + [sym_identifier] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_let_BANG] = ACTIONS(3149), + [anon_sym_null] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_LBRACK_PIPE] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_LBRACE_PIPE] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_return_BANG] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_yield_BANG] = ACTIONS(3149), + [anon_sym_lazy] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_upcast] = ACTIONS(3147), + [anon_sym_downcast] = ACTIONS(3147), + [anon_sym_LT_AT] = ACTIONS(3147), + [anon_sym_AT_GT] = ACTIONS(3149), + [anon_sym_LT_AT_AT] = ACTIONS(3147), + [anon_sym_AT_AT_GT] = ACTIONS(3149), + [anon_sym_COLON_GT] = ACTIONS(3149), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_fun] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_match_BANG] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_DOT_LBRACK] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_use_BANG] = ACTIONS(3149), + [anon_sym_do_BANG] = ACTIONS(3149), + [anon_sym_begin] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3147), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_AT_DQUOTE] = ACTIONS(3149), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), + [sym_bool] = ACTIONS(3147), + [sym_unit] = ACTIONS(3147), + [aux_sym__identifier_or_op_token1] = ACTIONS(3147), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS_DOT] = ACTIONS(3147), + [anon_sym_DASH_DOT] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3149), + [aux_sym_prefix_op_token1] = ACTIONS(3149), + [aux_sym_infix_op_token1] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_COLON_EQ] = ACTIONS(3149), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3149), + [sym_int] = ACTIONS(3147), + [sym_xint] = ACTIONS(3149), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3149), + [sym__newline] = ACTIONS(3149), + [sym__then] = ACTIONS(3149), + }, + [2057] = { + [sym_xml_doc] = STATE(2057), + [sym_block_comment] = STATE(2057), + [sym_preproc_line] = STATE(2057), + [sym_identifier] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_do] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_let_BANG] = ACTIONS(3097), + [anon_sym_null] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_LBRACK_PIPE] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACE_PIPE] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_return_BANG] = ACTIONS(3097), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_yield_BANG] = ACTIONS(3097), + [anon_sym_lazy] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_upcast] = ACTIONS(3095), + [anon_sym_downcast] = ACTIONS(3095), + [anon_sym_LT_AT] = ACTIONS(3095), + [anon_sym_AT_GT] = ACTIONS(3097), + [anon_sym_LT_AT_AT] = ACTIONS(3095), + [anon_sym_AT_AT_GT] = ACTIONS(3097), + [anon_sym_COLON_GT] = ACTIONS(3097), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_fun] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_match_BANG] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_DOT_LBRACK] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_use_BANG] = ACTIONS(3097), + [anon_sym_do_BANG] = ACTIONS(3097), + [anon_sym_begin] = ACTIONS(3095), + [anon_sym_LPAREN2] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3095), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_AT_DQUOTE] = ACTIONS(3097), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3097), + [sym_bool] = ACTIONS(3095), + [sym_unit] = ACTIONS(3095), + [aux_sym__identifier_or_op_token1] = ACTIONS(3095), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_PLUS_DOT] = ACTIONS(3095), + [anon_sym_DASH_DOT] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3097), + [aux_sym_prefix_op_token1] = ACTIONS(3097), + [aux_sym_infix_op_token1] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_COLON_EQ] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3095), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3097), + [sym_int] = ACTIONS(3095), + [sym_xint] = ACTIONS(3097), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3097), + [sym__newline] = ACTIONS(3097), + [sym__then] = ACTIONS(3097), + }, + [2058] = { + [sym_xml_doc] = STATE(2058), + [sym_block_comment] = STATE(2058), + [sym_preproc_line] = STATE(2058), + [sym_identifier] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_COLON] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_do] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_let_BANG] = ACTIONS(3045), + [anon_sym_null] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_COLON_QMARK] = ACTIONS(3043), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_LBRACK_PIPE] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_LBRACE_PIPE] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3043), + [anon_sym_return_BANG] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_yield_BANG] = ACTIONS(3045), + [anon_sym_lazy] = ACTIONS(3043), + [anon_sym_assert] = ACTIONS(3043), + [anon_sym_upcast] = ACTIONS(3043), + [anon_sym_downcast] = ACTIONS(3043), + [anon_sym_LT_AT] = ACTIONS(3043), + [anon_sym_AT_GT] = ACTIONS(3045), + [anon_sym_LT_AT_AT] = ACTIONS(3043), + [anon_sym_AT_AT_GT] = ACTIONS(3045), + [anon_sym_COLON_GT] = ACTIONS(3045), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_fun] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_match_BANG] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_LT_DASH] = ACTIONS(3043), + [anon_sym_DOT_LBRACK] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_use_BANG] = ACTIONS(3045), + [anon_sym_do_BANG] = ACTIONS(3045), + [anon_sym_begin] = ACTIONS(3043), + [anon_sym_LPAREN2] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3045), + [anon_sym_or] = ACTIONS(3043), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_AT_DQUOTE] = ACTIONS(3045), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), + [sym_bool] = ACTIONS(3043), + [sym_unit] = ACTIONS(3043), + [aux_sym__identifier_or_op_token1] = ACTIONS(3043), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3043), + [anon_sym_PLUS_DOT] = ACTIONS(3043), + [anon_sym_DASH_DOT] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [aux_sym_prefix_op_token1] = ACTIONS(3045), + [aux_sym_infix_op_token1] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3045), + [anon_sym_COLON_EQ] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3043), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3045), + [sym_int] = ACTIONS(3043), + [sym_xint] = ACTIONS(3045), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3045), + [sym__newline] = ACTIONS(3045), + [sym__then] = ACTIONS(3045), + }, + [2059] = { + [sym_xml_doc] = STATE(2059), + [sym_block_comment] = STATE(2059), + [sym_preproc_line] = STATE(2059), + [sym_identifier] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3085), + [anon_sym_let_BANG] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3085), + [anon_sym_COLON_QMARK] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACK_PIPE] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_return_BANG] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3085), + [anon_sym_yield_BANG] = ACTIONS(3087), + [anon_sym_lazy] = ACTIONS(3085), + [anon_sym_assert] = ACTIONS(3085), + [anon_sym_upcast] = ACTIONS(3085), + [anon_sym_downcast] = ACTIONS(3085), + [anon_sym_LT_AT] = ACTIONS(3085), + [anon_sym_AT_GT] = ACTIONS(3087), + [anon_sym_LT_AT_AT] = ACTIONS(3085), + [anon_sym_AT_AT_GT] = ACTIONS(3087), + [anon_sym_COLON_GT] = ACTIONS(3087), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_fun] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3085), + [anon_sym_match_BANG] = ACTIONS(3087), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_DOT_LBRACK] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3085), + [anon_sym_use_BANG] = ACTIONS(3087), + [anon_sym_do_BANG] = ACTIONS(3087), + [anon_sym_begin] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [anon_sym_AT_DQUOTE] = ACTIONS(3087), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3087), + [sym_bool] = ACTIONS(3085), + [sym_unit] = ACTIONS(3085), + [aux_sym__identifier_or_op_token1] = ACTIONS(3085), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_DOT] = ACTIONS(3085), + [anon_sym_DASH_DOT] = ACTIONS(3085), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [aux_sym_prefix_op_token1] = ACTIONS(3087), + [aux_sym_infix_op_token1] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3085), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3087), + [sym_int] = ACTIONS(3085), + [sym_xint] = ACTIONS(3087), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3087), + [sym__newline] = ACTIONS(3087), + [sym__then] = ACTIONS(3087), + }, + [2060] = { + [sym_xml_doc] = STATE(2060), + [sym_block_comment] = STATE(2060), + [sym_preproc_line] = STATE(2060), + [sym_identifier] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3081), + [anon_sym_let_BANG] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACK_PIPE] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACE_PIPE] = ACTIONS(3083), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_return_BANG] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3081), + [anon_sym_yield_BANG] = ACTIONS(3083), + [anon_sym_lazy] = ACTIONS(3081), + [anon_sym_assert] = ACTIONS(3081), + [anon_sym_upcast] = ACTIONS(3081), + [anon_sym_downcast] = ACTIONS(3081), + [anon_sym_LT_AT] = ACTIONS(3081), + [anon_sym_AT_GT] = ACTIONS(3083), + [anon_sym_LT_AT_AT] = ACTIONS(3081), + [anon_sym_AT_AT_GT] = ACTIONS(3083), + [anon_sym_COLON_GT] = ACTIONS(3083), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_fun] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3081), + [anon_sym_match_BANG] = ACTIONS(3083), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_DOT_LBRACK] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3081), + [anon_sym_use_BANG] = ACTIONS(3083), + [anon_sym_do_BANG] = ACTIONS(3083), + [anon_sym_begin] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(3083), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3081), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [anon_sym_AT_DQUOTE] = ACTIONS(3083), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3083), + [sym_bool] = ACTIONS(3081), + [sym_unit] = ACTIONS(3081), + [aux_sym__identifier_or_op_token1] = ACTIONS(3081), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_DOT] = ACTIONS(3081), + [anon_sym_DASH_DOT] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [aux_sym_prefix_op_token1] = ACTIONS(3083), + [aux_sym_infix_op_token1] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3083), + [sym_int] = ACTIONS(3081), + [sym_xint] = ACTIONS(3083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3083), + [sym__newline] = ACTIONS(3083), + [sym__then] = ACTIONS(3083), + }, + [2061] = { + [sym_xml_doc] = STATE(2061), + [sym_block_comment] = STATE(2061), + [sym_preproc_line] = STATE(2061), + [sym_identifier] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(3075), + [anon_sym_COLON] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3073), + [anon_sym_let_BANG] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_QMARK] = ACTIONS(3073), + [anon_sym_COLON_QMARK] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACK_PIPE] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACE_PIPE] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_return_BANG] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3073), + [anon_sym_yield_BANG] = ACTIONS(3075), + [anon_sym_lazy] = ACTIONS(3073), + [anon_sym_assert] = ACTIONS(3073), + [anon_sym_upcast] = ACTIONS(3073), + [anon_sym_downcast] = ACTIONS(3073), + [anon_sym_LT_AT] = ACTIONS(3073), + [anon_sym_AT_GT] = ACTIONS(3075), + [anon_sym_LT_AT_AT] = ACTIONS(3073), + [anon_sym_AT_AT_GT] = ACTIONS(3075), + [anon_sym_COLON_GT] = ACTIONS(3075), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_fun] = ACTIONS(3073), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_match] = ACTIONS(3073), + [anon_sym_match_BANG] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3073), + [anon_sym_DOT_LBRACK] = ACTIONS(3075), + [anon_sym_DOT] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3073), + [anon_sym_use_BANG] = ACTIONS(3075), + [anon_sym_do_BANG] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_or] = ACTIONS(3073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [anon_sym_AT_DQUOTE] = ACTIONS(3075), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), + [sym_bool] = ACTIONS(3073), + [sym_unit] = ACTIONS(3073), + [aux_sym__identifier_or_op_token1] = ACTIONS(3073), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_DOT] = ACTIONS(3073), + [anon_sym_DASH_DOT] = ACTIONS(3073), + [anon_sym_PERCENT] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [aux_sym_prefix_op_token1] = ACTIONS(3075), + [aux_sym_infix_op_token1] = ACTIONS(3073), + [anon_sym_PIPE_PIPE] = ACTIONS(3073), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_COLON_EQ] = ACTIONS(3075), + [anon_sym_DOLLAR] = ACTIONS(3073), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3075), + [sym_int] = ACTIONS(3073), + [sym_xint] = ACTIONS(3075), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3075), + [sym__newline] = ACTIONS(3075), + [sym__then] = ACTIONS(3075), + }, + [2062] = { + [sym_xml_doc] = STATE(2062), + [sym_block_comment] = STATE(2062), + [sym_preproc_line] = STATE(2062), + [sym_identifier] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3069), + [anon_sym_let_BANG] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_COLON_QMARK] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_COMMA] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACK_PIPE] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_return_BANG] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_yield_BANG] = ACTIONS(3071), + [anon_sym_lazy] = ACTIONS(3069), + [anon_sym_assert] = ACTIONS(3069), + [anon_sym_upcast] = ACTIONS(3069), + [anon_sym_downcast] = ACTIONS(3069), + [anon_sym_LT_AT] = ACTIONS(3069), + [anon_sym_AT_GT] = ACTIONS(3071), + [anon_sym_LT_AT_AT] = ACTIONS(3069), + [anon_sym_AT_AT_GT] = ACTIONS(3071), + [anon_sym_COLON_GT] = ACTIONS(3071), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_fun] = ACTIONS(3069), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_match_BANG] = ACTIONS(3071), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_LT_DASH] = ACTIONS(3069), + [anon_sym_DOT_LBRACK] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3069), + [anon_sym_use_BANG] = ACTIONS(3071), + [anon_sym_do_BANG] = ACTIONS(3071), + [anon_sym_begin] = ACTIONS(3069), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3069), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_AT_DQUOTE] = ACTIONS(3071), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3071), + [sym_bool] = ACTIONS(3069), + [sym_unit] = ACTIONS(3069), + [aux_sym__identifier_or_op_token1] = ACTIONS(3069), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_DOT] = ACTIONS(3069), + [anon_sym_DASH_DOT] = ACTIONS(3069), + [anon_sym_PERCENT] = ACTIONS(3069), + [anon_sym_AMP_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [aux_sym_prefix_op_token1] = ACTIONS(3071), + [aux_sym_infix_op_token1] = ACTIONS(3069), + [anon_sym_PIPE_PIPE] = ACTIONS(3069), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_COLON_EQ] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3069), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3071), + [sym_int] = ACTIONS(3069), + [sym_xint] = ACTIONS(3071), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(213), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(215), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3071), + [sym__newline] = ACTIONS(3071), + [sym__then] = ACTIONS(3071), + }, + [2063] = { + [sym_xml_doc] = STATE(2063), + [sym_block_comment] = STATE(2063), + [sym_preproc_line] = STATE(2063), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2632), + [anon_sym_namespace] = ACTIONS(2632), + [anon_sym_module] = ACTIONS(2632), + [anon_sym_POUNDnowarn] = ACTIONS(2634), + [anon_sym_POUNDr] = ACTIONS(2634), + [anon_sym_POUNDload] = ACTIONS(2634), + [anon_sym_open] = ACTIONS(2632), + [anon_sym_LBRACK_LT] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_and] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [aux_sym_access_modifier_token1] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_LT_AT_AT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_member] = ACTIONS(2632), + [anon_sym_interface] = ACTIONS(2632), + [anon_sym_abstract] = ACTIONS(2632), + [anon_sym_override] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_val] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2634), + [aux_sym__identifier_or_op_token1] = ACTIONS(2634), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2634), + [anon_sym_DASH_DOT] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), }, - [2092] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2741), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2092), - [sym_block_comment] = STATE(2092), - [sym_preproc_line] = STATE(2092), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3736), - [anon_sym_LBRACK_LT] = ACTIONS(3736), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3738), - [anon_sym__] = ACTIONS(3738), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_COLON_QMARK] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_LBRACK_PIPE] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3736), - [anon_sym_SQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(3738), - [anon_sym_AT_DQUOTE] = ACTIONS(3736), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), - [sym_bool] = ACTIONS(3738), - [sym_unit] = ACTIONS(3736), - [sym_int] = ACTIONS(3738), - [sym_xint] = ACTIONS(3736), + [2064] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2064), + [sym_block_comment] = STATE(2064), + [sym_preproc_line] = STATE(2064), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_POUNDnowarn] = ACTIONS(3740), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_and] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3740), + [aux_sym_access_modifier_token1] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_member] = ACTIONS(3742), + [anon_sym_abstract] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_val] = ACTIONS(3742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3740), + [aux_sym__identifier_or_op_token1] = ACTIONS(3740), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3740), + [anon_sym_DASH_DOT] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3740), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3740), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__dedent] = ACTIONS(3740), }, - [2093] = { - [sym_xml_doc] = STATE(2093), - [sym_block_comment] = STATE(2093), - [sym_preproc_line] = STATE(2093), - [ts_builtin_sym_end] = ACTIONS(3902), - [sym_identifier] = ACTIONS(3904), - [anon_sym_namespace] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3904), - [anon_sym_POUNDnowarn] = ACTIONS(3902), - [anon_sym_POUNDr] = ACTIONS(3902), - [anon_sym_POUNDload] = ACTIONS(3902), - [anon_sym_open] = ACTIONS(3904), - [anon_sym_LBRACK_LT] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3904), - [anon_sym_type] = ACTIONS(3904), - [anon_sym_do] = ACTIONS(3904), - [anon_sym_and] = ACTIONS(3904), - [anon_sym_let] = ACTIONS(3904), - [anon_sym_let_BANG] = ACTIONS(3902), - [aux_sym_access_modifier_token1] = ACTIONS(3902), - [anon_sym_null] = ACTIONS(3904), - [anon_sym_LPAREN] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3904), - [anon_sym_LBRACK_PIPE] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACE_PIPE] = ACTIONS(3902), - [anon_sym_with] = ACTIONS(3906), - [anon_sym_new] = ACTIONS(3904), - [anon_sym_return_BANG] = ACTIONS(3902), - [anon_sym_yield] = ACTIONS(3904), - [anon_sym_yield_BANG] = ACTIONS(3902), - [anon_sym_lazy] = ACTIONS(3904), - [anon_sym_assert] = ACTIONS(3904), - [anon_sym_upcast] = ACTIONS(3904), - [anon_sym_downcast] = ACTIONS(3904), - [anon_sym_LT_AT] = ACTIONS(3904), - [anon_sym_LT_AT_AT] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3904), - [anon_sym_while] = ACTIONS(3904), - [anon_sym_if] = ACTIONS(3904), - [anon_sym_fun] = ACTIONS(3904), - [anon_sym_try] = ACTIONS(3904), - [anon_sym_match] = ACTIONS(3904), - [anon_sym_match_BANG] = ACTIONS(3902), - [anon_sym_function] = ACTIONS(3904), - [anon_sym_use] = ACTIONS(3904), - [anon_sym_use_BANG] = ACTIONS(3902), - [anon_sym_do_BANG] = ACTIONS(3902), - [anon_sym_begin] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3904), - [anon_sym_member] = ACTIONS(3904), - [anon_sym_abstract] = ACTIONS(3904), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_default] = ACTIONS(3904), - [anon_sym_val] = ACTIONS(3904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [anon_sym_AT_DQUOTE] = ACTIONS(3902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3902), - [sym_bool] = ACTIONS(3904), - [sym_unit] = ACTIONS(3902), - [aux_sym__identifier_or_op_token1] = ACTIONS(3902), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3904), - [anon_sym_PLUS] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3904), - [anon_sym_PLUS_DOT] = ACTIONS(3902), - [anon_sym_DASH_DOT] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_AMP_AMP] = ACTIONS(3902), - [anon_sym_TILDE] = ACTIONS(3902), - [aux_sym_prefix_op_token1] = ACTIONS(3902), - [sym_int] = ACTIONS(3904), - [sym_xint] = ACTIONS(3902), + [2065] = { + [sym_xml_doc] = STATE(2065), + [sym_block_comment] = STATE(2065), + [sym_preproc_line] = STATE(2065), + [aux_sym__compound_type_repeat1] = STATE(2065), + [sym_identifier] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_POUNDnowarn] = ACTIONS(2321), + [anon_sym_POUNDr] = ACTIONS(2321), + [anon_sym_POUNDload] = ACTIONS(2321), + [anon_sym_open] = ACTIONS(2319), + [anon_sym_LBRACK_LT] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_and] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [aux_sym_access_modifier_token1] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(3771), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_member] = ACTIONS(2319), + [anon_sym_interface] = ACTIONS(2319), + [anon_sym_abstract] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_val] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3902), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__dedent] = ACTIONS(2321), }, - [2094] = { - [sym_xml_doc] = STATE(2094), - [sym_block_comment] = STATE(2094), - [sym_preproc_line] = STATE(2094), - [ts_builtin_sym_end] = ACTIONS(3866), - [sym_identifier] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_POUNDnowarn] = ACTIONS(3866), - [anon_sym_POUNDr] = ACTIONS(3866), - [anon_sym_POUNDload] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_LBRACK_LT] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_type] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_and] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_BANG] = ACTIONS(3866), - [aux_sym_access_modifier_token1] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_LBRACK_PIPE] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACE_PIPE] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_return_BANG] = ACTIONS(3866), - [anon_sym_yield] = ACTIONS(3868), - [anon_sym_yield_BANG] = ACTIONS(3866), - [anon_sym_lazy] = ACTIONS(3868), - [anon_sym_assert] = ACTIONS(3868), - [anon_sym_upcast] = ACTIONS(3868), - [anon_sym_downcast] = ACTIONS(3868), - [anon_sym_LT_AT] = ACTIONS(3868), - [anon_sym_LT_AT_AT] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_fun] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_match_BANG] = ACTIONS(3866), - [anon_sym_function] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_use_BANG] = ACTIONS(3866), - [anon_sym_do_BANG] = ACTIONS(3866), - [anon_sym_begin] = ACTIONS(3868), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_member] = ACTIONS(3868), - [anon_sym_abstract] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_val] = ACTIONS(3868), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3868), - [anon_sym_DQUOTE] = ACTIONS(3868), - [anon_sym_AT_DQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [sym_bool] = ACTIONS(3868), - [sym_unit] = ACTIONS(3866), - [aux_sym__identifier_or_op_token1] = ACTIONS(3866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS_DOT] = ACTIONS(3866), - [anon_sym_DASH_DOT] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [aux_sym_prefix_op_token1] = ACTIONS(3866), - [sym_int] = ACTIONS(3868), - [sym_xint] = ACTIONS(3866), + [2066] = { + [sym_xml_doc] = STATE(2066), + [sym_block_comment] = STATE(2066), + [sym_preproc_line] = STATE(2066), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2636), + [anon_sym_namespace] = ACTIONS(2636), + [anon_sym_module] = ACTIONS(2636), + [anon_sym_POUNDnowarn] = ACTIONS(2638), + [anon_sym_POUNDr] = ACTIONS(2638), + [anon_sym_POUNDload] = ACTIONS(2638), + [anon_sym_open] = ACTIONS(2636), + [anon_sym_LBRACK_LT] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_and] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [aux_sym_access_modifier_token1] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_LT_AT_AT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_member] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_override] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_val] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2638), + [aux_sym__identifier_or_op_token1] = ACTIONS(2638), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2638), + [anon_sym_DASH_DOT] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3866), + [anon_sym_POUNDif] = ACTIONS(2638), }, - [2095] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2766), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym__pattern_param] = STATE(2109), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2641), - [sym_long_identifier] = STATE(2085), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2095), - [sym_block_comment] = STATE(2095), - [sym_preproc_line] = STATE(2095), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3692), - [anon_sym_LBRACK_LT] = ACTIONS(3692), - [anon_sym_COLON] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym__] = ACTIONS(3696), - [anon_sym_QMARK] = ACTIONS(3692), - [anon_sym_COLON_QMARK] = ACTIONS(3692), - [anon_sym_as] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_COMMA] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3692), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LBRACK_PIPE] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_AT_DQUOTE] = ACTIONS(3692), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3692), - [sym_bool] = ACTIONS(3696), - [sym_unit] = ACTIONS(3692), - [sym_int] = ACTIONS(3696), - [sym_xint] = ACTIONS(3692), + [2067] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3557), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2095), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2070), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2067), + [sym_block_comment] = STATE(2067), + [sym_preproc_line] = STATE(2067), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3782), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_LT2] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2096] = { - [sym_xml_doc] = STATE(2096), - [sym_block_comment] = STATE(2096), - [sym_preproc_line] = STATE(2096), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_and] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [aux_sym_access_modifier_token1] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_LT_AT_AT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_member] = ACTIONS(2647), - [anon_sym_abstract] = ACTIONS(2647), - [anon_sym_override] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_val] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2649), - [aux_sym__identifier_or_op_token1] = ACTIONS(2649), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2649), - [anon_sym_DASH_DOT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), + [2068] = { + [sym_xml_doc] = STATE(2068), + [sym_block_comment] = STATE(2068), + [sym_preproc_line] = STATE(2068), + [sym_identifier] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_POUNDnowarn] = ACTIONS(2650), + [anon_sym_POUNDr] = ACTIONS(2650), + [anon_sym_POUNDload] = ACTIONS(2650), + [anon_sym_open] = ACTIONS(2648), + [anon_sym_LBRACK_LT] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_and] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [aux_sym_access_modifier_token1] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_LT_AT_AT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_member] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_override] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_val] = ACTIONS(2648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2650), + [aux_sym__identifier_or_op_token1] = ACTIONS(2650), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2650), + [anon_sym_DASH_DOT] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_AMP_AMP] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__dedent] = ACTIONS(2650), }, - [2097] = { - [sym_xml_doc] = STATE(2097), - [sym_block_comment] = STATE(2097), - [sym_preproc_line] = STATE(2097), - [ts_builtin_sym_end] = ACTIONS(3872), - [sym_identifier] = ACTIONS(3874), - [anon_sym_namespace] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_POUNDnowarn] = ACTIONS(3872), - [anon_sym_POUNDr] = ACTIONS(3872), - [anon_sym_POUNDload] = ACTIONS(3872), - [anon_sym_open] = ACTIONS(3874), - [anon_sym_LBRACK_LT] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_and] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_BANG] = ACTIONS(3872), - [aux_sym_access_modifier_token1] = ACTIONS(3872), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LBRACK_PIPE] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_LBRACE_PIPE] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3874), - [anon_sym_return_BANG] = ACTIONS(3872), - [anon_sym_yield] = ACTIONS(3874), - [anon_sym_yield_BANG] = ACTIONS(3872), - [anon_sym_lazy] = ACTIONS(3874), - [anon_sym_assert] = ACTIONS(3874), - [anon_sym_upcast] = ACTIONS(3874), - [anon_sym_downcast] = ACTIONS(3874), - [anon_sym_LT_AT] = ACTIONS(3874), - [anon_sym_LT_AT_AT] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_fun] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_match_BANG] = ACTIONS(3872), - [anon_sym_function] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_use_BANG] = ACTIONS(3872), - [anon_sym_do_BANG] = ACTIONS(3872), - [anon_sym_begin] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3874), - [anon_sym_member] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3874), - [anon_sym_override] = ACTIONS(3874), - [anon_sym_default] = ACTIONS(3874), - [anon_sym_val] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_AT_DQUOTE] = ACTIONS(3872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [sym_bool] = ACTIONS(3874), - [sym_unit] = ACTIONS(3872), - [aux_sym__identifier_or_op_token1] = ACTIONS(3872), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3874), - [anon_sym_PLUS] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_PLUS_DOT] = ACTIONS(3872), - [anon_sym_DASH_DOT] = ACTIONS(3872), - [anon_sym_PERCENT] = ACTIONS(3872), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3872), - [aux_sym_prefix_op_token1] = ACTIONS(3872), - [sym_int] = ACTIONS(3874), - [sym_xint] = ACTIONS(3872), + [2069] = { + [sym_xml_doc] = STATE(2069), + [sym_block_comment] = STATE(2069), + [sym_preproc_line] = STATE(2069), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2662), + [anon_sym_namespace] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_POUNDnowarn] = ACTIONS(2664), + [anon_sym_POUNDr] = ACTIONS(2664), + [anon_sym_POUNDload] = ACTIONS(2664), + [anon_sym_open] = ACTIONS(2662), + [anon_sym_LBRACK_LT] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_and] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [aux_sym_access_modifier_token1] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_LT_AT_AT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_member] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_val] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2664), + [aux_sym__identifier_or_op_token1] = ACTIONS(2664), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2664), + [anon_sym_DASH_DOT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3872), + [anon_sym_POUNDif] = ACTIONS(2664), }, - [2098] = { - [sym_xml_doc] = STATE(2098), - [sym_block_comment] = STATE(2098), - [sym_preproc_line] = STATE(2098), - [ts_builtin_sym_end] = ACTIONS(3912), - [sym_identifier] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_POUNDnowarn] = ACTIONS(3912), - [anon_sym_POUNDr] = ACTIONS(3912), - [anon_sym_POUNDload] = ACTIONS(3912), - [anon_sym_open] = ACTIONS(3914), - [anon_sym_LBRACK_LT] = ACTIONS(3912), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_and] = ACTIONS(3914), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_let_BANG] = ACTIONS(3912), - [aux_sym_access_modifier_token1] = ACTIONS(3912), - [anon_sym_null] = ACTIONS(3914), - [anon_sym_LPAREN] = ACTIONS(3914), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_LBRACK_PIPE] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3914), - [anon_sym_LBRACE_PIPE] = ACTIONS(3912), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_return_BANG] = ACTIONS(3912), - [anon_sym_yield] = ACTIONS(3914), - [anon_sym_yield_BANG] = ACTIONS(3912), - [anon_sym_lazy] = ACTIONS(3914), - [anon_sym_assert] = ACTIONS(3914), - [anon_sym_upcast] = ACTIONS(3914), - [anon_sym_downcast] = ACTIONS(3914), - [anon_sym_LT_AT] = ACTIONS(3914), - [anon_sym_LT_AT_AT] = ACTIONS(3912), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_fun] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_match] = ACTIONS(3914), - [anon_sym_match_BANG] = ACTIONS(3912), - [anon_sym_function] = ACTIONS(3914), - [anon_sym_use] = ACTIONS(3914), - [anon_sym_use_BANG] = ACTIONS(3912), - [anon_sym_do_BANG] = ACTIONS(3912), - [anon_sym_begin] = ACTIONS(3914), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_member] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_override] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_val] = ACTIONS(3914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), - [anon_sym_DQUOTE] = ACTIONS(3914), - [anon_sym_AT_DQUOTE] = ACTIONS(3912), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), - [sym_bool] = ACTIONS(3914), - [sym_unit] = ACTIONS(3912), - [aux_sym__identifier_or_op_token1] = ACTIONS(3912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS_DOT] = ACTIONS(3912), - [anon_sym_DASH_DOT] = ACTIONS(3912), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [aux_sym_prefix_op_token1] = ACTIONS(3912), - [sym_int] = ACTIONS(3914), - [sym_xint] = ACTIONS(3912), + [2070] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3557), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2095), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2070), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2070), + [sym_block_comment] = STATE(2070), + [sym_preproc_line] = STATE(2070), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3822), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_RPAREN] = ACTIONS(3822), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_RBRACK] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_PIPE_RBRACK] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_LT2] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3912), }, - [2099] = { - [sym_xml_doc] = STATE(2099), - [sym_block_comment] = STATE(2099), - [sym_preproc_line] = STATE(2099), - [sym_identifier] = ACTIONS(3880), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_POUNDnowarn] = ACTIONS(3878), - [anon_sym_POUNDr] = ACTIONS(3878), - [anon_sym_POUNDload] = ACTIONS(3878), - [anon_sym_open] = ACTIONS(3880), - [anon_sym_LBRACK_LT] = ACTIONS(3878), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_and] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_let_BANG] = ACTIONS(3878), - [aux_sym_access_modifier_token1] = ACTIONS(3878), - [anon_sym_null] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_LBRACK_PIPE] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_LBRACE_PIPE] = ACTIONS(3878), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_return_BANG] = ACTIONS(3878), - [anon_sym_yield] = ACTIONS(3880), - [anon_sym_yield_BANG] = ACTIONS(3878), - [anon_sym_lazy] = ACTIONS(3880), - [anon_sym_assert] = ACTIONS(3880), - [anon_sym_upcast] = ACTIONS(3880), - [anon_sym_downcast] = ACTIONS(3880), - [anon_sym_LT_AT] = ACTIONS(3880), - [anon_sym_LT_AT_AT] = ACTIONS(3878), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_fun] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_match] = ACTIONS(3880), - [anon_sym_match_BANG] = ACTIONS(3878), - [anon_sym_function] = ACTIONS(3880), - [anon_sym_use] = ACTIONS(3880), - [anon_sym_use_BANG] = ACTIONS(3878), - [anon_sym_do_BANG] = ACTIONS(3878), - [anon_sym_begin] = ACTIONS(3880), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_member] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3880), - [anon_sym_override] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_val] = ACTIONS(3880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3880), - [anon_sym_AT_DQUOTE] = ACTIONS(3878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [sym_bool] = ACTIONS(3880), - [sym_unit] = ACTIONS(3878), - [aux_sym__identifier_or_op_token1] = ACTIONS(3878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS_DOT] = ACTIONS(3878), - [anon_sym_DASH_DOT] = ACTIONS(3878), - [anon_sym_PERCENT] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [aux_sym_prefix_op_token1] = ACTIONS(3878), - [sym_int] = ACTIONS(3880), - [sym_xint] = ACTIONS(3878), + [2071] = { + [sym_xml_doc] = STATE(2071), + [sym_block_comment] = STATE(2071), + [sym_preproc_line] = STATE(2071), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_POUNDnowarn] = ACTIONS(2621), + [anon_sym_POUNDr] = ACTIONS(2621), + [anon_sym_POUNDload] = ACTIONS(2621), + [anon_sym_open] = ACTIONS(2615), + [anon_sym_LBRACK_LT] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [aux_sym_access_modifier_token1] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_LT_AT_AT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_member] = ACTIONS(2615), + [anon_sym_interface] = ACTIONS(2615), + [anon_sym_abstract] = ACTIONS(2615), + [anon_sym_override] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_val] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2621), + [aux_sym__identifier_or_op_token1] = ACTIONS(2621), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2621), + [anon_sym_DASH_DOT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3878), - [sym__dedent] = ACTIONS(3878), + [anon_sym_POUNDif] = ACTIONS(2621), }, - [2100] = { - [sym_xml_doc] = STATE(2100), - [sym_block_comment] = STATE(2100), - [sym_preproc_line] = STATE(2100), - [ts_builtin_sym_end] = ACTIONS(3918), - [sym_identifier] = ACTIONS(3920), - [anon_sym_namespace] = ACTIONS(3920), - [anon_sym_module] = ACTIONS(3920), - [anon_sym_POUNDnowarn] = ACTIONS(3918), - [anon_sym_POUNDr] = ACTIONS(3918), - [anon_sym_POUNDload] = ACTIONS(3918), - [anon_sym_open] = ACTIONS(3920), - [anon_sym_LBRACK_LT] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3920), - [anon_sym_type] = ACTIONS(3920), - [anon_sym_do] = ACTIONS(3920), - [anon_sym_and] = ACTIONS(3920), - [anon_sym_let] = ACTIONS(3920), - [anon_sym_let_BANG] = ACTIONS(3918), - [aux_sym_access_modifier_token1] = ACTIONS(3918), - [anon_sym_null] = ACTIONS(3920), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3920), - [anon_sym_LBRACK] = ACTIONS(3920), - [anon_sym_LBRACK_PIPE] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_LBRACE_PIPE] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3920), - [anon_sym_return_BANG] = ACTIONS(3918), - [anon_sym_yield] = ACTIONS(3920), - [anon_sym_yield_BANG] = ACTIONS(3918), - [anon_sym_lazy] = ACTIONS(3920), - [anon_sym_assert] = ACTIONS(3920), - [anon_sym_upcast] = ACTIONS(3920), - [anon_sym_downcast] = ACTIONS(3920), - [anon_sym_LT_AT] = ACTIONS(3920), - [anon_sym_LT_AT_AT] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3920), - [anon_sym_while] = ACTIONS(3920), - [anon_sym_if] = ACTIONS(3920), - [anon_sym_fun] = ACTIONS(3920), - [anon_sym_try] = ACTIONS(3920), - [anon_sym_match] = ACTIONS(3920), - [anon_sym_match_BANG] = ACTIONS(3918), - [anon_sym_function] = ACTIONS(3920), - [anon_sym_use] = ACTIONS(3920), - [anon_sym_use_BANG] = ACTIONS(3918), - [anon_sym_do_BANG] = ACTIONS(3918), - [anon_sym_begin] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3920), - [anon_sym_member] = ACTIONS(3920), - [anon_sym_abstract] = ACTIONS(3920), - [anon_sym_override] = ACTIONS(3920), - [anon_sym_default] = ACTIONS(3920), - [anon_sym_val] = ACTIONS(3920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [anon_sym_AT_DQUOTE] = ACTIONS(3918), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3918), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3918), - [sym_bool] = ACTIONS(3920), - [sym_unit] = ACTIONS(3918), - [aux_sym__identifier_or_op_token1] = ACTIONS(3918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3920), - [anon_sym_PLUS] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3920), - [anon_sym_PLUS_DOT] = ACTIONS(3918), - [anon_sym_DASH_DOT] = ACTIONS(3918), - [anon_sym_PERCENT] = ACTIONS(3918), - [anon_sym_AMP_AMP] = ACTIONS(3918), - [anon_sym_TILDE] = ACTIONS(3918), - [aux_sym_prefix_op_token1] = ACTIONS(3918), - [sym_int] = ACTIONS(3920), - [sym_xint] = ACTIONS(3918), + [2072] = { + [sym_xml_doc] = STATE(2072), + [sym_block_comment] = STATE(2072), + [sym_preproc_line] = STATE(2072), + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2628), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2628), + [anon_sym_POUNDnowarn] = ACTIONS(2630), + [anon_sym_POUNDr] = ACTIONS(2630), + [anon_sym_POUNDload] = ACTIONS(2630), + [anon_sym_open] = ACTIONS(2628), + [anon_sym_LBRACK_LT] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_and] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [aux_sym_access_modifier_token1] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_LT_AT_AT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_member] = ACTIONS(2628), + [anon_sym_interface] = ACTIONS(2628), + [anon_sym_abstract] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_val] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2630), + [aux_sym__identifier_or_op_token1] = ACTIONS(2630), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2630), + [anon_sym_DASH_DOT] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3918), + [anon_sym_POUNDif] = ACTIONS(2630), }, - [2101] = { - [sym_xml_doc] = STATE(2101), - [sym_block_comment] = STATE(2101), - [sym_preproc_line] = STATE(2101), - [ts_builtin_sym_end] = ACTIONS(3922), - [sym_identifier] = ACTIONS(3924), - [anon_sym_namespace] = ACTIONS(3924), - [anon_sym_module] = ACTIONS(3924), - [anon_sym_POUNDnowarn] = ACTIONS(3922), - [anon_sym_POUNDr] = ACTIONS(3922), - [anon_sym_POUNDload] = ACTIONS(3922), - [anon_sym_open] = ACTIONS(3924), - [anon_sym_LBRACK_LT] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3924), - [anon_sym_type] = ACTIONS(3924), - [anon_sym_do] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_let_BANG] = ACTIONS(3922), - [aux_sym_access_modifier_token1] = ACTIONS(3922), - [anon_sym_null] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_LBRACK_PIPE] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_LBRACE_PIPE] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3924), - [anon_sym_return_BANG] = ACTIONS(3922), - [anon_sym_yield] = ACTIONS(3924), - [anon_sym_yield_BANG] = ACTIONS(3922), - [anon_sym_lazy] = ACTIONS(3924), - [anon_sym_assert] = ACTIONS(3924), - [anon_sym_upcast] = ACTIONS(3924), - [anon_sym_downcast] = ACTIONS(3924), - [anon_sym_LT_AT] = ACTIONS(3924), - [anon_sym_LT_AT_AT] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3924), - [anon_sym_while] = ACTIONS(3924), - [anon_sym_if] = ACTIONS(3924), - [anon_sym_fun] = ACTIONS(3924), - [anon_sym_try] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(3924), - [anon_sym_match_BANG] = ACTIONS(3922), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_use] = ACTIONS(3924), - [anon_sym_use_BANG] = ACTIONS(3922), - [anon_sym_do_BANG] = ACTIONS(3922), - [anon_sym_begin] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_member] = ACTIONS(3924), - [anon_sym_abstract] = ACTIONS(3924), - [anon_sym_override] = ACTIONS(3924), - [anon_sym_default] = ACTIONS(3924), - [anon_sym_val] = ACTIONS(3924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(3924), - [anon_sym_AT_DQUOTE] = ACTIONS(3922), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3922), - [sym_bool] = ACTIONS(3924), - [sym_unit] = ACTIONS(3922), - [aux_sym__identifier_or_op_token1] = ACTIONS(3922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3924), - [anon_sym_PLUS_DOT] = ACTIONS(3922), - [anon_sym_DASH_DOT] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3922), - [anon_sym_TILDE] = ACTIONS(3922), - [aux_sym_prefix_op_token1] = ACTIONS(3922), - [sym_int] = ACTIONS(3924), - [sym_xint] = ACTIONS(3922), + [2073] = { + [sym_xml_doc] = STATE(2073), + [sym_block_comment] = STATE(2073), + [sym_preproc_line] = STATE(2073), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_POUNDnowarn] = ACTIONS(2687), + [anon_sym_POUNDr] = ACTIONS(2687), + [anon_sym_POUNDload] = ACTIONS(2687), + [anon_sym_open] = ACTIONS(2685), + [anon_sym_LBRACK_LT] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_and] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [aux_sym_access_modifier_token1] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_LT_AT_AT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_member] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_val] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2687), + [aux_sym__identifier_or_op_token1] = ACTIONS(2687), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2687), + [anon_sym_DASH_DOT] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3922), + [anon_sym_POUNDif] = ACTIONS(2687), }, - [2102] = { - [sym_xml_doc] = STATE(2102), - [sym_block_comment] = STATE(2102), - [sym_preproc_line] = STATE(2102), - [sym_identifier] = ACTIONS(2647), - [anon_sym_module] = ACTIONS(2647), - [anon_sym_POUNDnowarn] = ACTIONS(2649), - [anon_sym_POUNDr] = ACTIONS(2649), - [anon_sym_POUNDload] = ACTIONS(2649), - [anon_sym_open] = ACTIONS(2647), - [anon_sym_LBRACK_LT] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_and] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_let_BANG] = ACTIONS(2649), - [aux_sym_access_modifier_token1] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LBRACK_PIPE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_LBRACE_PIPE] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_return_BANG] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_yield_BANG] = ACTIONS(2649), - [anon_sym_lazy] = ACTIONS(2647), - [anon_sym_assert] = ACTIONS(2647), - [anon_sym_upcast] = ACTIONS(2647), - [anon_sym_downcast] = ACTIONS(2647), - [anon_sym_LT_AT] = ACTIONS(2647), - [anon_sym_LT_AT_AT] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_fun] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_match_BANG] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_use_BANG] = ACTIONS(2649), - [anon_sym_do_BANG] = ACTIONS(2649), - [anon_sym_begin] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_member] = ACTIONS(2647), - [anon_sym_abstract] = ACTIONS(2647), - [anon_sym_override] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_val] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_AT_DQUOTE] = ACTIONS(2649), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [sym_bool] = ACTIONS(2647), - [sym_unit] = ACTIONS(2649), - [aux_sym__identifier_or_op_token1] = ACTIONS(2649), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS_DOT] = ACTIONS(2649), - [anon_sym_DASH_DOT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [aux_sym_prefix_op_token1] = ACTIONS(2649), - [sym_int] = ACTIONS(2647), - [sym_xint] = ACTIONS(2649), + [2074] = { + [sym_xml_doc] = STATE(2074), + [sym_block_comment] = STATE(2074), + [sym_preproc_line] = STATE(2074), + [sym_identifier] = ACTIONS(2644), + [anon_sym_module] = ACTIONS(2644), + [anon_sym_POUNDnowarn] = ACTIONS(2646), + [anon_sym_POUNDr] = ACTIONS(2646), + [anon_sym_POUNDload] = ACTIONS(2646), + [anon_sym_open] = ACTIONS(2644), + [anon_sym_LBRACK_LT] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_and] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [aux_sym_access_modifier_token1] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_LT_AT_AT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_member] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_val] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2646), + [aux_sym__identifier_or_op_token1] = ACTIONS(2646), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2646), + [anon_sym_DASH_DOT] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2649), - [sym__dedent] = ACTIONS(2649), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__dedent] = ACTIONS(2646), }, - [2103] = { - [sym_xml_doc] = STATE(2103), - [sym_block_comment] = STATE(2103), - [sym_preproc_line] = STATE(2103), - [sym_identifier] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3904), - [anon_sym_POUNDnowarn] = ACTIONS(3902), - [anon_sym_POUNDr] = ACTIONS(3902), - [anon_sym_POUNDload] = ACTIONS(3902), - [anon_sym_open] = ACTIONS(3904), - [anon_sym_LBRACK_LT] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3904), - [anon_sym_type] = ACTIONS(3904), - [anon_sym_do] = ACTIONS(3904), - [anon_sym_and] = ACTIONS(3904), - [anon_sym_let] = ACTIONS(3904), - [anon_sym_let_BANG] = ACTIONS(3902), - [aux_sym_access_modifier_token1] = ACTIONS(3902), - [anon_sym_null] = ACTIONS(3904), - [anon_sym_LPAREN] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3904), - [anon_sym_LBRACK_PIPE] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACE_PIPE] = ACTIONS(3902), - [anon_sym_with] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3904), - [anon_sym_return_BANG] = ACTIONS(3902), - [anon_sym_yield] = ACTIONS(3904), - [anon_sym_yield_BANG] = ACTIONS(3902), - [anon_sym_lazy] = ACTIONS(3904), - [anon_sym_assert] = ACTIONS(3904), - [anon_sym_upcast] = ACTIONS(3904), - [anon_sym_downcast] = ACTIONS(3904), - [anon_sym_LT_AT] = ACTIONS(3904), - [anon_sym_LT_AT_AT] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3904), - [anon_sym_while] = ACTIONS(3904), - [anon_sym_if] = ACTIONS(3904), - [anon_sym_fun] = ACTIONS(3904), - [anon_sym_try] = ACTIONS(3904), - [anon_sym_match] = ACTIONS(3904), - [anon_sym_match_BANG] = ACTIONS(3902), - [anon_sym_function] = ACTIONS(3904), - [anon_sym_use] = ACTIONS(3904), - [anon_sym_use_BANG] = ACTIONS(3902), - [anon_sym_do_BANG] = ACTIONS(3902), - [anon_sym_begin] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3904), - [anon_sym_member] = ACTIONS(3904), - [anon_sym_abstract] = ACTIONS(3904), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_default] = ACTIONS(3904), - [anon_sym_val] = ACTIONS(3904), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [anon_sym_AT_DQUOTE] = ACTIONS(3902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3902), - [sym_bool] = ACTIONS(3904), - [sym_unit] = ACTIONS(3902), - [aux_sym__identifier_or_op_token1] = ACTIONS(3902), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3904), - [anon_sym_PLUS] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3904), - [anon_sym_PLUS_DOT] = ACTIONS(3902), - [anon_sym_DASH_DOT] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_AMP_AMP] = ACTIONS(3902), - [anon_sym_TILDE] = ACTIONS(3902), - [aux_sym_prefix_op_token1] = ACTIONS(3902), - [sym_int] = ACTIONS(3904), - [sym_xint] = ACTIONS(3902), + [2075] = { + [sym_xml_doc] = STATE(2075), + [sym_block_comment] = STATE(2075), + [sym_preproc_line] = STATE(2075), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2679), + [anon_sym_namespace] = ACTIONS(2679), + [anon_sym_module] = ACTIONS(2679), + [anon_sym_POUNDnowarn] = ACTIONS(2681), + [anon_sym_POUNDr] = ACTIONS(2681), + [anon_sym_POUNDload] = ACTIONS(2681), + [anon_sym_open] = ACTIONS(2679), + [anon_sym_LBRACK_LT] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [aux_sym_access_modifier_token1] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_LT_AT_AT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_member] = ACTIONS(2679), + [anon_sym_interface] = ACTIONS(2679), + [anon_sym_abstract] = ACTIONS(2679), + [anon_sym_override] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_val] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2681), + [aux_sym__identifier_or_op_token1] = ACTIONS(2681), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2681), + [anon_sym_DASH_DOT] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3902), - [sym__dedent] = ACTIONS(3902), + [anon_sym_POUNDif] = ACTIONS(2681), }, - [2104] = { - [sym_xml_doc] = STATE(2104), - [sym_block_comment] = STATE(2104), - [sym_preproc_line] = STATE(2104), - [ts_builtin_sym_end] = ACTIONS(3928), - [sym_identifier] = ACTIONS(3930), - [anon_sym_namespace] = ACTIONS(3930), - [anon_sym_module] = ACTIONS(3930), - [anon_sym_POUNDnowarn] = ACTIONS(3928), - [anon_sym_POUNDr] = ACTIONS(3928), - [anon_sym_POUNDload] = ACTIONS(3928), - [anon_sym_open] = ACTIONS(3930), - [anon_sym_LBRACK_LT] = ACTIONS(3928), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_type] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_and] = ACTIONS(3930), - [anon_sym_let] = ACTIONS(3930), - [anon_sym_let_BANG] = ACTIONS(3928), - [aux_sym_access_modifier_token1] = ACTIONS(3928), - [anon_sym_null] = ACTIONS(3930), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_LBRACK_PIPE] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3930), - [anon_sym_LBRACE_PIPE] = ACTIONS(3928), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_return_BANG] = ACTIONS(3928), - [anon_sym_yield] = ACTIONS(3930), - [anon_sym_yield_BANG] = ACTIONS(3928), - [anon_sym_lazy] = ACTIONS(3930), - [anon_sym_assert] = ACTIONS(3930), - [anon_sym_upcast] = ACTIONS(3930), - [anon_sym_downcast] = ACTIONS(3930), - [anon_sym_LT_AT] = ACTIONS(3930), - [anon_sym_LT_AT_AT] = ACTIONS(3928), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_fun] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_match] = ACTIONS(3930), - [anon_sym_match_BANG] = ACTIONS(3928), - [anon_sym_function] = ACTIONS(3930), - [anon_sym_use] = ACTIONS(3930), - [anon_sym_use_BANG] = ACTIONS(3928), - [anon_sym_do_BANG] = ACTIONS(3928), - [anon_sym_begin] = ACTIONS(3930), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_member] = ACTIONS(3930), - [anon_sym_abstract] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_val] = ACTIONS(3930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3930), - [anon_sym_DQUOTE] = ACTIONS(3930), - [anon_sym_AT_DQUOTE] = ACTIONS(3928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), - [sym_bool] = ACTIONS(3930), - [sym_unit] = ACTIONS(3928), - [aux_sym__identifier_or_op_token1] = ACTIONS(3928), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS_DOT] = ACTIONS(3928), - [anon_sym_DASH_DOT] = ACTIONS(3928), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [aux_sym_prefix_op_token1] = ACTIONS(3928), - [sym_int] = ACTIONS(3930), - [sym_xint] = ACTIONS(3928), + [2076] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2076), + [sym_block_comment] = STATE(2076), + [sym_preproc_line] = STATE(2076), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3765), + [anon_sym_module] = ACTIONS(3765), + [anon_sym_POUNDnowarn] = ACTIONS(3763), + [anon_sym_POUNDr] = ACTIONS(3763), + [anon_sym_POUNDload] = ACTIONS(3763), + [anon_sym_open] = ACTIONS(3765), + [anon_sym_LBRACK_LT] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3765), + [anon_sym_type] = ACTIONS(3765), + [anon_sym_do] = ACTIONS(3765), + [anon_sym_and] = ACTIONS(3765), + [anon_sym_let] = ACTIONS(3765), + [anon_sym_let_BANG] = ACTIONS(3763), + [aux_sym_access_modifier_token1] = ACTIONS(3763), + [anon_sym_null] = ACTIONS(3765), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_LBRACK_PIPE] = ACTIONS(3763), + [anon_sym_LBRACE] = ACTIONS(3765), + [anon_sym_LBRACE_PIPE] = ACTIONS(3763), + [anon_sym_new] = ACTIONS(3765), + [anon_sym_return_BANG] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3765), + [anon_sym_yield_BANG] = ACTIONS(3763), + [anon_sym_lazy] = ACTIONS(3765), + [anon_sym_assert] = ACTIONS(3765), + [anon_sym_upcast] = ACTIONS(3765), + [anon_sym_downcast] = ACTIONS(3765), + [anon_sym_LT_AT] = ACTIONS(3765), + [anon_sym_LT_AT_AT] = ACTIONS(3763), + [anon_sym_for] = ACTIONS(3765), + [anon_sym_while] = ACTIONS(3765), + [anon_sym_if] = ACTIONS(3765), + [anon_sym_fun] = ACTIONS(3765), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3765), + [anon_sym_match] = ACTIONS(3765), + [anon_sym_match_BANG] = ACTIONS(3763), + [anon_sym_function] = ACTIONS(3765), + [anon_sym_use] = ACTIONS(3765), + [anon_sym_use_BANG] = ACTIONS(3763), + [anon_sym_do_BANG] = ACTIONS(3763), + [anon_sym_begin] = ACTIONS(3765), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3763), + [anon_sym_static] = ACTIONS(3765), + [anon_sym_member] = ACTIONS(3765), + [anon_sym_abstract] = ACTIONS(3765), + [anon_sym_override] = ACTIONS(3765), + [anon_sym_default] = ACTIONS(3765), + [anon_sym_val] = ACTIONS(3765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3765), + [anon_sym_DQUOTE] = ACTIONS(3765), + [anon_sym_AT_DQUOTE] = ACTIONS(3763), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3763), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3763), + [sym_bool] = ACTIONS(3765), + [sym_unit] = ACTIONS(3763), + [aux_sym__identifier_or_op_token1] = ACTIONS(3763), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3765), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_PLUS_DOT] = ACTIONS(3763), + [anon_sym_DASH_DOT] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(3763), + [anon_sym_AMP_AMP] = ACTIONS(3763), + [anon_sym_TILDE] = ACTIONS(3763), + [aux_sym_prefix_op_token1] = ACTIONS(3763), + [sym_int] = ACTIONS(3765), + [sym_xint] = ACTIONS(3763), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3928), + [anon_sym_POUNDif] = ACTIONS(3763), + [sym__dedent] = ACTIONS(3763), }, - [2105] = { - [sym_xml_doc] = STATE(2105), - [sym_block_comment] = STATE(2105), - [sym_preproc_line] = STATE(2105), - [sym_identifier] = ACTIONS(3898), - [anon_sym_module] = ACTIONS(3898), - [anon_sym_POUNDnowarn] = ACTIONS(3896), - [anon_sym_POUNDr] = ACTIONS(3896), - [anon_sym_POUNDload] = ACTIONS(3896), - [anon_sym_open] = ACTIONS(3898), - [anon_sym_LBRACK_LT] = ACTIONS(3896), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_type] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_and] = ACTIONS(3898), - [anon_sym_let] = ACTIONS(3898), - [anon_sym_let_BANG] = ACTIONS(3896), - [aux_sym_access_modifier_token1] = ACTIONS(3896), - [anon_sym_null] = ACTIONS(3898), - [anon_sym_LPAREN] = ACTIONS(3898), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_LBRACK_PIPE] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACE_PIPE] = ACTIONS(3896), - [anon_sym_with] = ACTIONS(3932), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_return_BANG] = ACTIONS(3896), - [anon_sym_yield] = ACTIONS(3898), - [anon_sym_yield_BANG] = ACTIONS(3896), - [anon_sym_lazy] = ACTIONS(3898), - [anon_sym_assert] = ACTIONS(3898), - [anon_sym_upcast] = ACTIONS(3898), - [anon_sym_downcast] = ACTIONS(3898), - [anon_sym_LT_AT] = ACTIONS(3898), - [anon_sym_LT_AT_AT] = ACTIONS(3896), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_fun] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_match] = ACTIONS(3898), - [anon_sym_match_BANG] = ACTIONS(3896), - [anon_sym_function] = ACTIONS(3898), - [anon_sym_use] = ACTIONS(3898), - [anon_sym_use_BANG] = ACTIONS(3896), - [anon_sym_do_BANG] = ACTIONS(3896), - [anon_sym_begin] = ACTIONS(3898), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_member] = ACTIONS(3898), - [anon_sym_abstract] = ACTIONS(3898), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_val] = ACTIONS(3898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3898), - [anon_sym_DQUOTE] = ACTIONS(3898), - [anon_sym_AT_DQUOTE] = ACTIONS(3896), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3896), - [sym_bool] = ACTIONS(3898), - [sym_unit] = ACTIONS(3896), - [aux_sym__identifier_or_op_token1] = ACTIONS(3896), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS_DOT] = ACTIONS(3896), - [anon_sym_DASH_DOT] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [aux_sym_prefix_op_token1] = ACTIONS(3896), - [sym_int] = ACTIONS(3898), - [sym_xint] = ACTIONS(3896), + [2077] = { + [sym_attributes] = STATE(3766), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4660), + [sym_member_defn] = STATE(2195), + [sym_additional_constr_defn] = STATE(2191), + [sym_xml_doc] = STATE(2077), + [sym_block_comment] = STATE(2077), + [sym_preproc_line] = STATE(2077), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(3769), + [anon_sym_module] = ACTIONS(3769), + [anon_sym_POUNDnowarn] = ACTIONS(3767), + [anon_sym_POUNDr] = ACTIONS(3767), + [anon_sym_POUNDload] = ACTIONS(3767), + [anon_sym_open] = ACTIONS(3769), + [anon_sym_LBRACK_LT] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3769), + [anon_sym_type] = ACTIONS(3769), + [anon_sym_do] = ACTIONS(3769), + [anon_sym_and] = ACTIONS(3769), + [anon_sym_let] = ACTIONS(3769), + [anon_sym_let_BANG] = ACTIONS(3767), + [aux_sym_access_modifier_token1] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3769), + [anon_sym_LPAREN] = ACTIONS(3769), + [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_LBRACK] = ACTIONS(3769), + [anon_sym_LBRACK_PIPE] = ACTIONS(3767), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_LBRACE_PIPE] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3769), + [anon_sym_return_BANG] = ACTIONS(3767), + [anon_sym_yield] = ACTIONS(3769), + [anon_sym_yield_BANG] = ACTIONS(3767), + [anon_sym_lazy] = ACTIONS(3769), + [anon_sym_assert] = ACTIONS(3769), + [anon_sym_upcast] = ACTIONS(3769), + [anon_sym_downcast] = ACTIONS(3769), + [anon_sym_LT_AT] = ACTIONS(3769), + [anon_sym_LT_AT_AT] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3769), + [anon_sym_while] = ACTIONS(3769), + [anon_sym_if] = ACTIONS(3769), + [anon_sym_fun] = ACTIONS(3769), + [anon_sym_try] = ACTIONS(3769), + [anon_sym_match] = ACTIONS(3769), + [anon_sym_match_BANG] = ACTIONS(3767), + [anon_sym_function] = ACTIONS(3769), + [anon_sym_use] = ACTIONS(3769), + [anon_sym_use_BANG] = ACTIONS(3767), + [anon_sym_do_BANG] = ACTIONS(3767), + [anon_sym_begin] = ACTIONS(3769), + [anon_sym_SQUOTE] = ACTIONS(3767), + [anon_sym_static] = ACTIONS(3824), + [anon_sym_member] = ACTIONS(3826), + [anon_sym_abstract] = ACTIONS(3828), + [anon_sym_override] = ACTIONS(3830), + [anon_sym_default] = ACTIONS(3830), + [anon_sym_val] = ACTIONS(3832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3769), + [anon_sym_DQUOTE] = ACTIONS(3769), + [anon_sym_AT_DQUOTE] = ACTIONS(3767), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3767), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3767), + [sym_bool] = ACTIONS(3769), + [sym_unit] = ACTIONS(3767), + [aux_sym__identifier_or_op_token1] = ACTIONS(3767), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3769), + [anon_sym_PLUS] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_PLUS_DOT] = ACTIONS(3767), + [anon_sym_DASH_DOT] = ACTIONS(3767), + [anon_sym_PERCENT] = ACTIONS(3767), + [anon_sym_AMP_AMP] = ACTIONS(3767), + [anon_sym_TILDE] = ACTIONS(3767), + [aux_sym_prefix_op_token1] = ACTIONS(3767), + [sym_int] = ACTIONS(3769), + [sym_xint] = ACTIONS(3767), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3896), - [sym__dedent] = ACTIONS(3896), + [anon_sym_POUNDif] = ACTIONS(3767), + [sym__dedent] = ACTIONS(3767), }, - [2106] = { - [sym_xml_doc] = STATE(2106), - [sym_block_comment] = STATE(2106), - [sym_preproc_line] = STATE(2106), - [sym_identifier] = ACTIONS(3880), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_POUNDnowarn] = ACTIONS(3878), - [anon_sym_POUNDr] = ACTIONS(3878), - [anon_sym_POUNDload] = ACTIONS(3878), - [anon_sym_open] = ACTIONS(3880), - [anon_sym_LBRACK_LT] = ACTIONS(3878), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_and] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_let_BANG] = ACTIONS(3878), - [aux_sym_access_modifier_token1] = ACTIONS(3878), - [anon_sym_null] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_LBRACK_PIPE] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3880), - [anon_sym_LBRACE_PIPE] = ACTIONS(3878), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_return_BANG] = ACTIONS(3878), - [anon_sym_yield] = ACTIONS(3880), - [anon_sym_yield_BANG] = ACTIONS(3878), - [anon_sym_lazy] = ACTIONS(3880), - [anon_sym_assert] = ACTIONS(3880), - [anon_sym_upcast] = ACTIONS(3880), - [anon_sym_downcast] = ACTIONS(3880), - [anon_sym_LT_AT] = ACTIONS(3880), - [anon_sym_LT_AT_AT] = ACTIONS(3878), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_fun] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_match] = ACTIONS(3880), - [anon_sym_match_BANG] = ACTIONS(3878), - [anon_sym_function] = ACTIONS(3880), - [anon_sym_use] = ACTIONS(3880), - [anon_sym_use_BANG] = ACTIONS(3878), - [anon_sym_do_BANG] = ACTIONS(3878), - [anon_sym_begin] = ACTIONS(3880), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_member] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3880), - [anon_sym_override] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_val] = ACTIONS(3880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3880), - [anon_sym_DQUOTE] = ACTIONS(3880), - [anon_sym_AT_DQUOTE] = ACTIONS(3878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3878), - [sym_bool] = ACTIONS(3880), - [sym_unit] = ACTIONS(3878), - [aux_sym__identifier_or_op_token1] = ACTIONS(3878), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS_DOT] = ACTIONS(3878), - [anon_sym_DASH_DOT] = ACTIONS(3878), - [anon_sym_PERCENT] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [aux_sym_prefix_op_token1] = ACTIONS(3878), - [sym_int] = ACTIONS(3880), - [sym_xint] = ACTIONS(3878), + [2078] = { + [sym_xml_doc] = STATE(2078), + [sym_block_comment] = STATE(2078), + [sym_preproc_line] = STATE(2078), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_POUNDnowarn] = ACTIONS(2642), + [anon_sym_POUNDr] = ACTIONS(2642), + [anon_sym_POUNDload] = ACTIONS(2642), + [anon_sym_open] = ACTIONS(2640), + [anon_sym_LBRACK_LT] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_and] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [aux_sym_access_modifier_token1] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_LT_AT_AT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_member] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_val] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2642), + [aux_sym__identifier_or_op_token1] = ACTIONS(2642), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2642), + [anon_sym_DASH_DOT] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3878), - [sym__dedent] = ACTIONS(3878), + [anon_sym_POUNDif] = ACTIONS(2642), }, - [2107] = { - [sym_xml_doc] = STATE(2107), - [sym_block_comment] = STATE(2107), - [sym_preproc_line] = STATE(2107), - [ts_builtin_sym_end] = ACTIONS(3936), - [sym_identifier] = ACTIONS(3938), - [anon_sym_namespace] = ACTIONS(3938), - [anon_sym_module] = ACTIONS(3938), - [anon_sym_POUNDnowarn] = ACTIONS(3936), - [anon_sym_POUNDr] = ACTIONS(3936), - [anon_sym_POUNDload] = ACTIONS(3936), - [anon_sym_open] = ACTIONS(3938), - [anon_sym_LBRACK_LT] = ACTIONS(3936), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_type] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_let] = ACTIONS(3938), - [anon_sym_let_BANG] = ACTIONS(3936), - [aux_sym_access_modifier_token1] = ACTIONS(3936), - [anon_sym_null] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_LBRACK_PIPE] = ACTIONS(3936), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_LBRACE_PIPE] = ACTIONS(3936), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_return_BANG] = ACTIONS(3936), - [anon_sym_yield] = ACTIONS(3938), - [anon_sym_yield_BANG] = ACTIONS(3936), - [anon_sym_lazy] = ACTIONS(3938), - [anon_sym_assert] = ACTIONS(3938), - [anon_sym_upcast] = ACTIONS(3938), - [anon_sym_downcast] = ACTIONS(3938), - [anon_sym_LT_AT] = ACTIONS(3938), - [anon_sym_LT_AT_AT] = ACTIONS(3936), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_fun] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_match] = ACTIONS(3938), - [anon_sym_match_BANG] = ACTIONS(3936), - [anon_sym_function] = ACTIONS(3938), - [anon_sym_use] = ACTIONS(3938), - [anon_sym_use_BANG] = ACTIONS(3936), - [anon_sym_do_BANG] = ACTIONS(3936), - [anon_sym_begin] = ACTIONS(3938), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_member] = ACTIONS(3938), - [anon_sym_abstract] = ACTIONS(3938), - [anon_sym_override] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_val] = ACTIONS(3938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3938), - [anon_sym_DQUOTE] = ACTIONS(3938), - [anon_sym_AT_DQUOTE] = ACTIONS(3936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3936), - [sym_bool] = ACTIONS(3938), - [sym_unit] = ACTIONS(3936), - [aux_sym__identifier_or_op_token1] = ACTIONS(3936), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS_DOT] = ACTIONS(3936), - [anon_sym_DASH_DOT] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [aux_sym_prefix_op_token1] = ACTIONS(3936), - [sym_int] = ACTIONS(3938), - [sym_xint] = ACTIONS(3936), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [2079] = { + [sym_xml_doc] = STATE(2079), + [sym_block_comment] = STATE(2079), + [sym_preproc_line] = STATE(2079), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_POUNDnowarn] = ACTIONS(2677), + [anon_sym_POUNDr] = ACTIONS(2677), + [anon_sym_POUNDload] = ACTIONS(2677), + [anon_sym_open] = ACTIONS(2675), + [anon_sym_LBRACK_LT] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_and] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [aux_sym_access_modifier_token1] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_LT_AT_AT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_member] = ACTIONS(2675), + [anon_sym_interface] = ACTIONS(2675), + [anon_sym_abstract] = ACTIONS(2675), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_val] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2677), + [aux_sym__identifier_or_op_token1] = ACTIONS(2677), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2677), + [anon_sym_DASH_DOT] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3936), + [anon_sym_POUNDif] = ACTIONS(2677), }, - [2108] = { - [sym_xml_doc] = STATE(2108), - [sym_block_comment] = STATE(2108), - [sym_preproc_line] = STATE(2108), - [ts_builtin_sym_end] = ACTIONS(3940), - [sym_identifier] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_module] = ACTIONS(3942), - [anon_sym_POUNDnowarn] = ACTIONS(3940), - [anon_sym_POUNDr] = ACTIONS(3940), - [anon_sym_POUNDload] = ACTIONS(3940), - [anon_sym_open] = ACTIONS(3942), - [anon_sym_LBRACK_LT] = ACTIONS(3940), - [anon_sym_return] = ACTIONS(3942), - [anon_sym_type] = ACTIONS(3942), - [anon_sym_do] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3942), - [anon_sym_let] = ACTIONS(3942), - [anon_sym_let_BANG] = ACTIONS(3940), - [aux_sym_access_modifier_token1] = ACTIONS(3940), - [anon_sym_null] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_LBRACK_PIPE] = ACTIONS(3940), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_LBRACE_PIPE] = ACTIONS(3940), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_return_BANG] = ACTIONS(3940), - [anon_sym_yield] = ACTIONS(3942), - [anon_sym_yield_BANG] = ACTIONS(3940), - [anon_sym_lazy] = ACTIONS(3942), - [anon_sym_assert] = ACTIONS(3942), - [anon_sym_upcast] = ACTIONS(3942), - [anon_sym_downcast] = ACTIONS(3942), - [anon_sym_LT_AT] = ACTIONS(3942), - [anon_sym_LT_AT_AT] = ACTIONS(3940), - [anon_sym_for] = ACTIONS(3942), - [anon_sym_while] = ACTIONS(3942), - [anon_sym_if] = ACTIONS(3942), - [anon_sym_fun] = ACTIONS(3942), - [anon_sym_try] = ACTIONS(3942), - [anon_sym_match] = ACTIONS(3942), - [anon_sym_match_BANG] = ACTIONS(3940), - [anon_sym_function] = ACTIONS(3942), - [anon_sym_use] = ACTIONS(3942), - [anon_sym_use_BANG] = ACTIONS(3940), - [anon_sym_do_BANG] = ACTIONS(3940), - [anon_sym_begin] = ACTIONS(3942), - [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_member] = ACTIONS(3942), - [anon_sym_abstract] = ACTIONS(3942), - [anon_sym_override] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_val] = ACTIONS(3942), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_AT_DQUOTE] = ACTIONS(3940), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3940), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3940), - [sym_bool] = ACTIONS(3942), - [sym_unit] = ACTIONS(3940), - [aux_sym__identifier_or_op_token1] = ACTIONS(3940), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_PLUS_DOT] = ACTIONS(3940), - [anon_sym_DASH_DOT] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [aux_sym_prefix_op_token1] = ACTIONS(3940), - [sym_int] = ACTIONS(3942), - [sym_xint] = ACTIONS(3940), + [2080] = { + [sym_xml_doc] = STATE(2080), + [sym_block_comment] = STATE(2080), + [sym_preproc_line] = STATE(2080), + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2652), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_POUNDnowarn] = ACTIONS(2654), + [anon_sym_POUNDr] = ACTIONS(2654), + [anon_sym_POUNDload] = ACTIONS(2654), + [anon_sym_open] = ACTIONS(2652), + [anon_sym_LBRACK_LT] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_and] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [aux_sym_access_modifier_token1] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_LT_AT_AT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(3834), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_member] = ACTIONS(2652), + [anon_sym_interface] = ACTIONS(2652), + [anon_sym_abstract] = ACTIONS(2652), + [anon_sym_override] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_val] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2654), + [aux_sym__identifier_or_op_token1] = ACTIONS(2654), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2654), + [anon_sym_DASH_DOT] = ACTIONS(2654), + [anon_sym_PERCENT] = ACTIONS(2654), + [anon_sym_AMP_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3940), + [anon_sym_POUNDif] = ACTIONS(2654), }, - [2109] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2813), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2109), - [sym_block_comment] = STATE(2109), - [sym_preproc_line] = STATE(2109), - [aux_sym_attributes_repeat1] = STATE(2935), + [2081] = { + [sym_xml_doc] = STATE(2081), + [sym_block_comment] = STATE(2081), + [sym_preproc_line] = STATE(2081), + [sym_identifier] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_and] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [aux_sym_access_modifier_token1] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(3836), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_member] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_val] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), + }, + [2082] = { + [sym_attributes] = STATE(3766), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4660), + [sym_member_defn] = STATE(2195), + [sym_additional_constr_defn] = STATE(2191), + [sym_xml_doc] = STATE(2082), + [sym_block_comment] = STATE(2082), + [sym_preproc_line] = STATE(2082), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(3697), + [anon_sym_module] = ACTIONS(3697), + [anon_sym_POUNDnowarn] = ACTIONS(3695), + [anon_sym_POUNDr] = ACTIONS(3695), + [anon_sym_POUNDload] = ACTIONS(3695), + [anon_sym_open] = ACTIONS(3697), + [anon_sym_LBRACK_LT] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_type] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_and] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3695), + [aux_sym_access_modifier_token1] = ACTIONS(3702), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3838), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_SQUOTE] = ACTIONS(3695), + [anon_sym_static] = ACTIONS(3841), + [anon_sym_member] = ACTIONS(3844), + [anon_sym_abstract] = ACTIONS(3847), + [anon_sym_override] = ACTIONS(3850), + [anon_sym_default] = ACTIONS(3850), + [anon_sym_val] = ACTIONS(3853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3695), + [aux_sym__identifier_or_op_token1] = ACTIONS(3695), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3695), + [anon_sym_DASH_DOT] = ACTIONS(3695), + [anon_sym_PERCENT] = ACTIONS(3695), + [anon_sym_AMP_AMP] = ACTIONS(3695), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3695), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__dedent] = ACTIONS(3695), + }, + [2083] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2083), + [sym_block_comment] = STATE(2083), + [sym_preproc_line] = STATE(2083), + [aux_sym__compound_type_repeat1] = STATE(2088), [sym_identifier] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_POUNDnowarn] = ACTIONS(3736), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3738), [anon_sym_LBRACK_LT] = ACTIONS(3736), - [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_and] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3736), + [aux_sym_access_modifier_token1] = ACTIONS(3736), [anon_sym_null] = ACTIONS(3738), - [anon_sym__] = ACTIONS(3738), - [anon_sym_QMARK] = ACTIONS(3736), - [anon_sym_COLON_QMARK] = ACTIONS(3736), - [anon_sym_as] = ACTIONS(3738), [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3738), [anon_sym_LBRACK] = ACTIONS(3738), [anon_sym_LBRACK_PIPE] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_member] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_val] = ACTIONS(3738), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), [anon_sym_DQUOTE] = ACTIONS(3738), [anon_sym_AT_DQUOTE] = ACTIONS(3736), @@ -254510,2514 +250033,2862 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), [sym_bool] = ACTIONS(3738), [sym_unit] = ACTIONS(3736), + [aux_sym__identifier_or_op_token1] = ACTIONS(3736), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3736), + [anon_sym_DASH_DOT] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3736), [sym_int] = ACTIONS(3738), [sym_xint] = ACTIONS(3736), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__dedent] = ACTIONS(3736), }, - [2110] = { - [sym_xml_doc] = STATE(2110), - [sym_block_comment] = STATE(2110), - [sym_preproc_line] = STATE(2110), - [ts_builtin_sym_end] = ACTIONS(3608), - [sym_identifier] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_POUNDnowarn] = ACTIONS(3608), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3608), - [aux_sym_access_modifier_token1] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_member] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_val] = ACTIONS(3610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3608), - [aux_sym__identifier_or_op_token1] = ACTIONS(3608), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3608), - [anon_sym_DASH_DOT] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3608), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3608), + [2084] = { + [sym_xml_doc] = STATE(2084), + [sym_block_comment] = STATE(2084), + [sym_preproc_line] = STATE(2084), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_and] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [aux_sym_access_modifier_token1] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_member] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_val] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3608), + [anon_sym_POUNDif] = ACTIONS(2660), }, - [2111] = { - [sym_xml_doc] = STATE(2111), - [sym_block_comment] = STATE(2111), - [sym_preproc_line] = STATE(2111), - [ts_builtin_sym_end] = ACTIONS(3944), - [sym_identifier] = ACTIONS(3946), - [anon_sym_namespace] = ACTIONS(3946), - [anon_sym_module] = ACTIONS(3946), - [anon_sym_POUNDnowarn] = ACTIONS(3944), - [anon_sym_POUNDr] = ACTIONS(3944), - [anon_sym_POUNDload] = ACTIONS(3944), - [anon_sym_open] = ACTIONS(3946), - [anon_sym_LBRACK_LT] = ACTIONS(3944), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_type] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_let] = ACTIONS(3946), - [anon_sym_let_BANG] = ACTIONS(3944), - [aux_sym_access_modifier_token1] = ACTIONS(3944), - [anon_sym_null] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_LBRACK_PIPE] = ACTIONS(3944), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_LBRACE_PIPE] = ACTIONS(3944), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_return_BANG] = ACTIONS(3944), - [anon_sym_yield] = ACTIONS(3946), - [anon_sym_yield_BANG] = ACTIONS(3944), - [anon_sym_lazy] = ACTIONS(3946), - [anon_sym_assert] = ACTIONS(3946), - [anon_sym_upcast] = ACTIONS(3946), - [anon_sym_downcast] = ACTIONS(3946), - [anon_sym_LT_AT] = ACTIONS(3946), - [anon_sym_LT_AT_AT] = ACTIONS(3944), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_fun] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_match] = ACTIONS(3946), - [anon_sym_match_BANG] = ACTIONS(3944), - [anon_sym_function] = ACTIONS(3946), - [anon_sym_use] = ACTIONS(3946), - [anon_sym_use_BANG] = ACTIONS(3944), - [anon_sym_do_BANG] = ACTIONS(3944), - [anon_sym_begin] = ACTIONS(3946), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_member] = ACTIONS(3946), - [anon_sym_abstract] = ACTIONS(3946), - [anon_sym_override] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_val] = ACTIONS(3946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3946), - [anon_sym_DQUOTE] = ACTIONS(3946), - [anon_sym_AT_DQUOTE] = ACTIONS(3944), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3944), - [sym_bool] = ACTIONS(3946), - [sym_unit] = ACTIONS(3944), - [aux_sym__identifier_or_op_token1] = ACTIONS(3944), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS_DOT] = ACTIONS(3944), - [anon_sym_DASH_DOT] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [aux_sym_prefix_op_token1] = ACTIONS(3944), - [sym_int] = ACTIONS(3946), - [sym_xint] = ACTIONS(3944), + [2085] = { + [sym_xml_doc] = STATE(2085), + [sym_block_comment] = STATE(2085), + [sym_preproc_line] = STATE(2085), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_and] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [aux_sym_access_modifier_token1] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_member] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_val] = ACTIONS(2603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3944), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, - [2112] = { - [sym_xml_doc] = STATE(2112), - [sym_block_comment] = STATE(2112), - [sym_preproc_line] = STATE(2112), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3643), - [anon_sym_namespace] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_POUNDnowarn] = ACTIONS(3641), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_and] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3641), - [aux_sym_access_modifier_token1] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_SQUOTE] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3643), - [anon_sym_member] = ACTIONS(3643), - [anon_sym_abstract] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3643), - [anon_sym_default] = ACTIONS(3643), - [anon_sym_val] = ACTIONS(3643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3641), - [aux_sym__identifier_or_op_token1] = ACTIONS(3641), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3641), - [anon_sym_DASH_DOT] = ACTIONS(3641), - [anon_sym_PERCENT] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3641), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3641), + [2086] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2086), + [sym_block_comment] = STATE(2086), + [sym_preproc_line] = STATE(2086), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_POUNDnowarn] = ACTIONS(3732), + [anon_sym_POUNDr] = ACTIONS(3732), + [anon_sym_POUNDload] = ACTIONS(3732), + [anon_sym_open] = ACTIONS(3734), + [anon_sym_LBRACK_LT] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_type] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_and] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3732), + [aux_sym_access_modifier_token1] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_member] = ACTIONS(3734), + [anon_sym_abstract] = ACTIONS(3734), + [anon_sym_override] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_val] = ACTIONS(3734), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3732), + [aux_sym__identifier_or_op_token1] = ACTIONS(3732), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3732), + [anon_sym_DASH_DOT] = ACTIONS(3732), + [anon_sym_PERCENT] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3732), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3732), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3641), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), }, - [2113] = { - [sym_xml_doc] = STATE(2113), - [sym_block_comment] = STATE(2113), - [sym_preproc_line] = STATE(2113), - [sym_identifier] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_POUNDnowarn] = ACTIONS(3872), - [anon_sym_POUNDr] = ACTIONS(3872), - [anon_sym_POUNDload] = ACTIONS(3872), - [anon_sym_open] = ACTIONS(3874), - [anon_sym_LBRACK_LT] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_and] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_BANG] = ACTIONS(3872), - [aux_sym_access_modifier_token1] = ACTIONS(3872), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_COMMA] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LBRACK_PIPE] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_LBRACE_PIPE] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3874), - [anon_sym_return_BANG] = ACTIONS(3872), - [anon_sym_yield] = ACTIONS(3874), - [anon_sym_yield_BANG] = ACTIONS(3872), - [anon_sym_lazy] = ACTIONS(3874), - [anon_sym_assert] = ACTIONS(3874), - [anon_sym_upcast] = ACTIONS(3874), - [anon_sym_downcast] = ACTIONS(3874), - [anon_sym_LT_AT] = ACTIONS(3874), - [anon_sym_LT_AT_AT] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_fun] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_match_BANG] = ACTIONS(3872), - [anon_sym_function] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_use_BANG] = ACTIONS(3872), - [anon_sym_do_BANG] = ACTIONS(3872), - [anon_sym_begin] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3874), - [anon_sym_member] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3874), - [anon_sym_override] = ACTIONS(3874), - [anon_sym_default] = ACTIONS(3874), - [anon_sym_val] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_AT_DQUOTE] = ACTIONS(3872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [sym_bool] = ACTIONS(3874), - [sym_unit] = ACTIONS(3872), - [aux_sym__identifier_or_op_token1] = ACTIONS(3872), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3874), - [anon_sym_PLUS] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_PLUS_DOT] = ACTIONS(3872), - [anon_sym_DASH_DOT] = ACTIONS(3872), - [anon_sym_PERCENT] = ACTIONS(3872), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3872), - [aux_sym_prefix_op_token1] = ACTIONS(3872), - [sym_int] = ACTIONS(3874), - [sym_xint] = ACTIONS(3872), + [2087] = { + [sym_attributes] = STATE(3766), + [sym_attribute_set] = STATE(3174), + [sym_access_modifier] = STATE(4660), + [sym_member_defn] = STATE(2195), + [sym_additional_constr_defn] = STATE(2191), + [sym_xml_doc] = STATE(2087), + [sym_block_comment] = STATE(2087), + [sym_preproc_line] = STATE(2087), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym__member_defns_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(3749), + [anon_sym_module] = ACTIONS(3749), + [anon_sym_POUNDnowarn] = ACTIONS(3747), + [anon_sym_POUNDr] = ACTIONS(3747), + [anon_sym_POUNDload] = ACTIONS(3747), + [anon_sym_open] = ACTIONS(3749), + [anon_sym_LBRACK_LT] = ACTIONS(3747), + [anon_sym_return] = ACTIONS(3749), + [anon_sym_type] = ACTIONS(3749), + [anon_sym_do] = ACTIONS(3749), + [anon_sym_and] = ACTIONS(3749), + [anon_sym_let] = ACTIONS(3749), + [anon_sym_let_BANG] = ACTIONS(3747), + [aux_sym_access_modifier_token1] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3749), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym_LBRACK_PIPE] = ACTIONS(3747), + [anon_sym_LBRACE] = ACTIONS(3749), + [anon_sym_LBRACE_PIPE] = ACTIONS(3747), + [anon_sym_new] = ACTIONS(3749), + [anon_sym_return_BANG] = ACTIONS(3747), + [anon_sym_yield] = ACTIONS(3749), + [anon_sym_yield_BANG] = ACTIONS(3747), + [anon_sym_lazy] = ACTIONS(3749), + [anon_sym_assert] = ACTIONS(3749), + [anon_sym_upcast] = ACTIONS(3749), + [anon_sym_downcast] = ACTIONS(3749), + [anon_sym_LT_AT] = ACTIONS(3749), + [anon_sym_LT_AT_AT] = ACTIONS(3747), + [anon_sym_for] = ACTIONS(3749), + [anon_sym_while] = ACTIONS(3749), + [anon_sym_if] = ACTIONS(3749), + [anon_sym_fun] = ACTIONS(3749), + [anon_sym_try] = ACTIONS(3749), + [anon_sym_match] = ACTIONS(3749), + [anon_sym_match_BANG] = ACTIONS(3747), + [anon_sym_function] = ACTIONS(3749), + [anon_sym_use] = ACTIONS(3749), + [anon_sym_use_BANG] = ACTIONS(3747), + [anon_sym_do_BANG] = ACTIONS(3747), + [anon_sym_begin] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(3747), + [anon_sym_static] = ACTIONS(3824), + [anon_sym_member] = ACTIONS(3826), + [anon_sym_abstract] = ACTIONS(3828), + [anon_sym_override] = ACTIONS(3830), + [anon_sym_default] = ACTIONS(3830), + [anon_sym_val] = ACTIONS(3832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(3749), + [anon_sym_AT_DQUOTE] = ACTIONS(3747), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3747), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3747), + [sym_bool] = ACTIONS(3749), + [sym_unit] = ACTIONS(3747), + [aux_sym__identifier_or_op_token1] = ACTIONS(3747), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3749), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_PLUS_DOT] = ACTIONS(3747), + [anon_sym_DASH_DOT] = ACTIONS(3747), + [anon_sym_PERCENT] = ACTIONS(3747), + [anon_sym_AMP_AMP] = ACTIONS(3747), + [anon_sym_TILDE] = ACTIONS(3747), + [aux_sym_prefix_op_token1] = ACTIONS(3747), + [sym_int] = ACTIONS(3749), + [sym_xint] = ACTIONS(3747), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3872), - [sym__dedent] = ACTIONS(3872), + [anon_sym_POUNDif] = ACTIONS(3747), + [sym__dedent] = ACTIONS(3747), }, - [2114] = { - [sym_xml_doc] = STATE(2114), - [sym_block_comment] = STATE(2114), - [sym_preproc_line] = STATE(2114), - [ts_builtin_sym_end] = ACTIONS(3950), - [sym_identifier] = ACTIONS(3952), - [anon_sym_namespace] = ACTIONS(3952), - [anon_sym_module] = ACTIONS(3952), - [anon_sym_POUNDnowarn] = ACTIONS(3950), - [anon_sym_POUNDr] = ACTIONS(3950), - [anon_sym_POUNDload] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3952), - [anon_sym_LBRACK_LT] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3952), - [anon_sym_type] = ACTIONS(3952), - [anon_sym_do] = ACTIONS(3952), - [anon_sym_and] = ACTIONS(3952), - [anon_sym_let] = ACTIONS(3952), - [anon_sym_let_BANG] = ACTIONS(3950), - [aux_sym_access_modifier_token1] = ACTIONS(3950), - [anon_sym_null] = ACTIONS(3952), - [anon_sym_LPAREN] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LBRACK] = ACTIONS(3952), - [anon_sym_LBRACK_PIPE] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_LBRACE_PIPE] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3952), - [anon_sym_return_BANG] = ACTIONS(3950), - [anon_sym_yield] = ACTIONS(3952), - [anon_sym_yield_BANG] = ACTIONS(3950), - [anon_sym_lazy] = ACTIONS(3952), - [anon_sym_assert] = ACTIONS(3952), - [anon_sym_upcast] = ACTIONS(3952), - [anon_sym_downcast] = ACTIONS(3952), - [anon_sym_LT_AT] = ACTIONS(3952), - [anon_sym_LT_AT_AT] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3952), - [anon_sym_while] = ACTIONS(3952), - [anon_sym_if] = ACTIONS(3952), - [anon_sym_fun] = ACTIONS(3952), - [anon_sym_try] = ACTIONS(3952), - [anon_sym_match] = ACTIONS(3952), - [anon_sym_match_BANG] = ACTIONS(3950), - [anon_sym_function] = ACTIONS(3952), - [anon_sym_use] = ACTIONS(3952), - [anon_sym_use_BANG] = ACTIONS(3950), - [anon_sym_do_BANG] = ACTIONS(3950), - [anon_sym_begin] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3952), - [anon_sym_member] = ACTIONS(3952), - [anon_sym_abstract] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_default] = ACTIONS(3952), - [anon_sym_val] = ACTIONS(3952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [anon_sym_AT_DQUOTE] = ACTIONS(3950), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3950), - [sym_bool] = ACTIONS(3952), - [sym_unit] = ACTIONS(3950), - [aux_sym__identifier_or_op_token1] = ACTIONS(3950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_PLUS_DOT] = ACTIONS(3950), - [anon_sym_DASH_DOT] = ACTIONS(3950), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_TILDE] = ACTIONS(3950), - [aux_sym_prefix_op_token1] = ACTIONS(3950), - [sym_int] = ACTIONS(3952), - [sym_xint] = ACTIONS(3950), + [2088] = { + [sym_xml_doc] = STATE(2088), + [sym_block_comment] = STATE(2088), + [sym_preproc_line] = STATE(2088), + [aux_sym__compound_type_repeat1] = STATE(2065), + [sym_identifier] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_POUNDnowarn] = ACTIONS(2589), + [anon_sym_POUNDr] = ACTIONS(2589), + [anon_sym_POUNDload] = ACTIONS(2589), + [anon_sym_open] = ACTIONS(2587), + [anon_sym_LBRACK_LT] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_and] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [aux_sym_access_modifier_token1] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_LT_AT_AT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_member] = ACTIONS(2587), + [anon_sym_interface] = ACTIONS(2587), + [anon_sym_abstract] = ACTIONS(2587), + [anon_sym_override] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_val] = ACTIONS(2587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2589), + [aux_sym__identifier_or_op_token1] = ACTIONS(2589), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2589), + [anon_sym_DASH_DOT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3950), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__dedent] = ACTIONS(2589), }, - [2115] = { - [sym_xml_doc] = STATE(2115), - [sym_block_comment] = STATE(2115), - [sym_preproc_line] = STATE(2115), - [ts_builtin_sym_end] = ACTIONS(3954), - [sym_identifier] = ACTIONS(3956), - [anon_sym_namespace] = ACTIONS(3956), - [anon_sym_module] = ACTIONS(3956), - [anon_sym_POUNDnowarn] = ACTIONS(3954), - [anon_sym_POUNDr] = ACTIONS(3954), - [anon_sym_POUNDload] = ACTIONS(3954), - [anon_sym_open] = ACTIONS(3956), - [anon_sym_LBRACK_LT] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3956), - [anon_sym_type] = ACTIONS(3956), - [anon_sym_do] = ACTIONS(3956), - [anon_sym_and] = ACTIONS(3956), - [anon_sym_let] = ACTIONS(3956), - [anon_sym_let_BANG] = ACTIONS(3954), - [aux_sym_access_modifier_token1] = ACTIONS(3954), - [anon_sym_null] = ACTIONS(3956), - [anon_sym_LPAREN] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3956), - [anon_sym_LBRACK] = ACTIONS(3956), - [anon_sym_LBRACK_PIPE] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_LBRACE_PIPE] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3956), - [anon_sym_return_BANG] = ACTIONS(3954), - [anon_sym_yield] = ACTIONS(3956), - [anon_sym_yield_BANG] = ACTIONS(3954), - [anon_sym_lazy] = ACTIONS(3956), - [anon_sym_assert] = ACTIONS(3956), - [anon_sym_upcast] = ACTIONS(3956), - [anon_sym_downcast] = ACTIONS(3956), - [anon_sym_LT_AT] = ACTIONS(3956), - [anon_sym_LT_AT_AT] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3956), - [anon_sym_while] = ACTIONS(3956), - [anon_sym_if] = ACTIONS(3956), - [anon_sym_fun] = ACTIONS(3956), - [anon_sym_try] = ACTIONS(3956), - [anon_sym_match] = ACTIONS(3956), - [anon_sym_match_BANG] = ACTIONS(3954), - [anon_sym_function] = ACTIONS(3956), - [anon_sym_use] = ACTIONS(3956), - [anon_sym_use_BANG] = ACTIONS(3954), - [anon_sym_do_BANG] = ACTIONS(3954), - [anon_sym_begin] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3956), - [anon_sym_member] = ACTIONS(3956), - [anon_sym_abstract] = ACTIONS(3956), - [anon_sym_override] = ACTIONS(3956), - [anon_sym_default] = ACTIONS(3956), - [anon_sym_val] = ACTIONS(3956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [anon_sym_AT_DQUOTE] = ACTIONS(3954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3954), - [sym_bool] = ACTIONS(3956), - [sym_unit] = ACTIONS(3954), - [aux_sym__identifier_or_op_token1] = ACTIONS(3954), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3956), - [anon_sym_PLUS] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3956), - [anon_sym_PLUS_DOT] = ACTIONS(3954), - [anon_sym_DASH_DOT] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_TILDE] = ACTIONS(3954), - [aux_sym_prefix_op_token1] = ACTIONS(3954), - [sym_int] = ACTIONS(3956), - [sym_xint] = ACTIONS(3954), + [2089] = { + [sym_type_arguments] = STATE(2097), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2089), + [sym_block_comment] = STATE(2089), + [sym_preproc_line] = STATE(2089), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_POUNDnowarn] = ACTIONS(3728), + [anon_sym_POUNDr] = ACTIONS(3728), + [anon_sym_POUNDload] = ACTIONS(3728), + [anon_sym_open] = ACTIONS(3730), + [anon_sym_LBRACK_LT] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_type] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_and] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3728), + [aux_sym_access_modifier_token1] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_member] = ACTIONS(3730), + [anon_sym_abstract] = ACTIONS(3730), + [anon_sym_override] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_val] = ACTIONS(3730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3728), + [aux_sym__identifier_or_op_token1] = ACTIONS(3728), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3728), + [anon_sym_DASH_DOT] = ACTIONS(3728), + [anon_sym_PERCENT] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3728), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3728), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3954), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__dedent] = ACTIONS(3728), }, - [2116] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3861), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2116), - [sym_block_comment] = STATE(2116), - [sym_preproc_line] = STATE(2116), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_COLON] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_as] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_COLON_COLON] = ACTIONS(3736), - [anon_sym_PIPE] = ACTIONS(3736), - [anon_sym_AMP] = ACTIONS(3736), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_in] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2090] = { + [sym_xml_doc] = STATE(2090), + [sym_block_comment] = STATE(2090), + [sym_preproc_line] = STATE(2090), + [sym_identifier] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_POUNDnowarn] = ACTIONS(2654), + [anon_sym_POUNDr] = ACTIONS(2654), + [anon_sym_POUNDload] = ACTIONS(2654), + [anon_sym_open] = ACTIONS(2652), + [anon_sym_LBRACK_LT] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_and] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [aux_sym_access_modifier_token1] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_LT_AT_AT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(3856), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2652), + [anon_sym_member] = ACTIONS(2652), + [anon_sym_interface] = ACTIONS(2652), + [anon_sym_abstract] = ACTIONS(2652), + [anon_sym_override] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_val] = ACTIONS(2652), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2654), + [aux_sym__identifier_or_op_token1] = ACTIONS(2654), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2654), + [anon_sym_DASH_DOT] = ACTIONS(2654), + [anon_sym_PERCENT] = ACTIONS(2654), + [anon_sym_AMP_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__dedent] = ACTIONS(2654), }, - [2117] = { - [sym_xml_doc] = STATE(2117), - [sym_block_comment] = STATE(2117), - [sym_preproc_line] = STATE(2117), - [ts_builtin_sym_end] = ACTIONS(3958), - [sym_identifier] = ACTIONS(3960), - [anon_sym_namespace] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_POUNDnowarn] = ACTIONS(3958), - [anon_sym_POUNDr] = ACTIONS(3958), - [anon_sym_POUNDload] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3960), - [anon_sym_LBRACK_LT] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_type] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_and] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_BANG] = ACTIONS(3958), - [aux_sym_access_modifier_token1] = ACTIONS(3958), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LBRACK_PIPE] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_LBRACE_PIPE] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3960), - [anon_sym_return_BANG] = ACTIONS(3958), - [anon_sym_yield] = ACTIONS(3960), - [anon_sym_yield_BANG] = ACTIONS(3958), - [anon_sym_lazy] = ACTIONS(3960), - [anon_sym_assert] = ACTIONS(3960), - [anon_sym_upcast] = ACTIONS(3960), - [anon_sym_downcast] = ACTIONS(3960), - [anon_sym_LT_AT] = ACTIONS(3960), - [anon_sym_LT_AT_AT] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_fun] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_match_BANG] = ACTIONS(3958), - [anon_sym_function] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_use_BANG] = ACTIONS(3958), - [anon_sym_do_BANG] = ACTIONS(3958), - [anon_sym_begin] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3960), - [anon_sym_member] = ACTIONS(3960), - [anon_sym_abstract] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_default] = ACTIONS(3960), - [anon_sym_val] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [anon_sym_AT_DQUOTE] = ACTIONS(3958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3958), - [sym_bool] = ACTIONS(3960), - [sym_unit] = ACTIONS(3958), - [aux_sym__identifier_or_op_token1] = ACTIONS(3958), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3960), - [anon_sym_PLUS] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_PLUS_DOT] = ACTIONS(3958), - [anon_sym_DASH_DOT] = ACTIONS(3958), - [anon_sym_PERCENT] = ACTIONS(3958), - [anon_sym_AMP_AMP] = ACTIONS(3958), - [anon_sym_TILDE] = ACTIONS(3958), - [aux_sym_prefix_op_token1] = ACTIONS(3958), - [sym_int] = ACTIONS(3960), - [sym_xint] = ACTIONS(3958), + [2091] = { + [sym_xml_doc] = STATE(2091), + [sym_block_comment] = STATE(2091), + [sym_preproc_line] = STATE(2091), + [sym_identifier] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_POUNDnowarn] = ACTIONS(2664), + [anon_sym_POUNDr] = ACTIONS(2664), + [anon_sym_POUNDload] = ACTIONS(2664), + [anon_sym_open] = ACTIONS(2662), + [anon_sym_LBRACK_LT] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_and] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [aux_sym_access_modifier_token1] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_LT_AT_AT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_member] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_val] = ACTIONS(2662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2664), + [aux_sym__identifier_or_op_token1] = ACTIONS(2664), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2664), + [anon_sym_DASH_DOT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3958), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__dedent] = ACTIONS(2664), }, - [2118] = { - [sym_xml_doc] = STATE(2118), - [sym_block_comment] = STATE(2118), - [sym_preproc_line] = STATE(2118), - [ts_builtin_sym_end] = ACTIONS(3962), - [sym_identifier] = ACTIONS(3964), - [anon_sym_namespace] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_POUNDnowarn] = ACTIONS(3962), - [anon_sym_POUNDr] = ACTIONS(3962), - [anon_sym_POUNDload] = ACTIONS(3962), - [anon_sym_open] = ACTIONS(3964), - [anon_sym_LBRACK_LT] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_type] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_BANG] = ACTIONS(3962), - [aux_sym_access_modifier_token1] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LBRACK_PIPE] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_LBRACE_PIPE] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3964), - [anon_sym_return_BANG] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3964), - [anon_sym_yield_BANG] = ACTIONS(3962), - [anon_sym_lazy] = ACTIONS(3964), - [anon_sym_assert] = ACTIONS(3964), - [anon_sym_upcast] = ACTIONS(3964), - [anon_sym_downcast] = ACTIONS(3964), - [anon_sym_LT_AT] = ACTIONS(3964), - [anon_sym_LT_AT_AT] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_fun] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_match_BANG] = ACTIONS(3962), - [anon_sym_function] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_use_BANG] = ACTIONS(3962), - [anon_sym_do_BANG] = ACTIONS(3962), - [anon_sym_begin] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3964), - [anon_sym_member] = ACTIONS(3964), - [anon_sym_abstract] = ACTIONS(3964), - [anon_sym_override] = ACTIONS(3964), - [anon_sym_default] = ACTIONS(3964), - [anon_sym_val] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [anon_sym_AT_DQUOTE] = ACTIONS(3962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3962), - [sym_bool] = ACTIONS(3964), - [sym_unit] = ACTIONS(3962), - [aux_sym__identifier_or_op_token1] = ACTIONS(3962), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_PLUS_DOT] = ACTIONS(3962), - [anon_sym_DASH_DOT] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_TILDE] = ACTIONS(3962), - [aux_sym_prefix_op_token1] = ACTIONS(3962), - [sym_int] = ACTIONS(3964), - [sym_xint] = ACTIONS(3962), + [2092] = { + [sym_xml_doc] = STATE(2092), + [sym_block_comment] = STATE(2092), + [sym_preproc_line] = STATE(2092), + [sym_identifier] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_POUNDnowarn] = ACTIONS(2621), + [anon_sym_POUNDr] = ACTIONS(2621), + [anon_sym_POUNDload] = ACTIONS(2621), + [anon_sym_open] = ACTIONS(2615), + [anon_sym_LBRACK_LT] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [aux_sym_access_modifier_token1] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_LT_AT_AT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_member] = ACTIONS(2615), + [anon_sym_interface] = ACTIONS(2615), + [anon_sym_abstract] = ACTIONS(2615), + [anon_sym_override] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_val] = ACTIONS(2615), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2621), + [aux_sym__identifier_or_op_token1] = ACTIONS(2621), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2621), + [anon_sym_DASH_DOT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3962), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__dedent] = ACTIONS(2621), }, - [2119] = { - [sym_xml_doc] = STATE(2119), - [sym_block_comment] = STATE(2119), - [sym_preproc_line] = STATE(2119), - [sym_identifier] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_POUNDnowarn] = ACTIONS(3866), - [anon_sym_POUNDr] = ACTIONS(3866), - [anon_sym_POUNDload] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_LBRACK_LT] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_type] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_and] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_BANG] = ACTIONS(3866), - [aux_sym_access_modifier_token1] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3966), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_LBRACK_PIPE] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACE_PIPE] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_return_BANG] = ACTIONS(3866), - [anon_sym_yield] = ACTIONS(3868), - [anon_sym_yield_BANG] = ACTIONS(3866), - [anon_sym_lazy] = ACTIONS(3868), - [anon_sym_assert] = ACTIONS(3868), - [anon_sym_upcast] = ACTIONS(3868), - [anon_sym_downcast] = ACTIONS(3868), - [anon_sym_LT_AT] = ACTIONS(3868), - [anon_sym_LT_AT_AT] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_fun] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_match_BANG] = ACTIONS(3866), - [anon_sym_function] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_use_BANG] = ACTIONS(3866), - [anon_sym_do_BANG] = ACTIONS(3866), - [anon_sym_begin] = ACTIONS(3868), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_member] = ACTIONS(3868), - [anon_sym_abstract] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_val] = ACTIONS(3868), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3868), - [anon_sym_DQUOTE] = ACTIONS(3868), - [anon_sym_AT_DQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [sym_bool] = ACTIONS(3868), - [sym_unit] = ACTIONS(3866), - [aux_sym__identifier_or_op_token1] = ACTIONS(3866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS_DOT] = ACTIONS(3866), - [anon_sym_DASH_DOT] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [aux_sym_prefix_op_token1] = ACTIONS(3866), - [sym_int] = ACTIONS(3868), - [sym_xint] = ACTIONS(3866), + [2093] = { + [sym_xml_doc] = STATE(2093), + [sym_block_comment] = STATE(2093), + [sym_preproc_line] = STATE(2093), + [sym_identifier] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_POUNDnowarn] = ACTIONS(2642), + [anon_sym_POUNDr] = ACTIONS(2642), + [anon_sym_POUNDload] = ACTIONS(2642), + [anon_sym_open] = ACTIONS(2640), + [anon_sym_LBRACK_LT] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_and] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [aux_sym_access_modifier_token1] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_LT_AT_AT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_member] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_val] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2642), + [aux_sym__identifier_or_op_token1] = ACTIONS(2642), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2642), + [anon_sym_DASH_DOT] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3866), - [sym__dedent] = ACTIONS(3866), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__dedent] = ACTIONS(2642), }, - [2120] = { - [sym_xml_doc] = STATE(2120), - [sym_block_comment] = STATE(2120), - [sym_preproc_line] = STATE(2120), - [ts_builtin_sym_end] = ACTIONS(3968), - [sym_identifier] = ACTIONS(3970), - [anon_sym_namespace] = ACTIONS(3970), - [anon_sym_module] = ACTIONS(3970), - [anon_sym_POUNDnowarn] = ACTIONS(3968), - [anon_sym_POUNDr] = ACTIONS(3968), - [anon_sym_POUNDload] = ACTIONS(3968), - [anon_sym_open] = ACTIONS(3970), - [anon_sym_LBRACK_LT] = ACTIONS(3968), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_type] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3970), - [anon_sym_let_BANG] = ACTIONS(3968), - [aux_sym_access_modifier_token1] = ACTIONS(3968), - [anon_sym_null] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_LBRACK_PIPE] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_LBRACE_PIPE] = ACTIONS(3968), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_return_BANG] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3970), - [anon_sym_yield_BANG] = ACTIONS(3968), - [anon_sym_lazy] = ACTIONS(3970), - [anon_sym_assert] = ACTIONS(3970), - [anon_sym_upcast] = ACTIONS(3970), - [anon_sym_downcast] = ACTIONS(3970), - [anon_sym_LT_AT] = ACTIONS(3970), - [anon_sym_LT_AT_AT] = ACTIONS(3968), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_fun] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_match] = ACTIONS(3970), - [anon_sym_match_BANG] = ACTIONS(3968), - [anon_sym_function] = ACTIONS(3970), - [anon_sym_use] = ACTIONS(3970), - [anon_sym_use_BANG] = ACTIONS(3968), - [anon_sym_do_BANG] = ACTIONS(3968), - [anon_sym_begin] = ACTIONS(3970), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_member] = ACTIONS(3970), - [anon_sym_abstract] = ACTIONS(3970), - [anon_sym_override] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_val] = ACTIONS(3970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3970), - [anon_sym_DQUOTE] = ACTIONS(3970), - [anon_sym_AT_DQUOTE] = ACTIONS(3968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), - [sym_bool] = ACTIONS(3970), - [sym_unit] = ACTIONS(3968), - [aux_sym__identifier_or_op_token1] = ACTIONS(3968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS_DOT] = ACTIONS(3968), - [anon_sym_DASH_DOT] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [aux_sym_prefix_op_token1] = ACTIONS(3968), - [sym_int] = ACTIONS(3970), - [sym_xint] = ACTIONS(3968), + [2094] = { + [sym_xml_doc] = STATE(2094), + [sym_block_comment] = STATE(2094), + [sym_preproc_line] = STATE(2094), + [sym_identifier] = ACTIONS(2636), + [anon_sym_module] = ACTIONS(2636), + [anon_sym_POUNDnowarn] = ACTIONS(2638), + [anon_sym_POUNDr] = ACTIONS(2638), + [anon_sym_POUNDload] = ACTIONS(2638), + [anon_sym_open] = ACTIONS(2636), + [anon_sym_LBRACK_LT] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_and] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [aux_sym_access_modifier_token1] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_LT_AT_AT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_member] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_override] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_val] = ACTIONS(2636), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2638), + [aux_sym__identifier_or_op_token1] = ACTIONS(2638), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2638), + [anon_sym_DASH_DOT] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3968), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__dedent] = ACTIONS(2638), }, - [2121] = { - [sym_xml_doc] = STATE(2121), - [sym_block_comment] = STATE(2121), - [sym_preproc_line] = STATE(2121), - [ts_builtin_sym_end] = ACTIONS(3972), - [sym_identifier] = ACTIONS(3974), - [anon_sym_namespace] = ACTIONS(3974), - [anon_sym_module] = ACTIONS(3974), - [anon_sym_POUNDnowarn] = ACTIONS(3972), - [anon_sym_POUNDr] = ACTIONS(3972), - [anon_sym_POUNDload] = ACTIONS(3972), - [anon_sym_open] = ACTIONS(3974), - [anon_sym_LBRACK_LT] = ACTIONS(3972), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_type] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3974), - [anon_sym_let_BANG] = ACTIONS(3972), - [aux_sym_access_modifier_token1] = ACTIONS(3972), - [anon_sym_null] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_LBRACK_PIPE] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_LBRACE_PIPE] = ACTIONS(3972), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_return_BANG] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3974), - [anon_sym_yield_BANG] = ACTIONS(3972), - [anon_sym_lazy] = ACTIONS(3974), - [anon_sym_assert] = ACTIONS(3974), - [anon_sym_upcast] = ACTIONS(3974), - [anon_sym_downcast] = ACTIONS(3974), - [anon_sym_LT_AT] = ACTIONS(3974), - [anon_sym_LT_AT_AT] = ACTIONS(3972), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_fun] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_match] = ACTIONS(3974), - [anon_sym_match_BANG] = ACTIONS(3972), - [anon_sym_function] = ACTIONS(3974), - [anon_sym_use] = ACTIONS(3974), - [anon_sym_use_BANG] = ACTIONS(3972), - [anon_sym_do_BANG] = ACTIONS(3972), - [anon_sym_begin] = ACTIONS(3974), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_member] = ACTIONS(3974), - [anon_sym_abstract] = ACTIONS(3974), - [anon_sym_override] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_val] = ACTIONS(3974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3974), - [anon_sym_DQUOTE] = ACTIONS(3974), - [anon_sym_AT_DQUOTE] = ACTIONS(3972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3972), - [sym_bool] = ACTIONS(3974), - [sym_unit] = ACTIONS(3972), - [aux_sym__identifier_or_op_token1] = ACTIONS(3972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS_DOT] = ACTIONS(3972), - [anon_sym_DASH_DOT] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [aux_sym_prefix_op_token1] = ACTIONS(3972), - [sym_int] = ACTIONS(3974), - [sym_xint] = ACTIONS(3972), + [2095] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3528), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2095), + [sym_block_comment] = STATE(2095), + [sym_preproc_line] = STATE(2095), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_LT2] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3972), }, - [2122] = { - [sym_xml_doc] = STATE(2122), - [sym_block_comment] = STATE(2122), - [sym_preproc_line] = STATE(2122), - [sym_identifier] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_POUNDnowarn] = ACTIONS(3866), - [anon_sym_POUNDr] = ACTIONS(3866), - [anon_sym_POUNDload] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_LBRACK_LT] = ACTIONS(3866), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_type] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_and] = ACTIONS(3868), - [anon_sym_let] = ACTIONS(3868), - [anon_sym_let_BANG] = ACTIONS(3866), - [aux_sym_access_modifier_token1] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3868), - [anon_sym_LPAREN] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_LBRACK_PIPE] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACE_PIPE] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_return_BANG] = ACTIONS(3866), - [anon_sym_yield] = ACTIONS(3868), - [anon_sym_yield_BANG] = ACTIONS(3866), - [anon_sym_lazy] = ACTIONS(3868), - [anon_sym_assert] = ACTIONS(3868), - [anon_sym_upcast] = ACTIONS(3868), - [anon_sym_downcast] = ACTIONS(3868), - [anon_sym_LT_AT] = ACTIONS(3868), - [anon_sym_LT_AT_AT] = ACTIONS(3866), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_fun] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_match] = ACTIONS(3868), - [anon_sym_match_BANG] = ACTIONS(3866), - [anon_sym_function] = ACTIONS(3868), - [anon_sym_use] = ACTIONS(3868), - [anon_sym_use_BANG] = ACTIONS(3866), - [anon_sym_do_BANG] = ACTIONS(3866), - [anon_sym_begin] = ACTIONS(3868), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_member] = ACTIONS(3868), - [anon_sym_abstract] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_val] = ACTIONS(3868), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3868), - [anon_sym_DQUOTE] = ACTIONS(3868), - [anon_sym_AT_DQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3866), - [sym_bool] = ACTIONS(3868), - [sym_unit] = ACTIONS(3866), - [aux_sym__identifier_or_op_token1] = ACTIONS(3866), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS_DOT] = ACTIONS(3866), - [anon_sym_DASH_DOT] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [aux_sym_prefix_op_token1] = ACTIONS(3866), - [sym_int] = ACTIONS(3868), - [sym_xint] = ACTIONS(3866), + [2096] = { + [sym_xml_doc] = STATE(2096), + [sym_block_comment] = STATE(2096), + [sym_preproc_line] = STATE(2096), + [sym_identifier] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_POUNDnowarn] = ACTIONS(2660), + [anon_sym_POUNDr] = ACTIONS(2660), + [anon_sym_POUNDload] = ACTIONS(2660), + [anon_sym_open] = ACTIONS(2658), + [anon_sym_LBRACK_LT] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_and] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [aux_sym_access_modifier_token1] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_member] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_val] = ACTIONS(2658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3866), - [sym__dedent] = ACTIONS(3866), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__dedent] = ACTIONS(2660), }, - [2123] = { - [sym_xml_doc] = STATE(2123), - [sym_block_comment] = STATE(2123), - [sym_preproc_line] = STATE(2123), - [sym_identifier] = ACTIONS(3874), - [anon_sym_module] = ACTIONS(3874), - [anon_sym_POUNDnowarn] = ACTIONS(3872), - [anon_sym_POUNDr] = ACTIONS(3872), - [anon_sym_POUNDload] = ACTIONS(3872), - [anon_sym_open] = ACTIONS(3874), - [anon_sym_LBRACK_LT] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3874), - [anon_sym_do] = ACTIONS(3874), - [anon_sym_and] = ACTIONS(3874), - [anon_sym_let] = ACTIONS(3874), - [anon_sym_let_BANG] = ACTIONS(3872), - [aux_sym_access_modifier_token1] = ACTIONS(3872), - [anon_sym_null] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3874), - [anon_sym_LBRACK_PIPE] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_LBRACE_PIPE] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3874), - [anon_sym_return_BANG] = ACTIONS(3872), - [anon_sym_yield] = ACTIONS(3874), - [anon_sym_yield_BANG] = ACTIONS(3872), - [anon_sym_lazy] = ACTIONS(3874), - [anon_sym_assert] = ACTIONS(3874), - [anon_sym_upcast] = ACTIONS(3874), - [anon_sym_downcast] = ACTIONS(3874), - [anon_sym_LT_AT] = ACTIONS(3874), - [anon_sym_LT_AT_AT] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3874), - [anon_sym_while] = ACTIONS(3874), - [anon_sym_if] = ACTIONS(3874), - [anon_sym_fun] = ACTIONS(3874), - [anon_sym_try] = ACTIONS(3874), - [anon_sym_match] = ACTIONS(3874), - [anon_sym_match_BANG] = ACTIONS(3872), - [anon_sym_function] = ACTIONS(3874), - [anon_sym_use] = ACTIONS(3874), - [anon_sym_use_BANG] = ACTIONS(3872), - [anon_sym_do_BANG] = ACTIONS(3872), - [anon_sym_begin] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3874), - [anon_sym_member] = ACTIONS(3874), - [anon_sym_abstract] = ACTIONS(3874), - [anon_sym_override] = ACTIONS(3874), - [anon_sym_default] = ACTIONS(3874), - [anon_sym_val] = ACTIONS(3874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_AT_DQUOTE] = ACTIONS(3872), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), - [sym_bool] = ACTIONS(3874), - [sym_unit] = ACTIONS(3872), - [aux_sym__identifier_or_op_token1] = ACTIONS(3872), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3874), - [anon_sym_PLUS] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3874), - [anon_sym_PLUS_DOT] = ACTIONS(3872), - [anon_sym_DASH_DOT] = ACTIONS(3872), - [anon_sym_PERCENT] = ACTIONS(3872), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3872), - [aux_sym_prefix_op_token1] = ACTIONS(3872), - [sym_int] = ACTIONS(3874), - [sym_xint] = ACTIONS(3872), + [2097] = { + [sym_xml_doc] = STATE(2097), + [sym_block_comment] = STATE(2097), + [sym_preproc_line] = STATE(2097), + [sym_identifier] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_POUNDnowarn] = ACTIONS(2677), + [anon_sym_POUNDr] = ACTIONS(2677), + [anon_sym_POUNDload] = ACTIONS(2677), + [anon_sym_open] = ACTIONS(2675), + [anon_sym_LBRACK_LT] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_and] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [aux_sym_access_modifier_token1] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_LT_AT_AT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_member] = ACTIONS(2675), + [anon_sym_interface] = ACTIONS(2675), + [anon_sym_abstract] = ACTIONS(2675), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_val] = ACTIONS(2675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2677), + [aux_sym__identifier_or_op_token1] = ACTIONS(2677), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2677), + [anon_sym_DASH_DOT] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3872), - [sym__dedent] = ACTIONS(3872), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__dedent] = ACTIONS(2677), }, - [2124] = { - [sym_xml_doc] = STATE(2124), - [sym_block_comment] = STATE(2124), - [sym_preproc_line] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_module] = ACTIONS(3892), - [anon_sym_POUNDnowarn] = ACTIONS(3890), - [anon_sym_POUNDr] = ACTIONS(3890), - [anon_sym_POUNDload] = ACTIONS(3890), - [anon_sym_open] = ACTIONS(3892), - [anon_sym_LBRACK_LT] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3892), - [anon_sym_type] = ACTIONS(3892), - [anon_sym_do] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_let] = ACTIONS(3892), - [anon_sym_let_BANG] = ACTIONS(3890), - [aux_sym_access_modifier_token1] = ACTIONS(3890), - [anon_sym_null] = ACTIONS(3892), - [anon_sym_LPAREN] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_LBRACK_PIPE] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_LBRACE_PIPE] = ACTIONS(3890), - [anon_sym_with] = ACTIONS(3980), - [anon_sym_new] = ACTIONS(3892), - [anon_sym_return_BANG] = ACTIONS(3890), - [anon_sym_yield] = ACTIONS(3892), - [anon_sym_yield_BANG] = ACTIONS(3890), - [anon_sym_lazy] = ACTIONS(3892), - [anon_sym_assert] = ACTIONS(3892), - [anon_sym_upcast] = ACTIONS(3892), - [anon_sym_downcast] = ACTIONS(3892), - [anon_sym_LT_AT] = ACTIONS(3892), - [anon_sym_LT_AT_AT] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3892), - [anon_sym_while] = ACTIONS(3892), - [anon_sym_if] = ACTIONS(3892), - [anon_sym_fun] = ACTIONS(3892), - [anon_sym_try] = ACTIONS(3892), - [anon_sym_match] = ACTIONS(3892), - [anon_sym_match_BANG] = ACTIONS(3890), - [anon_sym_function] = ACTIONS(3892), - [anon_sym_use] = ACTIONS(3892), - [anon_sym_use_BANG] = ACTIONS(3890), - [anon_sym_do_BANG] = ACTIONS(3890), - [anon_sym_begin] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_member] = ACTIONS(3892), - [anon_sym_abstract] = ACTIONS(3892), - [anon_sym_override] = ACTIONS(3892), - [anon_sym_default] = ACTIONS(3892), - [anon_sym_val] = ACTIONS(3892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [anon_sym_AT_DQUOTE] = ACTIONS(3890), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), - [sym_bool] = ACTIONS(3892), - [sym_unit] = ACTIONS(3890), - [aux_sym__identifier_or_op_token1] = ACTIONS(3890), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS_DOT] = ACTIONS(3890), - [anon_sym_DASH_DOT] = ACTIONS(3890), - [anon_sym_PERCENT] = ACTIONS(3890), - [anon_sym_AMP_AMP] = ACTIONS(3890), - [anon_sym_TILDE] = ACTIONS(3890), - [aux_sym_prefix_op_token1] = ACTIONS(3890), - [sym_int] = ACTIONS(3892), - [sym_xint] = ACTIONS(3890), + [2098] = { + [sym_xml_doc] = STATE(2098), + [sym_block_comment] = STATE(2098), + [sym_preproc_line] = STATE(2098), + [sym_identifier] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2628), + [anon_sym_POUNDnowarn] = ACTIONS(2630), + [anon_sym_POUNDr] = ACTIONS(2630), + [anon_sym_POUNDload] = ACTIONS(2630), + [anon_sym_open] = ACTIONS(2628), + [anon_sym_LBRACK_LT] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_and] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [aux_sym_access_modifier_token1] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_LT_AT_AT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_member] = ACTIONS(2628), + [anon_sym_interface] = ACTIONS(2628), + [anon_sym_abstract] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_val] = ACTIONS(2628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2630), + [aux_sym__identifier_or_op_token1] = ACTIONS(2630), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2630), + [anon_sym_DASH_DOT] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3890), - [sym__dedent] = ACTIONS(3890), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__dedent] = ACTIONS(2630), }, - [2125] = { - [sym_xml_doc] = STATE(2125), - [sym_block_comment] = STATE(2125), - [sym_preproc_line] = STATE(2125), - [ts_builtin_sym_end] = ACTIONS(3982), - [sym_identifier] = ACTIONS(3984), - [anon_sym_namespace] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3984), - [anon_sym_POUNDnowarn] = ACTIONS(3982), - [anon_sym_POUNDr] = ACTIONS(3982), - [anon_sym_POUNDload] = ACTIONS(3982), - [anon_sym_open] = ACTIONS(3984), - [anon_sym_LBRACK_LT] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_type] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_and] = ACTIONS(3984), - [anon_sym_let] = ACTIONS(3984), - [anon_sym_let_BANG] = ACTIONS(3982), - [aux_sym_access_modifier_token1] = ACTIONS(3982), - [anon_sym_null] = ACTIONS(3984), - [anon_sym_LPAREN] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_LBRACK_PIPE] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_LBRACE_PIPE] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_return_BANG] = ACTIONS(3982), - [anon_sym_yield] = ACTIONS(3984), - [anon_sym_yield_BANG] = ACTIONS(3982), - [anon_sym_lazy] = ACTIONS(3984), - [anon_sym_assert] = ACTIONS(3984), - [anon_sym_upcast] = ACTIONS(3984), - [anon_sym_downcast] = ACTIONS(3984), - [anon_sym_LT_AT] = ACTIONS(3984), - [anon_sym_LT_AT_AT] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_fun] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_match] = ACTIONS(3984), - [anon_sym_match_BANG] = ACTIONS(3982), - [anon_sym_function] = ACTIONS(3984), - [anon_sym_use] = ACTIONS(3984), - [anon_sym_use_BANG] = ACTIONS(3982), - [anon_sym_do_BANG] = ACTIONS(3982), - [anon_sym_begin] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_member] = ACTIONS(3984), - [anon_sym_abstract] = ACTIONS(3984), - [anon_sym_override] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_val] = ACTIONS(3984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [anon_sym_AT_DQUOTE] = ACTIONS(3982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3982), - [sym_bool] = ACTIONS(3984), - [sym_unit] = ACTIONS(3982), - [aux_sym__identifier_or_op_token1] = ACTIONS(3982), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS_DOT] = ACTIONS(3982), - [anon_sym_DASH_DOT] = ACTIONS(3982), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_TILDE] = ACTIONS(3982), - [aux_sym_prefix_op_token1] = ACTIONS(3982), - [sym_int] = ACTIONS(3984), - [sym_xint] = ACTIONS(3982), + [2099] = { + [sym_xml_doc] = STATE(2099), + [sym_block_comment] = STATE(2099), + [sym_preproc_line] = STATE(2099), + [sym_identifier] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_POUNDnowarn] = ACTIONS(2687), + [anon_sym_POUNDr] = ACTIONS(2687), + [anon_sym_POUNDload] = ACTIONS(2687), + [anon_sym_open] = ACTIONS(2685), + [anon_sym_LBRACK_LT] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_and] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [aux_sym_access_modifier_token1] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_LT_AT_AT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_member] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_val] = ACTIONS(2685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2687), + [aux_sym__identifier_or_op_token1] = ACTIONS(2687), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2687), + [anon_sym_DASH_DOT] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3982), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__dedent] = ACTIONS(2687), }, - [2126] = { - [sym_xml_doc] = STATE(2126), - [sym_block_comment] = STATE(2126), - [sym_preproc_line] = STATE(2126), - [sym_identifier] = ACTIONS(3956), - [anon_sym_module] = ACTIONS(3956), - [anon_sym_POUNDnowarn] = ACTIONS(3954), - [anon_sym_POUNDr] = ACTIONS(3954), - [anon_sym_POUNDload] = ACTIONS(3954), - [anon_sym_open] = ACTIONS(3956), - [anon_sym_LBRACK_LT] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3956), - [anon_sym_type] = ACTIONS(3956), - [anon_sym_do] = ACTIONS(3956), - [anon_sym_and] = ACTIONS(3956), - [anon_sym_let] = ACTIONS(3956), - [anon_sym_let_BANG] = ACTIONS(3954), - [aux_sym_access_modifier_token1] = ACTIONS(3954), - [anon_sym_null] = ACTIONS(3956), - [anon_sym_LPAREN] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3956), - [anon_sym_LBRACK] = ACTIONS(3956), - [anon_sym_LBRACK_PIPE] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_LBRACE_PIPE] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3956), - [anon_sym_return_BANG] = ACTIONS(3954), - [anon_sym_yield] = ACTIONS(3956), - [anon_sym_yield_BANG] = ACTIONS(3954), - [anon_sym_lazy] = ACTIONS(3956), - [anon_sym_assert] = ACTIONS(3956), - [anon_sym_upcast] = ACTIONS(3956), - [anon_sym_downcast] = ACTIONS(3956), - [anon_sym_LT_AT] = ACTIONS(3956), - [anon_sym_LT_AT_AT] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3956), - [anon_sym_while] = ACTIONS(3956), - [anon_sym_if] = ACTIONS(3956), - [anon_sym_fun] = ACTIONS(3956), - [anon_sym_try] = ACTIONS(3956), - [anon_sym_match] = ACTIONS(3956), - [anon_sym_match_BANG] = ACTIONS(3954), - [anon_sym_function] = ACTIONS(3956), - [anon_sym_use] = ACTIONS(3956), - [anon_sym_use_BANG] = ACTIONS(3954), - [anon_sym_do_BANG] = ACTIONS(3954), - [anon_sym_begin] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3956), - [anon_sym_member] = ACTIONS(3956), - [anon_sym_abstract] = ACTIONS(3956), - [anon_sym_override] = ACTIONS(3956), - [anon_sym_default] = ACTIONS(3956), - [anon_sym_val] = ACTIONS(3956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [anon_sym_AT_DQUOTE] = ACTIONS(3954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3954), - [sym_bool] = ACTIONS(3956), - [sym_unit] = ACTIONS(3954), - [aux_sym__identifier_or_op_token1] = ACTIONS(3954), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3956), - [anon_sym_PLUS] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3956), - [anon_sym_PLUS_DOT] = ACTIONS(3954), - [anon_sym_DASH_DOT] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_TILDE] = ACTIONS(3954), - [aux_sym_prefix_op_token1] = ACTIONS(3954), - [sym_int] = ACTIONS(3956), - [sym_xint] = ACTIONS(3954), + [2100] = { + [sym_xml_doc] = STATE(2100), + [sym_block_comment] = STATE(2100), + [sym_preproc_line] = STATE(2100), + [sym_identifier] = ACTIONS(2679), + [anon_sym_module] = ACTIONS(2679), + [anon_sym_POUNDnowarn] = ACTIONS(2681), + [anon_sym_POUNDr] = ACTIONS(2681), + [anon_sym_POUNDload] = ACTIONS(2681), + [anon_sym_open] = ACTIONS(2679), + [anon_sym_LBRACK_LT] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [aux_sym_access_modifier_token1] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_LT_AT_AT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_member] = ACTIONS(2679), + [anon_sym_interface] = ACTIONS(2679), + [anon_sym_abstract] = ACTIONS(2679), + [anon_sym_override] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_val] = ACTIONS(2679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2681), + [aux_sym__identifier_or_op_token1] = ACTIONS(2681), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2681), + [anon_sym_DASH_DOT] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3954), - [sym__dedent] = ACTIONS(3954), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__dedent] = ACTIONS(2681), }, - [2127] = { - [sym_xml_doc] = STATE(2127), - [sym_block_comment] = STATE(2127), - [sym_preproc_line] = STATE(2127), - [sym_identifier] = ACTIONS(3970), - [anon_sym_module] = ACTIONS(3970), - [anon_sym_POUNDnowarn] = ACTIONS(3968), - [anon_sym_POUNDr] = ACTIONS(3968), - [anon_sym_POUNDload] = ACTIONS(3968), - [anon_sym_open] = ACTIONS(3970), - [anon_sym_LBRACK_LT] = ACTIONS(3968), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_type] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3970), - [anon_sym_let_BANG] = ACTIONS(3968), - [aux_sym_access_modifier_token1] = ACTIONS(3968), - [anon_sym_null] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_LBRACK_PIPE] = ACTIONS(3968), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_LBRACE_PIPE] = ACTIONS(3968), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_return_BANG] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3970), - [anon_sym_yield_BANG] = ACTIONS(3968), - [anon_sym_lazy] = ACTIONS(3970), - [anon_sym_assert] = ACTIONS(3970), - [anon_sym_upcast] = ACTIONS(3970), - [anon_sym_downcast] = ACTIONS(3970), - [anon_sym_LT_AT] = ACTIONS(3970), - [anon_sym_LT_AT_AT] = ACTIONS(3968), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_fun] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_match] = ACTIONS(3970), - [anon_sym_match_BANG] = ACTIONS(3968), - [anon_sym_function] = ACTIONS(3970), - [anon_sym_use] = ACTIONS(3970), - [anon_sym_use_BANG] = ACTIONS(3968), - [anon_sym_do_BANG] = ACTIONS(3968), - [anon_sym_begin] = ACTIONS(3970), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_member] = ACTIONS(3970), - [anon_sym_abstract] = ACTIONS(3970), - [anon_sym_override] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_val] = ACTIONS(3970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3970), - [anon_sym_DQUOTE] = ACTIONS(3970), - [anon_sym_AT_DQUOTE] = ACTIONS(3968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), - [sym_bool] = ACTIONS(3970), - [sym_unit] = ACTIONS(3968), - [aux_sym__identifier_or_op_token1] = ACTIONS(3968), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS_DOT] = ACTIONS(3968), - [anon_sym_DASH_DOT] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [aux_sym_prefix_op_token1] = ACTIONS(3968), - [sym_int] = ACTIONS(3970), - [sym_xint] = ACTIONS(3968), + [2101] = { + [sym_xml_doc] = STATE(2101), + [sym_block_comment] = STATE(2101), + [sym_preproc_line] = STATE(2101), + [sym_identifier] = ACTIONS(2632), + [anon_sym_module] = ACTIONS(2632), + [anon_sym_POUNDnowarn] = ACTIONS(2634), + [anon_sym_POUNDr] = ACTIONS(2634), + [anon_sym_POUNDload] = ACTIONS(2634), + [anon_sym_open] = ACTIONS(2632), + [anon_sym_LBRACK_LT] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_and] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [aux_sym_access_modifier_token1] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_LT_AT_AT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_member] = ACTIONS(2632), + [anon_sym_interface] = ACTIONS(2632), + [anon_sym_abstract] = ACTIONS(2632), + [anon_sym_override] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_val] = ACTIONS(2632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2634), + [aux_sym__identifier_or_op_token1] = ACTIONS(2634), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2634), + [anon_sym_DASH_DOT] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3968), - [sym__dedent] = ACTIONS(3968), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__dedent] = ACTIONS(2634), }, - [2128] = { - [sym_xml_doc] = STATE(2128), - [sym_block_comment] = STATE(2128), - [sym_preproc_line] = STATE(2128), - [sym_identifier] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3984), - [anon_sym_POUNDnowarn] = ACTIONS(3982), - [anon_sym_POUNDr] = ACTIONS(3982), - [anon_sym_POUNDload] = ACTIONS(3982), - [anon_sym_open] = ACTIONS(3984), - [anon_sym_LBRACK_LT] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_type] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_and] = ACTIONS(3984), - [anon_sym_let] = ACTIONS(3984), - [anon_sym_let_BANG] = ACTIONS(3982), - [aux_sym_access_modifier_token1] = ACTIONS(3982), - [anon_sym_null] = ACTIONS(3984), - [anon_sym_LPAREN] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_LBRACK_PIPE] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_LBRACE_PIPE] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_return_BANG] = ACTIONS(3982), - [anon_sym_yield] = ACTIONS(3984), - [anon_sym_yield_BANG] = ACTIONS(3982), - [anon_sym_lazy] = ACTIONS(3984), - [anon_sym_assert] = ACTIONS(3984), - [anon_sym_upcast] = ACTIONS(3984), - [anon_sym_downcast] = ACTIONS(3984), - [anon_sym_LT_AT] = ACTIONS(3984), - [anon_sym_LT_AT_AT] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_fun] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_match] = ACTIONS(3984), - [anon_sym_match_BANG] = ACTIONS(3982), - [anon_sym_function] = ACTIONS(3984), - [anon_sym_use] = ACTIONS(3984), - [anon_sym_use_BANG] = ACTIONS(3982), - [anon_sym_do_BANG] = ACTIONS(3982), - [anon_sym_begin] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_member] = ACTIONS(3984), - [anon_sym_abstract] = ACTIONS(3984), - [anon_sym_override] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_val] = ACTIONS(3984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [anon_sym_AT_DQUOTE] = ACTIONS(3982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3982), - [sym_bool] = ACTIONS(3984), - [sym_unit] = ACTIONS(3982), - [aux_sym__identifier_or_op_token1] = ACTIONS(3982), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS_DOT] = ACTIONS(3982), - [anon_sym_DASH_DOT] = ACTIONS(3982), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_TILDE] = ACTIONS(3982), - [aux_sym_prefix_op_token1] = ACTIONS(3982), - [sym_int] = ACTIONS(3984), - [sym_xint] = ACTIONS(3982), + [2102] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(5354), + [sym__function_or_value_defn_body] = STATE(4229), + [sym_function_declaration_left] = STATE(4539), + [sym_value_declaration_left] = STATE(4539), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2102), + [sym_block_comment] = STATE(2102), + [sym_preproc_line] = STATE(2102), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3982), - [sym__dedent] = ACTIONS(3982), }, - [2129] = { - [sym_xml_doc] = STATE(2129), - [sym_block_comment] = STATE(2129), - [sym_preproc_line] = STATE(2129), - [sym_identifier] = ACTIONS(3914), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_POUNDnowarn] = ACTIONS(3912), - [anon_sym_POUNDr] = ACTIONS(3912), - [anon_sym_POUNDload] = ACTIONS(3912), - [anon_sym_open] = ACTIONS(3914), - [anon_sym_LBRACK_LT] = ACTIONS(3912), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_type] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_and] = ACTIONS(3914), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_let_BANG] = ACTIONS(3912), - [aux_sym_access_modifier_token1] = ACTIONS(3912), - [anon_sym_null] = ACTIONS(3914), - [anon_sym_LPAREN] = ACTIONS(3914), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_LBRACK_PIPE] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(3914), - [anon_sym_LBRACE_PIPE] = ACTIONS(3912), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_return_BANG] = ACTIONS(3912), - [anon_sym_yield] = ACTIONS(3914), - [anon_sym_yield_BANG] = ACTIONS(3912), - [anon_sym_lazy] = ACTIONS(3914), - [anon_sym_assert] = ACTIONS(3914), - [anon_sym_upcast] = ACTIONS(3914), - [anon_sym_downcast] = ACTIONS(3914), - [anon_sym_LT_AT] = ACTIONS(3914), - [anon_sym_LT_AT_AT] = ACTIONS(3912), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_fun] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_match] = ACTIONS(3914), - [anon_sym_match_BANG] = ACTIONS(3912), - [anon_sym_function] = ACTIONS(3914), - [anon_sym_use] = ACTIONS(3914), - [anon_sym_use_BANG] = ACTIONS(3912), - [anon_sym_do_BANG] = ACTIONS(3912), - [anon_sym_begin] = ACTIONS(3914), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_member] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_override] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_val] = ACTIONS(3914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), - [anon_sym_DQUOTE] = ACTIONS(3914), - [anon_sym_AT_DQUOTE] = ACTIONS(3912), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), - [sym_bool] = ACTIONS(3914), - [sym_unit] = ACTIONS(3912), - [aux_sym__identifier_or_op_token1] = ACTIONS(3912), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS_DOT] = ACTIONS(3912), - [anon_sym_DASH_DOT] = ACTIONS(3912), - [anon_sym_PERCENT] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [aux_sym_prefix_op_token1] = ACTIONS(3912), - [sym_int] = ACTIONS(3914), - [sym_xint] = ACTIONS(3912), + [2103] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(5305), + [sym__function_or_value_defn_body] = STATE(4229), + [sym_function_declaration_left] = STATE(4539), + [sym_value_declaration_left] = STATE(4539), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2103), + [sym_block_comment] = STATE(2103), + [sym_preproc_line] = STATE(2103), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3912), - [sym__dedent] = ACTIONS(3912), }, - [2130] = { - [sym_xml_doc] = STATE(2130), - [sym_block_comment] = STATE(2130), - [sym_preproc_line] = STATE(2130), - [sym_identifier] = ACTIONS(3952), - [anon_sym_module] = ACTIONS(3952), - [anon_sym_POUNDnowarn] = ACTIONS(3950), - [anon_sym_POUNDr] = ACTIONS(3950), - [anon_sym_POUNDload] = ACTIONS(3950), - [anon_sym_open] = ACTIONS(3952), - [anon_sym_LBRACK_LT] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3952), - [anon_sym_type] = ACTIONS(3952), - [anon_sym_do] = ACTIONS(3952), - [anon_sym_and] = ACTIONS(3952), - [anon_sym_let] = ACTIONS(3952), - [anon_sym_let_BANG] = ACTIONS(3950), - [aux_sym_access_modifier_token1] = ACTIONS(3950), - [anon_sym_null] = ACTIONS(3952), - [anon_sym_LPAREN] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LBRACK] = ACTIONS(3952), - [anon_sym_LBRACK_PIPE] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_LBRACE_PIPE] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3952), - [anon_sym_return_BANG] = ACTIONS(3950), - [anon_sym_yield] = ACTIONS(3952), - [anon_sym_yield_BANG] = ACTIONS(3950), - [anon_sym_lazy] = ACTIONS(3952), - [anon_sym_assert] = ACTIONS(3952), - [anon_sym_upcast] = ACTIONS(3952), - [anon_sym_downcast] = ACTIONS(3952), - [anon_sym_LT_AT] = ACTIONS(3952), - [anon_sym_LT_AT_AT] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3952), - [anon_sym_while] = ACTIONS(3952), - [anon_sym_if] = ACTIONS(3952), - [anon_sym_fun] = ACTIONS(3952), - [anon_sym_try] = ACTIONS(3952), - [anon_sym_match] = ACTIONS(3952), - [anon_sym_match_BANG] = ACTIONS(3950), - [anon_sym_function] = ACTIONS(3952), - [anon_sym_use] = ACTIONS(3952), - [anon_sym_use_BANG] = ACTIONS(3950), - [anon_sym_do_BANG] = ACTIONS(3950), - [anon_sym_begin] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3952), - [anon_sym_member] = ACTIONS(3952), - [anon_sym_abstract] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3952), - [anon_sym_default] = ACTIONS(3952), - [anon_sym_val] = ACTIONS(3952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [anon_sym_AT_DQUOTE] = ACTIONS(3950), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3950), - [sym_bool] = ACTIONS(3952), - [sym_unit] = ACTIONS(3950), - [aux_sym__identifier_or_op_token1] = ACTIONS(3950), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3952), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_PLUS_DOT] = ACTIONS(3950), - [anon_sym_DASH_DOT] = ACTIONS(3950), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_TILDE] = ACTIONS(3950), - [aux_sym_prefix_op_token1] = ACTIONS(3950), - [sym_int] = ACTIONS(3952), - [sym_xint] = ACTIONS(3950), + [2104] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(5447), + [sym__function_or_value_defn_body] = STATE(4229), + [sym_function_declaration_left] = STATE(4539), + [sym_value_declaration_left] = STATE(4539), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2104), + [sym_block_comment] = STATE(2104), + [sym_preproc_line] = STATE(2104), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3950), - [sym__dedent] = ACTIONS(3950), }, - [2131] = { - [sym_xml_doc] = STATE(2131), - [sym_block_comment] = STATE(2131), - [sym_preproc_line] = STATE(2131), - [sym_identifier] = ACTIONS(3924), - [anon_sym_module] = ACTIONS(3924), - [anon_sym_POUNDnowarn] = ACTIONS(3922), - [anon_sym_POUNDr] = ACTIONS(3922), - [anon_sym_POUNDload] = ACTIONS(3922), - [anon_sym_open] = ACTIONS(3924), - [anon_sym_LBRACK_LT] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3924), - [anon_sym_type] = ACTIONS(3924), - [anon_sym_do] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_let_BANG] = ACTIONS(3922), - [aux_sym_access_modifier_token1] = ACTIONS(3922), - [anon_sym_null] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_LBRACK_PIPE] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_LBRACE_PIPE] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3924), - [anon_sym_return_BANG] = ACTIONS(3922), - [anon_sym_yield] = ACTIONS(3924), - [anon_sym_yield_BANG] = ACTIONS(3922), - [anon_sym_lazy] = ACTIONS(3924), - [anon_sym_assert] = ACTIONS(3924), - [anon_sym_upcast] = ACTIONS(3924), - [anon_sym_downcast] = ACTIONS(3924), - [anon_sym_LT_AT] = ACTIONS(3924), - [anon_sym_LT_AT_AT] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3924), - [anon_sym_while] = ACTIONS(3924), - [anon_sym_if] = ACTIONS(3924), - [anon_sym_fun] = ACTIONS(3924), - [anon_sym_try] = ACTIONS(3924), - [anon_sym_match] = ACTIONS(3924), - [anon_sym_match_BANG] = ACTIONS(3922), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_use] = ACTIONS(3924), - [anon_sym_use_BANG] = ACTIONS(3922), - [anon_sym_do_BANG] = ACTIONS(3922), - [anon_sym_begin] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3924), - [anon_sym_member] = ACTIONS(3924), - [anon_sym_abstract] = ACTIONS(3924), - [anon_sym_override] = ACTIONS(3924), - [anon_sym_default] = ACTIONS(3924), - [anon_sym_val] = ACTIONS(3924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(3924), - [anon_sym_AT_DQUOTE] = ACTIONS(3922), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3922), - [sym_bool] = ACTIONS(3924), - [sym_unit] = ACTIONS(3922), - [aux_sym__identifier_or_op_token1] = ACTIONS(3922), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3924), - [anon_sym_PLUS_DOT] = ACTIONS(3922), - [anon_sym_DASH_DOT] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3922), - [anon_sym_TILDE] = ACTIONS(3922), - [aux_sym_prefix_op_token1] = ACTIONS(3922), - [sym_int] = ACTIONS(3924), - [sym_xint] = ACTIONS(3922), + [2105] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(2487), + [sym__function_or_value_defn_body] = STATE(2326), + [sym_function_declaration_left] = STATE(4415), + [sym_value_declaration_left] = STATE(4415), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2105), + [sym_block_comment] = STATE(2105), + [sym_preproc_line] = STATE(2105), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3922), - [sym__dedent] = ACTIONS(3922), }, - [2132] = { - [sym_xml_doc] = STATE(2132), - [sym_block_comment] = STATE(2132), - [sym_preproc_line] = STATE(2132), - [sym_identifier] = ACTIONS(3938), - [anon_sym_module] = ACTIONS(3938), - [anon_sym_POUNDnowarn] = ACTIONS(3936), - [anon_sym_POUNDr] = ACTIONS(3936), - [anon_sym_POUNDload] = ACTIONS(3936), - [anon_sym_open] = ACTIONS(3938), - [anon_sym_LBRACK_LT] = ACTIONS(3936), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_type] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_let] = ACTIONS(3938), - [anon_sym_let_BANG] = ACTIONS(3936), - [aux_sym_access_modifier_token1] = ACTIONS(3936), - [anon_sym_null] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_LBRACK_PIPE] = ACTIONS(3936), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_LBRACE_PIPE] = ACTIONS(3936), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_return_BANG] = ACTIONS(3936), - [anon_sym_yield] = ACTIONS(3938), - [anon_sym_yield_BANG] = ACTIONS(3936), - [anon_sym_lazy] = ACTIONS(3938), - [anon_sym_assert] = ACTIONS(3938), - [anon_sym_upcast] = ACTIONS(3938), - [anon_sym_downcast] = ACTIONS(3938), - [anon_sym_LT_AT] = ACTIONS(3938), - [anon_sym_LT_AT_AT] = ACTIONS(3936), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_fun] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_match] = ACTIONS(3938), - [anon_sym_match_BANG] = ACTIONS(3936), - [anon_sym_function] = ACTIONS(3938), - [anon_sym_use] = ACTIONS(3938), - [anon_sym_use_BANG] = ACTIONS(3936), - [anon_sym_do_BANG] = ACTIONS(3936), - [anon_sym_begin] = ACTIONS(3938), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_member] = ACTIONS(3938), - [anon_sym_abstract] = ACTIONS(3938), - [anon_sym_override] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_val] = ACTIONS(3938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3938), - [anon_sym_DQUOTE] = ACTIONS(3938), - [anon_sym_AT_DQUOTE] = ACTIONS(3936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3936), - [sym_bool] = ACTIONS(3938), - [sym_unit] = ACTIONS(3936), - [aux_sym__identifier_or_op_token1] = ACTIONS(3936), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS_DOT] = ACTIONS(3936), - [anon_sym_DASH_DOT] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [aux_sym_prefix_op_token1] = ACTIONS(3936), - [sym_int] = ACTIONS(3938), - [sym_xint] = ACTIONS(3936), + [2106] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(4931), + [sym__function_or_value_defn_body] = STATE(4229), + [sym_function_declaration_left] = STATE(4539), + [sym_value_declaration_left] = STATE(4539), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2106), + [sym_block_comment] = STATE(2106), + [sym_preproc_line] = STATE(2106), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3936), - [sym__dedent] = ACTIONS(3936), }, - [2133] = { - [sym_xml_doc] = STATE(2133), - [sym_block_comment] = STATE(2133), - [sym_preproc_line] = STATE(2133), - [sym_identifier] = ACTIONS(3946), - [anon_sym_module] = ACTIONS(3946), - [anon_sym_POUNDnowarn] = ACTIONS(3944), - [anon_sym_POUNDr] = ACTIONS(3944), - [anon_sym_POUNDload] = ACTIONS(3944), - [anon_sym_open] = ACTIONS(3946), - [anon_sym_LBRACK_LT] = ACTIONS(3944), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_type] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_let] = ACTIONS(3946), - [anon_sym_let_BANG] = ACTIONS(3944), - [aux_sym_access_modifier_token1] = ACTIONS(3944), - [anon_sym_null] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_LBRACK_PIPE] = ACTIONS(3944), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_LBRACE_PIPE] = ACTIONS(3944), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_return_BANG] = ACTIONS(3944), - [anon_sym_yield] = ACTIONS(3946), - [anon_sym_yield_BANG] = ACTIONS(3944), - [anon_sym_lazy] = ACTIONS(3946), - [anon_sym_assert] = ACTIONS(3946), - [anon_sym_upcast] = ACTIONS(3946), - [anon_sym_downcast] = ACTIONS(3946), - [anon_sym_LT_AT] = ACTIONS(3946), - [anon_sym_LT_AT_AT] = ACTIONS(3944), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_fun] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_match] = ACTIONS(3946), - [anon_sym_match_BANG] = ACTIONS(3944), - [anon_sym_function] = ACTIONS(3946), - [anon_sym_use] = ACTIONS(3946), - [anon_sym_use_BANG] = ACTIONS(3944), - [anon_sym_do_BANG] = ACTIONS(3944), - [anon_sym_begin] = ACTIONS(3946), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_member] = ACTIONS(3946), - [anon_sym_abstract] = ACTIONS(3946), - [anon_sym_override] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_val] = ACTIONS(3946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3946), - [anon_sym_DQUOTE] = ACTIONS(3946), - [anon_sym_AT_DQUOTE] = ACTIONS(3944), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3944), - [sym_bool] = ACTIONS(3946), - [sym_unit] = ACTIONS(3944), - [aux_sym__identifier_or_op_token1] = ACTIONS(3944), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS_DOT] = ACTIONS(3944), - [anon_sym_DASH_DOT] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [aux_sym_prefix_op_token1] = ACTIONS(3944), - [sym_int] = ACTIONS(3946), - [sym_xint] = ACTIONS(3944), + [2107] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2509), + [sym_function_declaration_left] = STATE(4664), + [sym_value_declaration_left] = STATE(4664), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2107), + [sym_block_comment] = STATE(2107), + [sym_preproc_line] = STATE(2107), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_rec] = ACTIONS(3902), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3944), - [sym__dedent] = ACTIONS(3944), }, - [2134] = { - [sym_xml_doc] = STATE(2134), - [sym_block_comment] = STATE(2134), - [sym_preproc_line] = STATE(2134), - [sym_identifier] = ACTIONS(3930), - [anon_sym_module] = ACTIONS(3930), - [anon_sym_POUNDnowarn] = ACTIONS(3928), - [anon_sym_POUNDr] = ACTIONS(3928), - [anon_sym_POUNDload] = ACTIONS(3928), - [anon_sym_open] = ACTIONS(3930), - [anon_sym_LBRACK_LT] = ACTIONS(3928), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_type] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_and] = ACTIONS(3930), - [anon_sym_let] = ACTIONS(3930), - [anon_sym_let_BANG] = ACTIONS(3928), - [aux_sym_access_modifier_token1] = ACTIONS(3928), - [anon_sym_null] = ACTIONS(3930), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_LBRACK_PIPE] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3930), - [anon_sym_LBRACE_PIPE] = ACTIONS(3928), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_return_BANG] = ACTIONS(3928), - [anon_sym_yield] = ACTIONS(3930), - [anon_sym_yield_BANG] = ACTIONS(3928), - [anon_sym_lazy] = ACTIONS(3930), - [anon_sym_assert] = ACTIONS(3930), - [anon_sym_upcast] = ACTIONS(3930), - [anon_sym_downcast] = ACTIONS(3930), - [anon_sym_LT_AT] = ACTIONS(3930), - [anon_sym_LT_AT_AT] = ACTIONS(3928), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_fun] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_match] = ACTIONS(3930), - [anon_sym_match_BANG] = ACTIONS(3928), - [anon_sym_function] = ACTIONS(3930), - [anon_sym_use] = ACTIONS(3930), - [anon_sym_use_BANG] = ACTIONS(3928), - [anon_sym_do_BANG] = ACTIONS(3928), - [anon_sym_begin] = ACTIONS(3930), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_member] = ACTIONS(3930), - [anon_sym_abstract] = ACTIONS(3930), - [anon_sym_override] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_val] = ACTIONS(3930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3930), - [anon_sym_DQUOTE] = ACTIONS(3930), - [anon_sym_AT_DQUOTE] = ACTIONS(3928), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), - [sym_bool] = ACTIONS(3930), - [sym_unit] = ACTIONS(3928), - [aux_sym__identifier_or_op_token1] = ACTIONS(3928), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS_DOT] = ACTIONS(3928), - [anon_sym_DASH_DOT] = ACTIONS(3928), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [aux_sym_prefix_op_token1] = ACTIONS(3928), - [sym_int] = ACTIONS(3930), - [sym_xint] = ACTIONS(3928), + [2108] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2491), + [sym_function_declaration_left] = STATE(4415), + [sym_value_declaration_left] = STATE(4415), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2108), + [sym_block_comment] = STATE(2108), + [sym_preproc_line] = STATE(2108), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_rec] = ACTIONS(3904), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3928), - [sym__dedent] = ACTIONS(3928), }, - [2135] = { - [sym_xml_doc] = STATE(2135), - [sym_block_comment] = STATE(2135), - [sym_preproc_line] = STATE(2135), - [sym_identifier] = ACTIONS(3960), - [anon_sym_module] = ACTIONS(3960), - [anon_sym_POUNDnowarn] = ACTIONS(3958), - [anon_sym_POUNDr] = ACTIONS(3958), - [anon_sym_POUNDload] = ACTIONS(3958), - [anon_sym_open] = ACTIONS(3960), - [anon_sym_LBRACK_LT] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_type] = ACTIONS(3960), - [anon_sym_do] = ACTIONS(3960), - [anon_sym_and] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3960), - [anon_sym_let_BANG] = ACTIONS(3958), - [aux_sym_access_modifier_token1] = ACTIONS(3958), - [anon_sym_null] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(3960), - [anon_sym_LBRACK_PIPE] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_LBRACE_PIPE] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3960), - [anon_sym_return_BANG] = ACTIONS(3958), - [anon_sym_yield] = ACTIONS(3960), - [anon_sym_yield_BANG] = ACTIONS(3958), - [anon_sym_lazy] = ACTIONS(3960), - [anon_sym_assert] = ACTIONS(3960), - [anon_sym_upcast] = ACTIONS(3960), - [anon_sym_downcast] = ACTIONS(3960), - [anon_sym_LT_AT] = ACTIONS(3960), - [anon_sym_LT_AT_AT] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_while] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_fun] = ACTIONS(3960), - [anon_sym_try] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_match_BANG] = ACTIONS(3958), - [anon_sym_function] = ACTIONS(3960), - [anon_sym_use] = ACTIONS(3960), - [anon_sym_use_BANG] = ACTIONS(3958), - [anon_sym_do_BANG] = ACTIONS(3958), - [anon_sym_begin] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3960), - [anon_sym_member] = ACTIONS(3960), - [anon_sym_abstract] = ACTIONS(3960), - [anon_sym_override] = ACTIONS(3960), - [anon_sym_default] = ACTIONS(3960), - [anon_sym_val] = ACTIONS(3960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [anon_sym_AT_DQUOTE] = ACTIONS(3958), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3958), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3958), - [sym_bool] = ACTIONS(3960), - [sym_unit] = ACTIONS(3958), - [aux_sym__identifier_or_op_token1] = ACTIONS(3958), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3960), - [anon_sym_PLUS] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_PLUS_DOT] = ACTIONS(3958), - [anon_sym_DASH_DOT] = ACTIONS(3958), - [anon_sym_PERCENT] = ACTIONS(3958), - [anon_sym_AMP_AMP] = ACTIONS(3958), - [anon_sym_TILDE] = ACTIONS(3958), - [aux_sym_prefix_op_token1] = ACTIONS(3958), - [sym_int] = ACTIONS(3960), - [sym_xint] = ACTIONS(3958), + [2109] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(2524), + [sym__function_or_value_defn_body] = STATE(2445), + [sym_function_declaration_left] = STATE(4664), + [sym_value_declaration_left] = STATE(4664), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2109), + [sym_block_comment] = STATE(2109), + [sym_preproc_line] = STATE(2109), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3958), - [sym__dedent] = ACTIONS(3958), }, - [2136] = { - [sym_xml_doc] = STATE(2136), - [sym_block_comment] = STATE(2136), - [sym_preproc_line] = STATE(2136), - [sym_identifier] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3964), - [anon_sym_POUNDnowarn] = ACTIONS(3962), - [anon_sym_POUNDr] = ACTIONS(3962), - [anon_sym_POUNDload] = ACTIONS(3962), - [anon_sym_open] = ACTIONS(3964), - [anon_sym_LBRACK_LT] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_type] = ACTIONS(3964), - [anon_sym_do] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_let_BANG] = ACTIONS(3962), - [aux_sym_access_modifier_token1] = ACTIONS(3962), - [anon_sym_null] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_LBRACK_PIPE] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_LBRACE_PIPE] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3964), - [anon_sym_return_BANG] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3964), - [anon_sym_yield_BANG] = ACTIONS(3962), - [anon_sym_lazy] = ACTIONS(3964), - [anon_sym_assert] = ACTIONS(3964), - [anon_sym_upcast] = ACTIONS(3964), - [anon_sym_downcast] = ACTIONS(3964), - [anon_sym_LT_AT] = ACTIONS(3964), - [anon_sym_LT_AT_AT] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_while] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_fun] = ACTIONS(3964), - [anon_sym_try] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_match_BANG] = ACTIONS(3962), - [anon_sym_function] = ACTIONS(3964), - [anon_sym_use] = ACTIONS(3964), - [anon_sym_use_BANG] = ACTIONS(3962), - [anon_sym_do_BANG] = ACTIONS(3962), - [anon_sym_begin] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3964), - [anon_sym_member] = ACTIONS(3964), - [anon_sym_abstract] = ACTIONS(3964), - [anon_sym_override] = ACTIONS(3964), - [anon_sym_default] = ACTIONS(3964), - [anon_sym_val] = ACTIONS(3964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [anon_sym_AT_DQUOTE] = ACTIONS(3962), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3962), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3962), - [sym_bool] = ACTIONS(3964), - [sym_unit] = ACTIONS(3962), - [aux_sym__identifier_or_op_token1] = ACTIONS(3962), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_PLUS_DOT] = ACTIONS(3962), - [anon_sym_DASH_DOT] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_TILDE] = ACTIONS(3962), - [aux_sym_prefix_op_token1] = ACTIONS(3962), - [sym_int] = ACTIONS(3964), - [sym_xint] = ACTIONS(3962), + [2110] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(4520), + [sym_function_declaration_left] = STATE(4595), + [sym_value_declaration_left] = STATE(4595), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2110), + [sym_block_comment] = STATE(2110), + [sym_preproc_line] = STATE(2110), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_rec] = ACTIONS(3906), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3962), - [sym__dedent] = ACTIONS(3962), }, - [2137] = { - [sym_xml_doc] = STATE(2137), - [sym_block_comment] = STATE(2137), - [sym_preproc_line] = STATE(2137), - [sym_identifier] = ACTIONS(3974), - [anon_sym_module] = ACTIONS(3974), - [anon_sym_POUNDnowarn] = ACTIONS(3972), - [anon_sym_POUNDr] = ACTIONS(3972), - [anon_sym_POUNDload] = ACTIONS(3972), - [anon_sym_open] = ACTIONS(3974), - [anon_sym_LBRACK_LT] = ACTIONS(3972), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_type] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_let] = ACTIONS(3974), - [anon_sym_let_BANG] = ACTIONS(3972), - [aux_sym_access_modifier_token1] = ACTIONS(3972), - [anon_sym_null] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_LBRACK_PIPE] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_LBRACE_PIPE] = ACTIONS(3972), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_return_BANG] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3974), - [anon_sym_yield_BANG] = ACTIONS(3972), - [anon_sym_lazy] = ACTIONS(3974), - [anon_sym_assert] = ACTIONS(3974), - [anon_sym_upcast] = ACTIONS(3974), - [anon_sym_downcast] = ACTIONS(3974), - [anon_sym_LT_AT] = ACTIONS(3974), - [anon_sym_LT_AT_AT] = ACTIONS(3972), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_fun] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_match] = ACTIONS(3974), - [anon_sym_match_BANG] = ACTIONS(3972), - [anon_sym_function] = ACTIONS(3974), - [anon_sym_use] = ACTIONS(3974), - [anon_sym_use_BANG] = ACTIONS(3972), - [anon_sym_do_BANG] = ACTIONS(3972), - [anon_sym_begin] = ACTIONS(3974), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_member] = ACTIONS(3974), - [anon_sym_abstract] = ACTIONS(3974), - [anon_sym_override] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_val] = ACTIONS(3974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3974), - [anon_sym_DQUOTE] = ACTIONS(3974), - [anon_sym_AT_DQUOTE] = ACTIONS(3972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3972), - [sym_bool] = ACTIONS(3974), - [sym_unit] = ACTIONS(3972), - [aux_sym__identifier_or_op_token1] = ACTIONS(3972), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS_DOT] = ACTIONS(3972), - [anon_sym_DASH_DOT] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [aux_sym_prefix_op_token1] = ACTIONS(3972), - [sym_int] = ACTIONS(3974), - [sym_xint] = ACTIONS(3972), + [2111] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(4537), + [sym__function_or_value_defn_body] = STATE(4213), + [sym_function_declaration_left] = STATE(4595), + [sym_value_declaration_left] = STATE(4595), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2111), + [sym_block_comment] = STATE(2111), + [sym_preproc_line] = STATE(2111), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3972), - [sym__dedent] = ACTIONS(3972), }, - [2138] = { - [sym_xml_doc] = STATE(2138), - [sym_block_comment] = STATE(2138), - [sym_preproc_line] = STATE(2138), - [sym_identifier] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_POUNDnowarn] = ACTIONS(3608), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3608), - [aux_sym_access_modifier_token1] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_member] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_val] = ACTIONS(3610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3608), - [aux_sym__identifier_or_op_token1] = ACTIONS(3608), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3608), - [anon_sym_DASH_DOT] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3608), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3608), + [2112] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2606), + [sym_function_declaration_left] = STATE(4707), + [sym_value_declaration_left] = STATE(4707), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2112), + [sym_block_comment] = STATE(2112), + [sym_preproc_line] = STATE(2112), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_rec] = ACTIONS(3908), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__dedent] = ACTIONS(3608), }, - [2139] = { - [sym_xml_doc] = STATE(2139), - [sym_block_comment] = STATE(2139), - [sym_preproc_line] = STATE(2139), - [sym_identifier] = ACTIONS(3920), - [anon_sym_module] = ACTIONS(3920), - [anon_sym_POUNDnowarn] = ACTIONS(3918), - [anon_sym_POUNDr] = ACTIONS(3918), - [anon_sym_POUNDload] = ACTIONS(3918), - [anon_sym_open] = ACTIONS(3920), - [anon_sym_LBRACK_LT] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3920), - [anon_sym_type] = ACTIONS(3920), - [anon_sym_do] = ACTIONS(3920), - [anon_sym_and] = ACTIONS(3920), - [anon_sym_let] = ACTIONS(3920), - [anon_sym_let_BANG] = ACTIONS(3918), - [aux_sym_access_modifier_token1] = ACTIONS(3918), - [anon_sym_null] = ACTIONS(3920), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3920), - [anon_sym_LBRACK] = ACTIONS(3920), - [anon_sym_LBRACK_PIPE] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_LBRACE_PIPE] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3920), - [anon_sym_return_BANG] = ACTIONS(3918), - [anon_sym_yield] = ACTIONS(3920), - [anon_sym_yield_BANG] = ACTIONS(3918), - [anon_sym_lazy] = ACTIONS(3920), - [anon_sym_assert] = ACTIONS(3920), - [anon_sym_upcast] = ACTIONS(3920), - [anon_sym_downcast] = ACTIONS(3920), - [anon_sym_LT_AT] = ACTIONS(3920), - [anon_sym_LT_AT_AT] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3920), - [anon_sym_while] = ACTIONS(3920), - [anon_sym_if] = ACTIONS(3920), - [anon_sym_fun] = ACTIONS(3920), - [anon_sym_try] = ACTIONS(3920), - [anon_sym_match] = ACTIONS(3920), - [anon_sym_match_BANG] = ACTIONS(3918), - [anon_sym_function] = ACTIONS(3920), - [anon_sym_use] = ACTIONS(3920), - [anon_sym_use_BANG] = ACTIONS(3918), - [anon_sym_do_BANG] = ACTIONS(3918), - [anon_sym_begin] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3920), - [anon_sym_member] = ACTIONS(3920), - [anon_sym_abstract] = ACTIONS(3920), - [anon_sym_override] = ACTIONS(3920), - [anon_sym_default] = ACTIONS(3920), - [anon_sym_val] = ACTIONS(3920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [anon_sym_AT_DQUOTE] = ACTIONS(3918), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3918), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3918), - [sym_bool] = ACTIONS(3920), - [sym_unit] = ACTIONS(3918), - [aux_sym__identifier_or_op_token1] = ACTIONS(3918), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3920), - [anon_sym_PLUS] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3920), - [anon_sym_PLUS_DOT] = ACTIONS(3918), - [anon_sym_DASH_DOT] = ACTIONS(3918), - [anon_sym_PERCENT] = ACTIONS(3918), - [anon_sym_AMP_AMP] = ACTIONS(3918), - [anon_sym_TILDE] = ACTIONS(3918), - [aux_sym_prefix_op_token1] = ACTIONS(3918), - [sym_int] = ACTIONS(3920), - [sym_xint] = ACTIONS(3918), + [2113] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defns] = STATE(2608), + [sym__function_or_value_defn_body] = STATE(2593), + [sym_function_declaration_left] = STATE(4707), + [sym_value_declaration_left] = STATE(4707), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2113), + [sym_block_comment] = STATE(2113), + [sym_preproc_line] = STATE(2113), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3918), - [sym__dedent] = ACTIONS(3918), }, - [2140] = { - [sym_xml_doc] = STATE(2140), - [sym_block_comment] = STATE(2140), - [sym_preproc_line] = STATE(2140), - [sym_identifier] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_POUNDnowarn] = ACTIONS(3641), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_and] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3641), - [aux_sym_access_modifier_token1] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_SQUOTE] = ACTIONS(3641), - [anon_sym_static] = ACTIONS(3643), - [anon_sym_member] = ACTIONS(3643), - [anon_sym_abstract] = ACTIONS(3643), - [anon_sym_override] = ACTIONS(3643), - [anon_sym_default] = ACTIONS(3643), - [anon_sym_val] = ACTIONS(3643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3641), - [aux_sym__identifier_or_op_token1] = ACTIONS(3641), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3641), - [anon_sym_DASH_DOT] = ACTIONS(3641), - [anon_sym_PERCENT] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3641), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3641), + [2114] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3677), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2128), + [sym_char] = STATE(2772), + [sym_format_string] = STATE(2796), + [sym__string_literal] = STATE(2796), + [sym_string] = STATE(2772), + [sym_verbatim_string] = STATE(2772), + [sym_bytechar] = STATE(2772), + [sym_bytearray] = STATE(2772), + [sym_verbatim_bytearray] = STATE(2772), + [sym_format_triple_quoted_string] = STATE(2828), + [sym_triple_quoted_string] = STATE(2772), + [sym_const] = STATE(2777), + [sym_long_identifier] = STATE(2115), + [sym_sbyte] = STATE(2772), + [sym_byte] = STATE(2772), + [sym_int16] = STATE(2772), + [sym_uint16] = STATE(2772), + [sym_int32] = STATE(2772), + [sym_uint32] = STATE(2772), + [sym_nativeint] = STATE(2772), + [sym_unativeint] = STATE(2772), + [sym_int64] = STATE(2772), + [sym_uint64] = STATE(2772), + [sym_ieee32] = STATE(2772), + [sym_ieee64] = STATE(2772), + [sym_bignum] = STATE(2772), + [sym_decimal] = STATE(2772), + [sym_float] = STATE(2731), + [sym_xml_doc] = STATE(2114), + [sym_block_comment] = STATE(2114), + [sym_preproc_line] = STATE(2114), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3912), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_when] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3924), + [anon_sym_AT_DQUOTE] = ACTIONS(3926), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3930), + [sym_bool] = ACTIONS(3932), + [sym_unit] = ACTIONS(3934), + [sym_int] = ACTIONS(3936), + [sym_xint] = ACTIONS(3938), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2115] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3677), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2128), + [sym_char] = STATE(2772), + [sym_format_string] = STATE(2796), + [sym__string_literal] = STATE(2796), + [sym_string] = STATE(2772), + [sym_verbatim_string] = STATE(2772), + [sym_bytechar] = STATE(2772), + [sym_bytearray] = STATE(2772), + [sym_verbatim_bytearray] = STATE(2772), + [sym_format_triple_quoted_string] = STATE(2828), + [sym_triple_quoted_string] = STATE(2772), + [sym_const] = STATE(2777), + [sym_long_identifier] = STATE(2115), + [sym_sbyte] = STATE(2772), + [sym_byte] = STATE(2772), + [sym_int16] = STATE(2772), + [sym_uint16] = STATE(2772), + [sym_int32] = STATE(2772), + [sym_uint32] = STATE(2772), + [sym_nativeint] = STATE(2772), + [sym_unativeint] = STATE(2772), + [sym_int64] = STATE(2772), + [sym_uint64] = STATE(2772), + [sym_ieee32] = STATE(2772), + [sym_ieee64] = STATE(2772), + [sym_bignum] = STATE(2772), + [sym_decimal] = STATE(2772), + [sym_float] = STATE(2731), + [sym_xml_doc] = STATE(2115), + [sym_block_comment] = STATE(2115), + [sym_preproc_line] = STATE(2115), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_DASH_GT] = ACTIONS(3822), + [anon_sym_when] = ACTIONS(3820), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2116] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2384), + [sym_function_declaration_left] = STATE(4415), + [sym_value_declaration_left] = STATE(4415), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2116), + [sym_block_comment] = STATE(2116), + [sym_preproc_line] = STATE(2116), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__dedent] = ACTIONS(3641), }, - [2141] = { - [sym_xml_doc] = STATE(2141), - [sym_block_comment] = STATE(2141), - [sym_preproc_line] = STATE(2141), - [sym_identifier] = ACTIONS(3942), + [2117] = { + [sym_type_arguments] = STATE(2079), + [sym__object_members] = STATE(2305), + [sym_long_identifier] = STATE(2071), + [sym_xml_doc] = STATE(2117), + [sym_block_comment] = STATE(2117), + [sym_preproc_line] = STATE(2117), + [aux_sym__compound_type_repeat1] = STATE(1944), + [ts_builtin_sym_end] = ACTIONS(3940), + [sym_identifier] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3942), [anon_sym_module] = ACTIONS(3942), [anon_sym_POUNDnowarn] = ACTIONS(3940), [anon_sym_POUNDr] = ACTIONS(3940), @@ -257030,7 +252901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(3942), [anon_sym_let] = ACTIONS(3942), [anon_sym_let_BANG] = ACTIONS(3940), - [aux_sym_access_modifier_token1] = ACTIONS(3940), [anon_sym_null] = ACTIONS(3942), [anon_sym_LPAREN] = ACTIONS(3942), [anon_sym_AMP] = ACTIONS(3942), @@ -257038,6 +252908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(3940), [anon_sym_LBRACE] = ACTIONS(3942), [anon_sym_LBRACE_PIPE] = ACTIONS(3940), + [anon_sym_with] = ACTIONS(3944), [anon_sym_new] = ACTIONS(3942), [anon_sym_return_BANG] = ACTIONS(3940), [anon_sym_yield] = ACTIONS(3942), @@ -257052,6 +252923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(3942), [anon_sym_if] = ACTIONS(3942), [anon_sym_fun] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3532), [anon_sym_try] = ACTIONS(3942), [anon_sym_match] = ACTIONS(3942), [anon_sym_match_BANG] = ACTIONS(3940), @@ -257060,13 +252932,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(3940), [anon_sym_do_BANG] = ACTIONS(3940), [anon_sym_begin] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_LT2] = ACTIONS(3536), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3538), [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_member] = ACTIONS(3942), - [anon_sym_abstract] = ACTIONS(3942), - [anon_sym_override] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_val] = ACTIONS(3942), + [anon_sym_interface] = ACTIONS(3942), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3942), [anon_sym_DQUOTE] = ACTIONS(3942), [anon_sym_AT_DQUOTE] = ACTIONS(3940), @@ -257091,1952 +252961,4043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(3940), - [sym__dedent] = ACTIONS(3940), - }, - [2142] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_type_arguments] = STATE(2258), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2142), - [sym_block_comment] = STATE(2142), - [sym_preproc_line] = STATE(2142), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2215), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4004), - [anon_sym_LT2] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2143] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_type_arguments] = STATE(2262), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2143), - [sym_block_comment] = STATE(2143), - [sym_preproc_line] = STATE(2143), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2219), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4008), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4010), - [anon_sym_LT2] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [2118] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3727), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2125), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2118), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2118), + [sym_block_comment] = STATE(2118), + [sym_preproc_line] = STATE(2118), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3822), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_RPAREN] = ACTIONS(3822), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_LT2] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2144] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_type_arguments] = STATE(2241), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2144), - [sym_block_comment] = STATE(2144), - [sym_preproc_line] = STATE(2144), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2220), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4012), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4014), - [anon_sym_LT2] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [2119] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2597), + [sym_function_declaration_left] = STATE(4707), + [sym_value_declaration_left] = STATE(4707), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2119), + [sym_block_comment] = STATE(2119), + [sym_preproc_line] = STATE(2119), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2145] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_type_arguments] = STATE(2231), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2145), - [sym_block_comment] = STATE(2145), - [sym_preproc_line] = STATE(2145), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2209), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4016), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_with] = ACTIONS(4018), - [anon_sym_LT2] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [2120] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(2503), + [sym_function_declaration_left] = STATE(4664), + [sym_value_declaration_left] = STATE(4664), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2120), + [sym_block_comment] = STATE(2120), + [sym_preproc_line] = STATE(2120), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2146] = { - [sym_attributes] = STATE(5204), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2146), - [sym_block_comment] = STATE(2146), - [sym_preproc_line] = STATE(2146), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2149), - [ts_builtin_sym_end] = ACTIONS(4020), - [sym_identifier] = ACTIONS(4022), - [anon_sym_namespace] = ACTIONS(4022), - [anon_sym_module] = ACTIONS(4022), - [anon_sym_POUNDnowarn] = ACTIONS(4020), - [anon_sym_POUNDr] = ACTIONS(4020), - [anon_sym_POUNDload] = ACTIONS(4020), - [anon_sym_open] = ACTIONS(4022), - [anon_sym_LBRACK_LT] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_type] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_and] = ACTIONS(4024), - [anon_sym_let] = ACTIONS(4022), - [anon_sym_let_BANG] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4022), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_LBRACK_PIPE] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_LBRACE_PIPE] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_return_BANG] = ACTIONS(4020), - [anon_sym_yield] = ACTIONS(4022), - [anon_sym_yield_BANG] = ACTIONS(4020), - [anon_sym_lazy] = ACTIONS(4022), - [anon_sym_assert] = ACTIONS(4022), - [anon_sym_upcast] = ACTIONS(4022), - [anon_sym_downcast] = ACTIONS(4022), - [anon_sym_LT_AT] = ACTIONS(4022), - [anon_sym_LT_AT_AT] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_fun] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_match] = ACTIONS(4022), - [anon_sym_match_BANG] = ACTIONS(4020), - [anon_sym_function] = ACTIONS(4022), - [anon_sym_use] = ACTIONS(4022), - [anon_sym_use_BANG] = ACTIONS(4020), - [anon_sym_do_BANG] = ACTIONS(4020), - [anon_sym_begin] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [anon_sym_AT_DQUOTE] = ACTIONS(4020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4020), - [sym_bool] = ACTIONS(4022), - [sym_unit] = ACTIONS(4020), - [aux_sym__identifier_or_op_token1] = ACTIONS(4020), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS_DOT] = ACTIONS(4020), - [anon_sym_DASH_DOT] = ACTIONS(4020), - [anon_sym_PERCENT] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [aux_sym_prefix_op_token1] = ACTIONS(4020), - [sym_int] = ACTIONS(4022), - [sym_xint] = ACTIONS(4020), + [2121] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(4247), + [sym_function_declaration_left] = STATE(4595), + [sym_value_declaration_left] = STATE(4595), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2121), + [sym_block_comment] = STATE(2121), + [sym_preproc_line] = STATE(2121), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4020), }, - [2147] = { - [sym_attributes] = STATE(5204), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2147), - [sym_block_comment] = STATE(2147), - [sym_preproc_line] = STATE(2147), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2150), - [ts_builtin_sym_end] = ACTIONS(4026), - [sym_identifier] = ACTIONS(4028), - [anon_sym_namespace] = ACTIONS(4028), - [anon_sym_module] = ACTIONS(4028), - [anon_sym_POUNDnowarn] = ACTIONS(4026), - [anon_sym_POUNDr] = ACTIONS(4026), - [anon_sym_POUNDload] = ACTIONS(4026), - [anon_sym_open] = ACTIONS(4028), - [anon_sym_LBRACK_LT] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_type] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_and] = ACTIONS(4024), - [anon_sym_let] = ACTIONS(4028), - [anon_sym_let_BANG] = ACTIONS(4026), - [anon_sym_null] = ACTIONS(4028), - [anon_sym_LPAREN] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_LBRACK_PIPE] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_return_BANG] = ACTIONS(4026), - [anon_sym_yield] = ACTIONS(4028), - [anon_sym_yield_BANG] = ACTIONS(4026), - [anon_sym_lazy] = ACTIONS(4028), - [anon_sym_assert] = ACTIONS(4028), - [anon_sym_upcast] = ACTIONS(4028), - [anon_sym_downcast] = ACTIONS(4028), - [anon_sym_LT_AT] = ACTIONS(4028), - [anon_sym_LT_AT_AT] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_fun] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_match] = ACTIONS(4028), - [anon_sym_match_BANG] = ACTIONS(4026), - [anon_sym_function] = ACTIONS(4028), - [anon_sym_use] = ACTIONS(4028), - [anon_sym_use_BANG] = ACTIONS(4026), - [anon_sym_do_BANG] = ACTIONS(4026), - [anon_sym_begin] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_AT_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4026), - [sym_bool] = ACTIONS(4028), - [sym_unit] = ACTIONS(4026), - [aux_sym__identifier_or_op_token1] = ACTIONS(4026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS_DOT] = ACTIONS(4026), - [anon_sym_DASH_DOT] = ACTIONS(4026), - [anon_sym_PERCENT] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [aux_sym_prefix_op_token1] = ACTIONS(4026), - [sym_int] = ACTIONS(4028), - [sym_xint] = ACTIONS(4026), + [2122] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3727), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2125), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2118), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2122), + [sym_block_comment] = STATE(2122), + [sym_preproc_line] = STATE(2122), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3782), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_LT2] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4026), }, - [2148] = { - [sym_attributes] = STATE(5204), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2148), - [sym_block_comment] = STATE(2148), - [sym_preproc_line] = STATE(2148), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2147), - [ts_builtin_sym_end] = ACTIONS(4030), - [sym_identifier] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_POUNDnowarn] = ACTIONS(4030), - [anon_sym_POUNDr] = ACTIONS(4030), - [anon_sym_POUNDload] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4032), - [anon_sym_LBRACK_LT] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_type] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_and] = ACTIONS(4024), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_let_BANG] = ACTIONS(4030), - [anon_sym_null] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_LBRACK_PIPE] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_LBRACE_PIPE] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_return_BANG] = ACTIONS(4030), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_yield_BANG] = ACTIONS(4030), - [anon_sym_lazy] = ACTIONS(4032), - [anon_sym_assert] = ACTIONS(4032), - [anon_sym_upcast] = ACTIONS(4032), - [anon_sym_downcast] = ACTIONS(4032), - [anon_sym_LT_AT] = ACTIONS(4032), - [anon_sym_LT_AT_AT] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_fun] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_match] = ACTIONS(4032), - [anon_sym_match_BANG] = ACTIONS(4030), - [anon_sym_function] = ACTIONS(4032), - [anon_sym_use] = ACTIONS(4032), - [anon_sym_use_BANG] = ACTIONS(4030), - [anon_sym_do_BANG] = ACTIONS(4030), - [anon_sym_begin] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [anon_sym_AT_DQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [sym_bool] = ACTIONS(4032), - [sym_unit] = ACTIONS(4030), - [aux_sym__identifier_or_op_token1] = ACTIONS(4030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS_DOT] = ACTIONS(4030), - [anon_sym_DASH_DOT] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [aux_sym_prefix_op_token1] = ACTIONS(4030), - [sym_int] = ACTIONS(4032), - [sym_xint] = ACTIONS(4030), + [2123] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__function_or_value_defn_body] = STATE(4586), + [sym_function_declaration_left] = STATE(4539), + [sym_value_declaration_left] = STATE(4539), + [sym_access_modifier] = STATE(2215), + [sym__pattern] = STATE(3775), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2609), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2123), + [sym_block_comment] = STATE(2123), + [sym_preproc_line] = STATE(2123), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3888), + [aux_sym_access_modifier_token1] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4030), }, - [2149] = { - [sym_attributes] = STATE(5204), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2149), - [sym_block_comment] = STATE(2149), - [sym_preproc_line] = STATE(2149), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2150), - [ts_builtin_sym_end] = ACTIONS(4030), - [sym_identifier] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_POUNDnowarn] = ACTIONS(4030), - [anon_sym_POUNDr] = ACTIONS(4030), - [anon_sym_POUNDload] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4032), - [anon_sym_LBRACK_LT] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_type] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_and] = ACTIONS(4024), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_let_BANG] = ACTIONS(4030), - [anon_sym_null] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_LBRACK_PIPE] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_LBRACE_PIPE] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_return_BANG] = ACTIONS(4030), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_yield_BANG] = ACTIONS(4030), - [anon_sym_lazy] = ACTIONS(4032), - [anon_sym_assert] = ACTIONS(4032), - [anon_sym_upcast] = ACTIONS(4032), - [anon_sym_downcast] = ACTIONS(4032), - [anon_sym_LT_AT] = ACTIONS(4032), - [anon_sym_LT_AT_AT] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_fun] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_match] = ACTIONS(4032), - [anon_sym_match_BANG] = ACTIONS(4030), - [anon_sym_function] = ACTIONS(4032), - [anon_sym_use] = ACTIONS(4032), - [anon_sym_use_BANG] = ACTIONS(4030), - [anon_sym_do_BANG] = ACTIONS(4030), - [anon_sym_begin] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [anon_sym_AT_DQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [sym_bool] = ACTIONS(4032), - [sym_unit] = ACTIONS(4030), - [aux_sym__identifier_or_op_token1] = ACTIONS(4030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS_DOT] = ACTIONS(4030), - [anon_sym_DASH_DOT] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [aux_sym_prefix_op_token1] = ACTIONS(4030), - [sym_int] = ACTIONS(4032), - [sym_xint] = ACTIONS(4030), + [2124] = { + [sym_type_arguments] = STATE(2097), + [sym__object_members] = STATE(2359), + [sym_long_identifier] = STATE(2092), + [sym_xml_doc] = STATE(2124), + [sym_block_comment] = STATE(2124), + [sym_preproc_line] = STATE(2124), + [aux_sym__compound_type_repeat1] = STATE(2088), + [sym_identifier] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_POUNDnowarn] = ACTIONS(3940), + [anon_sym_POUNDr] = ACTIONS(3940), + [anon_sym_POUNDload] = ACTIONS(3940), + [anon_sym_open] = ACTIONS(3942), + [anon_sym_LBRACK_LT] = ACTIONS(3940), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_type] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_and] = ACTIONS(3942), + [anon_sym_let] = ACTIONS(3942), + [anon_sym_let_BANG] = ACTIONS(3940), + [anon_sym_null] = ACTIONS(3942), + [anon_sym_LPAREN] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_LBRACK_PIPE] = ACTIONS(3940), + [anon_sym_LBRACE] = ACTIONS(3942), + [anon_sym_LBRACE_PIPE] = ACTIONS(3940), + [anon_sym_with] = ACTIONS(3946), + [anon_sym_new] = ACTIONS(3942), + [anon_sym_return_BANG] = ACTIONS(3940), + [anon_sym_yield] = ACTIONS(3942), + [anon_sym_yield_BANG] = ACTIONS(3940), + [anon_sym_lazy] = ACTIONS(3942), + [anon_sym_assert] = ACTIONS(3942), + [anon_sym_upcast] = ACTIONS(3942), + [anon_sym_downcast] = ACTIONS(3942), + [anon_sym_LT_AT] = ACTIONS(3942), + [anon_sym_LT_AT_AT] = ACTIONS(3940), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_fun] = ACTIONS(3942), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_match] = ACTIONS(3942), + [anon_sym_match_BANG] = ACTIONS(3940), + [anon_sym_function] = ACTIONS(3942), + [anon_sym_use] = ACTIONS(3942), + [anon_sym_use_BANG] = ACTIONS(3940), + [anon_sym_do_BANG] = ACTIONS(3940), + [anon_sym_begin] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_LT2] = ACTIONS(3650), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3940), + [anon_sym_interface] = ACTIONS(3942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_AT_DQUOTE] = ACTIONS(3940), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3940), + [sym_bool] = ACTIONS(3942), + [sym_unit] = ACTIONS(3940), + [aux_sym__identifier_or_op_token1] = ACTIONS(3940), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS_DOT] = ACTIONS(3940), + [anon_sym_DASH_DOT] = ACTIONS(3940), + [anon_sym_PERCENT] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [aux_sym_prefix_op_token1] = ACTIONS(3940), + [sym_int] = ACTIONS(3942), + [sym_xint] = ACTIONS(3940), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4030), + [anon_sym_POUNDif] = ACTIONS(3940), + [sym__dedent] = ACTIONS(3940), }, - [2150] = { - [sym_attributes] = STATE(5204), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2150), - [sym_block_comment] = STATE(2150), - [sym_preproc_line] = STATE(2150), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2150), - [ts_builtin_sym_end] = ACTIONS(4034), - [sym_identifier] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_POUNDnowarn] = ACTIONS(4034), - [anon_sym_POUNDr] = ACTIONS(4034), - [anon_sym_POUNDload] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4036), - [anon_sym_LBRACK_LT] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_type] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4036), - [anon_sym_let_BANG] = ACTIONS(4034), - [anon_sym_null] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LBRACK_PIPE] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_LBRACE_PIPE] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_return_BANG] = ACTIONS(4034), - [anon_sym_yield] = ACTIONS(4036), - [anon_sym_yield_BANG] = ACTIONS(4034), - [anon_sym_lazy] = ACTIONS(4036), - [anon_sym_assert] = ACTIONS(4036), - [anon_sym_upcast] = ACTIONS(4036), - [anon_sym_downcast] = ACTIONS(4036), - [anon_sym_LT_AT] = ACTIONS(4036), - [anon_sym_LT_AT_AT] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_fun] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_match] = ACTIONS(4036), - [anon_sym_match_BANG] = ACTIONS(4034), - [anon_sym_function] = ACTIONS(4036), - [anon_sym_use] = ACTIONS(4036), - [anon_sym_use_BANG] = ACTIONS(4034), - [anon_sym_do_BANG] = ACTIONS(4034), - [anon_sym_begin] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_AT_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [sym_bool] = ACTIONS(4036), - [sym_unit] = ACTIONS(4034), - [aux_sym__identifier_or_op_token1] = ACTIONS(4034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS_DOT] = ACTIONS(4034), - [anon_sym_DASH_DOT] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [aux_sym_prefix_op_token1] = ACTIONS(4034), - [sym_int] = ACTIONS(4036), - [sym_xint] = ACTIONS(4034), + [2125] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3679), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2125), + [sym_block_comment] = STATE(2125), + [sym_preproc_line] = STATE(2125), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_LT2] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4034), }, - [2151] = { - [sym_attributes] = STATE(4738), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2151), - [sym_block_comment] = STATE(2151), - [sym_preproc_line] = STATE(2151), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2170), - [sym_identifier] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_POUNDnowarn] = ACTIONS(4030), - [anon_sym_POUNDr] = ACTIONS(4030), - [anon_sym_POUNDload] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4032), - [anon_sym_LBRACK_LT] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_type] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_and] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_let_BANG] = ACTIONS(4030), - [anon_sym_null] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_LBRACK_PIPE] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_LBRACE_PIPE] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_return_BANG] = ACTIONS(4030), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_yield_BANG] = ACTIONS(4030), - [anon_sym_lazy] = ACTIONS(4032), - [anon_sym_assert] = ACTIONS(4032), - [anon_sym_upcast] = ACTIONS(4032), - [anon_sym_downcast] = ACTIONS(4032), - [anon_sym_LT_AT] = ACTIONS(4032), - [anon_sym_LT_AT_AT] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_fun] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_match] = ACTIONS(4032), - [anon_sym_match_BANG] = ACTIONS(4030), - [anon_sym_function] = ACTIONS(4032), - [anon_sym_use] = ACTIONS(4032), - [anon_sym_use_BANG] = ACTIONS(4030), - [anon_sym_do_BANG] = ACTIONS(4030), - [anon_sym_begin] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [anon_sym_AT_DQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [sym_bool] = ACTIONS(4032), - [sym_unit] = ACTIONS(4030), - [aux_sym__identifier_or_op_token1] = ACTIONS(4030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS_DOT] = ACTIONS(4030), - [anon_sym_DASH_DOT] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [aux_sym_prefix_op_token1] = ACTIONS(4030), - [sym_int] = ACTIONS(4032), - [sym_xint] = ACTIONS(4030), + [2126] = { + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3878), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2140), + [sym_char] = STATE(2865), + [sym_format_string] = STATE(2899), + [sym__string_literal] = STATE(2899), + [sym_string] = STATE(2865), + [sym_verbatim_string] = STATE(2865), + [sym_bytechar] = STATE(2865), + [sym_bytearray] = STATE(2865), + [sym_verbatim_bytearray] = STATE(2865), + [sym_format_triple_quoted_string] = STATE(2870), + [sym_triple_quoted_string] = STATE(2865), + [sym_const] = STATE(2849), + [sym_long_identifier] = STATE(2136), + [sym_sbyte] = STATE(2865), + [sym_byte] = STATE(2865), + [sym_int16] = STATE(2865), + [sym_uint16] = STATE(2865), + [sym_int32] = STATE(2865), + [sym_uint32] = STATE(2865), + [sym_nativeint] = STATE(2865), + [sym_unativeint] = STATE(2865), + [sym_int64] = STATE(2865), + [sym_uint64] = STATE(2865), + [sym_ieee32] = STATE(2865), + [sym_ieee64] = STATE(2865), + [sym_bignum] = STATE(2865), + [sym_decimal] = STATE(2865), + [sym_float] = STATE(2749), + [sym_xml_doc] = STATE(2126), + [sym_block_comment] = STATE(2126), + [sym_preproc_line] = STATE(2126), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3950), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_in] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_AT_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), + [sym_bool] = ACTIONS(3970), + [sym_unit] = ACTIONS(3972), + [sym_int] = ACTIONS(3974), + [sym_xint] = ACTIONS(3976), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4030), - [sym__dedent] = ACTIONS(4030), }, - [2152] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1331), - [sym_rules] = STATE(1751), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2152), - [sym_block_comment] = STATE(2152), - [sym_preproc_line] = STATE(2152), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2127] = { + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2769), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym__pattern_param] = STATE(2139), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2133), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2127), + [sym_block_comment] = STATE(2127), + [sym_preproc_line] = STATE(2127), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LBRACK_LT] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_QMARK] = ACTIONS(3776), + [anon_sym_COLON_QMARK] = ACTIONS(3776), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3780), + [sym_unit] = ACTIONS(3776), + [sym_int] = ACTIONS(3780), + [sym_xint] = ACTIONS(3776), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2153] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(820), - [sym_rules] = STATE(1016), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2153), - [sym_block_comment] = STATE(2153), - [sym_preproc_line] = STATE(2153), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2128] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3682), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2128), + [sym_block_comment] = STATE(2128), + [sym_preproc_line] = STATE(2128), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_DASH_GT] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2154] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3623), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym__identifier_or_op] = STATE(2553), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2154), - [sym_block_comment] = STATE(2154), - [sym_preproc_line] = STATE(2154), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3762), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [aux_sym__identifier_or_op_token1] = ACTIONS(3776), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3778), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2129] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2940), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym__pattern_param] = STATE(2138), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2129), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2129), + [sym_block_comment] = STATE(2129), + [sym_preproc_line] = STATE(2129), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3822), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2155] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(852), - [sym_rules] = STATE(1096), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2155), - [sym_block_comment] = STATE(2155), - [sym_preproc_line] = STATE(2155), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2130] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2977), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym__pattern_param] = STATE(2154), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2134), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2130), + [sym_block_comment] = STATE(2130), + [sym_preproc_line] = STATE(2130), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3780), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3780), + [sym_unit] = ACTIONS(3776), + [sym_int] = ACTIONS(3780), + [sym_xint] = ACTIONS(3776), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2156] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(829), - [sym_rules] = STATE(1014), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2156), - [sym_block_comment] = STATE(2156), - [sym_preproc_line] = STATE(2156), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2131] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2940), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym__pattern_param] = STATE(2138), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2129), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2131), + [sym_block_comment] = STATE(2131), + [sym_preproc_line] = STATE(2131), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3780), + [sym_unit] = ACTIONS(3776), + [sym_int] = ACTIONS(3780), + [sym_xint] = ACTIONS(3776), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2157] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(829), - [sym_rules] = STATE(1015), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2157), - [sym_block_comment] = STATE(2157), - [sym_preproc_line] = STATE(2157), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2132] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3868), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2141), + [sym_char] = STATE(2772), + [sym_format_string] = STATE(2796), + [sym__string_literal] = STATE(2796), + [sym_string] = STATE(2772), + [sym_verbatim_string] = STATE(2772), + [sym_bytechar] = STATE(2772), + [sym_bytearray] = STATE(2772), + [sym_verbatim_bytearray] = STATE(2772), + [sym_format_triple_quoted_string] = STATE(2828), + [sym_triple_quoted_string] = STATE(2772), + [sym_const] = STATE(2777), + [sym_long_identifier] = STATE(2135), + [sym_sbyte] = STATE(2772), + [sym_byte] = STATE(2772), + [sym_int16] = STATE(2772), + [sym_uint16] = STATE(2772), + [sym_int32] = STATE(2772), + [sym_uint32] = STATE(2772), + [sym_nativeint] = STATE(2772), + [sym_unativeint] = STATE(2772), + [sym_int64] = STATE(2772), + [sym_uint64] = STATE(2772), + [sym_ieee32] = STATE(2772), + [sym_ieee64] = STATE(2772), + [sym_bignum] = STATE(2772), + [sym_decimal] = STATE(2772), + [sym_float] = STATE(2731), + [sym_xml_doc] = STATE(2132), + [sym_block_comment] = STATE(2132), + [sym_preproc_line] = STATE(2132), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3912), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3776), + [anon_sym_when] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3924), + [anon_sym_AT_DQUOTE] = ACTIONS(3926), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3930), + [sym_bool] = ACTIONS(3932), + [sym_unit] = ACTIONS(3934), + [sym_int] = ACTIONS(3936), + [sym_xint] = ACTIONS(3938), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2158] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1266), - [sym_rules] = STATE(1469), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2158), - [sym_block_comment] = STATE(2158), - [sym_preproc_line] = STATE(2158), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2133] = { + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2769), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym__pattern_param] = STATE(2139), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2133), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2133), + [sym_block_comment] = STATE(2133), + [sym_preproc_line] = STATE(2133), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3822), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2159] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1266), - [sym_rules] = STATE(1485), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2159), - [sym_block_comment] = STATE(2159), - [sym_preproc_line] = STATE(2159), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2134] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2977), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym__pattern_param] = STATE(2154), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2134), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2134), + [sym_block_comment] = STATE(2134), + [sym_preproc_line] = STATE(2134), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_DASH_GT] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2160] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1266), - [sym_rules] = STATE(1486), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2160), - [sym_block_comment] = STATE(2160), - [sym_preproc_line] = STATE(2160), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2135] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3868), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2141), + [sym_char] = STATE(2772), + [sym_format_string] = STATE(2796), + [sym__string_literal] = STATE(2796), + [sym_string] = STATE(2772), + [sym_verbatim_string] = STATE(2772), + [sym_bytechar] = STATE(2772), + [sym_bytearray] = STATE(2772), + [sym_verbatim_bytearray] = STATE(2772), + [sym_format_triple_quoted_string] = STATE(2828), + [sym_triple_quoted_string] = STATE(2772), + [sym_const] = STATE(2777), + [sym_long_identifier] = STATE(2135), + [sym_sbyte] = STATE(2772), + [sym_byte] = STATE(2772), + [sym_int16] = STATE(2772), + [sym_uint16] = STATE(2772), + [sym_int32] = STATE(2772), + [sym_uint32] = STATE(2772), + [sym_nativeint] = STATE(2772), + [sym_unativeint] = STATE(2772), + [sym_int64] = STATE(2772), + [sym_uint64] = STATE(2772), + [sym_ieee32] = STATE(2772), + [sym_ieee64] = STATE(2772), + [sym_bignum] = STATE(2772), + [sym_decimal] = STATE(2772), + [sym_float] = STATE(2731), + [sym_xml_doc] = STATE(2135), + [sym_block_comment] = STATE(2135), + [sym_preproc_line] = STATE(2135), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_DASH_GT] = ACTIONS(3822), + [anon_sym_when] = ACTIONS(3820), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2161] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(829), - [sym_rules] = STATE(1025), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2161), - [sym_block_comment] = STATE(2161), - [sym_preproc_line] = STATE(2161), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2136] = { + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3878), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2140), + [sym_char] = STATE(2865), + [sym_format_string] = STATE(2899), + [sym__string_literal] = STATE(2899), + [sym_string] = STATE(2865), + [sym_verbatim_string] = STATE(2865), + [sym_bytechar] = STATE(2865), + [sym_bytearray] = STATE(2865), + [sym_verbatim_bytearray] = STATE(2865), + [sym_format_triple_quoted_string] = STATE(2870), + [sym_triple_quoted_string] = STATE(2865), + [sym_const] = STATE(2849), + [sym_long_identifier] = STATE(2136), + [sym_sbyte] = STATE(2865), + [sym_byte] = STATE(2865), + [sym_int16] = STATE(2865), + [sym_uint16] = STATE(2865), + [sym_int32] = STATE(2865), + [sym_uint32] = STATE(2865), + [sym_nativeint] = STATE(2865), + [sym_unativeint] = STATE(2865), + [sym_int64] = STATE(2865), + [sym_uint64] = STATE(2865), + [sym_ieee32] = STATE(2865), + [sym_ieee64] = STATE(2865), + [sym_bignum] = STATE(2865), + [sym_decimal] = STATE(2865), + [sym_float] = STATE(2749), + [sym_xml_doc] = STATE(2136), + [sym_block_comment] = STATE(2136), + [sym_preproc_line] = STATE(2136), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_in] = ACTIONS(3820), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2162] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1266), - [sym_rules] = STATE(1541), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2162), - [sym_block_comment] = STATE(2162), - [sym_preproc_line] = STATE(2162), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2137] = { + [sym_xml_doc] = STATE(2137), + [sym_block_comment] = STATE(2137), + [sym_preproc_line] = STATE(2137), + [ts_builtin_sym_end] = ACTIONS(3988), + [sym_identifier] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_module] = ACTIONS(3990), + [anon_sym_POUNDnowarn] = ACTIONS(3988), + [anon_sym_POUNDr] = ACTIONS(3988), + [anon_sym_POUNDload] = ACTIONS(3988), + [anon_sym_open] = ACTIONS(3990), + [anon_sym_LBRACK_LT] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_type] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_let_BANG] = ACTIONS(3988), + [aux_sym_access_modifier_token1] = ACTIONS(3988), + [anon_sym_null] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_LBRACK_PIPE] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_LBRACE_PIPE] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_return_BANG] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3990), + [anon_sym_yield_BANG] = ACTIONS(3988), + [anon_sym_lazy] = ACTIONS(3990), + [anon_sym_assert] = ACTIONS(3990), + [anon_sym_upcast] = ACTIONS(3990), + [anon_sym_downcast] = ACTIONS(3990), + [anon_sym_LT_AT] = ACTIONS(3990), + [anon_sym_LT_AT_AT] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_fun] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_match] = ACTIONS(3990), + [anon_sym_match_BANG] = ACTIONS(3988), + [anon_sym_function] = ACTIONS(3990), + [anon_sym_use] = ACTIONS(3990), + [anon_sym_use_BANG] = ACTIONS(3988), + [anon_sym_do_BANG] = ACTIONS(3988), + [anon_sym_begin] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_member] = ACTIONS(3990), + [anon_sym_abstract] = ACTIONS(3990), + [anon_sym_override] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_val] = ACTIONS(3990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [anon_sym_AT_DQUOTE] = ACTIONS(3988), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [sym_bool] = ACTIONS(3990), + [sym_unit] = ACTIONS(3988), + [aux_sym__identifier_or_op_token1] = ACTIONS(3988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS_DOT] = ACTIONS(3988), + [anon_sym_DASH_DOT] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [aux_sym_prefix_op_token1] = ACTIONS(3988), + [sym_int] = ACTIONS(3990), + [sym_xint] = ACTIONS(3988), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3988), }, - [2163] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(852), - [sym_rules] = STATE(1122), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2163), - [sym_block_comment] = STATE(2163), - [sym_preproc_line] = STATE(2163), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2138] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2928), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), + [sym_xml_doc] = STATE(2138), + [sym_block_comment] = STATE(2138), + [sym_preproc_line] = STATE(2138), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3860), + [anon_sym__] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3860), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [anon_sym_AT_DQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [sym_bool] = ACTIONS(3860), + [sym_unit] = ACTIONS(3858), + [sym_int] = ACTIONS(3860), + [sym_xint] = ACTIONS(3858), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2164] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(829), - [sym_rules] = STATE(1028), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2164), - [sym_block_comment] = STATE(2164), - [sym_preproc_line] = STATE(2164), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [2139] = { + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2776), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2139), + [sym_block_comment] = STATE(2139), + [sym_preproc_line] = STATE(2139), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LBRACK_LT] = ACTIONS(3858), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3860), + [anon_sym__] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3858), + [anon_sym_COLON_QMARK] = ACTIONS(3858), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3860), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [anon_sym_AT_DQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [sym_bool] = ACTIONS(3860), + [sym_unit] = ACTIONS(3858), + [sym_int] = ACTIONS(3860), + [sym_xint] = ACTIONS(3858), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, - [2165] = { - [sym_attributes] = STATE(4738), - [sym_attribute_set] = STATE(3120), - [sym_xml_doc] = STATE(2165), - [sym_block_comment] = STATE(2165), - [sym_preproc_line] = STATE(2165), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2186), - [sym_identifier] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_POUNDnowarn] = ACTIONS(4030), - [anon_sym_POUNDr] = ACTIONS(4030), - [anon_sym_POUNDload] = ACTIONS(4030), - [anon_sym_open] = ACTIONS(4032), - [anon_sym_LBRACK_LT] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_type] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_and] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_let_BANG] = ACTIONS(4030), - [anon_sym_null] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_LBRACK_PIPE] = ACTIONS(4030), + [2140] = { + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3851), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2140), + [sym_block_comment] = STATE(2140), + [sym_preproc_line] = STATE(2140), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2141] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3807), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2141), + [sym_block_comment] = STATE(2141), + [sym_preproc_line] = STATE(2141), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(3858), + [anon_sym_when] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2142] = { + [sym_xml_doc] = STATE(2142), + [sym_block_comment] = STATE(2142), + [sym_preproc_line] = STATE(2142), + [ts_builtin_sym_end] = ACTIONS(3994), + [sym_identifier] = ACTIONS(3996), + [anon_sym_namespace] = ACTIONS(3996), + [anon_sym_module] = ACTIONS(3996), + [anon_sym_POUNDnowarn] = ACTIONS(3994), + [anon_sym_POUNDr] = ACTIONS(3994), + [anon_sym_POUNDload] = ACTIONS(3994), + [anon_sym_open] = ACTIONS(3996), + [anon_sym_LBRACK_LT] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_type] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_and] = ACTIONS(3996), + [anon_sym_let] = ACTIONS(3996), + [anon_sym_let_BANG] = ACTIONS(3994), + [aux_sym_access_modifier_token1] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_LBRACK_PIPE] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_LBRACE_PIPE] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_return_BANG] = ACTIONS(3994), + [anon_sym_yield] = ACTIONS(3996), + [anon_sym_yield_BANG] = ACTIONS(3994), + [anon_sym_lazy] = ACTIONS(3996), + [anon_sym_assert] = ACTIONS(3996), + [anon_sym_upcast] = ACTIONS(3996), + [anon_sym_downcast] = ACTIONS(3996), + [anon_sym_LT_AT] = ACTIONS(3996), + [anon_sym_LT_AT_AT] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_fun] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_match] = ACTIONS(3996), + [anon_sym_match_BANG] = ACTIONS(3994), + [anon_sym_function] = ACTIONS(3996), + [anon_sym_use] = ACTIONS(3996), + [anon_sym_use_BANG] = ACTIONS(3994), + [anon_sym_do_BANG] = ACTIONS(3994), + [anon_sym_begin] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_member] = ACTIONS(3996), + [anon_sym_abstract] = ACTIONS(3996), + [anon_sym_override] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_val] = ACTIONS(3996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [anon_sym_AT_DQUOTE] = ACTIONS(3994), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3994), + [sym_bool] = ACTIONS(3996), + [sym_unit] = ACTIONS(3994), + [aux_sym__identifier_or_op_token1] = ACTIONS(3994), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS_DOT] = ACTIONS(3994), + [anon_sym_DASH_DOT] = ACTIONS(3994), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [aux_sym_prefix_op_token1] = ACTIONS(3994), + [sym_int] = ACTIONS(3996), + [sym_xint] = ACTIONS(3994), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3994), + }, + [2143] = { + [sym_xml_doc] = STATE(2143), + [sym_block_comment] = STATE(2143), + [sym_preproc_line] = STATE(2143), + [ts_builtin_sym_end] = ACTIONS(4000), + [sym_identifier] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_module] = ACTIONS(4002), + [anon_sym_POUNDnowarn] = ACTIONS(4000), + [anon_sym_POUNDr] = ACTIONS(4000), + [anon_sym_POUNDload] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4002), + [anon_sym_LBRACK_LT] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_type] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_let] = ACTIONS(4002), + [anon_sym_let_BANG] = ACTIONS(4000), + [aux_sym_access_modifier_token1] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_LBRACK_PIPE] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LBRACE_PIPE] = ACTIONS(4000), + [anon_sym_with] = ACTIONS(4004), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_return_BANG] = ACTIONS(4000), + [anon_sym_yield] = ACTIONS(4002), + [anon_sym_yield_BANG] = ACTIONS(4000), + [anon_sym_lazy] = ACTIONS(4002), + [anon_sym_assert] = ACTIONS(4002), + [anon_sym_upcast] = ACTIONS(4002), + [anon_sym_downcast] = ACTIONS(4002), + [anon_sym_LT_AT] = ACTIONS(4002), + [anon_sym_LT_AT_AT] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_fun] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_match] = ACTIONS(4002), + [anon_sym_match_BANG] = ACTIONS(4000), + [anon_sym_function] = ACTIONS(4002), + [anon_sym_use] = ACTIONS(4002), + [anon_sym_use_BANG] = ACTIONS(4000), + [anon_sym_do_BANG] = ACTIONS(4000), + [anon_sym_begin] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_member] = ACTIONS(4002), + [anon_sym_abstract] = ACTIONS(4002), + [anon_sym_override] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_val] = ACTIONS(4002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_AT_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4000), + [sym_bool] = ACTIONS(4002), + [sym_unit] = ACTIONS(4000), + [aux_sym__identifier_or_op_token1] = ACTIONS(4000), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS_DOT] = ACTIONS(4000), + [anon_sym_DASH_DOT] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [aux_sym_prefix_op_token1] = ACTIONS(4000), + [sym_int] = ACTIONS(4002), + [sym_xint] = ACTIONS(4000), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4000), + }, + [2144] = { + [sym_xml_doc] = STATE(2144), + [sym_block_comment] = STATE(2144), + [sym_preproc_line] = STATE(2144), + [ts_builtin_sym_end] = ACTIONS(4006), + [sym_identifier] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_POUNDnowarn] = ACTIONS(4006), + [anon_sym_POUNDr] = ACTIONS(4006), + [anon_sym_POUNDload] = ACTIONS(4006), + [anon_sym_open] = ACTIONS(4008), + [anon_sym_LBRACK_LT] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4008), + [anon_sym_let_BANG] = ACTIONS(4006), + [aux_sym_access_modifier_token1] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_COMMA] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK_PIPE] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_LBRACE_PIPE] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_return_BANG] = ACTIONS(4006), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_yield_BANG] = ACTIONS(4006), + [anon_sym_lazy] = ACTIONS(4008), + [anon_sym_assert] = ACTIONS(4008), + [anon_sym_upcast] = ACTIONS(4008), + [anon_sym_downcast] = ACTIONS(4008), + [anon_sym_LT_AT] = ACTIONS(4008), + [anon_sym_LT_AT_AT] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_fun] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_match_BANG] = ACTIONS(4006), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_use] = ACTIONS(4008), + [anon_sym_use_BANG] = ACTIONS(4006), + [anon_sym_do_BANG] = ACTIONS(4006), + [anon_sym_begin] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_member] = ACTIONS(4008), + [anon_sym_abstract] = ACTIONS(4008), + [anon_sym_override] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_val] = ACTIONS(4008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [anon_sym_AT_DQUOTE] = ACTIONS(4006), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [sym_bool] = ACTIONS(4008), + [sym_unit] = ACTIONS(4006), + [aux_sym__identifier_or_op_token1] = ACTIONS(4006), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS_DOT] = ACTIONS(4006), + [anon_sym_DASH_DOT] = ACTIONS(4006), + [anon_sym_PERCENT] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [aux_sym_prefix_op_token1] = ACTIONS(4006), + [sym_int] = ACTIONS(4008), + [sym_xint] = ACTIONS(4006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4006), + }, + [2145] = { + [sym_xml_doc] = STATE(2145), + [sym_block_comment] = STATE(2145), + [sym_preproc_line] = STATE(2145), + [ts_builtin_sym_end] = ACTIONS(4006), + [sym_identifier] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_POUNDnowarn] = ACTIONS(4006), + [anon_sym_POUNDr] = ACTIONS(4006), + [anon_sym_POUNDload] = ACTIONS(4006), + [anon_sym_open] = ACTIONS(4008), + [anon_sym_LBRACK_LT] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4008), + [anon_sym_let_BANG] = ACTIONS(4006), + [aux_sym_access_modifier_token1] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_COMMA] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK_PIPE] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_LBRACE_PIPE] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_return_BANG] = ACTIONS(4006), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_yield_BANG] = ACTIONS(4006), + [anon_sym_lazy] = ACTIONS(4008), + [anon_sym_assert] = ACTIONS(4008), + [anon_sym_upcast] = ACTIONS(4008), + [anon_sym_downcast] = ACTIONS(4008), + [anon_sym_LT_AT] = ACTIONS(4008), + [anon_sym_LT_AT_AT] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_fun] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_match_BANG] = ACTIONS(4006), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_use] = ACTIONS(4008), + [anon_sym_use_BANG] = ACTIONS(4006), + [anon_sym_do_BANG] = ACTIONS(4006), + [anon_sym_begin] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_member] = ACTIONS(4008), + [anon_sym_abstract] = ACTIONS(4008), + [anon_sym_override] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_val] = ACTIONS(4008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [anon_sym_AT_DQUOTE] = ACTIONS(4006), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [sym_bool] = ACTIONS(4008), + [sym_unit] = ACTIONS(4006), + [aux_sym__identifier_or_op_token1] = ACTIONS(4006), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS_DOT] = ACTIONS(4006), + [anon_sym_DASH_DOT] = ACTIONS(4006), + [anon_sym_PERCENT] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [aux_sym_prefix_op_token1] = ACTIONS(4006), + [sym_int] = ACTIONS(4008), + [sym_xint] = ACTIONS(4006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4006), + }, + [2146] = { + [sym_xml_doc] = STATE(2146), + [sym_block_comment] = STATE(2146), + [sym_preproc_line] = STATE(2146), + [ts_builtin_sym_end] = ACTIONS(3988), + [sym_identifier] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_module] = ACTIONS(3990), + [anon_sym_POUNDnowarn] = ACTIONS(3988), + [anon_sym_POUNDr] = ACTIONS(3988), + [anon_sym_POUNDload] = ACTIONS(3988), + [anon_sym_open] = ACTIONS(3990), + [anon_sym_LBRACK_LT] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_type] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_let_BANG] = ACTIONS(3988), + [aux_sym_access_modifier_token1] = ACTIONS(3988), + [anon_sym_null] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_LBRACK_PIPE] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_LBRACE_PIPE] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_return_BANG] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3990), + [anon_sym_yield_BANG] = ACTIONS(3988), + [anon_sym_lazy] = ACTIONS(3990), + [anon_sym_assert] = ACTIONS(3990), + [anon_sym_upcast] = ACTIONS(3990), + [anon_sym_downcast] = ACTIONS(3990), + [anon_sym_LT_AT] = ACTIONS(3990), + [anon_sym_LT_AT_AT] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_fun] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_match] = ACTIONS(3990), + [anon_sym_match_BANG] = ACTIONS(3988), + [anon_sym_function] = ACTIONS(3990), + [anon_sym_use] = ACTIONS(3990), + [anon_sym_use_BANG] = ACTIONS(3988), + [anon_sym_do_BANG] = ACTIONS(3988), + [anon_sym_begin] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_member] = ACTIONS(3990), + [anon_sym_abstract] = ACTIONS(3990), + [anon_sym_override] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_val] = ACTIONS(3990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [anon_sym_AT_DQUOTE] = ACTIONS(3988), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [sym_bool] = ACTIONS(3990), + [sym_unit] = ACTIONS(3988), + [aux_sym__identifier_or_op_token1] = ACTIONS(3988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS_DOT] = ACTIONS(3988), + [anon_sym_DASH_DOT] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [aux_sym_prefix_op_token1] = ACTIONS(3988), + [sym_int] = ACTIONS(3990), + [sym_xint] = ACTIONS(3988), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3988), + }, + [2147] = { + [sym_xml_doc] = STATE(2147), + [sym_block_comment] = STATE(2147), + [sym_preproc_line] = STATE(2147), + [ts_builtin_sym_end] = ACTIONS(4016), + [sym_identifier] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_POUNDnowarn] = ACTIONS(4016), + [anon_sym_POUNDr] = ACTIONS(4016), + [anon_sym_POUNDload] = ACTIONS(4016), + [anon_sym_open] = ACTIONS(4018), + [anon_sym_LBRACK_LT] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_let_BANG] = ACTIONS(4016), + [aux_sym_access_modifier_token1] = ACTIONS(4016), + [anon_sym_null] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_LBRACK_PIPE] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE_PIPE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_return_BANG] = ACTIONS(4016), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_yield_BANG] = ACTIONS(4016), + [anon_sym_lazy] = ACTIONS(4018), + [anon_sym_assert] = ACTIONS(4018), + [anon_sym_upcast] = ACTIONS(4018), + [anon_sym_downcast] = ACTIONS(4018), + [anon_sym_LT_AT] = ACTIONS(4018), + [anon_sym_LT_AT_AT] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_fun] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_match] = ACTIONS(4018), + [anon_sym_match_BANG] = ACTIONS(4016), + [anon_sym_function] = ACTIONS(4018), + [anon_sym_use] = ACTIONS(4018), + [anon_sym_use_BANG] = ACTIONS(4016), + [anon_sym_do_BANG] = ACTIONS(4016), + [anon_sym_begin] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_member] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4018), + [anon_sym_override] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_val] = ACTIONS(4018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_AT_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [sym_bool] = ACTIONS(4018), + [sym_unit] = ACTIONS(4016), + [aux_sym__identifier_or_op_token1] = ACTIONS(4016), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS_DOT] = ACTIONS(4016), + [anon_sym_DASH_DOT] = ACTIONS(4016), + [anon_sym_PERCENT] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [aux_sym_prefix_op_token1] = ACTIONS(4016), + [sym_int] = ACTIONS(4018), + [sym_xint] = ACTIONS(4016), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4016), + }, + [2148] = { + [sym_xml_doc] = STATE(2148), + [sym_block_comment] = STATE(2148), + [sym_preproc_line] = STATE(2148), + [ts_builtin_sym_end] = ACTIONS(4016), + [sym_identifier] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_POUNDnowarn] = ACTIONS(4016), + [anon_sym_POUNDr] = ACTIONS(4016), + [anon_sym_POUNDload] = ACTIONS(4016), + [anon_sym_open] = ACTIONS(4018), + [anon_sym_LBRACK_LT] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_let_BANG] = ACTIONS(4016), + [aux_sym_access_modifier_token1] = ACTIONS(4016), + [anon_sym_null] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_LBRACK_PIPE] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE_PIPE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_return_BANG] = ACTIONS(4016), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_yield_BANG] = ACTIONS(4016), + [anon_sym_lazy] = ACTIONS(4018), + [anon_sym_assert] = ACTIONS(4018), + [anon_sym_upcast] = ACTIONS(4018), + [anon_sym_downcast] = ACTIONS(4018), + [anon_sym_LT_AT] = ACTIONS(4018), + [anon_sym_LT_AT_AT] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_fun] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_match] = ACTIONS(4018), + [anon_sym_match_BANG] = ACTIONS(4016), + [anon_sym_function] = ACTIONS(4018), + [anon_sym_use] = ACTIONS(4018), + [anon_sym_use_BANG] = ACTIONS(4016), + [anon_sym_do_BANG] = ACTIONS(4016), + [anon_sym_begin] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_member] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4018), + [anon_sym_override] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_val] = ACTIONS(4018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_AT_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [sym_bool] = ACTIONS(4018), + [sym_unit] = ACTIONS(4016), + [aux_sym__identifier_or_op_token1] = ACTIONS(4016), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS_DOT] = ACTIONS(4016), + [anon_sym_DASH_DOT] = ACTIONS(4016), + [anon_sym_PERCENT] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [aux_sym_prefix_op_token1] = ACTIONS(4016), + [sym_int] = ACTIONS(4018), + [sym_xint] = ACTIONS(4016), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4016), + }, + [2149] = { + [sym_xml_doc] = STATE(2149), + [sym_block_comment] = STATE(2149), + [sym_preproc_line] = STATE(2149), + [ts_builtin_sym_end] = ACTIONS(4024), + [sym_identifier] = ACTIONS(4026), + [anon_sym_namespace] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_POUNDnowarn] = ACTIONS(4024), + [anon_sym_POUNDr] = ACTIONS(4024), + [anon_sym_POUNDload] = ACTIONS(4024), + [anon_sym_open] = ACTIONS(4026), + [anon_sym_LBRACK_LT] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_type] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_let_BANG] = ACTIONS(4024), + [aux_sym_access_modifier_token1] = ACTIONS(4024), + [anon_sym_null] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_LBRACK_PIPE] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4028), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_return_BANG] = ACTIONS(4024), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_yield_BANG] = ACTIONS(4024), + [anon_sym_lazy] = ACTIONS(4026), + [anon_sym_assert] = ACTIONS(4026), + [anon_sym_upcast] = ACTIONS(4026), + [anon_sym_downcast] = ACTIONS(4026), + [anon_sym_LT_AT] = ACTIONS(4026), + [anon_sym_LT_AT_AT] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_fun] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_match_BANG] = ACTIONS(4024), + [anon_sym_function] = ACTIONS(4026), + [anon_sym_use] = ACTIONS(4026), + [anon_sym_use_BANG] = ACTIONS(4024), + [anon_sym_do_BANG] = ACTIONS(4024), + [anon_sym_begin] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_member] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4026), + [anon_sym_override] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_val] = ACTIONS(4026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [anon_sym_AT_DQUOTE] = ACTIONS(4024), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4024), + [sym_bool] = ACTIONS(4026), + [sym_unit] = ACTIONS(4024), + [aux_sym__identifier_or_op_token1] = ACTIONS(4024), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS_DOT] = ACTIONS(4024), + [anon_sym_DASH_DOT] = ACTIONS(4024), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [aux_sym_prefix_op_token1] = ACTIONS(4024), + [sym_int] = ACTIONS(4026), + [sym_xint] = ACTIONS(4024), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4024), + }, + [2150] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3912), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2165), + [sym_char] = STATE(2865), + [sym_format_string] = STATE(2899), + [sym__string_literal] = STATE(2899), + [sym_string] = STATE(2865), + [sym_verbatim_string] = STATE(2865), + [sym_bytechar] = STATE(2865), + [sym_bytearray] = STATE(2865), + [sym_verbatim_bytearray] = STATE(2865), + [sym_format_triple_quoted_string] = STATE(2870), + [sym_triple_quoted_string] = STATE(2865), + [sym_const] = STATE(2849), + [sym_long_identifier] = STATE(2155), + [sym_sbyte] = STATE(2865), + [sym_byte] = STATE(2865), + [sym_int16] = STATE(2865), + [sym_uint16] = STATE(2865), + [sym_int32] = STATE(2865), + [sym_uint32] = STATE(2865), + [sym_nativeint] = STATE(2865), + [sym_unativeint] = STATE(2865), + [sym_int64] = STATE(2865), + [sym_uint64] = STATE(2865), + [sym_ieee32] = STATE(2865), + [sym_ieee64] = STATE(2865), + [sym_bignum] = STATE(2865), + [sym_decimal] = STATE(2865), + [sym_float] = STATE(2749), + [sym_xml_doc] = STATE(2150), + [sym_block_comment] = STATE(2150), + [sym_preproc_line] = STATE(2150), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3950), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_LBRACE_PIPE] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_return_BANG] = ACTIONS(4030), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_yield_BANG] = ACTIONS(4030), - [anon_sym_lazy] = ACTIONS(4032), - [anon_sym_assert] = ACTIONS(4032), - [anon_sym_upcast] = ACTIONS(4032), - [anon_sym_downcast] = ACTIONS(4032), - [anon_sym_LT_AT] = ACTIONS(4032), - [anon_sym_LT_AT_AT] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_fun] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_match] = ACTIONS(4032), - [anon_sym_match_BANG] = ACTIONS(4030), - [anon_sym_function] = ACTIONS(4032), - [anon_sym_use] = ACTIONS(4032), - [anon_sym_use_BANG] = ACTIONS(4030), - [anon_sym_do_BANG] = ACTIONS(4030), - [anon_sym_begin] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [anon_sym_AT_DQUOTE] = ACTIONS(4030), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4030), - [sym_bool] = ACTIONS(4032), - [sym_unit] = ACTIONS(4030), - [aux_sym__identifier_or_op_token1] = ACTIONS(4030), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS_DOT] = ACTIONS(4030), - [anon_sym_DASH_DOT] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [aux_sym_prefix_op_token1] = ACTIONS(4030), - [sym_int] = ACTIONS(4032), - [sym_xint] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3962), + [anon_sym_AT_DQUOTE] = ACTIONS(3964), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3968), + [sym_bool] = ACTIONS(3970), + [sym_unit] = ACTIONS(3972), + [sym_int] = ACTIONS(3974), + [sym_xint] = ACTIONS(3976), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2151] = { + [sym_xml_doc] = STATE(2151), + [sym_block_comment] = STATE(2151), + [sym_preproc_line] = STATE(2151), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_and] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [aux_sym_access_modifier_token1] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_LT_AT_AT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_member] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_val] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2734), + [aux_sym__identifier_or_op_token1] = ACTIONS(2734), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2734), + [anon_sym_DASH_DOT] = ACTIONS(2734), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + }, + [2152] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2850), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym__pattern_param] = STATE(2179), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2153), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2152), + [sym_block_comment] = STATE(2152), + [sym_preproc_line] = STATE(2152), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_LBRACK_LT] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3780), + [anon_sym__] = ACTIONS(3780), + [anon_sym_QMARK] = ACTIONS(3776), + [anon_sym_COLON_QMARK] = ACTIONS(3776), + [anon_sym_as] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3780), + [sym_unit] = ACTIONS(3776), + [sym_int] = ACTIONS(3780), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2153] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2850), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym__pattern_param] = STATE(2179), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2663), + [sym_long_identifier] = STATE(2153), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), + [sym_xml_doc] = STATE(2153), + [sym_block_comment] = STATE(2153), + [sym_preproc_line] = STATE(2153), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(3822), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2154] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2957), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), + [sym_xml_doc] = STATE(2154), + [sym_block_comment] = STATE(2154), + [sym_preproc_line] = STATE(2154), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3860), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3860), + [anon_sym__] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3860), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK_PIPE] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3858), + [anon_sym_DASH_GT] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [anon_sym_AT_DQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [sym_bool] = ACTIONS(3860), + [sym_unit] = ACTIONS(3858), + [sym_int] = ACTIONS(3860), + [sym_xint] = ACTIONS(3858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2155] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3912), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym__pattern_param] = STATE(2165), + [sym_char] = STATE(2865), + [sym_format_string] = STATE(2899), + [sym__string_literal] = STATE(2899), + [sym_string] = STATE(2865), + [sym_verbatim_string] = STATE(2865), + [sym_bytechar] = STATE(2865), + [sym_bytearray] = STATE(2865), + [sym_verbatim_bytearray] = STATE(2865), + [sym_format_triple_quoted_string] = STATE(2870), + [sym_triple_quoted_string] = STATE(2865), + [sym_const] = STATE(2849), + [sym_long_identifier] = STATE(2155), + [sym_sbyte] = STATE(2865), + [sym_byte] = STATE(2865), + [sym_int16] = STATE(2865), + [sym_uint16] = STATE(2865), + [sym_int32] = STATE(2865), + [sym_uint32] = STATE(2865), + [sym_nativeint] = STATE(2865), + [sym_unativeint] = STATE(2865), + [sym_int64] = STATE(2865), + [sym_uint64] = STATE(2865), + [sym_ieee32] = STATE(2865), + [sym_ieee64] = STATE(2865), + [sym_bignum] = STATE(2865), + [sym_decimal] = STATE(2865), + [sym_float] = STATE(2749), + [sym_xml_doc] = STATE(2155), + [sym_block_comment] = STATE(2155), + [sym_preproc_line] = STATE(2155), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LBRACK_LT] = ACTIONS(3822), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3820), + [anon_sym__] = ACTIONS(3820), + [anon_sym_QMARK] = ACTIONS(3822), + [anon_sym_COLON_QMARK] = ACTIONS(3822), + [anon_sym_as] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LBRACK_PIPE] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_in] = ACTIONS(3820), + [anon_sym_SQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE] = ACTIONS(3820), + [anon_sym_AT_DQUOTE] = ACTIONS(3822), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3822), + [sym_bool] = ACTIONS(3820), + [sym_unit] = ACTIONS(3822), + [sym_int] = ACTIONS(3820), + [sym_xint] = ACTIONS(3822), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2156] = { + [sym_xml_doc] = STATE(2156), + [sym_block_comment] = STATE(2156), + [sym_preproc_line] = STATE(2156), + [sym_identifier] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_POUNDnowarn] = ACTIONS(4006), + [anon_sym_POUNDr] = ACTIONS(4006), + [anon_sym_POUNDload] = ACTIONS(4006), + [anon_sym_open] = ACTIONS(4008), + [anon_sym_LBRACK_LT] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4008), + [anon_sym_let_BANG] = ACTIONS(4006), + [aux_sym_access_modifier_token1] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_COMMA] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK_PIPE] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_LBRACE_PIPE] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_return_BANG] = ACTIONS(4006), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_yield_BANG] = ACTIONS(4006), + [anon_sym_lazy] = ACTIONS(4008), + [anon_sym_assert] = ACTIONS(4008), + [anon_sym_upcast] = ACTIONS(4008), + [anon_sym_downcast] = ACTIONS(4008), + [anon_sym_LT_AT] = ACTIONS(4008), + [anon_sym_LT_AT_AT] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_fun] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_match_BANG] = ACTIONS(4006), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_use] = ACTIONS(4008), + [anon_sym_use_BANG] = ACTIONS(4006), + [anon_sym_do_BANG] = ACTIONS(4006), + [anon_sym_begin] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_member] = ACTIONS(4008), + [anon_sym_abstract] = ACTIONS(4008), + [anon_sym_override] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_val] = ACTIONS(4008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [anon_sym_AT_DQUOTE] = ACTIONS(4006), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [sym_bool] = ACTIONS(4008), + [sym_unit] = ACTIONS(4006), + [aux_sym__identifier_or_op_token1] = ACTIONS(4006), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS_DOT] = ACTIONS(4006), + [anon_sym_DASH_DOT] = ACTIONS(4006), + [anon_sym_PERCENT] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [aux_sym_prefix_op_token1] = ACTIONS(4006), + [sym_int] = ACTIONS(4008), + [sym_xint] = ACTIONS(4006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4006), + [sym__dedent] = ACTIONS(4006), + }, + [2157] = { + [sym_xml_doc] = STATE(2157), + [sym_block_comment] = STATE(2157), + [sym_preproc_line] = STATE(2157), + [sym_identifier] = ACTIONS(3990), + [anon_sym_module] = ACTIONS(3990), + [anon_sym_POUNDnowarn] = ACTIONS(3988), + [anon_sym_POUNDr] = ACTIONS(3988), + [anon_sym_POUNDload] = ACTIONS(3988), + [anon_sym_open] = ACTIONS(3990), + [anon_sym_LBRACK_LT] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_type] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_let_BANG] = ACTIONS(3988), + [aux_sym_access_modifier_token1] = ACTIONS(3988), + [anon_sym_null] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_LBRACK_PIPE] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_LBRACE_PIPE] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_return_BANG] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3990), + [anon_sym_yield_BANG] = ACTIONS(3988), + [anon_sym_lazy] = ACTIONS(3990), + [anon_sym_assert] = ACTIONS(3990), + [anon_sym_upcast] = ACTIONS(3990), + [anon_sym_downcast] = ACTIONS(3990), + [anon_sym_LT_AT] = ACTIONS(3990), + [anon_sym_LT_AT_AT] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_fun] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_match] = ACTIONS(3990), + [anon_sym_match_BANG] = ACTIONS(3988), + [anon_sym_function] = ACTIONS(3990), + [anon_sym_use] = ACTIONS(3990), + [anon_sym_use_BANG] = ACTIONS(3988), + [anon_sym_do_BANG] = ACTIONS(3988), + [anon_sym_begin] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_member] = ACTIONS(3990), + [anon_sym_abstract] = ACTIONS(3990), + [anon_sym_override] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_val] = ACTIONS(3990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [anon_sym_AT_DQUOTE] = ACTIONS(3988), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [sym_bool] = ACTIONS(3990), + [sym_unit] = ACTIONS(3988), + [aux_sym__identifier_or_op_token1] = ACTIONS(3988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS_DOT] = ACTIONS(3988), + [anon_sym_DASH_DOT] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [aux_sym_prefix_op_token1] = ACTIONS(3988), + [sym_int] = ACTIONS(3990), + [sym_xint] = ACTIONS(3988), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3988), + [sym__dedent] = ACTIONS(3988), + }, + [2158] = { + [sym_xml_doc] = STATE(2158), + [sym_block_comment] = STATE(2158), + [sym_preproc_line] = STATE(2158), + [sym_identifier] = ACTIONS(3990), + [anon_sym_module] = ACTIONS(3990), + [anon_sym_POUNDnowarn] = ACTIONS(3988), + [anon_sym_POUNDr] = ACTIONS(3988), + [anon_sym_POUNDload] = ACTIONS(3988), + [anon_sym_open] = ACTIONS(3990), + [anon_sym_LBRACK_LT] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_type] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_and] = ACTIONS(3990), + [anon_sym_let] = ACTIONS(3990), + [anon_sym_let_BANG] = ACTIONS(3988), + [aux_sym_access_modifier_token1] = ACTIONS(3988), + [anon_sym_null] = ACTIONS(3990), + [anon_sym_LPAREN] = ACTIONS(3990), + [anon_sym_COMMA] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_LBRACK_PIPE] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_LBRACE_PIPE] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_return_BANG] = ACTIONS(3988), + [anon_sym_yield] = ACTIONS(3990), + [anon_sym_yield_BANG] = ACTIONS(3988), + [anon_sym_lazy] = ACTIONS(3990), + [anon_sym_assert] = ACTIONS(3990), + [anon_sym_upcast] = ACTIONS(3990), + [anon_sym_downcast] = ACTIONS(3990), + [anon_sym_LT_AT] = ACTIONS(3990), + [anon_sym_LT_AT_AT] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_fun] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_match] = ACTIONS(3990), + [anon_sym_match_BANG] = ACTIONS(3988), + [anon_sym_function] = ACTIONS(3990), + [anon_sym_use] = ACTIONS(3990), + [anon_sym_use_BANG] = ACTIONS(3988), + [anon_sym_do_BANG] = ACTIONS(3988), + [anon_sym_begin] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_member] = ACTIONS(3990), + [anon_sym_abstract] = ACTIONS(3990), + [anon_sym_override] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_val] = ACTIONS(3990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [anon_sym_AT_DQUOTE] = ACTIONS(3988), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3988), + [sym_bool] = ACTIONS(3990), + [sym_unit] = ACTIONS(3988), + [aux_sym__identifier_or_op_token1] = ACTIONS(3988), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS_DOT] = ACTIONS(3988), + [anon_sym_DASH_DOT] = ACTIONS(3988), + [anon_sym_PERCENT] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [aux_sym_prefix_op_token1] = ACTIONS(3988), + [sym_int] = ACTIONS(3990), + [sym_xint] = ACTIONS(3988), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3988), + [sym__dedent] = ACTIONS(3988), + }, + [2159] = { + [sym_xml_doc] = STATE(2159), + [sym_block_comment] = STATE(2159), + [sym_preproc_line] = STATE(2159), + [sym_identifier] = ACTIONS(4002), + [anon_sym_module] = ACTIONS(4002), + [anon_sym_POUNDnowarn] = ACTIONS(4000), + [anon_sym_POUNDr] = ACTIONS(4000), + [anon_sym_POUNDload] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4002), + [anon_sym_LBRACK_LT] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_type] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_and] = ACTIONS(4002), + [anon_sym_let] = ACTIONS(4002), + [anon_sym_let_BANG] = ACTIONS(4000), + [aux_sym_access_modifier_token1] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_LBRACK_PIPE] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LBRACE_PIPE] = ACTIONS(4000), + [anon_sym_with] = ACTIONS(4040), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_return_BANG] = ACTIONS(4000), + [anon_sym_yield] = ACTIONS(4002), + [anon_sym_yield_BANG] = ACTIONS(4000), + [anon_sym_lazy] = ACTIONS(4002), + [anon_sym_assert] = ACTIONS(4002), + [anon_sym_upcast] = ACTIONS(4002), + [anon_sym_downcast] = ACTIONS(4002), + [anon_sym_LT_AT] = ACTIONS(4002), + [anon_sym_LT_AT_AT] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_fun] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_match] = ACTIONS(4002), + [anon_sym_match_BANG] = ACTIONS(4000), + [anon_sym_function] = ACTIONS(4002), + [anon_sym_use] = ACTIONS(4002), + [anon_sym_use_BANG] = ACTIONS(4000), + [anon_sym_do_BANG] = ACTIONS(4000), + [anon_sym_begin] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_member] = ACTIONS(4002), + [anon_sym_abstract] = ACTIONS(4002), + [anon_sym_override] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_val] = ACTIONS(4002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_AT_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4000), + [sym_bool] = ACTIONS(4002), + [sym_unit] = ACTIONS(4000), + [aux_sym__identifier_or_op_token1] = ACTIONS(4000), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS_DOT] = ACTIONS(4000), + [anon_sym_DASH_DOT] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [aux_sym_prefix_op_token1] = ACTIONS(4000), + [sym_int] = ACTIONS(4002), + [sym_xint] = ACTIONS(4000), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4000), + [sym__dedent] = ACTIONS(4000), + }, + [2160] = { + [sym_xml_doc] = STATE(2160), + [sym_block_comment] = STATE(2160), + [sym_preproc_line] = STATE(2160), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_POUNDnowarn] = ACTIONS(3740), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_and] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3740), + [aux_sym_access_modifier_token1] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_member] = ACTIONS(3742), + [anon_sym_abstract] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_val] = ACTIONS(3742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3740), + [aux_sym__identifier_or_op_token1] = ACTIONS(3740), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3740), + [anon_sym_DASH_DOT] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3740), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3740), + }, + [2161] = { + [sym_xml_doc] = STATE(2161), + [sym_block_comment] = STATE(2161), + [sym_preproc_line] = STATE(2161), + [ts_builtin_sym_end] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_POUNDnowarn] = ACTIONS(4042), + [anon_sym_POUNDr] = ACTIONS(4042), + [anon_sym_POUNDload] = ACTIONS(4042), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_LBRACK_LT] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_type] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_let] = ACTIONS(4044), + [anon_sym_let_BANG] = ACTIONS(4042), + [aux_sym_access_modifier_token1] = ACTIONS(4042), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_LBRACK_PIPE] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_LBRACE_PIPE] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_return_BANG] = ACTIONS(4042), + [anon_sym_yield] = ACTIONS(4044), + [anon_sym_yield_BANG] = ACTIONS(4042), + [anon_sym_lazy] = ACTIONS(4044), + [anon_sym_assert] = ACTIONS(4044), + [anon_sym_upcast] = ACTIONS(4044), + [anon_sym_downcast] = ACTIONS(4044), + [anon_sym_LT_AT] = ACTIONS(4044), + [anon_sym_LT_AT_AT] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_match] = ACTIONS(4044), + [anon_sym_match_BANG] = ACTIONS(4042), + [anon_sym_function] = ACTIONS(4044), + [anon_sym_use] = ACTIONS(4044), + [anon_sym_use_BANG] = ACTIONS(4042), + [anon_sym_do_BANG] = ACTIONS(4042), + [anon_sym_begin] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_member] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_val] = ACTIONS(4044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_AT_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4042), + [sym_bool] = ACTIONS(4044), + [sym_unit] = ACTIONS(4042), + [aux_sym__identifier_or_op_token1] = ACTIONS(4042), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS_DOT] = ACTIONS(4042), + [anon_sym_DASH_DOT] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [aux_sym_prefix_op_token1] = ACTIONS(4042), + [sym_int] = ACTIONS(4044), + [sym_xint] = ACTIONS(4042), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4042), + }, + [2162] = { + [sym_xml_doc] = STATE(2162), + [sym_block_comment] = STATE(2162), + [sym_preproc_line] = STATE(2162), + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_POUNDnowarn] = ACTIONS(4046), + [anon_sym_POUNDr] = ACTIONS(4046), + [anon_sym_POUNDload] = ACTIONS(4046), + [anon_sym_open] = ACTIONS(4048), + [anon_sym_LBRACK_LT] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_type] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_and] = ACTIONS(4048), + [anon_sym_let] = ACTIONS(4048), + [anon_sym_let_BANG] = ACTIONS(4046), + [aux_sym_access_modifier_token1] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LBRACK_PIPE] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_LBRACE_PIPE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_return_BANG] = ACTIONS(4046), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_yield_BANG] = ACTIONS(4046), + [anon_sym_lazy] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(4048), + [anon_sym_upcast] = ACTIONS(4048), + [anon_sym_downcast] = ACTIONS(4048), + [anon_sym_LT_AT] = ACTIONS(4048), + [anon_sym_LT_AT_AT] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_fun] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_match] = ACTIONS(4048), + [anon_sym_match_BANG] = ACTIONS(4046), + [anon_sym_function] = ACTIONS(4048), + [anon_sym_use] = ACTIONS(4048), + [anon_sym_use_BANG] = ACTIONS(4046), + [anon_sym_do_BANG] = ACTIONS(4046), + [anon_sym_begin] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_member] = ACTIONS(4048), + [anon_sym_abstract] = ACTIONS(4048), + [anon_sym_override] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_val] = ACTIONS(4048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [anon_sym_AT_DQUOTE] = ACTIONS(4046), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4046), + [sym_bool] = ACTIONS(4048), + [sym_unit] = ACTIONS(4046), + [aux_sym__identifier_or_op_token1] = ACTIONS(4046), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS_DOT] = ACTIONS(4046), + [anon_sym_DASH_DOT] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [aux_sym_prefix_op_token1] = ACTIONS(4046), + [sym_int] = ACTIONS(4048), + [sym_xint] = ACTIONS(4046), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4046), + }, + [2163] = { + [sym_xml_doc] = STATE(2163), + [sym_block_comment] = STATE(2163), + [sym_preproc_line] = STATE(2163), + [sym_identifier] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_POUNDnowarn] = ACTIONS(4024), + [anon_sym_POUNDr] = ACTIONS(4024), + [anon_sym_POUNDload] = ACTIONS(4024), + [anon_sym_open] = ACTIONS(4026), + [anon_sym_LBRACK_LT] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_type] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_and] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(4026), + [anon_sym_let_BANG] = ACTIONS(4024), + [aux_sym_access_modifier_token1] = ACTIONS(4024), + [anon_sym_null] = ACTIONS(4026), + [anon_sym_LPAREN] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_LBRACK_PIPE] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4024), + [anon_sym_with] = ACTIONS(4050), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_return_BANG] = ACTIONS(4024), + [anon_sym_yield] = ACTIONS(4026), + [anon_sym_yield_BANG] = ACTIONS(4024), + [anon_sym_lazy] = ACTIONS(4026), + [anon_sym_assert] = ACTIONS(4026), + [anon_sym_upcast] = ACTIONS(4026), + [anon_sym_downcast] = ACTIONS(4026), + [anon_sym_LT_AT] = ACTIONS(4026), + [anon_sym_LT_AT_AT] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_fun] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_match] = ACTIONS(4026), + [anon_sym_match_BANG] = ACTIONS(4024), + [anon_sym_function] = ACTIONS(4026), + [anon_sym_use] = ACTIONS(4026), + [anon_sym_use_BANG] = ACTIONS(4024), + [anon_sym_do_BANG] = ACTIONS(4024), + [anon_sym_begin] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_member] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4026), + [anon_sym_override] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_val] = ACTIONS(4026), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [anon_sym_AT_DQUOTE] = ACTIONS(4024), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4024), + [sym_bool] = ACTIONS(4026), + [sym_unit] = ACTIONS(4024), + [aux_sym__identifier_or_op_token1] = ACTIONS(4024), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS_DOT] = ACTIONS(4024), + [anon_sym_DASH_DOT] = ACTIONS(4024), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [aux_sym_prefix_op_token1] = ACTIONS(4024), + [sym_int] = ACTIONS(4026), + [sym_xint] = ACTIONS(4024), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4024), + [sym__dedent] = ACTIONS(4024), + }, + [2164] = { + [sym_xml_doc] = STATE(2164), + [sym_block_comment] = STATE(2164), + [sym_preproc_line] = STATE(2164), + [ts_builtin_sym_end] = ACTIONS(4052), + [sym_identifier] = ACTIONS(4054), + [anon_sym_namespace] = ACTIONS(4054), + [anon_sym_module] = ACTIONS(4054), + [anon_sym_POUNDnowarn] = ACTIONS(4052), + [anon_sym_POUNDr] = ACTIONS(4052), + [anon_sym_POUNDload] = ACTIONS(4052), + [anon_sym_open] = ACTIONS(4054), + [anon_sym_LBRACK_LT] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_type] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_let] = ACTIONS(4054), + [anon_sym_let_BANG] = ACTIONS(4052), + [aux_sym_access_modifier_token1] = ACTIONS(4052), + [anon_sym_null] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_LBRACK_PIPE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_LBRACE_PIPE] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_return_BANG] = ACTIONS(4052), + [anon_sym_yield] = ACTIONS(4054), + [anon_sym_yield_BANG] = ACTIONS(4052), + [anon_sym_lazy] = ACTIONS(4054), + [anon_sym_assert] = ACTIONS(4054), + [anon_sym_upcast] = ACTIONS(4054), + [anon_sym_downcast] = ACTIONS(4054), + [anon_sym_LT_AT] = ACTIONS(4054), + [anon_sym_LT_AT_AT] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_fun] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_match] = ACTIONS(4054), + [anon_sym_match_BANG] = ACTIONS(4052), + [anon_sym_function] = ACTIONS(4054), + [anon_sym_use] = ACTIONS(4054), + [anon_sym_use_BANG] = ACTIONS(4052), + [anon_sym_do_BANG] = ACTIONS(4052), + [anon_sym_begin] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_member] = ACTIONS(4054), + [anon_sym_abstract] = ACTIONS(4054), + [anon_sym_override] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_val] = ACTIONS(4054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [anon_sym_AT_DQUOTE] = ACTIONS(4052), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4052), + [sym_bool] = ACTIONS(4054), + [sym_unit] = ACTIONS(4052), + [aux_sym__identifier_or_op_token1] = ACTIONS(4052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS_DOT] = ACTIONS(4052), + [anon_sym_DASH_DOT] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [aux_sym_prefix_op_token1] = ACTIONS(4052), + [sym_int] = ACTIONS(4054), + [sym_xint] = ACTIONS(4052), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4030), - [sym__dedent] = ACTIONS(4030), + [anon_sym_POUNDif] = ACTIONS(4052), + }, + [2165] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3937), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2165), + [sym_block_comment] = STATE(2165), + [sym_preproc_line] = STATE(2165), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_in] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2166] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(820), - [sym_rules] = STATE(946), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2166), [sym_block_comment] = STATE(2166), [sym_preproc_line] = STATE(2166), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_POUNDnowarn] = ACTIONS(3736), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3738), + [anon_sym_LBRACK_LT] = ACTIONS(3736), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_and] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3736), + [aux_sym_access_modifier_token1] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_member] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_val] = ACTIONS(3738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3736), + [aux_sym__identifier_or_op_token1] = ACTIONS(3736), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3736), + [anon_sym_DASH_DOT] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3736), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3736), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3736), }, [2167] = { - [sym_interface_implementation] = STATE(2226), [sym_xml_doc] = STATE(2167), [sym_block_comment] = STATE(2167), [sym_preproc_line] = STATE(2167), - [aux_sym__object_expression_inner_repeat1] = STATE(2167), [ts_builtin_sym_end] = ACTIONS(4056), [sym_identifier] = ACTIONS(4058), [anon_sym_namespace] = ACTIONS(4058), @@ -259052,6 +257013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(4058), [anon_sym_let] = ACTIONS(4058), [anon_sym_let_BANG] = ACTIONS(4056), + [aux_sym_access_modifier_token1] = ACTIONS(4056), [anon_sym_null] = ACTIONS(4058), [anon_sym_LPAREN] = ACTIONS(4058), [anon_sym_AMP] = ACTIONS(4058), @@ -259082,7 +257044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do_BANG] = ACTIONS(4056), [anon_sym_begin] = ACTIONS(4058), [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_interface] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_member] = ACTIONS(4058), + [anon_sym_abstract] = ACTIONS(4058), + [anon_sym_override] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_val] = ACTIONS(4058), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4058), [anon_sym_DQUOTE] = ACTIONS(4058), [anon_sym_AT_DQUOTE] = ACTIONS(4056), @@ -259109,8789 +257076,9038 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(4056), }, [2168] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1414), - [sym_rules] = STATE(1850), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2168), [sym_block_comment] = STATE(2168), [sym_preproc_line] = STATE(2168), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4060), + [sym_identifier] = ACTIONS(4062), + [anon_sym_namespace] = ACTIONS(4062), + [anon_sym_module] = ACTIONS(4062), + [anon_sym_POUNDnowarn] = ACTIONS(4060), + [anon_sym_POUNDr] = ACTIONS(4060), + [anon_sym_POUNDload] = ACTIONS(4060), + [anon_sym_open] = ACTIONS(4062), + [anon_sym_LBRACK_LT] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_type] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_let_BANG] = ACTIONS(4060), + [aux_sym_access_modifier_token1] = ACTIONS(4060), + [anon_sym_null] = ACTIONS(4062), + [anon_sym_LPAREN] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_LBRACK_PIPE] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_LBRACE_PIPE] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_return_BANG] = ACTIONS(4060), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_yield_BANG] = ACTIONS(4060), + [anon_sym_lazy] = ACTIONS(4062), + [anon_sym_assert] = ACTIONS(4062), + [anon_sym_upcast] = ACTIONS(4062), + [anon_sym_downcast] = ACTIONS(4062), + [anon_sym_LT_AT] = ACTIONS(4062), + [anon_sym_LT_AT_AT] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_fun] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_match] = ACTIONS(4062), + [anon_sym_match_BANG] = ACTIONS(4060), + [anon_sym_function] = ACTIONS(4062), + [anon_sym_use] = ACTIONS(4062), + [anon_sym_use_BANG] = ACTIONS(4060), + [anon_sym_do_BANG] = ACTIONS(4060), + [anon_sym_begin] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_member] = ACTIONS(4062), + [anon_sym_abstract] = ACTIONS(4062), + [anon_sym_override] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_val] = ACTIONS(4062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_AT_DQUOTE] = ACTIONS(4060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4060), + [sym_bool] = ACTIONS(4062), + [sym_unit] = ACTIONS(4060), + [aux_sym__identifier_or_op_token1] = ACTIONS(4060), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS_DOT] = ACTIONS(4060), + [anon_sym_DASH_DOT] = ACTIONS(4060), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [aux_sym_prefix_op_token1] = ACTIONS(4060), + [sym_int] = ACTIONS(4062), + [sym_xint] = ACTIONS(4060), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4060), }, [2169] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1281), - [sym_rules] = STATE(1536), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2169), [sym_block_comment] = STATE(2169), [sym_preproc_line] = STATE(2169), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4018), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_POUNDnowarn] = ACTIONS(4016), + [anon_sym_POUNDr] = ACTIONS(4016), + [anon_sym_POUNDload] = ACTIONS(4016), + [anon_sym_open] = ACTIONS(4018), + [anon_sym_LBRACK_LT] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_let_BANG] = ACTIONS(4016), + [aux_sym_access_modifier_token1] = ACTIONS(4016), + [anon_sym_null] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_LBRACK_PIPE] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE_PIPE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_return_BANG] = ACTIONS(4016), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_yield_BANG] = ACTIONS(4016), + [anon_sym_lazy] = ACTIONS(4018), + [anon_sym_assert] = ACTIONS(4018), + [anon_sym_upcast] = ACTIONS(4018), + [anon_sym_downcast] = ACTIONS(4018), + [anon_sym_LT_AT] = ACTIONS(4018), + [anon_sym_LT_AT_AT] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_fun] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_match] = ACTIONS(4018), + [anon_sym_match_BANG] = ACTIONS(4016), + [anon_sym_function] = ACTIONS(4018), + [anon_sym_use] = ACTIONS(4018), + [anon_sym_use_BANG] = ACTIONS(4016), + [anon_sym_do_BANG] = ACTIONS(4016), + [anon_sym_begin] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_member] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4018), + [anon_sym_override] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_val] = ACTIONS(4018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_AT_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [sym_bool] = ACTIONS(4018), + [sym_unit] = ACTIONS(4016), + [aux_sym__identifier_or_op_token1] = ACTIONS(4016), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS_DOT] = ACTIONS(4016), + [anon_sym_DASH_DOT] = ACTIONS(4016), + [anon_sym_PERCENT] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [aux_sym_prefix_op_token1] = ACTIONS(4016), + [sym_int] = ACTIONS(4018), + [sym_xint] = ACTIONS(4016), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4016), + [sym__dedent] = ACTIONS(4016), }, [2170] = { - [sym_attributes] = STATE(4738), - [sym_attribute_set] = STATE(3120), [sym_xml_doc] = STATE(2170), [sym_block_comment] = STATE(2170), [sym_preproc_line] = STATE(2170), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2186), - [sym_identifier] = ACTIONS(4028), - [anon_sym_module] = ACTIONS(4028), - [anon_sym_POUNDnowarn] = ACTIONS(4026), - [anon_sym_POUNDr] = ACTIONS(4026), - [anon_sym_POUNDload] = ACTIONS(4026), - [anon_sym_open] = ACTIONS(4028), - [anon_sym_LBRACK_LT] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_type] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_and] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4028), - [anon_sym_let_BANG] = ACTIONS(4026), - [anon_sym_null] = ACTIONS(4028), - [anon_sym_LPAREN] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_LBRACK_PIPE] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_return_BANG] = ACTIONS(4026), - [anon_sym_yield] = ACTIONS(4028), - [anon_sym_yield_BANG] = ACTIONS(4026), - [anon_sym_lazy] = ACTIONS(4028), - [anon_sym_assert] = ACTIONS(4028), - [anon_sym_upcast] = ACTIONS(4028), - [anon_sym_downcast] = ACTIONS(4028), - [anon_sym_LT_AT] = ACTIONS(4028), - [anon_sym_LT_AT_AT] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_fun] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_match] = ACTIONS(4028), - [anon_sym_match_BANG] = ACTIONS(4026), - [anon_sym_function] = ACTIONS(4028), - [anon_sym_use] = ACTIONS(4028), - [anon_sym_use_BANG] = ACTIONS(4026), - [anon_sym_do_BANG] = ACTIONS(4026), - [anon_sym_begin] = ACTIONS(4028), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [anon_sym_AT_DQUOTE] = ACTIONS(4026), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4026), - [sym_bool] = ACTIONS(4028), - [sym_unit] = ACTIONS(4026), - [aux_sym__identifier_or_op_token1] = ACTIONS(4026), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS_DOT] = ACTIONS(4026), - [anon_sym_DASH_DOT] = ACTIONS(4026), - [anon_sym_PERCENT] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [aux_sym_prefix_op_token1] = ACTIONS(4026), - [sym_int] = ACTIONS(4028), - [sym_xint] = ACTIONS(4026), + [ts_builtin_sym_end] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4068), + [anon_sym_namespace] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_POUNDnowarn] = ACTIONS(4066), + [anon_sym_POUNDr] = ACTIONS(4066), + [anon_sym_POUNDload] = ACTIONS(4066), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_LBRACK_LT] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_type] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_and] = ACTIONS(4068), + [anon_sym_let] = ACTIONS(4068), + [anon_sym_let_BANG] = ACTIONS(4066), + [aux_sym_access_modifier_token1] = ACTIONS(4066), + [anon_sym_null] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_LBRACK_PIPE] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_LBRACE_PIPE] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_return_BANG] = ACTIONS(4066), + [anon_sym_yield] = ACTIONS(4068), + [anon_sym_yield_BANG] = ACTIONS(4066), + [anon_sym_lazy] = ACTIONS(4068), + [anon_sym_assert] = ACTIONS(4068), + [anon_sym_upcast] = ACTIONS(4068), + [anon_sym_downcast] = ACTIONS(4068), + [anon_sym_LT_AT] = ACTIONS(4068), + [anon_sym_LT_AT_AT] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_match_BANG] = ACTIONS(4066), + [anon_sym_function] = ACTIONS(4068), + [anon_sym_use] = ACTIONS(4068), + [anon_sym_use_BANG] = ACTIONS(4066), + [anon_sym_do_BANG] = ACTIONS(4066), + [anon_sym_begin] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_member] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_val] = ACTIONS(4068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_AT_DQUOTE] = ACTIONS(4066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4066), + [sym_bool] = ACTIONS(4068), + [sym_unit] = ACTIONS(4066), + [aux_sym__identifier_or_op_token1] = ACTIONS(4066), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS_DOT] = ACTIONS(4066), + [anon_sym_DASH_DOT] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [aux_sym_prefix_op_token1] = ACTIONS(4066), + [sym_int] = ACTIONS(4068), + [sym_xint] = ACTIONS(4066), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4026), - [sym__dedent] = ACTIONS(4026), + [anon_sym_POUNDif] = ACTIONS(4066), }, [2171] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1502), - [sym_rules] = STATE(1846), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2171), [sym_block_comment] = STATE(2171), [sym_preproc_line] = STATE(2171), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_POUNDnowarn] = ACTIONS(2734), + [anon_sym_POUNDr] = ACTIONS(2734), + [anon_sym_POUNDload] = ACTIONS(2734), + [anon_sym_open] = ACTIONS(2732), + [anon_sym_LBRACK_LT] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_and] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_let_BANG] = ACTIONS(2734), + [aux_sym_access_modifier_token1] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK_PIPE] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_LBRACE_PIPE] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_return_BANG] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_yield_BANG] = ACTIONS(2734), + [anon_sym_lazy] = ACTIONS(2732), + [anon_sym_assert] = ACTIONS(2732), + [anon_sym_upcast] = ACTIONS(2732), + [anon_sym_downcast] = ACTIONS(2732), + [anon_sym_LT_AT] = ACTIONS(2732), + [anon_sym_LT_AT_AT] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_fun] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_match_BANG] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_use_BANG] = ACTIONS(2734), + [anon_sym_do_BANG] = ACTIONS(2734), + [anon_sym_begin] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_member] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_val] = ACTIONS(2732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_AT_DQUOTE] = ACTIONS(2734), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2734), + [sym_bool] = ACTIONS(2732), + [sym_unit] = ACTIONS(2734), + [aux_sym__identifier_or_op_token1] = ACTIONS(2734), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_PLUS_DOT] = ACTIONS(2734), + [anon_sym_DASH_DOT] = ACTIONS(2734), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_prefix_op_token1] = ACTIONS(2734), + [sym_int] = ACTIONS(2732), + [sym_xint] = ACTIONS(2734), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2734), + [sym__dedent] = ACTIONS(2734), }, [2172] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(829), - [sym_rules] = STATE(942), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2172), [sym_block_comment] = STATE(2172), [sym_preproc_line] = STATE(2172), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4052), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4070), + [sym_identifier] = ACTIONS(4072), + [anon_sym_namespace] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_POUNDnowarn] = ACTIONS(4070), + [anon_sym_POUNDr] = ACTIONS(4070), + [anon_sym_POUNDload] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4072), + [anon_sym_LBRACK_LT] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_type] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_let_BANG] = ACTIONS(4070), + [aux_sym_access_modifier_token1] = ACTIONS(4070), + [anon_sym_null] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_LBRACK_PIPE] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_LBRACE_PIPE] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_return_BANG] = ACTIONS(4070), + [anon_sym_yield] = ACTIONS(4072), + [anon_sym_yield_BANG] = ACTIONS(4070), + [anon_sym_lazy] = ACTIONS(4072), + [anon_sym_assert] = ACTIONS(4072), + [anon_sym_upcast] = ACTIONS(4072), + [anon_sym_downcast] = ACTIONS(4072), + [anon_sym_LT_AT] = ACTIONS(4072), + [anon_sym_LT_AT_AT] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_fun] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_match_BANG] = ACTIONS(4070), + [anon_sym_function] = ACTIONS(4072), + [anon_sym_use] = ACTIONS(4072), + [anon_sym_use_BANG] = ACTIONS(4070), + [anon_sym_do_BANG] = ACTIONS(4070), + [anon_sym_begin] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_member] = ACTIONS(4072), + [anon_sym_abstract] = ACTIONS(4072), + [anon_sym_override] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_val] = ACTIONS(4072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [anon_sym_AT_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4070), + [sym_bool] = ACTIONS(4072), + [sym_unit] = ACTIONS(4070), + [aux_sym__identifier_or_op_token1] = ACTIONS(4070), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS_DOT] = ACTIONS(4070), + [anon_sym_DASH_DOT] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [aux_sym_prefix_op_token1] = ACTIONS(4070), + [sym_int] = ACTIONS(4072), + [sym_xint] = ACTIONS(4070), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4070), }, [2173] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1414), - [sym_rules] = STATE(1898), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2173), [sym_block_comment] = STATE(2173), [sym_preproc_line] = STATE(2173), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4076), + [anon_sym_namespace] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_POUNDnowarn] = ACTIONS(4074), + [anon_sym_POUNDr] = ACTIONS(4074), + [anon_sym_POUNDload] = ACTIONS(4074), + [anon_sym_open] = ACTIONS(4076), + [anon_sym_LBRACK_LT] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_let_BANG] = ACTIONS(4074), + [aux_sym_access_modifier_token1] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_LBRACK_PIPE] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_LBRACE_PIPE] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_return_BANG] = ACTIONS(4074), + [anon_sym_yield] = ACTIONS(4076), + [anon_sym_yield_BANG] = ACTIONS(4074), + [anon_sym_lazy] = ACTIONS(4076), + [anon_sym_assert] = ACTIONS(4076), + [anon_sym_upcast] = ACTIONS(4076), + [anon_sym_downcast] = ACTIONS(4076), + [anon_sym_LT_AT] = ACTIONS(4076), + [anon_sym_LT_AT_AT] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_fun] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_match_BANG] = ACTIONS(4074), + [anon_sym_function] = ACTIONS(4076), + [anon_sym_use] = ACTIONS(4076), + [anon_sym_use_BANG] = ACTIONS(4074), + [anon_sym_do_BANG] = ACTIONS(4074), + [anon_sym_begin] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_member] = ACTIONS(4076), + [anon_sym_abstract] = ACTIONS(4076), + [anon_sym_override] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_val] = ACTIONS(4076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_AT_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4074), + [sym_bool] = ACTIONS(4076), + [sym_unit] = ACTIONS(4074), + [aux_sym__identifier_or_op_token1] = ACTIONS(4074), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS_DOT] = ACTIONS(4074), + [anon_sym_DASH_DOT] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [aux_sym_prefix_op_token1] = ACTIONS(4074), + [sym_int] = ACTIONS(4076), + [sym_xint] = ACTIONS(4074), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4074), }, [2174] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1502), - [sym_rules] = STATE(1875), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2174), [sym_block_comment] = STATE(2174), [sym_preproc_line] = STATE(2174), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_POUNDnowarn] = ACTIONS(4078), + [anon_sym_POUNDr] = ACTIONS(4078), + [anon_sym_POUNDload] = ACTIONS(4078), + [anon_sym_open] = ACTIONS(4080), + [anon_sym_LBRACK_LT] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_and] = ACTIONS(4080), + [anon_sym_let] = ACTIONS(4080), + [anon_sym_let_BANG] = ACTIONS(4078), + [aux_sym_access_modifier_token1] = ACTIONS(4078), + [anon_sym_null] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_LBRACK_PIPE] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LBRACE_PIPE] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_return_BANG] = ACTIONS(4078), + [anon_sym_yield] = ACTIONS(4080), + [anon_sym_yield_BANG] = ACTIONS(4078), + [anon_sym_lazy] = ACTIONS(4080), + [anon_sym_assert] = ACTIONS(4080), + [anon_sym_upcast] = ACTIONS(4080), + [anon_sym_downcast] = ACTIONS(4080), + [anon_sym_LT_AT] = ACTIONS(4080), + [anon_sym_LT_AT_AT] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_fun] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_match_BANG] = ACTIONS(4078), + [anon_sym_function] = ACTIONS(4080), + [anon_sym_use] = ACTIONS(4080), + [anon_sym_use_BANG] = ACTIONS(4078), + [anon_sym_do_BANG] = ACTIONS(4078), + [anon_sym_begin] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_member] = ACTIONS(4080), + [anon_sym_abstract] = ACTIONS(4080), + [anon_sym_override] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_val] = ACTIONS(4080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [anon_sym_AT_DQUOTE] = ACTIONS(4078), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4078), + [sym_bool] = ACTIONS(4080), + [sym_unit] = ACTIONS(4078), + [aux_sym__identifier_or_op_token1] = ACTIONS(4078), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS_DOT] = ACTIONS(4078), + [anon_sym_DASH_DOT] = ACTIONS(4078), + [anon_sym_PERCENT] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [aux_sym_prefix_op_token1] = ACTIONS(4078), + [sym_int] = ACTIONS(4080), + [sym_xint] = ACTIONS(4078), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4078), }, [2175] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1502), - [sym_rules] = STATE(1876), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2175), [sym_block_comment] = STATE(2175), [sym_preproc_line] = STATE(2175), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4084), + [anon_sym_namespace] = ACTIONS(4084), + [anon_sym_module] = ACTIONS(4084), + [anon_sym_POUNDnowarn] = ACTIONS(4082), + [anon_sym_POUNDr] = ACTIONS(4082), + [anon_sym_POUNDload] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4084), + [anon_sym_LBRACK_LT] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_and] = ACTIONS(4084), + [anon_sym_let] = ACTIONS(4084), + [anon_sym_let_BANG] = ACTIONS(4082), + [aux_sym_access_modifier_token1] = ACTIONS(4082), + [anon_sym_null] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_LBRACK_PIPE] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_LBRACE_PIPE] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_return_BANG] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_yield_BANG] = ACTIONS(4082), + [anon_sym_lazy] = ACTIONS(4084), + [anon_sym_assert] = ACTIONS(4084), + [anon_sym_upcast] = ACTIONS(4084), + [anon_sym_downcast] = ACTIONS(4084), + [anon_sym_LT_AT] = ACTIONS(4084), + [anon_sym_LT_AT_AT] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_fun] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_match_BANG] = ACTIONS(4082), + [anon_sym_function] = ACTIONS(4084), + [anon_sym_use] = ACTIONS(4084), + [anon_sym_use_BANG] = ACTIONS(4082), + [anon_sym_do_BANG] = ACTIONS(4082), + [anon_sym_begin] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_member] = ACTIONS(4084), + [anon_sym_abstract] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_val] = ACTIONS(4084), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [anon_sym_AT_DQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4082), + [sym_bool] = ACTIONS(4084), + [sym_unit] = ACTIONS(4082), + [aux_sym__identifier_or_op_token1] = ACTIONS(4082), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS_DOT] = ACTIONS(4082), + [anon_sym_DASH_DOT] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [aux_sym_prefix_op_token1] = ACTIONS(4082), + [sym_int] = ACTIONS(4084), + [sym_xint] = ACTIONS(4082), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4082), }, [2176] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1281), - [sym_rules] = STATE(1533), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2176), [sym_block_comment] = STATE(2176), [sym_preproc_line] = STATE(2176), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_POUNDnowarn] = ACTIONS(4086), + [anon_sym_POUNDr] = ACTIONS(4086), + [anon_sym_POUNDload] = ACTIONS(4086), + [anon_sym_open] = ACTIONS(4088), + [anon_sym_LBRACK_LT] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_type] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_and] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_let_BANG] = ACTIONS(4086), + [aux_sym_access_modifier_token1] = ACTIONS(4086), + [anon_sym_null] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_LBRACK_PIPE] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_LBRACE_PIPE] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_return_BANG] = ACTIONS(4086), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_yield_BANG] = ACTIONS(4086), + [anon_sym_lazy] = ACTIONS(4088), + [anon_sym_assert] = ACTIONS(4088), + [anon_sym_upcast] = ACTIONS(4088), + [anon_sym_downcast] = ACTIONS(4088), + [anon_sym_LT_AT] = ACTIONS(4088), + [anon_sym_LT_AT_AT] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_fun] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_match] = ACTIONS(4088), + [anon_sym_match_BANG] = ACTIONS(4086), + [anon_sym_function] = ACTIONS(4088), + [anon_sym_use] = ACTIONS(4088), + [anon_sym_use_BANG] = ACTIONS(4086), + [anon_sym_do_BANG] = ACTIONS(4086), + [anon_sym_begin] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_member] = ACTIONS(4088), + [anon_sym_abstract] = ACTIONS(4088), + [anon_sym_override] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_val] = ACTIONS(4088), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [anon_sym_AT_DQUOTE] = ACTIONS(4086), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4086), + [sym_bool] = ACTIONS(4088), + [sym_unit] = ACTIONS(4086), + [aux_sym__identifier_or_op_token1] = ACTIONS(4086), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS_DOT] = ACTIONS(4086), + [anon_sym_DASH_DOT] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [aux_sym_prefix_op_token1] = ACTIONS(4086), + [sym_int] = ACTIONS(4088), + [sym_xint] = ACTIONS(4086), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4086), }, [2177] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1414), - [sym_rules] = STATE(1902), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2177), [sym_block_comment] = STATE(2177), [sym_preproc_line] = STATE(2177), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4090), + [sym_identifier] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_POUNDnowarn] = ACTIONS(4090), + [anon_sym_POUNDr] = ACTIONS(4090), + [anon_sym_POUNDload] = ACTIONS(4090), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_LBRACK_LT] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_and] = ACTIONS(4092), + [anon_sym_let] = ACTIONS(4092), + [anon_sym_let_BANG] = ACTIONS(4090), + [aux_sym_access_modifier_token1] = ACTIONS(4090), + [anon_sym_null] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_LBRACK_PIPE] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_LBRACE_PIPE] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_return_BANG] = ACTIONS(4090), + [anon_sym_yield] = ACTIONS(4092), + [anon_sym_yield_BANG] = ACTIONS(4090), + [anon_sym_lazy] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(4092), + [anon_sym_upcast] = ACTIONS(4092), + [anon_sym_downcast] = ACTIONS(4092), + [anon_sym_LT_AT] = ACTIONS(4092), + [anon_sym_LT_AT_AT] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_match] = ACTIONS(4092), + [anon_sym_match_BANG] = ACTIONS(4090), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_use] = ACTIONS(4092), + [anon_sym_use_BANG] = ACTIONS(4090), + [anon_sym_do_BANG] = ACTIONS(4090), + [anon_sym_begin] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_member] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_val] = ACTIONS(4092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_AT_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4090), + [sym_bool] = ACTIONS(4092), + [sym_unit] = ACTIONS(4090), + [aux_sym__identifier_or_op_token1] = ACTIONS(4090), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS_DOT] = ACTIONS(4090), + [anon_sym_DASH_DOT] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [aux_sym_prefix_op_token1] = ACTIONS(4090), + [sym_int] = ACTIONS(4092), + [sym_xint] = ACTIONS(4090), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4090), }, [2178] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1414), - [sym_rules] = STATE(1952), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2178), [sym_block_comment] = STATE(2178), [sym_preproc_line] = STATE(2178), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3996), + [anon_sym_module] = ACTIONS(3996), + [anon_sym_POUNDnowarn] = ACTIONS(3994), + [anon_sym_POUNDr] = ACTIONS(3994), + [anon_sym_POUNDload] = ACTIONS(3994), + [anon_sym_open] = ACTIONS(3996), + [anon_sym_LBRACK_LT] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_type] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_and] = ACTIONS(3996), + [anon_sym_let] = ACTIONS(3996), + [anon_sym_let_BANG] = ACTIONS(3994), + [aux_sym_access_modifier_token1] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_LBRACK_PIPE] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_LBRACE_PIPE] = ACTIONS(3994), + [anon_sym_with] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_return_BANG] = ACTIONS(3994), + [anon_sym_yield] = ACTIONS(3996), + [anon_sym_yield_BANG] = ACTIONS(3994), + [anon_sym_lazy] = ACTIONS(3996), + [anon_sym_assert] = ACTIONS(3996), + [anon_sym_upcast] = ACTIONS(3996), + [anon_sym_downcast] = ACTIONS(3996), + [anon_sym_LT_AT] = ACTIONS(3996), + [anon_sym_LT_AT_AT] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_fun] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_match] = ACTIONS(3996), + [anon_sym_match_BANG] = ACTIONS(3994), + [anon_sym_function] = ACTIONS(3996), + [anon_sym_use] = ACTIONS(3996), + [anon_sym_use_BANG] = ACTIONS(3994), + [anon_sym_do_BANG] = ACTIONS(3994), + [anon_sym_begin] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_member] = ACTIONS(3996), + [anon_sym_abstract] = ACTIONS(3996), + [anon_sym_override] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_val] = ACTIONS(3996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [anon_sym_AT_DQUOTE] = ACTIONS(3994), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3994), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3994), + [sym_bool] = ACTIONS(3996), + [sym_unit] = ACTIONS(3994), + [aux_sym__identifier_or_op_token1] = ACTIONS(3994), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS_DOT] = ACTIONS(3994), + [anon_sym_DASH_DOT] = ACTIONS(3994), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [aux_sym_prefix_op_token1] = ACTIONS(3994), + [sym_int] = ACTIONS(3996), + [sym_xint] = ACTIONS(3994), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3994), + [sym__dedent] = ACTIONS(3994), }, [2179] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1281), - [sym_rules] = STATE(1509), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2841), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2179), [sym_block_comment] = STATE(2179), [sym_preproc_line] = STATE(2179), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3858), + [anon_sym_LBRACK_LT] = ACTIONS(3858), + [anon_sym_COLON] = ACTIONS(3860), + [anon_sym_null] = ACTIONS(3860), + [anon_sym__] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3858), + [anon_sym_COLON_QMARK] = ACTIONS(3858), + [anon_sym_as] = ACTIONS(3860), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3858), + [anon_sym_PIPE] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3860), + [anon_sym_LBRACK_PIPE] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3858), + [anon_sym_SQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [anon_sym_AT_DQUOTE] = ACTIONS(3858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3858), + [sym_bool] = ACTIONS(3860), + [sym_unit] = ACTIONS(3858), + [sym_int] = ACTIONS(3860), + [sym_xint] = ACTIONS(3858), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2180] = { - [sym_attributes] = STATE(4738), - [sym_attribute_set] = STATE(3120), [sym_xml_doc] = STATE(2180), [sym_block_comment] = STATE(2180), [sym_preproc_line] = STATE(2180), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(4022), - [anon_sym_module] = ACTIONS(4022), - [anon_sym_POUNDnowarn] = ACTIONS(4020), - [anon_sym_POUNDr] = ACTIONS(4020), - [anon_sym_POUNDload] = ACTIONS(4020), - [anon_sym_open] = ACTIONS(4022), - [anon_sym_LBRACK_LT] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_type] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_and] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(4022), - [anon_sym_let_BANG] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4022), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_LBRACK_PIPE] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_LBRACE_PIPE] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_return_BANG] = ACTIONS(4020), - [anon_sym_yield] = ACTIONS(4022), - [anon_sym_yield_BANG] = ACTIONS(4020), - [anon_sym_lazy] = ACTIONS(4022), - [anon_sym_assert] = ACTIONS(4022), - [anon_sym_upcast] = ACTIONS(4022), - [anon_sym_downcast] = ACTIONS(4022), - [anon_sym_LT_AT] = ACTIONS(4022), - [anon_sym_LT_AT_AT] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_fun] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_match] = ACTIONS(4022), - [anon_sym_match_BANG] = ACTIONS(4020), - [anon_sym_function] = ACTIONS(4022), - [anon_sym_use] = ACTIONS(4022), - [anon_sym_use_BANG] = ACTIONS(4020), - [anon_sym_do_BANG] = ACTIONS(4020), - [anon_sym_begin] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [anon_sym_AT_DQUOTE] = ACTIONS(4020), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4020), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4020), - [sym_bool] = ACTIONS(4022), - [sym_unit] = ACTIONS(4020), - [aux_sym__identifier_or_op_token1] = ACTIONS(4020), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS_DOT] = ACTIONS(4020), - [anon_sym_DASH_DOT] = ACTIONS(4020), - [anon_sym_PERCENT] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [aux_sym_prefix_op_token1] = ACTIONS(4020), - [sym_int] = ACTIONS(4022), - [sym_xint] = ACTIONS(4020), + [sym_identifier] = ACTIONS(4018), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_POUNDnowarn] = ACTIONS(4016), + [anon_sym_POUNDr] = ACTIONS(4016), + [anon_sym_POUNDload] = ACTIONS(4016), + [anon_sym_open] = ACTIONS(4018), + [anon_sym_LBRACK_LT] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_type] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_and] = ACTIONS(4018), + [anon_sym_let] = ACTIONS(4018), + [anon_sym_let_BANG] = ACTIONS(4016), + [aux_sym_access_modifier_token1] = ACTIONS(4016), + [anon_sym_null] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_LBRACK_PIPE] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE_PIPE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_return_BANG] = ACTIONS(4016), + [anon_sym_yield] = ACTIONS(4018), + [anon_sym_yield_BANG] = ACTIONS(4016), + [anon_sym_lazy] = ACTIONS(4018), + [anon_sym_assert] = ACTIONS(4018), + [anon_sym_upcast] = ACTIONS(4018), + [anon_sym_downcast] = ACTIONS(4018), + [anon_sym_LT_AT] = ACTIONS(4018), + [anon_sym_LT_AT_AT] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_fun] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_match] = ACTIONS(4018), + [anon_sym_match_BANG] = ACTIONS(4016), + [anon_sym_function] = ACTIONS(4018), + [anon_sym_use] = ACTIONS(4018), + [anon_sym_use_BANG] = ACTIONS(4016), + [anon_sym_do_BANG] = ACTIONS(4016), + [anon_sym_begin] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_member] = ACTIONS(4018), + [anon_sym_abstract] = ACTIONS(4018), + [anon_sym_override] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_val] = ACTIONS(4018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [anon_sym_AT_DQUOTE] = ACTIONS(4016), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4016), + [sym_bool] = ACTIONS(4018), + [sym_unit] = ACTIONS(4016), + [aux_sym__identifier_or_op_token1] = ACTIONS(4016), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS_DOT] = ACTIONS(4016), + [anon_sym_DASH_DOT] = ACTIONS(4016), + [anon_sym_PERCENT] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [aux_sym_prefix_op_token1] = ACTIONS(4016), + [sym_int] = ACTIONS(4018), + [sym_xint] = ACTIONS(4016), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4020), - [sym__dedent] = ACTIONS(4020), + [anon_sym_POUNDif] = ACTIONS(4016), + [sym__dedent] = ACTIONS(4016), }, [2181] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1281), - [sym_rules] = STATE(1508), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2181), [sym_block_comment] = STATE(2181), [sym_preproc_line] = STATE(2181), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_POUNDnowarn] = ACTIONS(4098), + [anon_sym_POUNDr] = ACTIONS(4098), + [anon_sym_POUNDload] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4100), + [anon_sym_LBRACK_LT] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_type] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_and] = ACTIONS(4100), + [anon_sym_let] = ACTIONS(4100), + [anon_sym_let_BANG] = ACTIONS(4098), + [aux_sym_access_modifier_token1] = ACTIONS(4098), + [anon_sym_null] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LBRACK_PIPE] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_LBRACE_PIPE] = ACTIONS(4098), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_return_BANG] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4100), + [anon_sym_yield_BANG] = ACTIONS(4098), + [anon_sym_lazy] = ACTIONS(4100), + [anon_sym_assert] = ACTIONS(4100), + [anon_sym_upcast] = ACTIONS(4100), + [anon_sym_downcast] = ACTIONS(4100), + [anon_sym_LT_AT] = ACTIONS(4100), + [anon_sym_LT_AT_AT] = ACTIONS(4098), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_fun] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_match] = ACTIONS(4100), + [anon_sym_match_BANG] = ACTIONS(4098), + [anon_sym_function] = ACTIONS(4100), + [anon_sym_use] = ACTIONS(4100), + [anon_sym_use_BANG] = ACTIONS(4098), + [anon_sym_do_BANG] = ACTIONS(4098), + [anon_sym_begin] = ACTIONS(4100), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_member] = ACTIONS(4100), + [anon_sym_abstract] = ACTIONS(4100), + [anon_sym_override] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_val] = ACTIONS(4100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4100), + [anon_sym_DQUOTE] = ACTIONS(4100), + [anon_sym_AT_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4098), + [sym_bool] = ACTIONS(4100), + [sym_unit] = ACTIONS(4098), + [aux_sym__identifier_or_op_token1] = ACTIONS(4098), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS_DOT] = ACTIONS(4098), + [anon_sym_DASH_DOT] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [aux_sym_prefix_op_token1] = ACTIONS(4098), + [sym_int] = ACTIONS(4100), + [sym_xint] = ACTIONS(4098), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4098), }, [2182] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(820), - [sym_rules] = STATE(945), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2182), [sym_block_comment] = STATE(2182), [sym_preproc_line] = STATE(2182), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4104), + [anon_sym_namespace] = ACTIONS(4104), + [anon_sym_module] = ACTIONS(4104), + [anon_sym_POUNDnowarn] = ACTIONS(4102), + [anon_sym_POUNDr] = ACTIONS(4102), + [anon_sym_POUNDload] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_LBRACK_LT] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_type] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_and] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4104), + [anon_sym_let_BANG] = ACTIONS(4102), + [aux_sym_access_modifier_token1] = ACTIONS(4102), + [anon_sym_null] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_LBRACK_PIPE] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_LBRACE_PIPE] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_return_BANG] = ACTIONS(4102), + [anon_sym_yield] = ACTIONS(4104), + [anon_sym_yield_BANG] = ACTIONS(4102), + [anon_sym_lazy] = ACTIONS(4104), + [anon_sym_assert] = ACTIONS(4104), + [anon_sym_upcast] = ACTIONS(4104), + [anon_sym_downcast] = ACTIONS(4104), + [anon_sym_LT_AT] = ACTIONS(4104), + [anon_sym_LT_AT_AT] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_match] = ACTIONS(4104), + [anon_sym_match_BANG] = ACTIONS(4102), + [anon_sym_function] = ACTIONS(4104), + [anon_sym_use] = ACTIONS(4104), + [anon_sym_use_BANG] = ACTIONS(4102), + [anon_sym_do_BANG] = ACTIONS(4102), + [anon_sym_begin] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_member] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_val] = ACTIONS(4104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [anon_sym_AT_DQUOTE] = ACTIONS(4102), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4102), + [sym_bool] = ACTIONS(4104), + [sym_unit] = ACTIONS(4102), + [aux_sym__identifier_or_op_token1] = ACTIONS(4102), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS_DOT] = ACTIONS(4102), + [anon_sym_DASH_DOT] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [aux_sym_prefix_op_token1] = ACTIONS(4102), + [sym_int] = ACTIONS(4104), + [sym_xint] = ACTIONS(4102), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4102), }, [2183] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1502), - [sym_rules] = STATE(1917), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2183), [sym_block_comment] = STATE(2183), [sym_preproc_line] = STATE(2183), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_POUNDnowarn] = ACTIONS(4006), + [anon_sym_POUNDr] = ACTIONS(4006), + [anon_sym_POUNDload] = ACTIONS(4006), + [anon_sym_open] = ACTIONS(4008), + [anon_sym_LBRACK_LT] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_and] = ACTIONS(4008), + [anon_sym_let] = ACTIONS(4008), + [anon_sym_let_BANG] = ACTIONS(4006), + [aux_sym_access_modifier_token1] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_COMMA] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK_PIPE] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_LBRACE_PIPE] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_return_BANG] = ACTIONS(4006), + [anon_sym_yield] = ACTIONS(4008), + [anon_sym_yield_BANG] = ACTIONS(4006), + [anon_sym_lazy] = ACTIONS(4008), + [anon_sym_assert] = ACTIONS(4008), + [anon_sym_upcast] = ACTIONS(4008), + [anon_sym_downcast] = ACTIONS(4008), + [anon_sym_LT_AT] = ACTIONS(4008), + [anon_sym_LT_AT_AT] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_fun] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_match_BANG] = ACTIONS(4006), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_use] = ACTIONS(4008), + [anon_sym_use_BANG] = ACTIONS(4006), + [anon_sym_do_BANG] = ACTIONS(4006), + [anon_sym_begin] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_member] = ACTIONS(4008), + [anon_sym_abstract] = ACTIONS(4008), + [anon_sym_override] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_val] = ACTIONS(4008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [anon_sym_AT_DQUOTE] = ACTIONS(4006), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4006), + [sym_bool] = ACTIONS(4008), + [sym_unit] = ACTIONS(4006), + [aux_sym__identifier_or_op_token1] = ACTIONS(4006), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS_DOT] = ACTIONS(4006), + [anon_sym_DASH_DOT] = ACTIONS(4006), + [anon_sym_PERCENT] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [aux_sym_prefix_op_token1] = ACTIONS(4006), + [sym_int] = ACTIONS(4008), + [sym_xint] = ACTIONS(4006), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4006), + [sym__dedent] = ACTIONS(4006), }, [2184] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1414), - [sym_rules] = STATE(1958), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2184), [sym_block_comment] = STATE(2184), [sym_preproc_line] = STATE(2184), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_POUNDnowarn] = ACTIONS(4086), + [anon_sym_POUNDr] = ACTIONS(4086), + [anon_sym_POUNDload] = ACTIONS(4086), + [anon_sym_open] = ACTIONS(4088), + [anon_sym_LBRACK_LT] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_type] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_and] = ACTIONS(4088), + [anon_sym_let] = ACTIONS(4088), + [anon_sym_let_BANG] = ACTIONS(4086), + [aux_sym_access_modifier_token1] = ACTIONS(4086), + [anon_sym_null] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_LBRACK_PIPE] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_LBRACE_PIPE] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_return_BANG] = ACTIONS(4086), + [anon_sym_yield] = ACTIONS(4088), + [anon_sym_yield_BANG] = ACTIONS(4086), + [anon_sym_lazy] = ACTIONS(4088), + [anon_sym_assert] = ACTIONS(4088), + [anon_sym_upcast] = ACTIONS(4088), + [anon_sym_downcast] = ACTIONS(4088), + [anon_sym_LT_AT] = ACTIONS(4088), + [anon_sym_LT_AT_AT] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_fun] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_match] = ACTIONS(4088), + [anon_sym_match_BANG] = ACTIONS(4086), + [anon_sym_function] = ACTIONS(4088), + [anon_sym_use] = ACTIONS(4088), + [anon_sym_use_BANG] = ACTIONS(4086), + [anon_sym_do_BANG] = ACTIONS(4086), + [anon_sym_begin] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_member] = ACTIONS(4088), + [anon_sym_abstract] = ACTIONS(4088), + [anon_sym_override] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_val] = ACTIONS(4088), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [anon_sym_AT_DQUOTE] = ACTIONS(4086), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4086), + [sym_bool] = ACTIONS(4088), + [sym_unit] = ACTIONS(4086), + [aux_sym__identifier_or_op_token1] = ACTIONS(4086), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS_DOT] = ACTIONS(4086), + [anon_sym_DASH_DOT] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [aux_sym_prefix_op_token1] = ACTIONS(4086), + [sym_int] = ACTIONS(4088), + [sym_xint] = ACTIONS(4086), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4086), + [sym__dedent] = ACTIONS(4086), }, [2185] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1303), - [sym_rules] = STATE(1650), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2185), [sym_block_comment] = STATE(2185), [sym_preproc_line] = STATE(2185), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_POUNDnowarn] = ACTIONS(3736), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3738), + [anon_sym_LBRACK_LT] = ACTIONS(3736), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_and] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3736), + [aux_sym_access_modifier_token1] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_member] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_val] = ACTIONS(3738), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3736), + [aux_sym__identifier_or_op_token1] = ACTIONS(3736), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3736), + [anon_sym_DASH_DOT] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3736), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3736), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__dedent] = ACTIONS(3736), }, [2186] = { - [sym_attributes] = STATE(4738), - [sym_attribute_set] = STATE(3120), [sym_xml_doc] = STATE(2186), [sym_block_comment] = STATE(2186), [sym_preproc_line] = STATE(2186), - [aux_sym_attributes_repeat1] = STATE(2968), - [aux_sym_type_definition_repeat1] = STATE(2186), - [sym_identifier] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_POUNDnowarn] = ACTIONS(4034), - [anon_sym_POUNDr] = ACTIONS(4034), - [anon_sym_POUNDload] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4036), - [anon_sym_LBRACK_LT] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_type] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_and] = ACTIONS(4071), - [anon_sym_let] = ACTIONS(4036), - [anon_sym_let_BANG] = ACTIONS(4034), - [anon_sym_null] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LBRACK_PIPE] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_LBRACE_PIPE] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_return_BANG] = ACTIONS(4034), - [anon_sym_yield] = ACTIONS(4036), - [anon_sym_yield_BANG] = ACTIONS(4034), - [anon_sym_lazy] = ACTIONS(4036), - [anon_sym_assert] = ACTIONS(4036), - [anon_sym_upcast] = ACTIONS(4036), - [anon_sym_downcast] = ACTIONS(4036), - [anon_sym_LT_AT] = ACTIONS(4036), - [anon_sym_LT_AT_AT] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_fun] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_match] = ACTIONS(4036), - [anon_sym_match_BANG] = ACTIONS(4034), - [anon_sym_function] = ACTIONS(4036), - [anon_sym_use] = ACTIONS(4036), - [anon_sym_use_BANG] = ACTIONS(4034), - [anon_sym_do_BANG] = ACTIONS(4034), - [anon_sym_begin] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_AT_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [sym_bool] = ACTIONS(4036), - [sym_unit] = ACTIONS(4034), - [aux_sym__identifier_or_op_token1] = ACTIONS(4034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS_DOT] = ACTIONS(4034), - [anon_sym_DASH_DOT] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [aux_sym_prefix_op_token1] = ACTIONS(4034), - [sym_int] = ACTIONS(4036), - [sym_xint] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_POUNDnowarn] = ACTIONS(4042), + [anon_sym_POUNDr] = ACTIONS(4042), + [anon_sym_POUNDload] = ACTIONS(4042), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_LBRACK_LT] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_type] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_and] = ACTIONS(4044), + [anon_sym_let] = ACTIONS(4044), + [anon_sym_let_BANG] = ACTIONS(4042), + [aux_sym_access_modifier_token1] = ACTIONS(4042), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_LBRACK_PIPE] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_LBRACE_PIPE] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_return_BANG] = ACTIONS(4042), + [anon_sym_yield] = ACTIONS(4044), + [anon_sym_yield_BANG] = ACTIONS(4042), + [anon_sym_lazy] = ACTIONS(4044), + [anon_sym_assert] = ACTIONS(4044), + [anon_sym_upcast] = ACTIONS(4044), + [anon_sym_downcast] = ACTIONS(4044), + [anon_sym_LT_AT] = ACTIONS(4044), + [anon_sym_LT_AT_AT] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_match] = ACTIONS(4044), + [anon_sym_match_BANG] = ACTIONS(4042), + [anon_sym_function] = ACTIONS(4044), + [anon_sym_use] = ACTIONS(4044), + [anon_sym_use_BANG] = ACTIONS(4042), + [anon_sym_do_BANG] = ACTIONS(4042), + [anon_sym_begin] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_member] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_val] = ACTIONS(4044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_AT_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4042), + [sym_bool] = ACTIONS(4044), + [sym_unit] = ACTIONS(4042), + [aux_sym__identifier_or_op_token1] = ACTIONS(4042), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS_DOT] = ACTIONS(4042), + [anon_sym_DASH_DOT] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [aux_sym_prefix_op_token1] = ACTIONS(4042), + [sym_int] = ACTIONS(4044), + [sym_xint] = ACTIONS(4042), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4034), - [sym__dedent] = ACTIONS(4034), + [anon_sym_POUNDif] = ACTIONS(4042), + [sym__dedent] = ACTIONS(4042), }, [2187] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1281), - [sym_rules] = STATE(1446), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2187), [sym_block_comment] = STATE(2187), [sym_preproc_line] = STATE(2187), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4065), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_POUNDnowarn] = ACTIONS(3740), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_and] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3740), + [aux_sym_access_modifier_token1] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_member] = ACTIONS(3742), + [anon_sym_abstract] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_val] = ACTIONS(3742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3740), + [aux_sym__identifier_or_op_token1] = ACTIONS(3740), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3740), + [anon_sym_DASH_DOT] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3740), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3740), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__dedent] = ACTIONS(3740), }, [2188] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1502), - [sym_rules] = STATE(1920), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2188), [sym_block_comment] = STATE(2188), [sym_preproc_line] = STATE(2188), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_POUNDnowarn] = ACTIONS(4078), + [anon_sym_POUNDr] = ACTIONS(4078), + [anon_sym_POUNDload] = ACTIONS(4078), + [anon_sym_open] = ACTIONS(4080), + [anon_sym_LBRACK_LT] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_and] = ACTIONS(4080), + [anon_sym_let] = ACTIONS(4080), + [anon_sym_let_BANG] = ACTIONS(4078), + [aux_sym_access_modifier_token1] = ACTIONS(4078), + [anon_sym_null] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_LBRACK_PIPE] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LBRACE_PIPE] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_return_BANG] = ACTIONS(4078), + [anon_sym_yield] = ACTIONS(4080), + [anon_sym_yield_BANG] = ACTIONS(4078), + [anon_sym_lazy] = ACTIONS(4080), + [anon_sym_assert] = ACTIONS(4080), + [anon_sym_upcast] = ACTIONS(4080), + [anon_sym_downcast] = ACTIONS(4080), + [anon_sym_LT_AT] = ACTIONS(4080), + [anon_sym_LT_AT_AT] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_fun] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_match_BANG] = ACTIONS(4078), + [anon_sym_function] = ACTIONS(4080), + [anon_sym_use] = ACTIONS(4080), + [anon_sym_use_BANG] = ACTIONS(4078), + [anon_sym_do_BANG] = ACTIONS(4078), + [anon_sym_begin] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_member] = ACTIONS(4080), + [anon_sym_abstract] = ACTIONS(4080), + [anon_sym_override] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_val] = ACTIONS(4080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [anon_sym_AT_DQUOTE] = ACTIONS(4078), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4078), + [sym_bool] = ACTIONS(4080), + [sym_unit] = ACTIONS(4078), + [aux_sym__identifier_or_op_token1] = ACTIONS(4078), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS_DOT] = ACTIONS(4078), + [anon_sym_DASH_DOT] = ACTIONS(4078), + [anon_sym_PERCENT] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [aux_sym_prefix_op_token1] = ACTIONS(4078), + [sym_int] = ACTIONS(4080), + [sym_xint] = ACTIONS(4078), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4078), + [sym__dedent] = ACTIONS(4078), }, [2189] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1266), - [sym_rules] = STATE(1468), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2189), [sym_block_comment] = STATE(2189), [sym_preproc_line] = STATE(2189), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_POUNDnowarn] = ACTIONS(4098), + [anon_sym_POUNDr] = ACTIONS(4098), + [anon_sym_POUNDload] = ACTIONS(4098), + [anon_sym_open] = ACTIONS(4100), + [anon_sym_LBRACK_LT] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_type] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_and] = ACTIONS(4100), + [anon_sym_let] = ACTIONS(4100), + [anon_sym_let_BANG] = ACTIONS(4098), + [aux_sym_access_modifier_token1] = ACTIONS(4098), + [anon_sym_null] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_LBRACK_PIPE] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_LBRACE_PIPE] = ACTIONS(4098), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_return_BANG] = ACTIONS(4098), + [anon_sym_yield] = ACTIONS(4100), + [anon_sym_yield_BANG] = ACTIONS(4098), + [anon_sym_lazy] = ACTIONS(4100), + [anon_sym_assert] = ACTIONS(4100), + [anon_sym_upcast] = ACTIONS(4100), + [anon_sym_downcast] = ACTIONS(4100), + [anon_sym_LT_AT] = ACTIONS(4100), + [anon_sym_LT_AT_AT] = ACTIONS(4098), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_fun] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_match] = ACTIONS(4100), + [anon_sym_match_BANG] = ACTIONS(4098), + [anon_sym_function] = ACTIONS(4100), + [anon_sym_use] = ACTIONS(4100), + [anon_sym_use_BANG] = ACTIONS(4098), + [anon_sym_do_BANG] = ACTIONS(4098), + [anon_sym_begin] = ACTIONS(4100), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_member] = ACTIONS(4100), + [anon_sym_abstract] = ACTIONS(4100), + [anon_sym_override] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_val] = ACTIONS(4100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4100), + [anon_sym_DQUOTE] = ACTIONS(4100), + [anon_sym_AT_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4098), + [sym_bool] = ACTIONS(4100), + [sym_unit] = ACTIONS(4098), + [aux_sym__identifier_or_op_token1] = ACTIONS(4098), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS_DOT] = ACTIONS(4098), + [anon_sym_DASH_DOT] = ACTIONS(4098), + [anon_sym_PERCENT] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [aux_sym_prefix_op_token1] = ACTIONS(4098), + [sym_int] = ACTIONS(4100), + [sym_xint] = ACTIONS(4098), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4098), + [sym__dedent] = ACTIONS(4098), }, [2190] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1321), - [sym_rules] = STATE(1681), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2190), [sym_block_comment] = STATE(2190), [sym_preproc_line] = STATE(2190), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4084), + [anon_sym_module] = ACTIONS(4084), + [anon_sym_POUNDnowarn] = ACTIONS(4082), + [anon_sym_POUNDr] = ACTIONS(4082), + [anon_sym_POUNDload] = ACTIONS(4082), + [anon_sym_open] = ACTIONS(4084), + [anon_sym_LBRACK_LT] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_and] = ACTIONS(4084), + [anon_sym_let] = ACTIONS(4084), + [anon_sym_let_BANG] = ACTIONS(4082), + [aux_sym_access_modifier_token1] = ACTIONS(4082), + [anon_sym_null] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_LBRACK_PIPE] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_LBRACE_PIPE] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_return_BANG] = ACTIONS(4082), + [anon_sym_yield] = ACTIONS(4084), + [anon_sym_yield_BANG] = ACTIONS(4082), + [anon_sym_lazy] = ACTIONS(4084), + [anon_sym_assert] = ACTIONS(4084), + [anon_sym_upcast] = ACTIONS(4084), + [anon_sym_downcast] = ACTIONS(4084), + [anon_sym_LT_AT] = ACTIONS(4084), + [anon_sym_LT_AT_AT] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_fun] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_match_BANG] = ACTIONS(4082), + [anon_sym_function] = ACTIONS(4084), + [anon_sym_use] = ACTIONS(4084), + [anon_sym_use_BANG] = ACTIONS(4082), + [anon_sym_do_BANG] = ACTIONS(4082), + [anon_sym_begin] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_member] = ACTIONS(4084), + [anon_sym_abstract] = ACTIONS(4084), + [anon_sym_override] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_val] = ACTIONS(4084), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [anon_sym_AT_DQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4082), + [sym_bool] = ACTIONS(4084), + [sym_unit] = ACTIONS(4082), + [aux_sym__identifier_or_op_token1] = ACTIONS(4082), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS_DOT] = ACTIONS(4082), + [anon_sym_DASH_DOT] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [aux_sym_prefix_op_token1] = ACTIONS(4082), + [sym_int] = ACTIONS(4084), + [sym_xint] = ACTIONS(4082), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4082), + [sym__dedent] = ACTIONS(4082), }, [2191] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(820), - [sym_rules] = STATE(920), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2191), [sym_block_comment] = STATE(2191), [sym_preproc_line] = STATE(2191), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4054), + [anon_sym_module] = ACTIONS(4054), + [anon_sym_POUNDnowarn] = ACTIONS(4052), + [anon_sym_POUNDr] = ACTIONS(4052), + [anon_sym_POUNDload] = ACTIONS(4052), + [anon_sym_open] = ACTIONS(4054), + [anon_sym_LBRACK_LT] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_type] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_and] = ACTIONS(4054), + [anon_sym_let] = ACTIONS(4054), + [anon_sym_let_BANG] = ACTIONS(4052), + [aux_sym_access_modifier_token1] = ACTIONS(4052), + [anon_sym_null] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_LBRACK_PIPE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_LBRACE_PIPE] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_return_BANG] = ACTIONS(4052), + [anon_sym_yield] = ACTIONS(4054), + [anon_sym_yield_BANG] = ACTIONS(4052), + [anon_sym_lazy] = ACTIONS(4054), + [anon_sym_assert] = ACTIONS(4054), + [anon_sym_upcast] = ACTIONS(4054), + [anon_sym_downcast] = ACTIONS(4054), + [anon_sym_LT_AT] = ACTIONS(4054), + [anon_sym_LT_AT_AT] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_fun] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_match] = ACTIONS(4054), + [anon_sym_match_BANG] = ACTIONS(4052), + [anon_sym_function] = ACTIONS(4054), + [anon_sym_use] = ACTIONS(4054), + [anon_sym_use_BANG] = ACTIONS(4052), + [anon_sym_do_BANG] = ACTIONS(4052), + [anon_sym_begin] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_member] = ACTIONS(4054), + [anon_sym_abstract] = ACTIONS(4054), + [anon_sym_override] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_val] = ACTIONS(4054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [anon_sym_AT_DQUOTE] = ACTIONS(4052), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4052), + [sym_bool] = ACTIONS(4054), + [sym_unit] = ACTIONS(4052), + [aux_sym__identifier_or_op_token1] = ACTIONS(4052), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS_DOT] = ACTIONS(4052), + [anon_sym_DASH_DOT] = ACTIONS(4052), + [anon_sym_PERCENT] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [aux_sym_prefix_op_token1] = ACTIONS(4052), + [sym_int] = ACTIONS(4054), + [sym_xint] = ACTIONS(4052), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4052), + [sym__dedent] = ACTIONS(4052), }, [2192] = { - [sym_interface_implementation] = STATE(2226), [sym_xml_doc] = STATE(2192), [sym_block_comment] = STATE(2192), [sym_preproc_line] = STATE(2192), - [aux_sym__object_expression_inner_repeat1] = STATE(2167), - [ts_builtin_sym_end] = ACTIONS(4076), - [sym_identifier] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_module] = ACTIONS(4078), - [anon_sym_POUNDnowarn] = ACTIONS(4076), - [anon_sym_POUNDr] = ACTIONS(4076), - [anon_sym_POUNDload] = ACTIONS(4076), - [anon_sym_open] = ACTIONS(4078), - [anon_sym_LBRACK_LT] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_and] = ACTIONS(4078), - [anon_sym_let] = ACTIONS(4078), - [anon_sym_let_BANG] = ACTIONS(4076), - [anon_sym_null] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_LBRACK_PIPE] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_LBRACE_PIPE] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_return_BANG] = ACTIONS(4076), - [anon_sym_yield] = ACTIONS(4078), - [anon_sym_yield_BANG] = ACTIONS(4076), - [anon_sym_lazy] = ACTIONS(4078), - [anon_sym_assert] = ACTIONS(4078), - [anon_sym_upcast] = ACTIONS(4078), - [anon_sym_downcast] = ACTIONS(4078), - [anon_sym_LT_AT] = ACTIONS(4078), - [anon_sym_LT_AT_AT] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_fun] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_match] = ACTIONS(4078), - [anon_sym_match_BANG] = ACTIONS(4076), - [anon_sym_function] = ACTIONS(4078), - [anon_sym_use] = ACTIONS(4078), - [anon_sym_use_BANG] = ACTIONS(4076), - [anon_sym_do_BANG] = ACTIONS(4076), - [anon_sym_begin] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_interface] = ACTIONS(4080), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [anon_sym_AT_DQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [sym_bool] = ACTIONS(4078), - [sym_unit] = ACTIONS(4076), - [aux_sym__identifier_or_op_token1] = ACTIONS(4076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS_DOT] = ACTIONS(4076), - [anon_sym_DASH_DOT] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [aux_sym_prefix_op_token1] = ACTIONS(4076), - [sym_int] = ACTIONS(4078), - [sym_xint] = ACTIONS(4076), + [sym_identifier] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_POUNDnowarn] = ACTIONS(4074), + [anon_sym_POUNDr] = ACTIONS(4074), + [anon_sym_POUNDload] = ACTIONS(4074), + [anon_sym_open] = ACTIONS(4076), + [anon_sym_LBRACK_LT] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_and] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(4076), + [anon_sym_let_BANG] = ACTIONS(4074), + [aux_sym_access_modifier_token1] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_LBRACK_PIPE] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_LBRACE_PIPE] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_return_BANG] = ACTIONS(4074), + [anon_sym_yield] = ACTIONS(4076), + [anon_sym_yield_BANG] = ACTIONS(4074), + [anon_sym_lazy] = ACTIONS(4076), + [anon_sym_assert] = ACTIONS(4076), + [anon_sym_upcast] = ACTIONS(4076), + [anon_sym_downcast] = ACTIONS(4076), + [anon_sym_LT_AT] = ACTIONS(4076), + [anon_sym_LT_AT_AT] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_fun] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_match_BANG] = ACTIONS(4074), + [anon_sym_function] = ACTIONS(4076), + [anon_sym_use] = ACTIONS(4076), + [anon_sym_use_BANG] = ACTIONS(4074), + [anon_sym_do_BANG] = ACTIONS(4074), + [anon_sym_begin] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_member] = ACTIONS(4076), + [anon_sym_abstract] = ACTIONS(4076), + [anon_sym_override] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_val] = ACTIONS(4076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_AT_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4074), + [sym_bool] = ACTIONS(4076), + [sym_unit] = ACTIONS(4074), + [aux_sym__identifier_or_op_token1] = ACTIONS(4074), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS_DOT] = ACTIONS(4074), + [anon_sym_DASH_DOT] = ACTIONS(4074), + [anon_sym_PERCENT] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [aux_sym_prefix_op_token1] = ACTIONS(4074), + [sym_int] = ACTIONS(4076), + [sym_xint] = ACTIONS(4074), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4076), + [anon_sym_POUNDif] = ACTIONS(4074), + [sym__dedent] = ACTIONS(4074), }, [2193] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1321), - [sym_rules] = STATE(1685), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2193), [sym_block_comment] = STATE(2193), [sym_preproc_line] = STATE(2193), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4104), + [anon_sym_module] = ACTIONS(4104), + [anon_sym_POUNDnowarn] = ACTIONS(4102), + [anon_sym_POUNDr] = ACTIONS(4102), + [anon_sym_POUNDload] = ACTIONS(4102), + [anon_sym_open] = ACTIONS(4104), + [anon_sym_LBRACK_LT] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_type] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_and] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4104), + [anon_sym_let_BANG] = ACTIONS(4102), + [aux_sym_access_modifier_token1] = ACTIONS(4102), + [anon_sym_null] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_LBRACK_PIPE] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_LBRACE_PIPE] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_return_BANG] = ACTIONS(4102), + [anon_sym_yield] = ACTIONS(4104), + [anon_sym_yield_BANG] = ACTIONS(4102), + [anon_sym_lazy] = ACTIONS(4104), + [anon_sym_assert] = ACTIONS(4104), + [anon_sym_upcast] = ACTIONS(4104), + [anon_sym_downcast] = ACTIONS(4104), + [anon_sym_LT_AT] = ACTIONS(4104), + [anon_sym_LT_AT_AT] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_fun] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_match] = ACTIONS(4104), + [anon_sym_match_BANG] = ACTIONS(4102), + [anon_sym_function] = ACTIONS(4104), + [anon_sym_use] = ACTIONS(4104), + [anon_sym_use_BANG] = ACTIONS(4102), + [anon_sym_do_BANG] = ACTIONS(4102), + [anon_sym_begin] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_member] = ACTIONS(4104), + [anon_sym_abstract] = ACTIONS(4104), + [anon_sym_override] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_val] = ACTIONS(4104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [anon_sym_AT_DQUOTE] = ACTIONS(4102), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4102), + [sym_bool] = ACTIONS(4104), + [sym_unit] = ACTIONS(4102), + [aux_sym__identifier_or_op_token1] = ACTIONS(4102), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS_DOT] = ACTIONS(4102), + [anon_sym_DASH_DOT] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [aux_sym_prefix_op_token1] = ACTIONS(4102), + [sym_int] = ACTIONS(4104), + [sym_xint] = ACTIONS(4102), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4102), + [sym__dedent] = ACTIONS(4102), }, [2194] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1303), - [sym_rules] = STATE(1682), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2194), [sym_block_comment] = STATE(2194), [sym_preproc_line] = STATE(2194), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_POUNDnowarn] = ACTIONS(4090), + [anon_sym_POUNDr] = ACTIONS(4090), + [anon_sym_POUNDload] = ACTIONS(4090), + [anon_sym_open] = ACTIONS(4092), + [anon_sym_LBRACK_LT] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_and] = ACTIONS(4092), + [anon_sym_let] = ACTIONS(4092), + [anon_sym_let_BANG] = ACTIONS(4090), + [aux_sym_access_modifier_token1] = ACTIONS(4090), + [anon_sym_null] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_LBRACK_PIPE] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_LBRACE_PIPE] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_return_BANG] = ACTIONS(4090), + [anon_sym_yield] = ACTIONS(4092), + [anon_sym_yield_BANG] = ACTIONS(4090), + [anon_sym_lazy] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(4092), + [anon_sym_upcast] = ACTIONS(4092), + [anon_sym_downcast] = ACTIONS(4092), + [anon_sym_LT_AT] = ACTIONS(4092), + [anon_sym_LT_AT_AT] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_fun] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_match] = ACTIONS(4092), + [anon_sym_match_BANG] = ACTIONS(4090), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_use] = ACTIONS(4092), + [anon_sym_use_BANG] = ACTIONS(4090), + [anon_sym_do_BANG] = ACTIONS(4090), + [anon_sym_begin] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_member] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(4092), + [anon_sym_override] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_val] = ACTIONS(4092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [anon_sym_AT_DQUOTE] = ACTIONS(4090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4090), + [sym_bool] = ACTIONS(4092), + [sym_unit] = ACTIONS(4090), + [aux_sym__identifier_or_op_token1] = ACTIONS(4090), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS_DOT] = ACTIONS(4090), + [anon_sym_DASH_DOT] = ACTIONS(4090), + [anon_sym_PERCENT] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [aux_sym_prefix_op_token1] = ACTIONS(4090), + [sym_int] = ACTIONS(4092), + [sym_xint] = ACTIONS(4090), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4090), + [sym__dedent] = ACTIONS(4090), }, [2195] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(820), - [sym_rules] = STATE(921), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2195), [sym_block_comment] = STATE(2195), [sym_preproc_line] = STATE(2195), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_POUNDnowarn] = ACTIONS(4046), + [anon_sym_POUNDr] = ACTIONS(4046), + [anon_sym_POUNDload] = ACTIONS(4046), + [anon_sym_open] = ACTIONS(4048), + [anon_sym_LBRACK_LT] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_type] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_and] = ACTIONS(4048), + [anon_sym_let] = ACTIONS(4048), + [anon_sym_let_BANG] = ACTIONS(4046), + [aux_sym_access_modifier_token1] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_LBRACK_PIPE] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_LBRACE_PIPE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_return_BANG] = ACTIONS(4046), + [anon_sym_yield] = ACTIONS(4048), + [anon_sym_yield_BANG] = ACTIONS(4046), + [anon_sym_lazy] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(4048), + [anon_sym_upcast] = ACTIONS(4048), + [anon_sym_downcast] = ACTIONS(4048), + [anon_sym_LT_AT] = ACTIONS(4048), + [anon_sym_LT_AT_AT] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_fun] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_match] = ACTIONS(4048), + [anon_sym_match_BANG] = ACTIONS(4046), + [anon_sym_function] = ACTIONS(4048), + [anon_sym_use] = ACTIONS(4048), + [anon_sym_use_BANG] = ACTIONS(4046), + [anon_sym_do_BANG] = ACTIONS(4046), + [anon_sym_begin] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_member] = ACTIONS(4048), + [anon_sym_abstract] = ACTIONS(4048), + [anon_sym_override] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_val] = ACTIONS(4048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [anon_sym_AT_DQUOTE] = ACTIONS(4046), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4046), + [sym_bool] = ACTIONS(4048), + [sym_unit] = ACTIONS(4046), + [aux_sym__identifier_or_op_token1] = ACTIONS(4046), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS_DOT] = ACTIONS(4046), + [anon_sym_DASH_DOT] = ACTIONS(4046), + [anon_sym_PERCENT] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [aux_sym_prefix_op_token1] = ACTIONS(4046), + [sym_int] = ACTIONS(4048), + [sym_xint] = ACTIONS(4046), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4046), + [sym__dedent] = ACTIONS(4046), }, [2196] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1331), - [sym_rules] = STATE(1805), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2196), [sym_block_comment] = STATE(2196), [sym_preproc_line] = STATE(2196), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_POUNDnowarn] = ACTIONS(4070), + [anon_sym_POUNDr] = ACTIONS(4070), + [anon_sym_POUNDload] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4072), + [anon_sym_LBRACK_LT] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_type] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_and] = ACTIONS(4072), + [anon_sym_let] = ACTIONS(4072), + [anon_sym_let_BANG] = ACTIONS(4070), + [aux_sym_access_modifier_token1] = ACTIONS(4070), + [anon_sym_null] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_LBRACK_PIPE] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_LBRACE_PIPE] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_return_BANG] = ACTIONS(4070), + [anon_sym_yield] = ACTIONS(4072), + [anon_sym_yield_BANG] = ACTIONS(4070), + [anon_sym_lazy] = ACTIONS(4072), + [anon_sym_assert] = ACTIONS(4072), + [anon_sym_upcast] = ACTIONS(4072), + [anon_sym_downcast] = ACTIONS(4072), + [anon_sym_LT_AT] = ACTIONS(4072), + [anon_sym_LT_AT_AT] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_fun] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_match_BANG] = ACTIONS(4070), + [anon_sym_function] = ACTIONS(4072), + [anon_sym_use] = ACTIONS(4072), + [anon_sym_use_BANG] = ACTIONS(4070), + [anon_sym_do_BANG] = ACTIONS(4070), + [anon_sym_begin] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_member] = ACTIONS(4072), + [anon_sym_abstract] = ACTIONS(4072), + [anon_sym_override] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_val] = ACTIONS(4072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [anon_sym_AT_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4070), + [sym_bool] = ACTIONS(4072), + [sym_unit] = ACTIONS(4070), + [aux_sym__identifier_or_op_token1] = ACTIONS(4070), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS_DOT] = ACTIONS(4070), + [anon_sym_DASH_DOT] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [aux_sym_prefix_op_token1] = ACTIONS(4070), + [sym_int] = ACTIONS(4072), + [sym_xint] = ACTIONS(4070), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4070), + [sym__dedent] = ACTIONS(4070), }, [2197] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1331), - [sym_rules] = STATE(1806), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2197), [sym_block_comment] = STATE(2197), [sym_preproc_line] = STATE(2197), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4058), + [anon_sym_module] = ACTIONS(4058), + [anon_sym_POUNDnowarn] = ACTIONS(4056), + [anon_sym_POUNDr] = ACTIONS(4056), + [anon_sym_POUNDload] = ACTIONS(4056), + [anon_sym_open] = ACTIONS(4058), + [anon_sym_LBRACK_LT] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_type] = ACTIONS(4058), + [anon_sym_do] = ACTIONS(4058), + [anon_sym_and] = ACTIONS(4058), + [anon_sym_let] = ACTIONS(4058), + [anon_sym_let_BANG] = ACTIONS(4056), + [aux_sym_access_modifier_token1] = ACTIONS(4056), + [anon_sym_null] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LBRACK_PIPE] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_LBRACE_PIPE] = ACTIONS(4056), + [anon_sym_new] = ACTIONS(4058), + [anon_sym_return_BANG] = ACTIONS(4056), + [anon_sym_yield] = ACTIONS(4058), + [anon_sym_yield_BANG] = ACTIONS(4056), + [anon_sym_lazy] = ACTIONS(4058), + [anon_sym_assert] = ACTIONS(4058), + [anon_sym_upcast] = ACTIONS(4058), + [anon_sym_downcast] = ACTIONS(4058), + [anon_sym_LT_AT] = ACTIONS(4058), + [anon_sym_LT_AT_AT] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_while] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_fun] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4058), + [anon_sym_match] = ACTIONS(4058), + [anon_sym_match_BANG] = ACTIONS(4056), + [anon_sym_function] = ACTIONS(4058), + [anon_sym_use] = ACTIONS(4058), + [anon_sym_use_BANG] = ACTIONS(4056), + [anon_sym_do_BANG] = ACTIONS(4056), + [anon_sym_begin] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4056), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_member] = ACTIONS(4058), + [anon_sym_abstract] = ACTIONS(4058), + [anon_sym_override] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_val] = ACTIONS(4058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [anon_sym_AT_DQUOTE] = ACTIONS(4056), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4056), + [sym_bool] = ACTIONS(4058), + [sym_unit] = ACTIONS(4056), + [aux_sym__identifier_or_op_token1] = ACTIONS(4056), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS_DOT] = ACTIONS(4056), + [anon_sym_DASH_DOT] = ACTIONS(4056), + [anon_sym_PERCENT] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [aux_sym_prefix_op_token1] = ACTIONS(4056), + [sym_int] = ACTIONS(4058), + [sym_xint] = ACTIONS(4056), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4056), + [sym__dedent] = ACTIONS(4056), }, [2198] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(852), - [sym_rules] = STATE(1127), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2198), [sym_block_comment] = STATE(2198), [sym_preproc_line] = STATE(2198), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_POUNDnowarn] = ACTIONS(4066), + [anon_sym_POUNDr] = ACTIONS(4066), + [anon_sym_POUNDload] = ACTIONS(4066), + [anon_sym_open] = ACTIONS(4068), + [anon_sym_LBRACK_LT] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_type] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_and] = ACTIONS(4068), + [anon_sym_let] = ACTIONS(4068), + [anon_sym_let_BANG] = ACTIONS(4066), + [aux_sym_access_modifier_token1] = ACTIONS(4066), + [anon_sym_null] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_LBRACK_PIPE] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_LBRACE_PIPE] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_return_BANG] = ACTIONS(4066), + [anon_sym_yield] = ACTIONS(4068), + [anon_sym_yield_BANG] = ACTIONS(4066), + [anon_sym_lazy] = ACTIONS(4068), + [anon_sym_assert] = ACTIONS(4068), + [anon_sym_upcast] = ACTIONS(4068), + [anon_sym_downcast] = ACTIONS(4068), + [anon_sym_LT_AT] = ACTIONS(4068), + [anon_sym_LT_AT_AT] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_fun] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_match_BANG] = ACTIONS(4066), + [anon_sym_function] = ACTIONS(4068), + [anon_sym_use] = ACTIONS(4068), + [anon_sym_use_BANG] = ACTIONS(4066), + [anon_sym_do_BANG] = ACTIONS(4066), + [anon_sym_begin] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_member] = ACTIONS(4068), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_override] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_val] = ACTIONS(4068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_AT_DQUOTE] = ACTIONS(4066), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4066), + [sym_bool] = ACTIONS(4068), + [sym_unit] = ACTIONS(4066), + [aux_sym__identifier_or_op_token1] = ACTIONS(4066), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS_DOT] = ACTIONS(4066), + [anon_sym_DASH_DOT] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [aux_sym_prefix_op_token1] = ACTIONS(4066), + [sym_int] = ACTIONS(4068), + [sym_xint] = ACTIONS(4066), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4066), + [sym__dedent] = ACTIONS(4066), }, [2199] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1331), - [sym_rules] = STATE(1819), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2199), [sym_block_comment] = STATE(2199), [sym_preproc_line] = STATE(2199), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4062), + [anon_sym_module] = ACTIONS(4062), + [anon_sym_POUNDnowarn] = ACTIONS(4060), + [anon_sym_POUNDr] = ACTIONS(4060), + [anon_sym_POUNDload] = ACTIONS(4060), + [anon_sym_open] = ACTIONS(4062), + [anon_sym_LBRACK_LT] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_type] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_and] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(4062), + [anon_sym_let_BANG] = ACTIONS(4060), + [aux_sym_access_modifier_token1] = ACTIONS(4060), + [anon_sym_null] = ACTIONS(4062), + [anon_sym_LPAREN] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_LBRACK_PIPE] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_LBRACE_PIPE] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_return_BANG] = ACTIONS(4060), + [anon_sym_yield] = ACTIONS(4062), + [anon_sym_yield_BANG] = ACTIONS(4060), + [anon_sym_lazy] = ACTIONS(4062), + [anon_sym_assert] = ACTIONS(4062), + [anon_sym_upcast] = ACTIONS(4062), + [anon_sym_downcast] = ACTIONS(4062), + [anon_sym_LT_AT] = ACTIONS(4062), + [anon_sym_LT_AT_AT] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_fun] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_match] = ACTIONS(4062), + [anon_sym_match_BANG] = ACTIONS(4060), + [anon_sym_function] = ACTIONS(4062), + [anon_sym_use] = ACTIONS(4062), + [anon_sym_use_BANG] = ACTIONS(4060), + [anon_sym_do_BANG] = ACTIONS(4060), + [anon_sym_begin] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_member] = ACTIONS(4062), + [anon_sym_abstract] = ACTIONS(4062), + [anon_sym_override] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_val] = ACTIONS(4062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_AT_DQUOTE] = ACTIONS(4060), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4060), + [sym_bool] = ACTIONS(4062), + [sym_unit] = ACTIONS(4060), + [aux_sym__identifier_or_op_token1] = ACTIONS(4060), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS_DOT] = ACTIONS(4060), + [anon_sym_DASH_DOT] = ACTIONS(4060), + [anon_sym_PERCENT] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [aux_sym_prefix_op_token1] = ACTIONS(4060), + [sym_int] = ACTIONS(4062), + [sym_xint] = ACTIONS(4060), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4060), + [sym__dedent] = ACTIONS(4060), }, [2200] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(852), - [sym_rules] = STATE(1106), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_type_arguments] = STATE(2295), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2200), [sym_block_comment] = STATE(2200), [sym_preproc_line] = STATE(2200), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2270), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_with] = ACTIONS(4126), + [anon_sym_LT2] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2201] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(852), - [sym_rules] = STATE(1116), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_type_arguments] = STATE(2289), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2201), [sym_block_comment] = STATE(2201), [sym_preproc_line] = STATE(2201), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2275), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4130), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_with] = ACTIONS(4132), + [anon_sym_LT2] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2202] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1331), - [sym_rules] = STATE(1820), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_type_arguments] = STATE(2328), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2202), [sym_block_comment] = STATE(2202), [sym_preproc_line] = STATE(2202), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2277), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4134), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_with] = ACTIONS(4136), + [anon_sym_LT2] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2203] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1321), - [sym_rules] = STATE(1764), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_type_arguments] = STATE(2298), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2203), [sym_block_comment] = STATE(2203), [sym_preproc_line] = STATE(2203), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2279), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_with] = ACTIONS(4140), + [anon_sym_LT2] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2204] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1303), - [sym_rules] = STATE(1708), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(5110), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2204), [sym_block_comment] = STATE(2204), [sym_preproc_line] = STATE(2204), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2208), + [ts_builtin_sym_end] = ACTIONS(4142), + [sym_identifier] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_POUNDnowarn] = ACTIONS(4142), + [anon_sym_POUNDr] = ACTIONS(4142), + [anon_sym_POUNDload] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4144), + [anon_sym_LBRACK_LT] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4146), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_let_BANG] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_LBRACK_PIPE] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_LBRACE_PIPE] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_return_BANG] = ACTIONS(4142), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_yield_BANG] = ACTIONS(4142), + [anon_sym_lazy] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_upcast] = ACTIONS(4144), + [anon_sym_downcast] = ACTIONS(4144), + [anon_sym_LT_AT] = ACTIONS(4144), + [anon_sym_LT_AT_AT] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_fun] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_match_BANG] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4144), + [anon_sym_use] = ACTIONS(4144), + [anon_sym_use_BANG] = ACTIONS(4142), + [anon_sym_do_BANG] = ACTIONS(4142), + [anon_sym_begin] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [anon_sym_AT_DQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [sym_bool] = ACTIONS(4144), + [sym_unit] = ACTIONS(4142), + [aux_sym__identifier_or_op_token1] = ACTIONS(4142), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS_DOT] = ACTIONS(4142), + [anon_sym_DASH_DOT] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [aux_sym_prefix_op_token1] = ACTIONS(4142), + [sym_int] = ACTIONS(4144), + [sym_xint] = ACTIONS(4142), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4142), }, [2205] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1303), - [sym_rules] = STATE(1703), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(5110), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2205), [sym_block_comment] = STATE(2205), [sym_preproc_line] = STATE(2205), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2206), + [ts_builtin_sym_end] = ACTIONS(4142), + [sym_identifier] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_POUNDnowarn] = ACTIONS(4142), + [anon_sym_POUNDr] = ACTIONS(4142), + [anon_sym_POUNDload] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4144), + [anon_sym_LBRACK_LT] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4146), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_let_BANG] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_LBRACK_PIPE] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_LBRACE_PIPE] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_return_BANG] = ACTIONS(4142), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_yield_BANG] = ACTIONS(4142), + [anon_sym_lazy] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_upcast] = ACTIONS(4144), + [anon_sym_downcast] = ACTIONS(4144), + [anon_sym_LT_AT] = ACTIONS(4144), + [anon_sym_LT_AT_AT] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_fun] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_match_BANG] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4144), + [anon_sym_use] = ACTIONS(4144), + [anon_sym_use_BANG] = ACTIONS(4142), + [anon_sym_do_BANG] = ACTIONS(4142), + [anon_sym_begin] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [anon_sym_AT_DQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [sym_bool] = ACTIONS(4144), + [sym_unit] = ACTIONS(4142), + [aux_sym__identifier_or_op_token1] = ACTIONS(4142), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS_DOT] = ACTIONS(4142), + [anon_sym_DASH_DOT] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [aux_sym_prefix_op_token1] = ACTIONS(4142), + [sym_int] = ACTIONS(4144), + [sym_xint] = ACTIONS(4142), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4142), }, [2206] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1303), - [sym_rules] = STATE(1683), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(5110), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2206), [sym_block_comment] = STATE(2206), [sym_preproc_line] = STATE(2206), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4069), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2208), + [ts_builtin_sym_end] = ACTIONS(4148), + [sym_identifier] = ACTIONS(4150), + [anon_sym_namespace] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_POUNDnowarn] = ACTIONS(4148), + [anon_sym_POUNDr] = ACTIONS(4148), + [anon_sym_POUNDload] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_LBRACK_LT] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_type] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_and] = ACTIONS(4146), + [anon_sym_let] = ACTIONS(4150), + [anon_sym_let_BANG] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_LBRACK_PIPE] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_LBRACE_PIPE] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_return_BANG] = ACTIONS(4148), + [anon_sym_yield] = ACTIONS(4150), + [anon_sym_yield_BANG] = ACTIONS(4148), + [anon_sym_lazy] = ACTIONS(4150), + [anon_sym_assert] = ACTIONS(4150), + [anon_sym_upcast] = ACTIONS(4150), + [anon_sym_downcast] = ACTIONS(4150), + [anon_sym_LT_AT] = ACTIONS(4150), + [anon_sym_LT_AT_AT] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_match] = ACTIONS(4150), + [anon_sym_match_BANG] = ACTIONS(4148), + [anon_sym_function] = ACTIONS(4150), + [anon_sym_use] = ACTIONS(4150), + [anon_sym_use_BANG] = ACTIONS(4148), + [anon_sym_do_BANG] = ACTIONS(4148), + [anon_sym_begin] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [anon_sym_AT_DQUOTE] = ACTIONS(4148), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4148), + [sym_bool] = ACTIONS(4150), + [sym_unit] = ACTIONS(4148), + [aux_sym__identifier_or_op_token1] = ACTIONS(4148), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS_DOT] = ACTIONS(4148), + [anon_sym_DASH_DOT] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [aux_sym_prefix_op_token1] = ACTIONS(4148), + [sym_int] = ACTIONS(4150), + [sym_xint] = ACTIONS(4148), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4148), }, [2207] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1321), - [sym_rules] = STATE(1706), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(5110), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2207), [sym_block_comment] = STATE(2207), [sym_preproc_line] = STATE(2207), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2204), + [ts_builtin_sym_end] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4154), + [anon_sym_namespace] = ACTIONS(4154), + [anon_sym_module] = ACTIONS(4154), + [anon_sym_POUNDnowarn] = ACTIONS(4152), + [anon_sym_POUNDr] = ACTIONS(4152), + [anon_sym_POUNDload] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4154), + [anon_sym_LBRACK_LT] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_type] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_and] = ACTIONS(4146), + [anon_sym_let] = ACTIONS(4154), + [anon_sym_let_BANG] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_LBRACK_PIPE] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_LBRACE_PIPE] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_return_BANG] = ACTIONS(4152), + [anon_sym_yield] = ACTIONS(4154), + [anon_sym_yield_BANG] = ACTIONS(4152), + [anon_sym_lazy] = ACTIONS(4154), + [anon_sym_assert] = ACTIONS(4154), + [anon_sym_upcast] = ACTIONS(4154), + [anon_sym_downcast] = ACTIONS(4154), + [anon_sym_LT_AT] = ACTIONS(4154), + [anon_sym_LT_AT_AT] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_fun] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_match] = ACTIONS(4154), + [anon_sym_match_BANG] = ACTIONS(4152), + [anon_sym_function] = ACTIONS(4154), + [anon_sym_use] = ACTIONS(4154), + [anon_sym_use_BANG] = ACTIONS(4152), + [anon_sym_do_BANG] = ACTIONS(4152), + [anon_sym_begin] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [anon_sym_AT_DQUOTE] = ACTIONS(4152), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4152), + [sym_bool] = ACTIONS(4154), + [sym_unit] = ACTIONS(4152), + [aux_sym__identifier_or_op_token1] = ACTIONS(4152), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS_DOT] = ACTIONS(4152), + [anon_sym_DASH_DOT] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [aux_sym_prefix_op_token1] = ACTIONS(4152), + [sym_int] = ACTIONS(4154), + [sym_xint] = ACTIONS(4152), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4152), }, [2208] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1321), - [sym_rules] = STATE(1705), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(5110), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2208), [sym_block_comment] = STATE(2208), [sym_preproc_line] = STATE(2208), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2208), + [ts_builtin_sym_end] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_POUNDnowarn] = ACTIONS(4156), + [anon_sym_POUNDr] = ACTIONS(4156), + [anon_sym_POUNDload] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_LBRACK_LT] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_and] = ACTIONS(4163), + [anon_sym_let] = ACTIONS(4158), + [anon_sym_let_BANG] = ACTIONS(4156), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_LBRACK_PIPE] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LBRACE_PIPE] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_return_BANG] = ACTIONS(4156), + [anon_sym_yield] = ACTIONS(4158), + [anon_sym_yield_BANG] = ACTIONS(4156), + [anon_sym_lazy] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_upcast] = ACTIONS(4158), + [anon_sym_downcast] = ACTIONS(4158), + [anon_sym_LT_AT] = ACTIONS(4158), + [anon_sym_LT_AT_AT] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_match_BANG] = ACTIONS(4156), + [anon_sym_function] = ACTIONS(4158), + [anon_sym_use] = ACTIONS(4158), + [anon_sym_use_BANG] = ACTIONS(4156), + [anon_sym_do_BANG] = ACTIONS(4156), + [anon_sym_begin] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [anon_sym_AT_DQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [sym_bool] = ACTIONS(4158), + [sym_unit] = ACTIONS(4156), + [aux_sym__identifier_or_op_token1] = ACTIONS(4156), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS_DOT] = ACTIONS(4156), + [anon_sym_DASH_DOT] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [aux_sym_prefix_op_token1] = ACTIONS(4156), + [sym_int] = ACTIONS(4158), + [sym_xint] = ACTIONS(4156), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4156), }, [2209] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1378), + [sym_rules] = STATE(1663), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2209), [sym_block_comment] = STATE(2209), [sym_preproc_line] = STATE(2209), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4082), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2210] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym_access_modifier] = STATE(2357), - [sym__pattern] = STATE(3623), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(867), + [sym_rules] = STATE(1120), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2210), [sym_block_comment] = STATE(2210), [sym_preproc_line] = STATE(2210), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [aux_sym_access_modifier_token1] = ACTIONS(4084), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2211] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1378), + [sym_rules] = STATE(1712), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2211), [sym_block_comment] = STATE(2211), [sym_preproc_line] = STATE(2211), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2212] = { - [sym_interface_implementation] = STATE(2297), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1267), + [sym_rules] = STATE(1529), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2212), [sym_block_comment] = STATE(2212), [sym_preproc_line] = STATE(2212), - [aux_sym__object_expression_inner_repeat1] = STATE(2218), - [sym_identifier] = ACTIONS(4078), - [anon_sym_module] = ACTIONS(4078), - [anon_sym_POUNDnowarn] = ACTIONS(4076), - [anon_sym_POUNDr] = ACTIONS(4076), - [anon_sym_POUNDload] = ACTIONS(4076), - [anon_sym_open] = ACTIONS(4078), - [anon_sym_LBRACK_LT] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_and] = ACTIONS(4078), - [anon_sym_let] = ACTIONS(4078), - [anon_sym_let_BANG] = ACTIONS(4076), - [anon_sym_null] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_LBRACK_PIPE] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_LBRACE_PIPE] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_return_BANG] = ACTIONS(4076), - [anon_sym_yield] = ACTIONS(4078), - [anon_sym_yield_BANG] = ACTIONS(4076), - [anon_sym_lazy] = ACTIONS(4078), - [anon_sym_assert] = ACTIONS(4078), - [anon_sym_upcast] = ACTIONS(4078), - [anon_sym_downcast] = ACTIONS(4078), - [anon_sym_LT_AT] = ACTIONS(4078), - [anon_sym_LT_AT_AT] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_fun] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_match] = ACTIONS(4078), - [anon_sym_match_BANG] = ACTIONS(4076), - [anon_sym_function] = ACTIONS(4078), - [anon_sym_use] = ACTIONS(4078), - [anon_sym_use_BANG] = ACTIONS(4076), - [anon_sym_do_BANG] = ACTIONS(4076), - [anon_sym_begin] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_interface] = ACTIONS(4088), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [anon_sym_AT_DQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [sym_bool] = ACTIONS(4078), - [sym_unit] = ACTIONS(4076), - [aux_sym__identifier_or_op_token1] = ACTIONS(4076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS_DOT] = ACTIONS(4076), - [anon_sym_DASH_DOT] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [aux_sym_prefix_op_token1] = ACTIONS(4076), - [sym_int] = ACTIONS(4078), - [sym_xint] = ACTIONS(4076), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4076), - [sym__dedent] = ACTIONS(4076), }, [2213] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3830), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_active_pattern_op_name] = STATE(5243), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(4771), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2213), [sym_block_comment] = STATE(2213), [sym_preproc_line] = STATE(2213), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_PIPE] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2213), + [sym_identifier] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_POUNDnowarn] = ACTIONS(4156), + [anon_sym_POUNDr] = ACTIONS(4156), + [anon_sym_POUNDload] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_LBRACK_LT] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_and] = ACTIONS(4172), + [anon_sym_let] = ACTIONS(4158), + [anon_sym_let_BANG] = ACTIONS(4156), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_LBRACK_PIPE] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LBRACE_PIPE] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_return_BANG] = ACTIONS(4156), + [anon_sym_yield] = ACTIONS(4158), + [anon_sym_yield_BANG] = ACTIONS(4156), + [anon_sym_lazy] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_upcast] = ACTIONS(4158), + [anon_sym_downcast] = ACTIONS(4158), + [anon_sym_LT_AT] = ACTIONS(4158), + [anon_sym_LT_AT_AT] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_match_BANG] = ACTIONS(4156), + [anon_sym_function] = ACTIONS(4158), + [anon_sym_use] = ACTIONS(4158), + [anon_sym_use_BANG] = ACTIONS(4156), + [anon_sym_do_BANG] = ACTIONS(4156), + [anon_sym_begin] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [anon_sym_AT_DQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [sym_bool] = ACTIONS(4158), + [sym_unit] = ACTIONS(4156), + [aux_sym__identifier_or_op_token1] = ACTIONS(4156), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS_DOT] = ACTIONS(4156), + [anon_sym_DASH_DOT] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [aux_sym_prefix_op_token1] = ACTIONS(4156), + [sym_int] = ACTIONS(4158), + [sym_xint] = ACTIONS(4156), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4156), + [sym__dedent] = ACTIONS(4156), }, [2214] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1545), + [sym_rules] = STATE(2046), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2214), [sym_block_comment] = STATE(2214), [sym_preproc_line] = STATE(2214), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2215] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3767), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym__identifier_or_op] = STATE(2611), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2215), [sym_block_comment] = STATE(2215), [sym_preproc_line] = STATE(2215), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4094), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [aux_sym__identifier_or_op_token1] = ACTIONS(3898), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3900), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2216] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(838), + [sym_rules] = STATE(1045), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2216), [sym_block_comment] = STATE(2216), [sym_preproc_line] = STATE(2216), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(4096), - [anon_sym_EQ] = ACTIONS(4099), - [anon_sym_LBRACK_LT] = ACTIONS(4101), - [anon_sym_null] = ACTIONS(4104), - [anon_sym__] = ACTIONS(4107), - [anon_sym_QMARK] = ACTIONS(4110), - [anon_sym_COLON_QMARK] = ACTIONS(4113), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_LBRACK_PIPE] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4125), - [anon_sym_SQUOTE] = ACTIONS(4128), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4131), - [anon_sym_DQUOTE] = ACTIONS(4134), - [anon_sym_AT_DQUOTE] = ACTIONS(4137), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4143), - [sym_bool] = ACTIONS(4146), - [sym_unit] = ACTIONS(4149), - [sym_int] = ACTIONS(4152), - [sym_xint] = ACTIONS(4155), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2217] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(838), + [sym_rules] = STATE(877), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2217), [sym_block_comment] = STATE(2217), [sym_preproc_line] = STATE(2217), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4158), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2218] = { - [sym_interface_implementation] = STATE(2297), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1359), + [sym_rules] = STATE(1631), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2218), [sym_block_comment] = STATE(2218), [sym_preproc_line] = STATE(2218), - [aux_sym__object_expression_inner_repeat1] = STATE(2218), - [sym_identifier] = ACTIONS(4058), - [anon_sym_module] = ACTIONS(4058), - [anon_sym_POUNDnowarn] = ACTIONS(4056), - [anon_sym_POUNDr] = ACTIONS(4056), - [anon_sym_POUNDload] = ACTIONS(4056), - [anon_sym_open] = ACTIONS(4058), - [anon_sym_LBRACK_LT] = ACTIONS(4056), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_type] = ACTIONS(4058), - [anon_sym_do] = ACTIONS(4058), - [anon_sym_and] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(4058), - [anon_sym_let_BANG] = ACTIONS(4056), - [anon_sym_null] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_LBRACK_PIPE] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_LBRACE_PIPE] = ACTIONS(4056), - [anon_sym_new] = ACTIONS(4058), - [anon_sym_return_BANG] = ACTIONS(4056), - [anon_sym_yield] = ACTIONS(4058), - [anon_sym_yield_BANG] = ACTIONS(4056), - [anon_sym_lazy] = ACTIONS(4058), - [anon_sym_assert] = ACTIONS(4058), - [anon_sym_upcast] = ACTIONS(4058), - [anon_sym_downcast] = ACTIONS(4058), - [anon_sym_LT_AT] = ACTIONS(4058), - [anon_sym_LT_AT_AT] = ACTIONS(4056), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_fun] = ACTIONS(4058), - [anon_sym_try] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(4058), - [anon_sym_match_BANG] = ACTIONS(4056), - [anon_sym_function] = ACTIONS(4058), - [anon_sym_use] = ACTIONS(4058), - [anon_sym_use_BANG] = ACTIONS(4056), - [anon_sym_do_BANG] = ACTIONS(4056), - [anon_sym_begin] = ACTIONS(4058), - [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_interface] = ACTIONS(4160), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4058), - [anon_sym_DQUOTE] = ACTIONS(4058), - [anon_sym_AT_DQUOTE] = ACTIONS(4056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4056), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4056), - [sym_bool] = ACTIONS(4058), - [sym_unit] = ACTIONS(4056), - [aux_sym__identifier_or_op_token1] = ACTIONS(4056), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_PLUS_DOT] = ACTIONS(4056), - [anon_sym_DASH_DOT] = ACTIONS(4056), - [anon_sym_PERCENT] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [aux_sym_prefix_op_token1] = ACTIONS(4056), - [sym_int] = ACTIONS(4058), - [sym_xint] = ACTIONS(4056), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4056), - [sym__dedent] = ACTIONS(4056), }, [2219] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(838), + [sym_rules] = STATE(980), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2219), [sym_block_comment] = STATE(2219), [sym_preproc_line] = STATE(2219), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4163), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2220] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(838), + [sym_rules] = STATE(979), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2220), [sym_block_comment] = STATE(2220), [sym_preproc_line] = STATE(2220), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4165), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2221] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1506), + [sym_rules] = STATE(1945), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2221), [sym_block_comment] = STATE(2221), [sym_preproc_line] = STATE(2221), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2216), - [sym_identifier] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4167), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2222] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1395), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1267), + [sym_rules] = STATE(1403), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2222), [sym_block_comment] = STATE(2222), [sym_preproc_line] = STATE(2222), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2223] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1319), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1378), + [sym_rules] = STATE(1661), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2223), [sym_block_comment] = STATE(2223), [sym_preproc_line] = STATE(2223), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2224] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1628), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1267), + [sym_rules] = STATE(1534), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2224), [sym_block_comment] = STATE(2224), [sym_preproc_line] = STATE(2224), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2225] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1342), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(867), + [sym_rules] = STATE(1112), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2225), [sym_block_comment] = STATE(2225), [sym_preproc_line] = STATE(2225), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2226] = { + [sym_interface_implementation] = STATE(2310), [sym_xml_doc] = STATE(2226), [sym_block_comment] = STATE(2226), [sym_preproc_line] = STATE(2226), - [ts_builtin_sym_end] = ACTIONS(4169), - [sym_identifier] = ACTIONS(4171), - [anon_sym_namespace] = ACTIONS(4171), - [anon_sym_module] = ACTIONS(4171), - [anon_sym_POUNDnowarn] = ACTIONS(4169), - [anon_sym_POUNDr] = ACTIONS(4169), - [anon_sym_POUNDload] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_LBRACK_LT] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_type] = ACTIONS(4171), - [anon_sym_do] = ACTIONS(4171), - [anon_sym_and] = ACTIONS(4171), - [anon_sym_let] = ACTIONS(4171), - [anon_sym_let_BANG] = ACTIONS(4169), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_LBRACK_PIPE] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_LBRACE_PIPE] = ACTIONS(4169), - [anon_sym_new] = ACTIONS(4171), - [anon_sym_return_BANG] = ACTIONS(4169), - [anon_sym_yield] = ACTIONS(4171), - [anon_sym_yield_BANG] = ACTIONS(4169), - [anon_sym_lazy] = ACTIONS(4171), - [anon_sym_assert] = ACTIONS(4171), - [anon_sym_upcast] = ACTIONS(4171), - [anon_sym_downcast] = ACTIONS(4171), - [anon_sym_LT_AT] = ACTIONS(4171), - [anon_sym_LT_AT_AT] = ACTIONS(4169), - [anon_sym_for] = ACTIONS(4171), - [anon_sym_while] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_match] = ACTIONS(4171), - [anon_sym_match_BANG] = ACTIONS(4169), - [anon_sym_function] = ACTIONS(4171), - [anon_sym_use] = ACTIONS(4171), - [anon_sym_use_BANG] = ACTIONS(4169), - [anon_sym_do_BANG] = ACTIONS(4169), - [anon_sym_begin] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4169), - [anon_sym_interface] = ACTIONS(4171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_AT_DQUOTE] = ACTIONS(4169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4169), - [sym_bool] = ACTIONS(4171), - [sym_unit] = ACTIONS(4169), - [aux_sym__identifier_or_op_token1] = ACTIONS(4169), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_PLUS_DOT] = ACTIONS(4169), - [anon_sym_DASH_DOT] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_AMP_AMP] = ACTIONS(4169), - [anon_sym_TILDE] = ACTIONS(4169), - [aux_sym_prefix_op_token1] = ACTIONS(4169), - [sym_int] = ACTIONS(4171), - [sym_xint] = ACTIONS(4169), + [aux_sym__object_expression_inner_repeat1] = STATE(2230), + [ts_builtin_sym_end] = ACTIONS(4183), + [sym_identifier] = ACTIONS(4185), + [anon_sym_namespace] = ACTIONS(4185), + [anon_sym_module] = ACTIONS(4185), + [anon_sym_POUNDnowarn] = ACTIONS(4183), + [anon_sym_POUNDr] = ACTIONS(4183), + [anon_sym_POUNDload] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4185), + [anon_sym_LBRACK_LT] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_do] = ACTIONS(4185), + [anon_sym_and] = ACTIONS(4185), + [anon_sym_let] = ACTIONS(4185), + [anon_sym_let_BANG] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_LBRACK_PIPE] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_return_BANG] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_yield_BANG] = ACTIONS(4183), + [anon_sym_lazy] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_upcast] = ACTIONS(4185), + [anon_sym_downcast] = ACTIONS(4185), + [anon_sym_LT_AT] = ACTIONS(4185), + [anon_sym_LT_AT_AT] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_fun] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_match_BANG] = ACTIONS(4183), + [anon_sym_function] = ACTIONS(4185), + [anon_sym_use] = ACTIONS(4185), + [anon_sym_use_BANG] = ACTIONS(4183), + [anon_sym_do_BANG] = ACTIONS(4183), + [anon_sym_begin] = ACTIONS(4185), + [anon_sym_SQUOTE] = ACTIONS(4183), + [anon_sym_interface] = ACTIONS(4187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4185), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_AT_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [sym_bool] = ACTIONS(4185), + [sym_unit] = ACTIONS(4183), + [aux_sym__identifier_or_op_token1] = ACTIONS(4183), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_PLUS_DOT] = ACTIONS(4183), + [anon_sym_DASH_DOT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [aux_sym_prefix_op_token1] = ACTIONS(4183), + [sym_int] = ACTIONS(4185), + [sym_xint] = ACTIONS(4183), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4169), + [anon_sym_POUNDif] = ACTIONS(4183), }, [2227] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3602), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1378), + [sym_rules] = STATE(1700), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2227), [sym_block_comment] = STATE(2227), [sym_preproc_line] = STATE(2227), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(4173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2228] = { + [sym_attributes] = STATE(4771), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2228), [sym_block_comment] = STATE(2228), [sym_preproc_line] = STATE(2228), - [aux_sym_long_identifier_repeat1] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(4175), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2213), + [sym_identifier] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_POUNDnowarn] = ACTIONS(4148), + [anon_sym_POUNDr] = ACTIONS(4148), + [anon_sym_POUNDload] = ACTIONS(4148), + [anon_sym_open] = ACTIONS(4150), + [anon_sym_LBRACK_LT] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_type] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_and] = ACTIONS(4189), + [anon_sym_let] = ACTIONS(4150), + [anon_sym_let_BANG] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_LBRACK_PIPE] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_LBRACE_PIPE] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_return_BANG] = ACTIONS(4148), + [anon_sym_yield] = ACTIONS(4150), + [anon_sym_yield_BANG] = ACTIONS(4148), + [anon_sym_lazy] = ACTIONS(4150), + [anon_sym_assert] = ACTIONS(4150), + [anon_sym_upcast] = ACTIONS(4150), + [anon_sym_downcast] = ACTIONS(4150), + [anon_sym_LT_AT] = ACTIONS(4150), + [anon_sym_LT_AT_AT] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_fun] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_match] = ACTIONS(4150), + [anon_sym_match_BANG] = ACTIONS(4148), + [anon_sym_function] = ACTIONS(4150), + [anon_sym_use] = ACTIONS(4150), + [anon_sym_use_BANG] = ACTIONS(4148), + [anon_sym_do_BANG] = ACTIONS(4148), + [anon_sym_begin] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [anon_sym_AT_DQUOTE] = ACTIONS(4148), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4148), + [sym_bool] = ACTIONS(4150), + [sym_unit] = ACTIONS(4148), + [aux_sym__identifier_or_op_token1] = ACTIONS(4148), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS_DOT] = ACTIONS(4148), + [anon_sym_DASH_DOT] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [aux_sym_prefix_op_token1] = ACTIONS(4148), + [sym_int] = ACTIONS(4150), + [sym_xint] = ACTIONS(4148), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(4148), + [sym__dedent] = ACTIONS(4148), }, [2229] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1345), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1378), + [sym_rules] = STATE(1708), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2229), [sym_block_comment] = STATE(2229), [sym_preproc_line] = STATE(2229), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2230] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3592), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_interface_implementation] = STATE(2310), [sym_xml_doc] = STATE(2230), [sym_block_comment] = STATE(2230), [sym_preproc_line] = STATE(2230), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(4179), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym__object_expression_inner_repeat1] = STATE(2230), + [ts_builtin_sym_end] = ACTIONS(4191), + [sym_identifier] = ACTIONS(4193), + [anon_sym_namespace] = ACTIONS(4193), + [anon_sym_module] = ACTIONS(4193), + [anon_sym_POUNDnowarn] = ACTIONS(4191), + [anon_sym_POUNDr] = ACTIONS(4191), + [anon_sym_POUNDload] = ACTIONS(4191), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_LBRACK_LT] = ACTIONS(4191), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_type] = ACTIONS(4193), + [anon_sym_do] = ACTIONS(4193), + [anon_sym_and] = ACTIONS(4193), + [anon_sym_let] = ACTIONS(4193), + [anon_sym_let_BANG] = ACTIONS(4191), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_PIPE] = ACTIONS(4191), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [anon_sym_new] = ACTIONS(4193), + [anon_sym_return_BANG] = ACTIONS(4191), + [anon_sym_yield] = ACTIONS(4193), + [anon_sym_yield_BANG] = ACTIONS(4191), + [anon_sym_lazy] = ACTIONS(4193), + [anon_sym_assert] = ACTIONS(4193), + [anon_sym_upcast] = ACTIONS(4193), + [anon_sym_downcast] = ACTIONS(4193), + [anon_sym_LT_AT] = ACTIONS(4193), + [anon_sym_LT_AT_AT] = ACTIONS(4191), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4193), + [anon_sym_match_BANG] = ACTIONS(4191), + [anon_sym_function] = ACTIONS(4193), + [anon_sym_use] = ACTIONS(4193), + [anon_sym_use_BANG] = ACTIONS(4191), + [anon_sym_do_BANG] = ACTIONS(4191), + [anon_sym_begin] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4191), + [anon_sym_interface] = ACTIONS(4195), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_AT_DQUOTE] = ACTIONS(4191), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4191), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4191), + [sym_bool] = ACTIONS(4193), + [sym_unit] = ACTIONS(4191), + [aux_sym__identifier_or_op_token1] = ACTIONS(4191), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_DOT] = ACTIONS(4191), + [anon_sym_DASH_DOT] = ACTIONS(4191), + [anon_sym_PERCENT] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_TILDE] = ACTIONS(4191), + [aux_sym_prefix_op_token1] = ACTIONS(4191), + [sym_int] = ACTIONS(4193), + [sym_xint] = ACTIONS(4191), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4191), }, [2231] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1359), + [sym_rules] = STATE(1630), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2231), [sym_block_comment] = STATE(2231), [sym_preproc_line] = STATE(2231), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2211), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2232] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3775), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1276), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1267), + [sym_rules] = STATE(1402), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2232), [sym_block_comment] = STATE(2232), [sym_preproc_line] = STATE(2232), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2233] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1315), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1314), + [sym_rules] = STATE(1492), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2233), [sym_block_comment] = STATE(2233), [sym_preproc_line] = STATE(2233), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2234] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(867), + [sym_rules] = STATE(1127), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2234), [sym_block_comment] = STATE(2234), [sym_preproc_line] = STATE(2234), - [aux_sym__function_or_value_defns_repeat1] = STATE(2234), - [ts_builtin_sym_end] = ACTIONS(4181), - [sym_identifier] = ACTIONS(4183), - [anon_sym_namespace] = ACTIONS(4183), - [anon_sym_module] = ACTIONS(4183), - [anon_sym_POUNDnowarn] = ACTIONS(4181), - [anon_sym_POUNDr] = ACTIONS(4181), - [anon_sym_POUNDload] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_LBRACK_LT] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_type] = ACTIONS(4183), - [anon_sym_do] = ACTIONS(4183), - [anon_sym_and] = ACTIONS(4185), - [anon_sym_let] = ACTIONS(4183), - [anon_sym_let_BANG] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_LBRACK_PIPE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_LBRACE_PIPE] = ACTIONS(4181), - [anon_sym_new] = ACTIONS(4183), - [anon_sym_return_BANG] = ACTIONS(4181), - [anon_sym_yield] = ACTIONS(4183), - [anon_sym_yield_BANG] = ACTIONS(4181), - [anon_sym_lazy] = ACTIONS(4183), - [anon_sym_assert] = ACTIONS(4183), - [anon_sym_upcast] = ACTIONS(4183), - [anon_sym_downcast] = ACTIONS(4183), - [anon_sym_LT_AT] = ACTIONS(4183), - [anon_sym_LT_AT_AT] = ACTIONS(4181), - [anon_sym_for] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_match] = ACTIONS(4183), - [anon_sym_match_BANG] = ACTIONS(4181), - [anon_sym_function] = ACTIONS(4183), - [anon_sym_use] = ACTIONS(4183), - [anon_sym_use_BANG] = ACTIONS(4181), - [anon_sym_do_BANG] = ACTIONS(4181), - [anon_sym_begin] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_AT_DQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4181), - [sym_bool] = ACTIONS(4183), - [sym_unit] = ACTIONS(4181), - [aux_sym__identifier_or_op_token1] = ACTIONS(4181), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_PLUS_DOT] = ACTIONS(4181), - [anon_sym_DASH_DOT] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [aux_sym_prefix_op_token1] = ACTIONS(4181), - [sym_int] = ACTIONS(4183), - [sym_xint] = ACTIONS(4181), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4181), }, [2235] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3649), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1314), + [sym_rules] = STATE(1483), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2235), [sym_block_comment] = STATE(2235), [sym_preproc_line] = STATE(2235), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2236] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3650), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1373), + [sym_rules] = STATE(1867), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2236), [sym_block_comment] = STATE(2236), [sym_preproc_line] = STATE(2236), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(4190), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2237] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1311), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1373), + [sym_rules] = STATE(1866), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2237), [sym_block_comment] = STATE(2237), [sym_preproc_line] = STATE(2237), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2238] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1307), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1545), + [sym_rules] = STATE(1941), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2238), [sym_block_comment] = STATE(2238), [sym_preproc_line] = STATE(2238), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2239] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1506), + [sym_rules] = STATE(2053), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2239), [sym_block_comment] = STATE(2239), [sym_preproc_line] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(4192), - [sym_identifier] = ACTIONS(4194), - [anon_sym_namespace] = ACTIONS(4194), - [anon_sym_module] = ACTIONS(4194), - [anon_sym_POUNDnowarn] = ACTIONS(4192), - [anon_sym_POUNDr] = ACTIONS(4192), - [anon_sym_POUNDload] = ACTIONS(4192), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_LBRACK_LT] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_type] = ACTIONS(4194), - [anon_sym_do] = ACTIONS(4194), - [anon_sym_and] = ACTIONS(4194), - [anon_sym_let] = ACTIONS(4194), - [anon_sym_let_BANG] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_LPAREN] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4194), - [anon_sym_LBRACK_PIPE] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_LBRACE_PIPE] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4194), - [anon_sym_return_BANG] = ACTIONS(4192), - [anon_sym_yield] = ACTIONS(4194), - [anon_sym_yield_BANG] = ACTIONS(4192), - [anon_sym_lazy] = ACTIONS(4194), - [anon_sym_assert] = ACTIONS(4194), - [anon_sym_upcast] = ACTIONS(4194), - [anon_sym_downcast] = ACTIONS(4194), - [anon_sym_LT_AT] = ACTIONS(4194), - [anon_sym_LT_AT_AT] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_match] = ACTIONS(4194), - [anon_sym_match_BANG] = ACTIONS(4192), - [anon_sym_function] = ACTIONS(4194), - [anon_sym_use] = ACTIONS(4194), - [anon_sym_use_BANG] = ACTIONS(4192), - [anon_sym_do_BANG] = ACTIONS(4192), - [anon_sym_begin] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4192), - [anon_sym_interface] = ACTIONS(4194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [anon_sym_AT_DQUOTE] = ACTIONS(4192), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4192), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4192), - [sym_bool] = ACTIONS(4194), - [sym_unit] = ACTIONS(4192), - [aux_sym__identifier_or_op_token1] = ACTIONS(4192), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4194), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_PLUS_DOT] = ACTIONS(4192), - [anon_sym_DASH_DOT] = ACTIONS(4192), - [anon_sym_PERCENT] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_TILDE] = ACTIONS(4192), - [aux_sym_prefix_op_token1] = ACTIONS(4192), - [sym_int] = ACTIONS(4194), - [sym_xint] = ACTIONS(4192), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4192), }, [2240] = { - [sym_compiler_directive_decl] = STATE(2447), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1314), + [sym_rules] = STATE(1468), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2240), [sym_block_comment] = STATE(2240), [sym_preproc_line] = STATE(2240), - [aux_sym_file_repeat1] = STATE(2240), - [ts_builtin_sym_end] = ACTIONS(4196), - [sym_identifier] = ACTIONS(4198), - [anon_sym_namespace] = ACTIONS(4198), - [anon_sym_module] = ACTIONS(4198), - [anon_sym_POUNDnowarn] = ACTIONS(4200), - [anon_sym_POUNDr] = ACTIONS(4196), - [anon_sym_POUNDload] = ACTIONS(4196), - [anon_sym_open] = ACTIONS(4198), - [anon_sym_LBRACK_LT] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4198), - [anon_sym_type] = ACTIONS(4198), - [anon_sym_do] = ACTIONS(4198), - [anon_sym_let] = ACTIONS(4198), - [anon_sym_let_BANG] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4198), - [anon_sym_LPAREN] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4198), - [anon_sym_LBRACK_PIPE] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_LBRACE_PIPE] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4198), - [anon_sym_return_BANG] = ACTIONS(4196), - [anon_sym_yield] = ACTIONS(4198), - [anon_sym_yield_BANG] = ACTIONS(4196), - [anon_sym_lazy] = ACTIONS(4198), - [anon_sym_assert] = ACTIONS(4198), - [anon_sym_upcast] = ACTIONS(4198), - [anon_sym_downcast] = ACTIONS(4198), - [anon_sym_LT_AT] = ACTIONS(4198), - [anon_sym_LT_AT_AT] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4198), - [anon_sym_while] = ACTIONS(4198), - [anon_sym_if] = ACTIONS(4198), - [anon_sym_fun] = ACTIONS(4198), - [anon_sym_try] = ACTIONS(4198), - [anon_sym_match] = ACTIONS(4198), - [anon_sym_match_BANG] = ACTIONS(4196), - [anon_sym_function] = ACTIONS(4198), - [anon_sym_use] = ACTIONS(4198), - [anon_sym_use_BANG] = ACTIONS(4196), - [anon_sym_do_BANG] = ACTIONS(4196), - [anon_sym_begin] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4196), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [anon_sym_AT_DQUOTE] = ACTIONS(4196), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4196), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4196), - [sym_bool] = ACTIONS(4198), - [sym_unit] = ACTIONS(4196), - [aux_sym__identifier_or_op_token1] = ACTIONS(4196), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4198), - [anon_sym_PLUS_DOT] = ACTIONS(4196), - [anon_sym_DASH_DOT] = ACTIONS(4196), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_TILDE] = ACTIONS(4196), - [aux_sym_prefix_op_token1] = ACTIONS(4196), - [sym_int] = ACTIONS(4198), - [sym_xint] = ACTIONS(4196), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4196), }, [2241] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1545), + [sym_rules] = STATE(1939), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2241), [sym_block_comment] = STATE(2241), [sym_preproc_line] = STATE(2241), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2242] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3653), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(832), + [sym_rules] = STATE(1017), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2242), [sym_block_comment] = STATE(2242), [sym_preproc_line] = STATE(2242), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(4203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2243] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1373), + [sym_rules] = STATE(1853), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2243), [sym_block_comment] = STATE(2243), [sym_preproc_line] = STATE(2243), - [ts_builtin_sym_end] = ACTIONS(4205), - [sym_identifier] = ACTIONS(4207), - [anon_sym_namespace] = ACTIONS(4207), - [anon_sym_module] = ACTIONS(4207), - [anon_sym_POUNDnowarn] = ACTIONS(4205), - [anon_sym_POUNDr] = ACTIONS(4205), - [anon_sym_POUNDload] = ACTIONS(4205), - [anon_sym_open] = ACTIONS(4207), - [anon_sym_LBRACK_LT] = ACTIONS(4205), - [anon_sym_return] = ACTIONS(4207), - [anon_sym_type] = ACTIONS(4207), - [anon_sym_do] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4207), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_let_BANG] = ACTIONS(4205), - [anon_sym_null] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4207), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LBRACK_PIPE] = ACTIONS(4205), - [anon_sym_LBRACE] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4205), - [anon_sym_new] = ACTIONS(4207), - [anon_sym_return_BANG] = ACTIONS(4205), - [anon_sym_yield] = ACTIONS(4207), - [anon_sym_yield_BANG] = ACTIONS(4205), - [anon_sym_lazy] = ACTIONS(4207), - [anon_sym_assert] = ACTIONS(4207), - [anon_sym_upcast] = ACTIONS(4207), - [anon_sym_downcast] = ACTIONS(4207), - [anon_sym_LT_AT] = ACTIONS(4207), - [anon_sym_LT_AT_AT] = ACTIONS(4205), - [anon_sym_for] = ACTIONS(4207), - [anon_sym_while] = ACTIONS(4207), - [anon_sym_if] = ACTIONS(4207), - [anon_sym_fun] = ACTIONS(4207), - [anon_sym_try] = ACTIONS(4207), - [anon_sym_match] = ACTIONS(4207), - [anon_sym_match_BANG] = ACTIONS(4205), - [anon_sym_function] = ACTIONS(4207), - [anon_sym_use] = ACTIONS(4207), - [anon_sym_use_BANG] = ACTIONS(4205), - [anon_sym_do_BANG] = ACTIONS(4205), - [anon_sym_begin] = ACTIONS(4207), - [anon_sym_SQUOTE] = ACTIONS(4205), - [anon_sym_interface] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4207), - [anon_sym_DQUOTE] = ACTIONS(4207), - [anon_sym_AT_DQUOTE] = ACTIONS(4205), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4205), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4205), - [sym_bool] = ACTIONS(4207), - [sym_unit] = ACTIONS(4205), - [aux_sym__identifier_or_op_token1] = ACTIONS(4205), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4207), - [anon_sym_DASH] = ACTIONS(4207), - [anon_sym_PLUS_DOT] = ACTIONS(4205), - [anon_sym_DASH_DOT] = ACTIONS(4205), - [anon_sym_PERCENT] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(4205), - [anon_sym_TILDE] = ACTIONS(4205), - [aux_sym_prefix_op_token1] = ACTIONS(4205), - [sym_int] = ACTIONS(4207), - [sym_xint] = ACTIONS(4205), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4205), }, [2244] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1629), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1359), + [sym_rules] = STATE(1838), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2244), [sym_block_comment] = STATE(2244), [sym_preproc_line] = STATE(2244), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2245] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1260), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1267), + [sym_rules] = STATE(1524), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2245), [sym_block_comment] = STATE(2245), [sym_preproc_line] = STATE(2245), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2246] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(892), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1545), + [sym_rules] = STATE(1919), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2246), [sym_block_comment] = STATE(2246), [sym_preproc_line] = STATE(2246), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2247] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3654), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1314), + [sym_rules] = STATE(1455), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2247), [sym_block_comment] = STATE(2247), [sym_preproc_line] = STATE(2247), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2248] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1312), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1506), + [sym_rules] = STATE(1946), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2248), [sym_block_comment] = STATE(2248), [sym_preproc_line] = STATE(2248), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2249] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1373), + [sym_rules] = STATE(1852), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2249), [sym_block_comment] = STATE(2249), [sym_preproc_line] = STATE(2249), - [aux_sym__function_or_value_defns_repeat1] = STATE(2272), - [ts_builtin_sym_end] = ACTIONS(4211), - [sym_identifier] = ACTIONS(4213), - [anon_sym_namespace] = ACTIONS(4213), - [anon_sym_module] = ACTIONS(4213), - [anon_sym_POUNDnowarn] = ACTIONS(4211), - [anon_sym_POUNDr] = ACTIONS(4211), - [anon_sym_POUNDload] = ACTIONS(4211), - [anon_sym_open] = ACTIONS(4213), - [anon_sym_LBRACK_LT] = ACTIONS(4211), - [anon_sym_return] = ACTIONS(4213), - [anon_sym_type] = ACTIONS(4213), - [anon_sym_do] = ACTIONS(4213), - [anon_sym_and] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4213), - [anon_sym_let_BANG] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_AMP] = ACTIONS(4213), - [anon_sym_LBRACK] = ACTIONS(4213), - [anon_sym_LBRACK_PIPE] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_LBRACE_PIPE] = ACTIONS(4211), - [anon_sym_new] = ACTIONS(4213), - [anon_sym_return_BANG] = ACTIONS(4211), - [anon_sym_yield] = ACTIONS(4213), - [anon_sym_yield_BANG] = ACTIONS(4211), - [anon_sym_lazy] = ACTIONS(4213), - [anon_sym_assert] = ACTIONS(4213), - [anon_sym_upcast] = ACTIONS(4213), - [anon_sym_downcast] = ACTIONS(4213), - [anon_sym_LT_AT] = ACTIONS(4213), - [anon_sym_LT_AT_AT] = ACTIONS(4211), - [anon_sym_for] = ACTIONS(4213), - [anon_sym_while] = ACTIONS(4213), - [anon_sym_if] = ACTIONS(4213), - [anon_sym_fun] = ACTIONS(4213), - [anon_sym_try] = ACTIONS(4213), - [anon_sym_match] = ACTIONS(4213), - [anon_sym_match_BANG] = ACTIONS(4211), - [anon_sym_function] = ACTIONS(4213), - [anon_sym_use] = ACTIONS(4213), - [anon_sym_use_BANG] = ACTIONS(4211), - [anon_sym_do_BANG] = ACTIONS(4211), - [anon_sym_begin] = ACTIONS(4213), - [anon_sym_SQUOTE] = ACTIONS(4211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4213), - [anon_sym_AT_DQUOTE] = ACTIONS(4211), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4211), - [sym_bool] = ACTIONS(4213), - [sym_unit] = ACTIONS(4211), - [aux_sym__identifier_or_op_token1] = ACTIONS(4211), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4213), - [anon_sym_PLUS] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4213), - [anon_sym_PLUS_DOT] = ACTIONS(4211), - [anon_sym_DASH_DOT] = ACTIONS(4211), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_TILDE] = ACTIONS(4211), - [aux_sym_prefix_op_token1] = ACTIONS(4211), - [sym_int] = ACTIONS(4213), - [sym_xint] = ACTIONS(4211), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4211), }, [2250] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1631), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(838), + [sym_rules] = STATE(981), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2250), [sym_block_comment] = STATE(2250), [sym_preproc_line] = STATE(2250), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4177), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2251] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3641), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1545), + [sym_rules] = STATE(1920), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2251), [sym_block_comment] = STATE(2251), [sym_preproc_line] = STATE(2251), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_RBRACK] = ACTIONS(4217), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2252] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3642), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(867), + [sym_rules] = STATE(1144), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2252), [sym_block_comment] = STATE(2252), [sym_preproc_line] = STATE(2252), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_RBRACK] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2253] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(824), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1359), + [sym_rules] = STATE(1676), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2253), [sym_block_comment] = STATE(2253), [sym_preproc_line] = STATE(2253), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2254] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(833), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(4771), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2254), [sym_block_comment] = STATE(2254), [sym_preproc_line] = STATE(2254), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2228), + [sym_identifier] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_POUNDnowarn] = ACTIONS(4142), + [anon_sym_POUNDr] = ACTIONS(4142), + [anon_sym_POUNDload] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4144), + [anon_sym_LBRACK_LT] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4189), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_let_BANG] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_LBRACK_PIPE] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_LBRACE_PIPE] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_return_BANG] = ACTIONS(4142), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_yield_BANG] = ACTIONS(4142), + [anon_sym_lazy] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_upcast] = ACTIONS(4144), + [anon_sym_downcast] = ACTIONS(4144), + [anon_sym_LT_AT] = ACTIONS(4144), + [anon_sym_LT_AT_AT] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_fun] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_match_BANG] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4144), + [anon_sym_use] = ACTIONS(4144), + [anon_sym_use_BANG] = ACTIONS(4142), + [anon_sym_do_BANG] = ACTIONS(4142), + [anon_sym_begin] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [anon_sym_AT_DQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [sym_bool] = ACTIONS(4144), + [sym_unit] = ACTIONS(4142), + [aux_sym__identifier_or_op_token1] = ACTIONS(4142), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS_DOT] = ACTIONS(4142), + [anon_sym_DASH_DOT] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [aux_sym_prefix_op_token1] = ACTIONS(4142), + [sym_int] = ACTIONS(4144), + [sym_xint] = ACTIONS(4142), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4142), + [sym__dedent] = ACTIONS(4142), }, [2255] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1359), + [sym_rules] = STATE(1677), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2255), [sym_block_comment] = STATE(2255), [sym_preproc_line] = STATE(2255), - [aux_sym_long_identifier_repeat1] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), }, [2256] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(832), + [sym_rules] = STATE(1055), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2256), [sym_block_comment] = STATE(2256), [sym_preproc_line] = STATE(2256), - [aux_sym_long_identifier_repeat1] = STATE(2274), - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), }, [2257] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3769), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1417), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1373), + [sym_rules] = STATE(1767), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2257), [sym_block_comment] = STATE(2257), [sym_preproc_line] = STATE(2257), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2258] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(832), + [sym_rules] = STATE(1050), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2258), [sym_block_comment] = STATE(2258), [sym_preproc_line] = STATE(2258), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2214), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2259] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(841), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(867), + [sym_rules] = STATE(1130), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2259), [sym_block_comment] = STATE(2259), [sym_preproc_line] = STATE(2259), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2260] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1360), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(4771), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2260), [sym_block_comment] = STATE(2260), [sym_preproc_line] = STATE(2260), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2213), + [sym_identifier] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_POUNDnowarn] = ACTIONS(4142), + [anon_sym_POUNDr] = ACTIONS(4142), + [anon_sym_POUNDload] = ACTIONS(4142), + [anon_sym_open] = ACTIONS(4144), + [anon_sym_LBRACK_LT] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_and] = ACTIONS(4189), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_let_BANG] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_LBRACK_PIPE] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_LBRACE_PIPE] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_return_BANG] = ACTIONS(4142), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_yield_BANG] = ACTIONS(4142), + [anon_sym_lazy] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_upcast] = ACTIONS(4144), + [anon_sym_downcast] = ACTIONS(4144), + [anon_sym_LT_AT] = ACTIONS(4144), + [anon_sym_LT_AT_AT] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_fun] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_match_BANG] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4144), + [anon_sym_use] = ACTIONS(4144), + [anon_sym_use_BANG] = ACTIONS(4142), + [anon_sym_do_BANG] = ACTIONS(4142), + [anon_sym_begin] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [anon_sym_AT_DQUOTE] = ACTIONS(4142), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4142), + [sym_bool] = ACTIONS(4144), + [sym_unit] = ACTIONS(4142), + [aux_sym__identifier_or_op_token1] = ACTIONS(4142), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS_DOT] = ACTIONS(4142), + [anon_sym_DASH_DOT] = ACTIONS(4142), + [anon_sym_PERCENT] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [aux_sym_prefix_op_token1] = ACTIONS(4142), + [sym_int] = ACTIONS(4144), + [sym_xint] = ACTIONS(4142), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4142), + [sym__dedent] = ACTIONS(4142), }, [2261] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(832), + [sym_rules] = STATE(892), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2261), [sym_block_comment] = STATE(2261), [sym_preproc_line] = STATE(2261), - [aux_sym_long_identifier_repeat1] = STATE(2261), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(4223), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), }, [2262] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2796), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1506), + [sym_rules] = STATE(1999), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2262), [sym_block_comment] = STATE(2262), [sym_preproc_line] = STATE(2262), - [aux_sym_attributes_repeat1] = STATE(2935), - [aux_sym__method_defn_repeat1] = STATE(2221), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2263] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(899), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1506), + [sym_rules] = STATE(1998), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2263), [sym_block_comment] = STATE(2263), [sym_preproc_line] = STATE(2263), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2264] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1406), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(4771), + [sym_attribute_set] = STATE(3174), [sym_xml_doc] = STATE(2264), [sym_block_comment] = STATE(2264), [sym_preproc_line] = STATE(2264), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3043), + [aux_sym_type_definition_repeat1] = STATE(2260), + [sym_identifier] = ACTIONS(4154), + [anon_sym_module] = ACTIONS(4154), + [anon_sym_POUNDnowarn] = ACTIONS(4152), + [anon_sym_POUNDr] = ACTIONS(4152), + [anon_sym_POUNDload] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4154), + [anon_sym_LBRACK_LT] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_type] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_and] = ACTIONS(4189), + [anon_sym_let] = ACTIONS(4154), + [anon_sym_let_BANG] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_LBRACK_PIPE] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_LBRACE_PIPE] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_return_BANG] = ACTIONS(4152), + [anon_sym_yield] = ACTIONS(4154), + [anon_sym_yield_BANG] = ACTIONS(4152), + [anon_sym_lazy] = ACTIONS(4154), + [anon_sym_assert] = ACTIONS(4154), + [anon_sym_upcast] = ACTIONS(4154), + [anon_sym_downcast] = ACTIONS(4154), + [anon_sym_LT_AT] = ACTIONS(4154), + [anon_sym_LT_AT_AT] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_fun] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_match] = ACTIONS(4154), + [anon_sym_match_BANG] = ACTIONS(4152), + [anon_sym_function] = ACTIONS(4154), + [anon_sym_use] = ACTIONS(4154), + [anon_sym_use_BANG] = ACTIONS(4152), + [anon_sym_do_BANG] = ACTIONS(4152), + [anon_sym_begin] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [anon_sym_AT_DQUOTE] = ACTIONS(4152), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4152), + [sym_bool] = ACTIONS(4154), + [sym_unit] = ACTIONS(4152), + [aux_sym__identifier_or_op_token1] = ACTIONS(4152), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS_DOT] = ACTIONS(4152), + [anon_sym_DASH_DOT] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [aux_sym_prefix_op_token1] = ACTIONS(4152), + [sym_int] = ACTIONS(4154), + [sym_xint] = ACTIONS(4152), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4152), + [sym__dedent] = ACTIONS(4152), }, [2265] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3736), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(846), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(832), + [sym_rules] = STATE(890), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2265), [sym_block_comment] = STATE(2265), [sym_preproc_line] = STATE(2265), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2266] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1393), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1314), + [sym_rules] = STATE(1467), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2266), [sym_block_comment] = STATE(2266), [sym_preproc_line] = STATE(2266), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2267] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(861), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_interface_implementation] = STATE(2406), [sym_xml_doc] = STATE(2267), [sym_block_comment] = STATE(2267), [sym_preproc_line] = STATE(2267), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym__object_expression_inner_repeat1] = STATE(2271), + [sym_identifier] = ACTIONS(4185), + [anon_sym_module] = ACTIONS(4185), + [anon_sym_POUNDnowarn] = ACTIONS(4183), + [anon_sym_POUNDr] = ACTIONS(4183), + [anon_sym_POUNDload] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4185), + [anon_sym_LBRACK_LT] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_do] = ACTIONS(4185), + [anon_sym_and] = ACTIONS(4185), + [anon_sym_let] = ACTIONS(4185), + [anon_sym_let_BANG] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_LBRACK_PIPE] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_return_BANG] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_yield_BANG] = ACTIONS(4183), + [anon_sym_lazy] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_upcast] = ACTIONS(4185), + [anon_sym_downcast] = ACTIONS(4185), + [anon_sym_LT_AT] = ACTIONS(4185), + [anon_sym_LT_AT_AT] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_fun] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_match_BANG] = ACTIONS(4183), + [anon_sym_function] = ACTIONS(4185), + [anon_sym_use] = ACTIONS(4185), + [anon_sym_use_BANG] = ACTIONS(4183), + [anon_sym_do_BANG] = ACTIONS(4183), + [anon_sym_begin] = ACTIONS(4185), + [anon_sym_SQUOTE] = ACTIONS(4183), + [anon_sym_interface] = ACTIONS(4204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4185), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_AT_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [sym_bool] = ACTIONS(4185), + [sym_unit] = ACTIONS(4183), + [aux_sym__identifier_or_op_token1] = ACTIONS(4183), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_PLUS_DOT] = ACTIONS(4183), + [anon_sym_DASH_DOT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [aux_sym_prefix_op_token1] = ACTIONS(4183), + [sym_int] = ACTIONS(4185), + [sym_xint] = ACTIONS(4183), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4183), + [sym__dedent] = ACTIONS(4183), }, [2268] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3756), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1359), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3935), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_active_pattern_op_name] = STATE(4935), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2268), [sym_block_comment] = STATE(2268), [sym_preproc_line] = STATE(2268), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_PIPE] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2269] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3724), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1385), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2269), [sym_block_comment] = STATE(2269), [sym_preproc_line] = STATE(2269), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4208), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2270] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1618), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2270), [sym_block_comment] = STATE(2270), [sym_preproc_line] = STATE(2270), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2271] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3787), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(819), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_interface_implementation] = STATE(2406), [sym_xml_doc] = STATE(2271), [sym_block_comment] = STATE(2271), [sym_preproc_line] = STATE(2271), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym__object_expression_inner_repeat1] = STATE(2271), + [sym_identifier] = ACTIONS(4193), + [anon_sym_module] = ACTIONS(4193), + [anon_sym_POUNDnowarn] = ACTIONS(4191), + [anon_sym_POUNDr] = ACTIONS(4191), + [anon_sym_POUNDload] = ACTIONS(4191), + [anon_sym_open] = ACTIONS(4193), + [anon_sym_LBRACK_LT] = ACTIONS(4191), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_type] = ACTIONS(4193), + [anon_sym_do] = ACTIONS(4193), + [anon_sym_and] = ACTIONS(4193), + [anon_sym_let] = ACTIONS(4193), + [anon_sym_let_BANG] = ACTIONS(4191), + [anon_sym_null] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_PIPE] = ACTIONS(4191), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [anon_sym_new] = ACTIONS(4193), + [anon_sym_return_BANG] = ACTIONS(4191), + [anon_sym_yield] = ACTIONS(4193), + [anon_sym_yield_BANG] = ACTIONS(4191), + [anon_sym_lazy] = ACTIONS(4193), + [anon_sym_assert] = ACTIONS(4193), + [anon_sym_upcast] = ACTIONS(4193), + [anon_sym_downcast] = ACTIONS(4193), + [anon_sym_LT_AT] = ACTIONS(4193), + [anon_sym_LT_AT_AT] = ACTIONS(4191), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_while] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_fun] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4193), + [anon_sym_match_BANG] = ACTIONS(4191), + [anon_sym_function] = ACTIONS(4193), + [anon_sym_use] = ACTIONS(4193), + [anon_sym_use_BANG] = ACTIONS(4191), + [anon_sym_do_BANG] = ACTIONS(4191), + [anon_sym_begin] = ACTIONS(4193), + [anon_sym_SQUOTE] = ACTIONS(4191), + [anon_sym_interface] = ACTIONS(4212), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_AT_DQUOTE] = ACTIONS(4191), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4191), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4191), + [sym_bool] = ACTIONS(4193), + [sym_unit] = ACTIONS(4191), + [aux_sym__identifier_or_op_token1] = ACTIONS(4191), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_PLUS_DOT] = ACTIONS(4191), + [anon_sym_DASH_DOT] = ACTIONS(4191), + [anon_sym_PERCENT] = ACTIONS(4191), + [anon_sym_AMP_AMP] = ACTIONS(4191), + [anon_sym_TILDE] = ACTIONS(4191), + [aux_sym_prefix_op_token1] = ACTIONS(4191), + [sym_int] = ACTIONS(4193), + [sym_xint] = ACTIONS(4191), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4191), + [sym__dedent] = ACTIONS(4191), }, [2272] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2272), [sym_block_comment] = STATE(2272), [sym_preproc_line] = STATE(2272), - [aux_sym__function_or_value_defns_repeat1] = STATE(2234), - [ts_builtin_sym_end] = ACTIONS(4226), - [sym_identifier] = ACTIONS(4228), - [anon_sym_namespace] = ACTIONS(4228), - [anon_sym_module] = ACTIONS(4228), - [anon_sym_POUNDnowarn] = ACTIONS(4226), - [anon_sym_POUNDr] = ACTIONS(4226), - [anon_sym_POUNDload] = ACTIONS(4226), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_LBRACK_LT] = ACTIONS(4226), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_type] = ACTIONS(4228), - [anon_sym_do] = ACTIONS(4228), - [anon_sym_and] = ACTIONS(4215), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_let_BANG] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym_AMP] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4228), - [anon_sym_LBRACK_PIPE] = ACTIONS(4226), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_LBRACE_PIPE] = ACTIONS(4226), - [anon_sym_new] = ACTIONS(4228), - [anon_sym_return_BANG] = ACTIONS(4226), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_yield_BANG] = ACTIONS(4226), - [anon_sym_lazy] = ACTIONS(4228), - [anon_sym_assert] = ACTIONS(4228), - [anon_sym_upcast] = ACTIONS(4228), - [anon_sym_downcast] = ACTIONS(4228), - [anon_sym_LT_AT] = ACTIONS(4228), - [anon_sym_LT_AT_AT] = ACTIONS(4226), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_match_BANG] = ACTIONS(4226), - [anon_sym_function] = ACTIONS(4228), - [anon_sym_use] = ACTIONS(4228), - [anon_sym_use_BANG] = ACTIONS(4226), - [anon_sym_do_BANG] = ACTIONS(4226), - [anon_sym_begin] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4228), - [anon_sym_DQUOTE] = ACTIONS(4228), - [anon_sym_AT_DQUOTE] = ACTIONS(4226), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4226), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4226), - [sym_bool] = ACTIONS(4228), - [sym_unit] = ACTIONS(4226), - [aux_sym__identifier_or_op_token1] = ACTIONS(4226), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_PLUS_DOT] = ACTIONS(4226), - [anon_sym_DASH_DOT] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_TILDE] = ACTIONS(4226), - [aux_sym_prefix_op_token1] = ACTIONS(4226), - [sym_int] = ACTIONS(4228), - [sym_xint] = ACTIONS(4226), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4215), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4226), }, [2273] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3792), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(834), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2273), [sym_block_comment] = STATE(2273), [sym_preproc_line] = STATE(2273), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4217), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2274] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2274), [sym_block_comment] = STATE(2274), [sym_preproc_line] = STATE(2274), - [aux_sym_long_identifier_repeat1] = STATE(2261), - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), }, [2275] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3735), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_rule] = STATE(1382), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2275), [sym_block_comment] = STATE(2275), [sym_preproc_line] = STATE(2275), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4221), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2276] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3764), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2276), [sym_block_comment] = STATE(2276), [sym_preproc_line] = STATE(2276), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4226), + [anon_sym_LBRACK_LT] = ACTIONS(4228), + [anon_sym_null] = ACTIONS(4231), + [anon_sym__] = ACTIONS(4234), + [anon_sym_QMARK] = ACTIONS(4237), + [anon_sym_COLON_QMARK] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_LBRACK_PIPE] = ACTIONS(4249), + [anon_sym_LBRACE] = ACTIONS(4252), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4258), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_AT_DQUOTE] = ACTIONS(4264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4270), + [sym_bool] = ACTIONS(4273), + [sym_unit] = ACTIONS(4276), + [sym_int] = ACTIONS(4279), + [sym_xint] = ACTIONS(4282), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2277] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3825), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2277), [sym_block_comment] = STATE(2277), [sym_preproc_line] = STATE(2277), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4285), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2278] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2845), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym_access_modifier] = STATE(2459), + [sym__pattern] = STATE(3767), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2278), [sym_block_comment] = STATE(2278), [sym_preproc_line] = STATE(2278), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [aux_sym_access_modifier_token1] = ACTIONS(4287), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2279] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2279), [sym_block_comment] = STATE(2279), [sym_preproc_line] = STATE(2279), - [ts_builtin_sym_end] = ACTIONS(4262), - [sym_identifier] = ACTIONS(4264), - [anon_sym_namespace] = ACTIONS(4264), - [anon_sym_module] = ACTIONS(4264), - [anon_sym_POUNDnowarn] = ACTIONS(4262), - [anon_sym_POUNDr] = ACTIONS(4262), - [anon_sym_POUNDload] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_LBRACK_LT] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_type] = ACTIONS(4264), - [anon_sym_do] = ACTIONS(4264), - [anon_sym_and] = ACTIONS(4264), - [anon_sym_let] = ACTIONS(4264), - [anon_sym_let_BANG] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_LBRACK_PIPE] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_LBRACE_PIPE] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4264), - [anon_sym_return_BANG] = ACTIONS(4262), - [anon_sym_yield] = ACTIONS(4264), - [anon_sym_yield_BANG] = ACTIONS(4262), - [anon_sym_lazy] = ACTIONS(4264), - [anon_sym_assert] = ACTIONS(4264), - [anon_sym_upcast] = ACTIONS(4264), - [anon_sym_downcast] = ACTIONS(4264), - [anon_sym_LT_AT] = ACTIONS(4264), - [anon_sym_LT_AT_AT] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_match] = ACTIONS(4264), - [anon_sym_match_BANG] = ACTIONS(4262), - [anon_sym_function] = ACTIONS(4264), - [anon_sym_use] = ACTIONS(4264), - [anon_sym_use_BANG] = ACTIONS(4262), - [anon_sym_do_BANG] = ACTIONS(4262), - [anon_sym_begin] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4262), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [anon_sym_AT_DQUOTE] = ACTIONS(4262), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4262), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4262), - [sym_bool] = ACTIONS(4264), - [sym_unit] = ACTIONS(4262), - [aux_sym__identifier_or_op_token1] = ACTIONS(4262), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_PLUS_DOT] = ACTIONS(4262), - [anon_sym_DASH_DOT] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_TILDE] = ACTIONS(4262), - [aux_sym_prefix_op_token1] = ACTIONS(4262), - [sym_int] = ACTIONS(4264), - [sym_xint] = ACTIONS(4262), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4262), }, [2280] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3856), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1581), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2280), [sym_block_comment] = STATE(2280), [sym_preproc_line] = STATE(2280), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2281] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2908), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(914), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2281), [sym_block_comment] = STATE(2281), [sym_preproc_line] = STATE(2281), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2282] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3810), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(835), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2282), [sym_block_comment] = STATE(2282), [sym_preproc_line] = STATE(2282), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2283] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2840), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1414), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2283), [sym_block_comment] = STATE(2283), [sym_preproc_line] = STATE(2283), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, @@ -267899,3625 +266115,3674 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xml_doc] = STATE(2284), [sym_block_comment] = STATE(2284), [sym_preproc_line] = STATE(2284), - [aux_sym__function_or_value_defns_repeat1] = STATE(2284), - [sym_identifier] = ACTIONS(4183), - [anon_sym_module] = ACTIONS(4183), - [anon_sym_POUNDnowarn] = ACTIONS(4181), - [anon_sym_POUNDr] = ACTIONS(4181), - [anon_sym_POUNDload] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4183), - [anon_sym_LBRACK_LT] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4183), - [anon_sym_type] = ACTIONS(4183), - [anon_sym_do] = ACTIONS(4183), - [anon_sym_and] = ACTIONS(4268), - [anon_sym_let] = ACTIONS(4183), - [anon_sym_let_BANG] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_LBRACK_PIPE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_LBRACE_PIPE] = ACTIONS(4181), - [anon_sym_new] = ACTIONS(4183), - [anon_sym_return_BANG] = ACTIONS(4181), - [anon_sym_yield] = ACTIONS(4183), - [anon_sym_yield_BANG] = ACTIONS(4181), - [anon_sym_lazy] = ACTIONS(4183), - [anon_sym_assert] = ACTIONS(4183), - [anon_sym_upcast] = ACTIONS(4183), - [anon_sym_downcast] = ACTIONS(4183), - [anon_sym_LT_AT] = ACTIONS(4183), - [anon_sym_LT_AT_AT] = ACTIONS(4181), - [anon_sym_for] = ACTIONS(4183), - [anon_sym_while] = ACTIONS(4183), - [anon_sym_if] = ACTIONS(4183), - [anon_sym_fun] = ACTIONS(4183), - [anon_sym_try] = ACTIONS(4183), - [anon_sym_match] = ACTIONS(4183), - [anon_sym_match_BANG] = ACTIONS(4181), - [anon_sym_function] = ACTIONS(4183), - [anon_sym_use] = ACTIONS(4183), - [anon_sym_use_BANG] = ACTIONS(4181), - [anon_sym_do_BANG] = ACTIONS(4181), - [anon_sym_begin] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4183), - [anon_sym_DQUOTE] = ACTIONS(4183), - [anon_sym_AT_DQUOTE] = ACTIONS(4181), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4181), - [sym_bool] = ACTIONS(4183), - [sym_unit] = ACTIONS(4181), - [aux_sym__identifier_or_op_token1] = ACTIONS(4181), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4183), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_PLUS_DOT] = ACTIONS(4181), - [anon_sym_DASH_DOT] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP_AMP] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [aux_sym_prefix_op_token1] = ACTIONS(4181), - [sym_int] = ACTIONS(4183), - [sym_xint] = ACTIONS(4181), + [aux_sym__function_or_value_defns_repeat1] = STATE(2324), + [ts_builtin_sym_end] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4293), + [anon_sym_namespace] = ACTIONS(4293), + [anon_sym_module] = ACTIONS(4293), + [anon_sym_POUNDnowarn] = ACTIONS(4291), + [anon_sym_POUNDr] = ACTIONS(4291), + [anon_sym_POUNDload] = ACTIONS(4291), + [anon_sym_open] = ACTIONS(4293), + [anon_sym_LBRACK_LT] = ACTIONS(4291), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_type] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4293), + [anon_sym_let_BANG] = ACTIONS(4291), + [anon_sym_null] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_LBRACK_PIPE] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_LBRACE_PIPE] = ACTIONS(4291), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_return_BANG] = ACTIONS(4291), + [anon_sym_yield] = ACTIONS(4293), + [anon_sym_yield_BANG] = ACTIONS(4291), + [anon_sym_lazy] = ACTIONS(4293), + [anon_sym_assert] = ACTIONS(4293), + [anon_sym_upcast] = ACTIONS(4293), + [anon_sym_downcast] = ACTIONS(4293), + [anon_sym_LT_AT] = ACTIONS(4293), + [anon_sym_LT_AT_AT] = ACTIONS(4291), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_fun] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_match] = ACTIONS(4293), + [anon_sym_match_BANG] = ACTIONS(4291), + [anon_sym_function] = ACTIONS(4293), + [anon_sym_use] = ACTIONS(4293), + [anon_sym_use_BANG] = ACTIONS(4291), + [anon_sym_do_BANG] = ACTIONS(4291), + [anon_sym_begin] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4293), + [anon_sym_DQUOTE] = ACTIONS(4293), + [anon_sym_AT_DQUOTE] = ACTIONS(4291), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4291), + [sym_bool] = ACTIONS(4293), + [sym_unit] = ACTIONS(4291), + [aux_sym__identifier_or_op_token1] = ACTIONS(4291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS_DOT] = ACTIONS(4291), + [anon_sym_DASH_DOT] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [aux_sym_prefix_op_token1] = ACTIONS(4291), + [sym_int] = ACTIONS(4293), + [sym_xint] = ACTIONS(4291), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4181), - [sym__dedent] = ACTIONS(4181), + [anon_sym_POUNDif] = ACTIONS(4291), }, [2285] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3830), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2285), [sym_block_comment] = STATE(2285), [sym_preproc_line] = STATE(2285), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_long_identifier_repeat1] = STATE(2333), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), }, [2286] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3824), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(854), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2286), [sym_block_comment] = STATE(2286), [sym_preproc_line] = STATE(2286), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2287] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3839), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1802), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2287), [sym_block_comment] = STATE(2287), [sym_preproc_line] = STATE(2287), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2288] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3677), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1417), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2288), [sym_block_comment] = STATE(2288), [sym_preproc_line] = STATE(2288), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2289] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2289), [sym_block_comment] = STATE(2289), [sym_preproc_line] = STATE(2289), - [aux_sym_long_identifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_POUNDnowarn] = ACTIONS(2494), - [anon_sym_POUNDr] = ACTIONS(2494), - [anon_sym_POUNDload] = ACTIONS(2494), - [anon_sym_open] = ACTIONS(2492), - [anon_sym_LBRACK_LT] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_type] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2269), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__dedent] = ACTIONS(2494), }, [2290] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3819), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_compiler_directive_decl] = STATE(2475), [sym_xml_doc] = STATE(2290), [sym_block_comment] = STATE(2290), [sym_preproc_line] = STATE(2290), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_file_repeat1] = STATE(2290), + [ts_builtin_sym_end] = ACTIONS(4301), + [sym_identifier] = ACTIONS(4303), + [anon_sym_namespace] = ACTIONS(4303), + [anon_sym_module] = ACTIONS(4303), + [anon_sym_POUNDnowarn] = ACTIONS(4305), + [anon_sym_POUNDr] = ACTIONS(4301), + [anon_sym_POUNDload] = ACTIONS(4301), + [anon_sym_open] = ACTIONS(4303), + [anon_sym_LBRACK_LT] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_type] = ACTIONS(4303), + [anon_sym_do] = ACTIONS(4303), + [anon_sym_let] = ACTIONS(4303), + [anon_sym_let_BANG] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_PIPE] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_LBRACE_PIPE] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4303), + [anon_sym_return_BANG] = ACTIONS(4301), + [anon_sym_yield] = ACTIONS(4303), + [anon_sym_yield_BANG] = ACTIONS(4301), + [anon_sym_lazy] = ACTIONS(4303), + [anon_sym_assert] = ACTIONS(4303), + [anon_sym_upcast] = ACTIONS(4303), + [anon_sym_downcast] = ACTIONS(4303), + [anon_sym_LT_AT] = ACTIONS(4303), + [anon_sym_LT_AT_AT] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4303), + [anon_sym_while] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_fun] = ACTIONS(4303), + [anon_sym_try] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(4303), + [anon_sym_match_BANG] = ACTIONS(4301), + [anon_sym_function] = ACTIONS(4303), + [anon_sym_use] = ACTIONS(4303), + [anon_sym_use_BANG] = ACTIONS(4301), + [anon_sym_do_BANG] = ACTIONS(4301), + [anon_sym_begin] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_AT_DQUOTE] = ACTIONS(4301), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4301), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4301), + [sym_bool] = ACTIONS(4303), + [sym_unit] = ACTIONS(4301), + [aux_sym__identifier_or_op_token1] = ACTIONS(4301), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_PLUS_DOT] = ACTIONS(4301), + [anon_sym_DASH_DOT] = ACTIONS(4301), + [anon_sym_PERCENT] = ACTIONS(4301), + [anon_sym_AMP_AMP] = ACTIONS(4301), + [anon_sym_TILDE] = ACTIONS(4301), + [aux_sym_prefix_op_token1] = ACTIONS(4301), + [sym_int] = ACTIONS(4303), + [sym_xint] = ACTIONS(4301), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4301), }, [2291] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3664), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1405), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2291), [sym_block_comment] = STATE(2291), [sym_preproc_line] = STATE(2291), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2292] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3725), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1299), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2292), [sym_block_comment] = STATE(2292), [sym_preproc_line] = STATE(2292), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2293] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(839), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2293), [sym_block_comment] = STATE(2293), [sym_preproc_line] = STATE(2293), - [aux_sym_long_identifier_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), }, [2294] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3424), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1553), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2294), [sym_block_comment] = STATE(2294), [sym_preproc_line] = STATE(2294), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2295] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3426), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2295), [sym_block_comment] = STATE(2295), [sym_preproc_line] = STATE(2295), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2274), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2296] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3427), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3770), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2296), [sym_block_comment] = STATE(2296), [sym_preproc_line] = STATE(2296), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(4308), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2297] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3774), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2297), [sym_block_comment] = STATE(2297), [sym_preproc_line] = STATE(2297), - [sym_identifier] = ACTIONS(4171), - [anon_sym_module] = ACTIONS(4171), - [anon_sym_POUNDnowarn] = ACTIONS(4169), - [anon_sym_POUNDr] = ACTIONS(4169), - [anon_sym_POUNDload] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4171), - [anon_sym_LBRACK_LT] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4171), - [anon_sym_type] = ACTIONS(4171), - [anon_sym_do] = ACTIONS(4171), - [anon_sym_and] = ACTIONS(4171), - [anon_sym_let] = ACTIONS(4171), - [anon_sym_let_BANG] = ACTIONS(4169), - [anon_sym_null] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_LBRACK_PIPE] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_LBRACE_PIPE] = ACTIONS(4169), - [anon_sym_new] = ACTIONS(4171), - [anon_sym_return_BANG] = ACTIONS(4169), - [anon_sym_yield] = ACTIONS(4171), - [anon_sym_yield_BANG] = ACTIONS(4169), - [anon_sym_lazy] = ACTIONS(4171), - [anon_sym_assert] = ACTIONS(4171), - [anon_sym_upcast] = ACTIONS(4171), - [anon_sym_downcast] = ACTIONS(4171), - [anon_sym_LT_AT] = ACTIONS(4171), - [anon_sym_LT_AT_AT] = ACTIONS(4169), - [anon_sym_for] = ACTIONS(4171), - [anon_sym_while] = ACTIONS(4171), - [anon_sym_if] = ACTIONS(4171), - [anon_sym_fun] = ACTIONS(4171), - [anon_sym_try] = ACTIONS(4171), - [anon_sym_match] = ACTIONS(4171), - [anon_sym_match_BANG] = ACTIONS(4169), - [anon_sym_function] = ACTIONS(4171), - [anon_sym_use] = ACTIONS(4171), - [anon_sym_use_BANG] = ACTIONS(4169), - [anon_sym_do_BANG] = ACTIONS(4169), - [anon_sym_begin] = ACTIONS(4171), - [anon_sym_SQUOTE] = ACTIONS(4169), - [anon_sym_interface] = ACTIONS(4171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_AT_DQUOTE] = ACTIONS(4169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4169), - [sym_bool] = ACTIONS(4171), - [sym_unit] = ACTIONS(4169), - [aux_sym__identifier_or_op_token1] = ACTIONS(4169), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4171), - [anon_sym_DASH] = ACTIONS(4171), - [anon_sym_PLUS_DOT] = ACTIONS(4169), - [anon_sym_DASH_DOT] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_AMP_AMP] = ACTIONS(4169), - [anon_sym_TILDE] = ACTIONS(4169), - [aux_sym_prefix_op_token1] = ACTIONS(4169), - [sym_int] = ACTIONS(4171), - [sym_xint] = ACTIONS(4169), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4169), - [sym__dedent] = ACTIONS(4169), }, [2298] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3662), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2298), [sym_block_comment] = STATE(2298), [sym_preproc_line] = STATE(2298), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2273), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2299] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3867), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3803), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(871), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2299), [sym_block_comment] = STATE(2299), [sym_preproc_line] = STATE(2299), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4278), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2300] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3430), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3876), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1342), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2300), [sym_block_comment] = STATE(2300), [sym_preproc_line] = STATE(2300), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2301] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3823), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1779), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2301), [sym_block_comment] = STATE(2301), [sym_preproc_line] = STATE(2301), - [aux_sym_long_identifier_repeat1] = STATE(2289), - [sym_identifier] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_POUNDnowarn] = ACTIONS(2475), - [anon_sym_POUNDr] = ACTIONS(2475), - [anon_sym_POUNDload] = ACTIONS(2475), - [anon_sym_open] = ACTIONS(2473), - [anon_sym_LBRACK_LT] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__dedent] = ACTIONS(2475), }, [2302] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3782), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2302), [sym_block_comment] = STATE(2302), [sym_preproc_line] = STATE(2302), - [ts_builtin_sym_end] = ACTIONS(4280), - [sym_identifier] = ACTIONS(4282), - [anon_sym_namespace] = ACTIONS(4282), - [anon_sym_module] = ACTIONS(4282), - [anon_sym_POUNDnowarn] = ACTIONS(4280), - [anon_sym_POUNDr] = ACTIONS(4280), - [anon_sym_POUNDload] = ACTIONS(4280), - [anon_sym_open] = ACTIONS(4282), - [anon_sym_LBRACK_LT] = ACTIONS(4280), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_type] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_and] = ACTIONS(4282), - [anon_sym_let] = ACTIONS(4282), - [anon_sym_let_BANG] = ACTIONS(4280), - [anon_sym_null] = ACTIONS(4282), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_LBRACK_PIPE] = ACTIONS(4280), - [anon_sym_LBRACE] = ACTIONS(4282), - [anon_sym_LBRACE_PIPE] = ACTIONS(4280), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_return_BANG] = ACTIONS(4280), - [anon_sym_yield] = ACTIONS(4282), - [anon_sym_yield_BANG] = ACTIONS(4280), - [anon_sym_lazy] = ACTIONS(4282), - [anon_sym_assert] = ACTIONS(4282), - [anon_sym_upcast] = ACTIONS(4282), - [anon_sym_downcast] = ACTIONS(4282), - [anon_sym_LT_AT] = ACTIONS(4282), - [anon_sym_LT_AT_AT] = ACTIONS(4280), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_fun] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_match] = ACTIONS(4282), - [anon_sym_match_BANG] = ACTIONS(4280), - [anon_sym_function] = ACTIONS(4282), - [anon_sym_use] = ACTIONS(4282), - [anon_sym_use_BANG] = ACTIONS(4280), - [anon_sym_do_BANG] = ACTIONS(4280), - [anon_sym_begin] = ACTIONS(4282), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4282), - [anon_sym_DQUOTE] = ACTIONS(4282), - [anon_sym_AT_DQUOTE] = ACTIONS(4280), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4280), - [sym_bool] = ACTIONS(4282), - [sym_unit] = ACTIONS(4280), - [aux_sym__identifier_or_op_token1] = ACTIONS(4280), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS_DOT] = ACTIONS(4280), - [anon_sym_DASH_DOT] = ACTIONS(4280), - [anon_sym_PERCENT] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [aux_sym_prefix_op_token1] = ACTIONS(4280), - [sym_int] = ACTIONS(4282), - [sym_xint] = ACTIONS(4280), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(4312), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4280), }, [2303] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3758), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2303), [sym_block_comment] = STATE(2303), [sym_preproc_line] = STATE(2303), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(4314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), }, [2304] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3851), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3763), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2304), [sym_block_comment] = STATE(2304), [sym_preproc_line] = STATE(2304), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4284), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2305] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3855), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2305), [sym_block_comment] = STATE(2305), [sym_preproc_line] = STATE(2305), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4318), + [sym_identifier] = ACTIONS(4320), + [anon_sym_namespace] = ACTIONS(4320), + [anon_sym_module] = ACTIONS(4320), + [anon_sym_POUNDnowarn] = ACTIONS(4318), + [anon_sym_POUNDr] = ACTIONS(4318), + [anon_sym_POUNDload] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4320), + [anon_sym_LBRACK_LT] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4320), + [anon_sym_type] = ACTIONS(4320), + [anon_sym_do] = ACTIONS(4320), + [anon_sym_and] = ACTIONS(4320), + [anon_sym_let] = ACTIONS(4320), + [anon_sym_let_BANG] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_LBRACK_PIPE] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_LBRACE_PIPE] = ACTIONS(4318), + [anon_sym_new] = ACTIONS(4320), + [anon_sym_return_BANG] = ACTIONS(4318), + [anon_sym_yield] = ACTIONS(4320), + [anon_sym_yield_BANG] = ACTIONS(4318), + [anon_sym_lazy] = ACTIONS(4320), + [anon_sym_assert] = ACTIONS(4320), + [anon_sym_upcast] = ACTIONS(4320), + [anon_sym_downcast] = ACTIONS(4320), + [anon_sym_LT_AT] = ACTIONS(4320), + [anon_sym_LT_AT_AT] = ACTIONS(4318), + [anon_sym_for] = ACTIONS(4320), + [anon_sym_while] = ACTIONS(4320), + [anon_sym_if] = ACTIONS(4320), + [anon_sym_fun] = ACTIONS(4320), + [anon_sym_try] = ACTIONS(4320), + [anon_sym_match] = ACTIONS(4320), + [anon_sym_match_BANG] = ACTIONS(4318), + [anon_sym_function] = ACTIONS(4320), + [anon_sym_use] = ACTIONS(4320), + [anon_sym_use_BANG] = ACTIONS(4318), + [anon_sym_do_BANG] = ACTIONS(4318), + [anon_sym_begin] = ACTIONS(4320), + [anon_sym_SQUOTE] = ACTIONS(4318), + [anon_sym_interface] = ACTIONS(4320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4320), + [anon_sym_DQUOTE] = ACTIONS(4320), + [anon_sym_AT_DQUOTE] = ACTIONS(4318), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4318), + [sym_bool] = ACTIONS(4320), + [sym_unit] = ACTIONS(4318), + [aux_sym__identifier_or_op_token1] = ACTIONS(4318), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4320), + [anon_sym_DASH] = ACTIONS(4320), + [anon_sym_PLUS_DOT] = ACTIONS(4318), + [anon_sym_DASH_DOT] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_AMP_AMP] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(4318), + [aux_sym_prefix_op_token1] = ACTIONS(4318), + [sym_int] = ACTIONS(4320), + [sym_xint] = ACTIONS(4318), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4318), }, [2306] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2869), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), [sym_xml_doc] = STATE(2306), [sym_block_comment] = STATE(2306), [sym_preproc_line] = STATE(2306), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_long_identifier_repeat1] = STATE(2306), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(4322), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), }, [2307] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2734), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), [sym_xml_doc] = STATE(2307), [sym_block_comment] = STATE(2307), [sym_preproc_line] = STATE(2307), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_long_identifier_repeat1] = STATE(2333), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), }, [2308] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1825), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2308), [sym_block_comment] = STATE(2308), [sym_preproc_line] = STATE(2308), - [ts_builtin_sym_end] = ACTIONS(4034), - [sym_identifier] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_POUNDnowarn] = ACTIONS(4034), - [anon_sym_POUNDr] = ACTIONS(4034), - [anon_sym_POUNDload] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4036), - [anon_sym_LBRACK_LT] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_type] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_and] = ACTIONS(4036), - [anon_sym_let] = ACTIONS(4036), - [anon_sym_let_BANG] = ACTIONS(4034), - [anon_sym_null] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LBRACK_PIPE] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_LBRACE_PIPE] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_return_BANG] = ACTIONS(4034), - [anon_sym_yield] = ACTIONS(4036), - [anon_sym_yield_BANG] = ACTIONS(4034), - [anon_sym_lazy] = ACTIONS(4036), - [anon_sym_assert] = ACTIONS(4036), - [anon_sym_upcast] = ACTIONS(4036), - [anon_sym_downcast] = ACTIONS(4036), - [anon_sym_LT_AT] = ACTIONS(4036), - [anon_sym_LT_AT_AT] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_fun] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_match] = ACTIONS(4036), - [anon_sym_match_BANG] = ACTIONS(4034), - [anon_sym_function] = ACTIONS(4036), - [anon_sym_use] = ACTIONS(4036), - [anon_sym_use_BANG] = ACTIONS(4034), - [anon_sym_do_BANG] = ACTIONS(4034), - [anon_sym_begin] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_AT_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [sym_bool] = ACTIONS(4036), - [sym_unit] = ACTIONS(4034), - [aux_sym__identifier_or_op_token1] = ACTIONS(4034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS_DOT] = ACTIONS(4034), - [anon_sym_DASH_DOT] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [aux_sym_prefix_op_token1] = ACTIONS(4034), - [sym_int] = ACTIONS(4036), - [sym_xint] = ACTIONS(4034), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4034), }, [2309] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2883), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3698), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2309), [sym_block_comment] = STATE(2309), [sym_preproc_line] = STATE(2309), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_PIPE_RBRACK] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2310] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3877), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2310), [sym_block_comment] = STATE(2310), [sym_preproc_line] = STATE(2310), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4327), + [sym_identifier] = ACTIONS(4329), + [anon_sym_namespace] = ACTIONS(4329), + [anon_sym_module] = ACTIONS(4329), + [anon_sym_POUNDnowarn] = ACTIONS(4327), + [anon_sym_POUNDr] = ACTIONS(4327), + [anon_sym_POUNDload] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_LBRACK_LT] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_type] = ACTIONS(4329), + [anon_sym_do] = ACTIONS(4329), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_let_BANG] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_PIPE] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE_PIPE] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4329), + [anon_sym_return_BANG] = ACTIONS(4327), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_yield_BANG] = ACTIONS(4327), + [anon_sym_lazy] = ACTIONS(4329), + [anon_sym_assert] = ACTIONS(4329), + [anon_sym_upcast] = ACTIONS(4329), + [anon_sym_downcast] = ACTIONS(4329), + [anon_sym_LT_AT] = ACTIONS(4329), + [anon_sym_LT_AT_AT] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_match] = ACTIONS(4329), + [anon_sym_match_BANG] = ACTIONS(4327), + [anon_sym_function] = ACTIONS(4329), + [anon_sym_use] = ACTIONS(4329), + [anon_sym_use_BANG] = ACTIONS(4327), + [anon_sym_do_BANG] = ACTIONS(4327), + [anon_sym_begin] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_interface] = ACTIONS(4329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_AT_DQUOTE] = ACTIONS(4327), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4327), + [sym_bool] = ACTIONS(4329), + [sym_unit] = ACTIONS(4327), + [aux_sym__identifier_or_op_token1] = ACTIONS(4327), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS_DOT] = ACTIONS(4327), + [anon_sym_DASH_DOT] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [aux_sym_prefix_op_token1] = ACTIONS(4327), + [sym_int] = ACTIONS(4329), + [sym_xint] = ACTIONS(4327), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4327), }, [2311] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3601), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1337), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2311), [sym_block_comment] = STATE(2311), [sym_preproc_line] = STATE(2311), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2312] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3852), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1286), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2312), [sym_block_comment] = STATE(2312), [sym_preproc_line] = STATE(2312), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4284), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2313] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3807), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3781), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2313), [sym_block_comment] = STATE(2313), [sym_preproc_line] = STATE(2313), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2314] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1550), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2314), [sym_block_comment] = STATE(2314), [sym_preproc_line] = STATE(2314), - [ts_builtin_sym_end] = ACTIONS(4290), - [sym_identifier] = ACTIONS(4292), - [anon_sym_namespace] = ACTIONS(4292), - [anon_sym_module] = ACTIONS(4292), - [anon_sym_POUNDnowarn] = ACTIONS(4290), - [anon_sym_POUNDr] = ACTIONS(4290), - [anon_sym_POUNDload] = ACTIONS(4290), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_LBRACK_LT] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_type] = ACTIONS(4292), - [anon_sym_do] = ACTIONS(4292), - [anon_sym_and] = ACTIONS(4292), - [anon_sym_let] = ACTIONS(4292), - [anon_sym_let_BANG] = ACTIONS(4290), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_LPAREN] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_LBRACE_PIPE] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4292), - [anon_sym_return_BANG] = ACTIONS(4290), - [anon_sym_yield] = ACTIONS(4292), - [anon_sym_yield_BANG] = ACTIONS(4290), - [anon_sym_lazy] = ACTIONS(4292), - [anon_sym_assert] = ACTIONS(4292), - [anon_sym_upcast] = ACTIONS(4292), - [anon_sym_downcast] = ACTIONS(4292), - [anon_sym_LT_AT] = ACTIONS(4292), - [anon_sym_LT_AT_AT] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_match] = ACTIONS(4292), - [anon_sym_match_BANG] = ACTIONS(4290), - [anon_sym_function] = ACTIONS(4292), - [anon_sym_use] = ACTIONS(4292), - [anon_sym_use_BANG] = ACTIONS(4290), - [anon_sym_do_BANG] = ACTIONS(4290), - [anon_sym_begin] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [anon_sym_AT_DQUOTE] = ACTIONS(4290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4290), - [sym_bool] = ACTIONS(4292), - [sym_unit] = ACTIONS(4290), - [aux_sym__identifier_or_op_token1] = ACTIONS(4290), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4292), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_PLUS_DOT] = ACTIONS(4290), - [anon_sym_DASH_DOT] = ACTIONS(4290), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(4290), - [aux_sym_prefix_op_token1] = ACTIONS(4290), - [sym_int] = ACTIONS(4292), - [sym_xint] = ACTIONS(4290), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4290), }, [2315] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(825), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2315), [sym_block_comment] = STATE(2315), [sym_preproc_line] = STATE(2315), - [ts_builtin_sym_end] = ACTIONS(4294), - [sym_identifier] = ACTIONS(4296), - [anon_sym_namespace] = ACTIONS(4296), - [anon_sym_module] = ACTIONS(4296), - [anon_sym_POUNDnowarn] = ACTIONS(4294), - [anon_sym_POUNDr] = ACTIONS(4294), - [anon_sym_POUNDload] = ACTIONS(4294), - [anon_sym_open] = ACTIONS(4296), - [anon_sym_LBRACK_LT] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4296), - [anon_sym_type] = ACTIONS(4296), - [anon_sym_do] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4296), - [anon_sym_let] = ACTIONS(4296), - [anon_sym_let_BANG] = ACTIONS(4294), - [anon_sym_null] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_LBRACE_PIPE] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4296), - [anon_sym_return_BANG] = ACTIONS(4294), - [anon_sym_yield] = ACTIONS(4296), - [anon_sym_yield_BANG] = ACTIONS(4294), - [anon_sym_lazy] = ACTIONS(4296), - [anon_sym_assert] = ACTIONS(4296), - [anon_sym_upcast] = ACTIONS(4296), - [anon_sym_downcast] = ACTIONS(4296), - [anon_sym_LT_AT] = ACTIONS(4296), - [anon_sym_LT_AT_AT] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4296), - [anon_sym_while] = ACTIONS(4296), - [anon_sym_if] = ACTIONS(4296), - [anon_sym_fun] = ACTIONS(4296), - [anon_sym_try] = ACTIONS(4296), - [anon_sym_match] = ACTIONS(4296), - [anon_sym_match_BANG] = ACTIONS(4294), - [anon_sym_function] = ACTIONS(4296), - [anon_sym_use] = ACTIONS(4296), - [anon_sym_use_BANG] = ACTIONS(4294), - [anon_sym_do_BANG] = ACTIONS(4294), - [anon_sym_begin] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [anon_sym_AT_DQUOTE] = ACTIONS(4294), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4294), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4294), - [sym_bool] = ACTIONS(4296), - [sym_unit] = ACTIONS(4294), - [aux_sym__identifier_or_op_token1] = ACTIONS(4294), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4296), - [anon_sym_PLUS_DOT] = ACTIONS(4294), - [anon_sym_DASH_DOT] = ACTIONS(4294), - [anon_sym_PERCENT] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_TILDE] = ACTIONS(4294), - [aux_sym_prefix_op_token1] = ACTIONS(4294), - [sym_int] = ACTIONS(4296), - [sym_xint] = ACTIONS(4294), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4294), }, [2316] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3697), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2316), [sym_block_comment] = STATE(2316), [sym_preproc_line] = STATE(2316), - [ts_builtin_sym_end] = ACTIONS(4298), - [sym_identifier] = ACTIONS(4300), - [anon_sym_namespace] = ACTIONS(4300), - [anon_sym_module] = ACTIONS(4300), - [anon_sym_POUNDnowarn] = ACTIONS(4298), - [anon_sym_POUNDr] = ACTIONS(4298), - [anon_sym_POUNDload] = ACTIONS(4298), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_LBRACK_LT] = ACTIONS(4298), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_type] = ACTIONS(4300), - [anon_sym_do] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4300), - [anon_sym_let] = ACTIONS(4300), - [anon_sym_let_BANG] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(4300), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LBRACK_PIPE] = ACTIONS(4298), - [anon_sym_LBRACE] = ACTIONS(4300), - [anon_sym_LBRACE_PIPE] = ACTIONS(4298), - [anon_sym_new] = ACTIONS(4300), - [anon_sym_return_BANG] = ACTIONS(4298), - [anon_sym_yield] = ACTIONS(4300), - [anon_sym_yield_BANG] = ACTIONS(4298), - [anon_sym_lazy] = ACTIONS(4300), - [anon_sym_assert] = ACTIONS(4300), - [anon_sym_upcast] = ACTIONS(4300), - [anon_sym_downcast] = ACTIONS(4300), - [anon_sym_LT_AT] = ACTIONS(4300), - [anon_sym_LT_AT_AT] = ACTIONS(4298), - [anon_sym_for] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_match] = ACTIONS(4300), - [anon_sym_match_BANG] = ACTIONS(4298), - [anon_sym_function] = ACTIONS(4300), - [anon_sym_use] = ACTIONS(4300), - [anon_sym_use_BANG] = ACTIONS(4298), - [anon_sym_do_BANG] = ACTIONS(4298), - [anon_sym_begin] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4300), - [anon_sym_AT_DQUOTE] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4298), - [sym_bool] = ACTIONS(4300), - [sym_unit] = ACTIONS(4298), - [aux_sym__identifier_or_op_token1] = ACTIONS(4298), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_PLUS_DOT] = ACTIONS(4298), - [anon_sym_DASH_DOT] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(4298), - [aux_sym_prefix_op_token1] = ACTIONS(4298), - [sym_int] = ACTIONS(4300), - [sym_xint] = ACTIONS(4298), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_RBRACK] = ACTIONS(4333), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4298), }, [2317] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3818), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3865), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(939), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2317), [sym_block_comment] = STATE(2317), [sym_preproc_line] = STATE(2317), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2318] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3862), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1831), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2318), [sym_block_comment] = STATE(2318), [sym_preproc_line] = STATE(2318), - [ts_builtin_sym_end] = ACTIONS(4302), - [sym_identifier] = ACTIONS(4304), - [anon_sym_namespace] = ACTIONS(4304), - [anon_sym_module] = ACTIONS(4304), - [anon_sym_POUNDnowarn] = ACTIONS(4302), - [anon_sym_POUNDr] = ACTIONS(4302), - [anon_sym_POUNDload] = ACTIONS(4302), - [anon_sym_open] = ACTIONS(4304), - [anon_sym_LBRACK_LT] = ACTIONS(4302), - [anon_sym_return] = ACTIONS(4304), - [anon_sym_type] = ACTIONS(4304), - [anon_sym_do] = ACTIONS(4304), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_let] = ACTIONS(4304), - [anon_sym_let_BANG] = ACTIONS(4302), - [anon_sym_null] = ACTIONS(4304), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_LBRACK_PIPE] = ACTIONS(4302), - [anon_sym_LBRACE] = ACTIONS(4304), - [anon_sym_LBRACE_PIPE] = ACTIONS(4302), - [anon_sym_new] = ACTIONS(4304), - [anon_sym_return_BANG] = ACTIONS(4302), - [anon_sym_yield] = ACTIONS(4304), - [anon_sym_yield_BANG] = ACTIONS(4302), - [anon_sym_lazy] = ACTIONS(4304), - [anon_sym_assert] = ACTIONS(4304), - [anon_sym_upcast] = ACTIONS(4304), - [anon_sym_downcast] = ACTIONS(4304), - [anon_sym_LT_AT] = ACTIONS(4304), - [anon_sym_LT_AT_AT] = ACTIONS(4302), - [anon_sym_for] = ACTIONS(4304), - [anon_sym_while] = ACTIONS(4304), - [anon_sym_if] = ACTIONS(4304), - [anon_sym_fun] = ACTIONS(4304), - [anon_sym_try] = ACTIONS(4304), - [anon_sym_match] = ACTIONS(4304), - [anon_sym_match_BANG] = ACTIONS(4302), - [anon_sym_function] = ACTIONS(4304), - [anon_sym_use] = ACTIONS(4304), - [anon_sym_use_BANG] = ACTIONS(4302), - [anon_sym_do_BANG] = ACTIONS(4302), - [anon_sym_begin] = ACTIONS(4304), - [anon_sym_SQUOTE] = ACTIONS(4302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4304), - [anon_sym_DQUOTE] = ACTIONS(4304), - [anon_sym_AT_DQUOTE] = ACTIONS(4302), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4302), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4302), - [sym_bool] = ACTIONS(4304), - [sym_unit] = ACTIONS(4302), - [aux_sym__identifier_or_op_token1] = ACTIONS(4302), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS_DOT] = ACTIONS(4302), - [anon_sym_DASH_DOT] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [aux_sym_prefix_op_token1] = ACTIONS(4302), - [sym_int] = ACTIONS(4304), - [sym_xint] = ACTIONS(4302), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4302), }, [2319] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3844), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1336), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2319), [sym_block_comment] = STATE(2319), [sym_preproc_line] = STATE(2319), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4306), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2320] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3604), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3894), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1398), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2320), [sym_block_comment] = STATE(2320), [sym_preproc_line] = STATE(2320), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2321] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3900), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1619), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2321), [sym_block_comment] = STATE(2321), [sym_preproc_line] = STATE(2321), - [ts_builtin_sym_end] = ACTIONS(4308), - [sym_identifier] = ACTIONS(4310), - [anon_sym_namespace] = ACTIONS(4310), - [anon_sym_module] = ACTIONS(4310), - [anon_sym_POUNDnowarn] = ACTIONS(4308), - [anon_sym_POUNDr] = ACTIONS(4308), - [anon_sym_POUNDload] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4310), - [anon_sym_LBRACK_LT] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4310), - [anon_sym_type] = ACTIONS(4310), - [anon_sym_do] = ACTIONS(4310), - [anon_sym_and] = ACTIONS(4310), - [anon_sym_let] = ACTIONS(4310), - [anon_sym_let_BANG] = ACTIONS(4308), - [anon_sym_null] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACK_PIPE] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACE_PIPE] = ACTIONS(4308), - [anon_sym_new] = ACTIONS(4310), - [anon_sym_return_BANG] = ACTIONS(4308), - [anon_sym_yield] = ACTIONS(4310), - [anon_sym_yield_BANG] = ACTIONS(4308), - [anon_sym_lazy] = ACTIONS(4310), - [anon_sym_assert] = ACTIONS(4310), - [anon_sym_upcast] = ACTIONS(4310), - [anon_sym_downcast] = ACTIONS(4310), - [anon_sym_LT_AT] = ACTIONS(4310), - [anon_sym_LT_AT_AT] = ACTIONS(4308), - [anon_sym_for] = ACTIONS(4310), - [anon_sym_while] = ACTIONS(4310), - [anon_sym_if] = ACTIONS(4310), - [anon_sym_fun] = ACTIONS(4310), - [anon_sym_try] = ACTIONS(4310), - [anon_sym_match] = ACTIONS(4310), - [anon_sym_match_BANG] = ACTIONS(4308), - [anon_sym_function] = ACTIONS(4310), - [anon_sym_use] = ACTIONS(4310), - [anon_sym_use_BANG] = ACTIONS(4308), - [anon_sym_do_BANG] = ACTIONS(4308), - [anon_sym_begin] = ACTIONS(4310), - [anon_sym_SQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4310), - [anon_sym_DQUOTE] = ACTIONS(4310), - [anon_sym_AT_DQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4308), - [aux_sym__identifier_or_op_token1] = ACTIONS(4308), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_PLUS_DOT] = ACTIONS(4308), - [anon_sym_DASH_DOT] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4308), - [anon_sym_TILDE] = ACTIONS(4308), - [aux_sym_prefix_op_token1] = ACTIONS(4308), - [sym_int] = ACTIONS(4310), - [sym_xint] = ACTIONS(4308), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4308), }, [2322] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1341), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2322), [sym_block_comment] = STATE(2322), [sym_preproc_line] = STATE(2322), - [ts_builtin_sym_end] = ACTIONS(4312), - [sym_identifier] = ACTIONS(4314), - [anon_sym_namespace] = ACTIONS(4314), - [anon_sym_module] = ACTIONS(4314), - [anon_sym_POUNDnowarn] = ACTIONS(4312), - [anon_sym_POUNDr] = ACTIONS(4312), - [anon_sym_POUNDload] = ACTIONS(4312), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_LBRACK_LT] = ACTIONS(4312), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_type] = ACTIONS(4314), - [anon_sym_do] = ACTIONS(4314), - [anon_sym_and] = ACTIONS(4314), - [anon_sym_let] = ACTIONS(4314), - [anon_sym_let_BANG] = ACTIONS(4312), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_LPAREN] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4314), - [anon_sym_LBRACK_PIPE] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4314), - [anon_sym_LBRACE_PIPE] = ACTIONS(4312), - [anon_sym_new] = ACTIONS(4314), - [anon_sym_return_BANG] = ACTIONS(4312), - [anon_sym_yield] = ACTIONS(4314), - [anon_sym_yield_BANG] = ACTIONS(4312), - [anon_sym_lazy] = ACTIONS(4314), - [anon_sym_assert] = ACTIONS(4314), - [anon_sym_upcast] = ACTIONS(4314), - [anon_sym_downcast] = ACTIONS(4314), - [anon_sym_LT_AT] = ACTIONS(4314), - [anon_sym_LT_AT_AT] = ACTIONS(4312), - [anon_sym_for] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_match] = ACTIONS(4314), - [anon_sym_match_BANG] = ACTIONS(4312), - [anon_sym_function] = ACTIONS(4314), - [anon_sym_use] = ACTIONS(4314), - [anon_sym_use_BANG] = ACTIONS(4312), - [anon_sym_do_BANG] = ACTIONS(4312), - [anon_sym_begin] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [anon_sym_AT_DQUOTE] = ACTIONS(4312), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4312), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4312), - [sym_bool] = ACTIONS(4314), - [sym_unit] = ACTIONS(4312), - [aux_sym__identifier_or_op_token1] = ACTIONS(4312), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4314), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_PLUS_DOT] = ACTIONS(4312), - [anon_sym_DASH_DOT] = ACTIONS(4312), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_TILDE] = ACTIONS(4312), - [aux_sym_prefix_op_token1] = ACTIONS(4312), - [sym_int] = ACTIONS(4314), - [sym_xint] = ACTIONS(4312), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4312), }, [2323] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3726), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2323), [sym_block_comment] = STATE(2323), [sym_preproc_line] = STATE(2323), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_long_identifier_repeat1] = STATE(2333), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), }, [2324] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2901), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), [sym_xml_doc] = STATE(2324), [sym_block_comment] = STATE(2324), [sym_preproc_line] = STATE(2324), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym__function_or_value_defns_repeat1] = STATE(2324), + [ts_builtin_sym_end] = ACTIONS(4337), + [sym_identifier] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_POUNDnowarn] = ACTIONS(4337), + [anon_sym_POUNDr] = ACTIONS(4337), + [anon_sym_POUNDload] = ACTIONS(4337), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_LBRACK_LT] = ACTIONS(4337), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_type] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_and] = ACTIONS(4341), + [anon_sym_let] = ACTIONS(4339), + [anon_sym_let_BANG] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_LBRACK_PIPE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_LBRACE_PIPE] = ACTIONS(4337), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_return_BANG] = ACTIONS(4337), + [anon_sym_yield] = ACTIONS(4339), + [anon_sym_yield_BANG] = ACTIONS(4337), + [anon_sym_lazy] = ACTIONS(4339), + [anon_sym_assert] = ACTIONS(4339), + [anon_sym_upcast] = ACTIONS(4339), + [anon_sym_downcast] = ACTIONS(4339), + [anon_sym_LT_AT] = ACTIONS(4339), + [anon_sym_LT_AT_AT] = ACTIONS(4337), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_match] = ACTIONS(4339), + [anon_sym_match_BANG] = ACTIONS(4337), + [anon_sym_function] = ACTIONS(4339), + [anon_sym_use] = ACTIONS(4339), + [anon_sym_use_BANG] = ACTIONS(4337), + [anon_sym_do_BANG] = ACTIONS(4337), + [anon_sym_begin] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), + [anon_sym_DQUOTE] = ACTIONS(4339), + [anon_sym_AT_DQUOTE] = ACTIONS(4337), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4337), + [sym_bool] = ACTIONS(4339), + [sym_unit] = ACTIONS(4337), + [aux_sym__identifier_or_op_token1] = ACTIONS(4337), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS_DOT] = ACTIONS(4337), + [anon_sym_DASH_DOT] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [aux_sym_prefix_op_token1] = ACTIONS(4337), + [sym_int] = ACTIONS(4339), + [sym_xint] = ACTIONS(4337), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4337), }, [2325] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2823), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), [sym_xml_doc] = STATE(2325), [sym_block_comment] = STATE(2325), [sym_preproc_line] = STATE(2325), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4346), + [anon_sym_namespace] = ACTIONS(4346), + [anon_sym_module] = ACTIONS(4346), + [anon_sym_POUNDnowarn] = ACTIONS(4344), + [anon_sym_POUNDr] = ACTIONS(4344), + [anon_sym_POUNDload] = ACTIONS(4344), + [anon_sym_open] = ACTIONS(4346), + [anon_sym_LBRACK_LT] = ACTIONS(4344), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_type] = ACTIONS(4346), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_and] = ACTIONS(4346), + [anon_sym_let] = ACTIONS(4346), + [anon_sym_let_BANG] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LBRACK_PIPE] = ACTIONS(4344), + [anon_sym_LBRACE] = ACTIONS(4346), + [anon_sym_LBRACE_PIPE] = ACTIONS(4344), + [anon_sym_new] = ACTIONS(4346), + [anon_sym_return_BANG] = ACTIONS(4344), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_yield_BANG] = ACTIONS(4344), + [anon_sym_lazy] = ACTIONS(4346), + [anon_sym_assert] = ACTIONS(4346), + [anon_sym_upcast] = ACTIONS(4346), + [anon_sym_downcast] = ACTIONS(4346), + [anon_sym_LT_AT] = ACTIONS(4346), + [anon_sym_LT_AT_AT] = ACTIONS(4344), + [anon_sym_for] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_if] = ACTIONS(4346), + [anon_sym_fun] = ACTIONS(4346), + [anon_sym_try] = ACTIONS(4346), + [anon_sym_match] = ACTIONS(4346), + [anon_sym_match_BANG] = ACTIONS(4344), + [anon_sym_function] = ACTIONS(4346), + [anon_sym_use] = ACTIONS(4346), + [anon_sym_use_BANG] = ACTIONS(4344), + [anon_sym_do_BANG] = ACTIONS(4344), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_interface] = ACTIONS(4346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4346), + [anon_sym_AT_DQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4344), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4344), + [sym_bool] = ACTIONS(4346), + [sym_unit] = ACTIONS(4344), + [aux_sym__identifier_or_op_token1] = ACTIONS(4344), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(4346), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_PLUS_DOT] = ACTIONS(4344), + [anon_sym_DASH_DOT] = ACTIONS(4344), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [aux_sym_prefix_op_token1] = ACTIONS(4344), + [sym_int] = ACTIONS(4346), + [sym_xint] = ACTIONS(4344), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4344), }, [2326] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3657), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2326), [sym_block_comment] = STATE(2326), [sym_preproc_line] = STATE(2326), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym__function_or_value_defns_repeat1] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(4348), + [sym_identifier] = ACTIONS(4350), + [anon_sym_namespace] = ACTIONS(4350), + [anon_sym_module] = ACTIONS(4350), + [anon_sym_POUNDnowarn] = ACTIONS(4348), + [anon_sym_POUNDr] = ACTIONS(4348), + [anon_sym_POUNDload] = ACTIONS(4348), + [anon_sym_open] = ACTIONS(4350), + [anon_sym_LBRACK_LT] = ACTIONS(4348), + [anon_sym_return] = ACTIONS(4350), + [anon_sym_type] = ACTIONS(4350), + [anon_sym_do] = ACTIONS(4350), + [anon_sym_and] = ACTIONS(4295), + [anon_sym_let] = ACTIONS(4350), + [anon_sym_let_BANG] = ACTIONS(4348), + [anon_sym_null] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4350), + [anon_sym_AMP] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LBRACK_PIPE] = ACTIONS(4348), + [anon_sym_LBRACE] = ACTIONS(4350), + [anon_sym_LBRACE_PIPE] = ACTIONS(4348), + [anon_sym_new] = ACTIONS(4350), + [anon_sym_return_BANG] = ACTIONS(4348), + [anon_sym_yield] = ACTIONS(4350), + [anon_sym_yield_BANG] = ACTIONS(4348), + [anon_sym_lazy] = ACTIONS(4350), + [anon_sym_assert] = ACTIONS(4350), + [anon_sym_upcast] = ACTIONS(4350), + [anon_sym_downcast] = ACTIONS(4350), + [anon_sym_LT_AT] = ACTIONS(4350), + [anon_sym_LT_AT_AT] = ACTIONS(4348), + [anon_sym_for] = ACTIONS(4350), + [anon_sym_while] = ACTIONS(4350), + [anon_sym_if] = ACTIONS(4350), + [anon_sym_fun] = ACTIONS(4350), + [anon_sym_try] = ACTIONS(4350), + [anon_sym_match] = ACTIONS(4350), + [anon_sym_match_BANG] = ACTIONS(4348), + [anon_sym_function] = ACTIONS(4350), + [anon_sym_use] = ACTIONS(4350), + [anon_sym_use_BANG] = ACTIONS(4348), + [anon_sym_do_BANG] = ACTIONS(4348), + [anon_sym_begin] = ACTIONS(4350), + [anon_sym_SQUOTE] = ACTIONS(4348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4350), + [anon_sym_AT_DQUOTE] = ACTIONS(4348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4348), + [sym_bool] = ACTIONS(4350), + [sym_unit] = ACTIONS(4348), + [aux_sym__identifier_or_op_token1] = ACTIONS(4348), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS_DOT] = ACTIONS(4348), + [anon_sym_DASH_DOT] = ACTIONS(4348), + [anon_sym_PERCENT] = ACTIONS(4348), + [anon_sym_AMP_AMP] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [aux_sym_prefix_op_token1] = ACTIONS(4348), + [sym_int] = ACTIONS(4350), + [sym_xint] = ACTIONS(4348), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4348), }, [2327] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2824), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3883), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1357), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2327), [sym_block_comment] = STATE(2327), [sym_preproc_line] = STATE(2327), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2328] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3838), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2898), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2328), [sym_block_comment] = STATE(2328), [sym_preproc_line] = STATE(2328), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [aux_sym__method_defn_repeat1] = STATE(2272), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2329] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1584), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2329), [sym_block_comment] = STATE(2329), [sym_preproc_line] = STATE(2329), - [ts_builtin_sym_end] = ACTIONS(4316), - [sym_identifier] = ACTIONS(4318), - [anon_sym_namespace] = ACTIONS(4318), - [anon_sym_module] = ACTIONS(4318), - [anon_sym_POUNDnowarn] = ACTIONS(4316), - [anon_sym_POUNDr] = ACTIONS(4316), - [anon_sym_POUNDload] = ACTIONS(4316), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_LBRACK_LT] = ACTIONS(4316), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_type] = ACTIONS(4318), - [anon_sym_do] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_let_BANG] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_AMP] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_LBRACK_PIPE] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_LBRACE_PIPE] = ACTIONS(4316), - [anon_sym_new] = ACTIONS(4318), - [anon_sym_return_BANG] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4318), - [anon_sym_yield_BANG] = ACTIONS(4316), - [anon_sym_lazy] = ACTIONS(4318), - [anon_sym_assert] = ACTIONS(4318), - [anon_sym_upcast] = ACTIONS(4318), - [anon_sym_downcast] = ACTIONS(4318), - [anon_sym_LT_AT] = ACTIONS(4318), - [anon_sym_LT_AT_AT] = ACTIONS(4316), - [anon_sym_for] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_match] = ACTIONS(4318), - [anon_sym_match_BANG] = ACTIONS(4316), - [anon_sym_function] = ACTIONS(4318), - [anon_sym_use] = ACTIONS(4318), - [anon_sym_use_BANG] = ACTIONS(4316), - [anon_sym_do_BANG] = ACTIONS(4316), - [anon_sym_begin] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4318), - [anon_sym_DQUOTE] = ACTIONS(4318), - [anon_sym_AT_DQUOTE] = ACTIONS(4316), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4316), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4316), - [sym_bool] = ACTIONS(4318), - [sym_unit] = ACTIONS(4316), - [aux_sym__identifier_or_op_token1] = ACTIONS(4316), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_PLUS_DOT] = ACTIONS(4316), - [anon_sym_DASH_DOT] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [aux_sym_prefix_op_token1] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4316), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4316), }, [2330] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3731), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3874), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(1380), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2330), [sym_block_comment] = STATE(2330), [sym_preproc_line] = STATE(2330), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2331] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3876), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(850), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2331), [sym_block_comment] = STATE(2331), [sym_preproc_line] = STATE(2331), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2332] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2842), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3848), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_rule] = STATE(869), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2332), [sym_block_comment] = STATE(2332), [sym_preproc_line] = STATE(2332), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, @@ -271525,4587 +269790,4588 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xml_doc] = STATE(2333), [sym_block_comment] = STATE(2333), [sym_preproc_line] = STATE(2333), - [aux_sym__function_or_value_defns_repeat1] = STATE(2284), - [sym_identifier] = ACTIONS(4228), - [anon_sym_module] = ACTIONS(4228), - [anon_sym_POUNDnowarn] = ACTIONS(4226), - [anon_sym_POUNDr] = ACTIONS(4226), - [anon_sym_POUNDload] = ACTIONS(4226), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_LBRACK_LT] = ACTIONS(4226), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_type] = ACTIONS(4228), - [anon_sym_do] = ACTIONS(4228), - [anon_sym_and] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4228), - [anon_sym_let_BANG] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym_AMP] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4228), - [anon_sym_LBRACK_PIPE] = ACTIONS(4226), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_LBRACE_PIPE] = ACTIONS(4226), - [anon_sym_new] = ACTIONS(4228), - [anon_sym_return_BANG] = ACTIONS(4226), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_yield_BANG] = ACTIONS(4226), - [anon_sym_lazy] = ACTIONS(4228), - [anon_sym_assert] = ACTIONS(4228), - [anon_sym_upcast] = ACTIONS(4228), - [anon_sym_downcast] = ACTIONS(4228), - [anon_sym_LT_AT] = ACTIONS(4228), - [anon_sym_LT_AT_AT] = ACTIONS(4226), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_match_BANG] = ACTIONS(4226), - [anon_sym_function] = ACTIONS(4228), - [anon_sym_use] = ACTIONS(4228), - [anon_sym_use_BANG] = ACTIONS(4226), - [anon_sym_do_BANG] = ACTIONS(4226), - [anon_sym_begin] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4228), - [anon_sym_DQUOTE] = ACTIONS(4228), - [anon_sym_AT_DQUOTE] = ACTIONS(4226), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4226), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4226), - [sym_bool] = ACTIONS(4228), - [sym_unit] = ACTIONS(4226), - [aux_sym__identifier_or_op_token1] = ACTIONS(4226), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_PLUS_DOT] = ACTIONS(4226), - [anon_sym_DASH_DOT] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_TILDE] = ACTIONS(4226), - [aux_sym_prefix_op_token1] = ACTIONS(4226), - [sym_int] = ACTIONS(4228), - [sym_xint] = ACTIONS(4226), + [aux_sym_long_identifier_repeat1] = STATE(2306), + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2594), + [anon_sym_namespace] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4226), - [sym__dedent] = ACTIONS(4226), + [anon_sym_POUNDif] = ACTIONS(2596), }, [2334] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3652), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2770), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2334), [sym_block_comment] = STATE(2334), [sym_preproc_line] = STATE(2334), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2335] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3847), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2941), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2335), [sym_block_comment] = STATE(2335), [sym_preproc_line] = STATE(2335), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2336] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2839), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2856), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2336), [sym_block_comment] = STATE(2336), [sym_preproc_line] = STATE(2336), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2337] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3761), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2337), [sym_block_comment] = STATE(2337), [sym_preproc_line] = STATE(2337), - [ts_builtin_sym_end] = ACTIONS(4322), - [sym_identifier] = ACTIONS(4324), - [anon_sym_namespace] = ACTIONS(4324), - [anon_sym_module] = ACTIONS(4324), - [anon_sym_POUNDnowarn] = ACTIONS(4322), - [anon_sym_POUNDr] = ACTIONS(4322), - [anon_sym_POUNDload] = ACTIONS(4322), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_LBRACK_LT] = ACTIONS(4322), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_type] = ACTIONS(4324), - [anon_sym_do] = ACTIONS(4324), - [anon_sym_and] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_let_BANG] = ACTIONS(4322), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LBRACK_PIPE] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_LBRACE_PIPE] = ACTIONS(4322), - [anon_sym_new] = ACTIONS(4324), - [anon_sym_return_BANG] = ACTIONS(4322), - [anon_sym_yield] = ACTIONS(4324), - [anon_sym_yield_BANG] = ACTIONS(4322), - [anon_sym_lazy] = ACTIONS(4324), - [anon_sym_assert] = ACTIONS(4324), - [anon_sym_upcast] = ACTIONS(4324), - [anon_sym_downcast] = ACTIONS(4324), - [anon_sym_LT_AT] = ACTIONS(4324), - [anon_sym_LT_AT_AT] = ACTIONS(4322), - [anon_sym_for] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_match] = ACTIONS(4324), - [anon_sym_match_BANG] = ACTIONS(4322), - [anon_sym_function] = ACTIONS(4324), - [anon_sym_use] = ACTIONS(4324), - [anon_sym_use_BANG] = ACTIONS(4322), - [anon_sym_do_BANG] = ACTIONS(4322), - [anon_sym_begin] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4324), - [anon_sym_DQUOTE] = ACTIONS(4324), - [anon_sym_AT_DQUOTE] = ACTIONS(4322), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4322), - [sym_bool] = ACTIONS(4324), - [sym_unit] = ACTIONS(4322), - [aux_sym__identifier_or_op_token1] = ACTIONS(4322), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_PLUS_DOT] = ACTIONS(4322), - [anon_sym_DASH_DOT] = ACTIONS(4322), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_TILDE] = ACTIONS(4322), - [aux_sym_prefix_op_token1] = ACTIONS(4322), - [sym_int] = ACTIONS(4324), - [sym_xint] = ACTIONS(4322), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4322), }, [2338] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3843), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3508), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2338), [sym_block_comment] = STATE(2338), [sym_preproc_line] = STATE(2338), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4326), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2339] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2943), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2339), [sym_block_comment] = STATE(2339), [sym_preproc_line] = STATE(2339), - [sym_identifier] = ACTIONS(4194), - [anon_sym_module] = ACTIONS(4194), - [anon_sym_POUNDnowarn] = ACTIONS(4192), - [anon_sym_POUNDr] = ACTIONS(4192), - [anon_sym_POUNDload] = ACTIONS(4192), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_LBRACK_LT] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_type] = ACTIONS(4194), - [anon_sym_do] = ACTIONS(4194), - [anon_sym_and] = ACTIONS(4194), - [anon_sym_let] = ACTIONS(4194), - [anon_sym_let_BANG] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_LPAREN] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym_LBRACK] = ACTIONS(4194), - [anon_sym_LBRACK_PIPE] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_LBRACE_PIPE] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4194), - [anon_sym_return_BANG] = ACTIONS(4192), - [anon_sym_yield] = ACTIONS(4194), - [anon_sym_yield_BANG] = ACTIONS(4192), - [anon_sym_lazy] = ACTIONS(4194), - [anon_sym_assert] = ACTIONS(4194), - [anon_sym_upcast] = ACTIONS(4194), - [anon_sym_downcast] = ACTIONS(4194), - [anon_sym_LT_AT] = ACTIONS(4194), - [anon_sym_LT_AT_AT] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_match] = ACTIONS(4194), - [anon_sym_match_BANG] = ACTIONS(4192), - [anon_sym_function] = ACTIONS(4194), - [anon_sym_use] = ACTIONS(4194), - [anon_sym_use_BANG] = ACTIONS(4192), - [anon_sym_do_BANG] = ACTIONS(4192), - [anon_sym_begin] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4192), - [anon_sym_interface] = ACTIONS(4194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [anon_sym_AT_DQUOTE] = ACTIONS(4192), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4192), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4192), - [sym_bool] = ACTIONS(4194), - [sym_unit] = ACTIONS(4192), - [aux_sym__identifier_or_op_token1] = ACTIONS(4192), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4194), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_PLUS_DOT] = ACTIONS(4192), - [anon_sym_DASH_DOT] = ACTIONS(4192), - [anon_sym_PERCENT] = ACTIONS(4192), - [anon_sym_AMP_AMP] = ACTIONS(4192), - [anon_sym_TILDE] = ACTIONS(4192), - [aux_sym_prefix_op_token1] = ACTIONS(4192), - [sym_int] = ACTIONS(4194), - [sym_xint] = ACTIONS(4192), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4192), - [sym__dedent] = ACTIONS(4192), }, [2340] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3833), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2340), [sym_block_comment] = STATE(2340), [sym_preproc_line] = STATE(2340), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [sym_identifier] = ACTIONS(4346), + [anon_sym_module] = ACTIONS(4346), + [anon_sym_POUNDnowarn] = ACTIONS(4344), + [anon_sym_POUNDr] = ACTIONS(4344), + [anon_sym_POUNDload] = ACTIONS(4344), + [anon_sym_open] = ACTIONS(4346), + [anon_sym_LBRACK_LT] = ACTIONS(4344), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_type] = ACTIONS(4346), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_and] = ACTIONS(4346), + [anon_sym_let] = ACTIONS(4346), + [anon_sym_let_BANG] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_AMP] = ACTIONS(4346), + [anon_sym_LBRACK] = ACTIONS(4346), + [anon_sym_LBRACK_PIPE] = ACTIONS(4344), + [anon_sym_LBRACE] = ACTIONS(4346), + [anon_sym_LBRACE_PIPE] = ACTIONS(4344), + [anon_sym_new] = ACTIONS(4346), + [anon_sym_return_BANG] = ACTIONS(4344), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_yield_BANG] = ACTIONS(4344), + [anon_sym_lazy] = ACTIONS(4346), + [anon_sym_assert] = ACTIONS(4346), + [anon_sym_upcast] = ACTIONS(4346), + [anon_sym_downcast] = ACTIONS(4346), + [anon_sym_LT_AT] = ACTIONS(4346), + [anon_sym_LT_AT_AT] = ACTIONS(4344), + [anon_sym_for] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_if] = ACTIONS(4346), + [anon_sym_fun] = ACTIONS(4346), + [anon_sym_try] = ACTIONS(4346), + [anon_sym_match] = ACTIONS(4346), + [anon_sym_match_BANG] = ACTIONS(4344), + [anon_sym_function] = ACTIONS(4346), + [anon_sym_use] = ACTIONS(4346), + [anon_sym_use_BANG] = ACTIONS(4344), + [anon_sym_do_BANG] = ACTIONS(4344), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_interface] = ACTIONS(4346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4346), + [anon_sym_AT_DQUOTE] = ACTIONS(4344), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4344), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4344), + [sym_bool] = ACTIONS(4346), + [sym_unit] = ACTIONS(4344), + [aux_sym__identifier_or_op_token1] = ACTIONS(4344), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4346), + [anon_sym_PLUS] = ACTIONS(4346), + [anon_sym_DASH] = ACTIONS(4346), + [anon_sym_PLUS_DOT] = ACTIONS(4344), + [anon_sym_DASH_DOT] = ACTIONS(4344), + [anon_sym_PERCENT] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [aux_sym_prefix_op_token1] = ACTIONS(4344), + [sym_int] = ACTIONS(4346), + [sym_xint] = ACTIONS(4344), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4344), + [sym__dedent] = ACTIONS(4344), }, [2341] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3622), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3826), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2341), [sym_block_comment] = STATE(2341), [sym_preproc_line] = STATE(2341), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2342] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3831), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2342), [sym_block_comment] = STATE(2342), [sym_preproc_line] = STATE(2342), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_POUNDnowarn] = ACTIONS(4156), + [anon_sym_POUNDr] = ACTIONS(4156), + [anon_sym_POUNDload] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_LBRACK_LT] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_and] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(4158), + [anon_sym_let_BANG] = ACTIONS(4156), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_LBRACK_PIPE] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LBRACE_PIPE] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_return_BANG] = ACTIONS(4156), + [anon_sym_yield] = ACTIONS(4158), + [anon_sym_yield_BANG] = ACTIONS(4156), + [anon_sym_lazy] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_upcast] = ACTIONS(4158), + [anon_sym_downcast] = ACTIONS(4158), + [anon_sym_LT_AT] = ACTIONS(4158), + [anon_sym_LT_AT_AT] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_match_BANG] = ACTIONS(4156), + [anon_sym_function] = ACTIONS(4158), + [anon_sym_use] = ACTIONS(4158), + [anon_sym_use_BANG] = ACTIONS(4156), + [anon_sym_do_BANG] = ACTIONS(4156), + [anon_sym_begin] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [anon_sym_AT_DQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [sym_bool] = ACTIONS(4158), + [sym_unit] = ACTIONS(4156), + [aux_sym__identifier_or_op_token1] = ACTIONS(4156), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS_DOT] = ACTIONS(4156), + [anon_sym_DASH_DOT] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [aux_sym_prefix_op_token1] = ACTIONS(4156), + [sym_int] = ACTIONS(4158), + [sym_xint] = ACTIONS(4156), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4156), }, [2343] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3603), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2853), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2343), [sym_block_comment] = STATE(2343), [sym_preproc_line] = STATE(2343), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2344] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3437), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2944), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2344), [sym_block_comment] = STATE(2344), [sym_preproc_line] = STATE(2344), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2345] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3468), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3942), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2345), [sym_block_comment] = STATE(2345), [sym_preproc_line] = STATE(2345), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2346] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3765), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2346), [sym_block_comment] = STATE(2346), [sym_preproc_line] = STATE(2346), - [ts_builtin_sym_end] = ACTIONS(4328), - [sym_identifier] = ACTIONS(4330), - [anon_sym_namespace] = ACTIONS(4330), - [anon_sym_module] = ACTIONS(4330), - [anon_sym_POUNDnowarn] = ACTIONS(4328), - [anon_sym_POUNDr] = ACTIONS(4328), - [anon_sym_POUNDload] = ACTIONS(4328), - [anon_sym_open] = ACTIONS(4330), - [anon_sym_LBRACK_LT] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4330), - [anon_sym_type] = ACTIONS(4330), - [anon_sym_do] = ACTIONS(4330), - [anon_sym_and] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_let_BANG] = ACTIONS(4328), - [anon_sym_null] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(4330), - [anon_sym_AMP] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(4330), - [anon_sym_LBRACK_PIPE] = ACTIONS(4328), - [anon_sym_LBRACE] = ACTIONS(4330), - [anon_sym_LBRACE_PIPE] = ACTIONS(4328), - [anon_sym_new] = ACTIONS(4330), - [anon_sym_return_BANG] = ACTIONS(4328), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_yield_BANG] = ACTIONS(4328), - [anon_sym_lazy] = ACTIONS(4330), - [anon_sym_assert] = ACTIONS(4330), - [anon_sym_upcast] = ACTIONS(4330), - [anon_sym_downcast] = ACTIONS(4330), - [anon_sym_LT_AT] = ACTIONS(4330), - [anon_sym_LT_AT_AT] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4330), - [anon_sym_while] = ACTIONS(4330), - [anon_sym_if] = ACTIONS(4330), - [anon_sym_fun] = ACTIONS(4330), - [anon_sym_try] = ACTIONS(4330), - [anon_sym_match] = ACTIONS(4330), - [anon_sym_match_BANG] = ACTIONS(4328), - [anon_sym_function] = ACTIONS(4330), - [anon_sym_use] = ACTIONS(4330), - [anon_sym_use_BANG] = ACTIONS(4328), - [anon_sym_do_BANG] = ACTIONS(4328), - [anon_sym_begin] = ACTIONS(4330), - [anon_sym_SQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4330), - [anon_sym_DQUOTE] = ACTIONS(4330), - [anon_sym_AT_DQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4328), - [sym_bool] = ACTIONS(4330), - [sym_unit] = ACTIONS(4328), - [aux_sym__identifier_or_op_token1] = ACTIONS(4328), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4330), - [anon_sym_PLUS] = ACTIONS(4330), - [anon_sym_DASH] = ACTIONS(4330), - [anon_sym_PLUS_DOT] = ACTIONS(4328), - [anon_sym_DASH_DOT] = ACTIONS(4328), - [anon_sym_PERCENT] = ACTIONS(4328), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_TILDE] = ACTIONS(4328), - [aux_sym_prefix_op_token1] = ACTIONS(4328), - [sym_int] = ACTIONS(4330), - [sym_xint] = ACTIONS(4328), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4328), }, [2347] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2693), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2773), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2347), [sym_block_comment] = STATE(2347), [sym_preproc_line] = STATE(2347), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2348] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2843), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2348), [sym_block_comment] = STATE(2348), [sym_preproc_line] = STATE(2348), - [ts_builtin_sym_end] = ACTIONS(4332), - [sym_identifier] = ACTIONS(4334), - [anon_sym_namespace] = ACTIONS(4334), - [anon_sym_module] = ACTIONS(4334), - [anon_sym_POUNDnowarn] = ACTIONS(4332), - [anon_sym_POUNDr] = ACTIONS(4332), - [anon_sym_POUNDload] = ACTIONS(4332), - [anon_sym_open] = ACTIONS(4334), - [anon_sym_LBRACK_LT] = ACTIONS(4332), - [anon_sym_return] = ACTIONS(4334), - [anon_sym_type] = ACTIONS(4334), - [anon_sym_do] = ACTIONS(4334), - [anon_sym_and] = ACTIONS(4334), - [anon_sym_let] = ACTIONS(4334), - [anon_sym_let_BANG] = ACTIONS(4332), - [anon_sym_null] = ACTIONS(4334), - [anon_sym_LPAREN] = ACTIONS(4334), - [anon_sym_AMP] = ACTIONS(4334), - [anon_sym_LBRACK] = ACTIONS(4334), - [anon_sym_LBRACK_PIPE] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(4334), - [anon_sym_LBRACE_PIPE] = ACTIONS(4332), - [anon_sym_new] = ACTIONS(4334), - [anon_sym_return_BANG] = ACTIONS(4332), - [anon_sym_yield] = ACTIONS(4334), - [anon_sym_yield_BANG] = ACTIONS(4332), - [anon_sym_lazy] = ACTIONS(4334), - [anon_sym_assert] = ACTIONS(4334), - [anon_sym_upcast] = ACTIONS(4334), - [anon_sym_downcast] = ACTIONS(4334), - [anon_sym_LT_AT] = ACTIONS(4334), - [anon_sym_LT_AT_AT] = ACTIONS(4332), - [anon_sym_for] = ACTIONS(4334), - [anon_sym_while] = ACTIONS(4334), - [anon_sym_if] = ACTIONS(4334), - [anon_sym_fun] = ACTIONS(4334), - [anon_sym_try] = ACTIONS(4334), - [anon_sym_match] = ACTIONS(4334), - [anon_sym_match_BANG] = ACTIONS(4332), - [anon_sym_function] = ACTIONS(4334), - [anon_sym_use] = ACTIONS(4334), - [anon_sym_use_BANG] = ACTIONS(4332), - [anon_sym_do_BANG] = ACTIONS(4332), - [anon_sym_begin] = ACTIONS(4334), - [anon_sym_SQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), - [anon_sym_DQUOTE] = ACTIONS(4334), - [anon_sym_AT_DQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4332), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4332), - [sym_bool] = ACTIONS(4334), - [sym_unit] = ACTIONS(4332), - [aux_sym__identifier_or_op_token1] = ACTIONS(4332), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4334), - [anon_sym_PLUS] = ACTIONS(4334), - [anon_sym_DASH] = ACTIONS(4334), - [anon_sym_PLUS_DOT] = ACTIONS(4332), - [anon_sym_DASH_DOT] = ACTIONS(4332), - [anon_sym_PERCENT] = ACTIONS(4332), - [anon_sym_AMP_AMP] = ACTIONS(4332), - [anon_sym_TILDE] = ACTIONS(4332), - [aux_sym_prefix_op_token1] = ACTIONS(4332), - [sym_int] = ACTIONS(4334), - [sym_xint] = ACTIONS(4332), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4332), }, [2349] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3821), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3924), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2349), [sym_block_comment] = STATE(2349), [sym_preproc_line] = STATE(2349), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2350] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3815), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3827), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2350), [sym_block_comment] = STATE(2350), [sym_preproc_line] = STATE(2350), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4336), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2351] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3840), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2847), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2351), [sym_block_comment] = STATE(2351), [sym_preproc_line] = STATE(2351), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4338), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2352] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3873), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2771), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2352), [sym_block_comment] = STATE(2352), [sym_preproc_line] = STATE(2352), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4340), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2353] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3681), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2353), [sym_block_comment] = STATE(2353), [sym_preproc_line] = STATE(2353), - [ts_builtin_sym_end] = ACTIONS(4342), - [sym_identifier] = ACTIONS(4344), - [anon_sym_namespace] = ACTIONS(4344), - [anon_sym_module] = ACTIONS(4344), - [anon_sym_POUNDnowarn] = ACTIONS(4342), - [anon_sym_POUNDr] = ACTIONS(4342), - [anon_sym_POUNDload] = ACTIONS(4342), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_LBRACK_LT] = ACTIONS(4342), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_type] = ACTIONS(4344), - [anon_sym_do] = ACTIONS(4344), - [anon_sym_and] = ACTIONS(4344), - [anon_sym_let] = ACTIONS(4344), - [anon_sym_let_BANG] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym_AMP] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4344), - [anon_sym_LBRACK_PIPE] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_LBRACE_PIPE] = ACTIONS(4342), - [anon_sym_new] = ACTIONS(4344), - [anon_sym_return_BANG] = ACTIONS(4342), - [anon_sym_yield] = ACTIONS(4344), - [anon_sym_yield_BANG] = ACTIONS(4342), - [anon_sym_lazy] = ACTIONS(4344), - [anon_sym_assert] = ACTIONS(4344), - [anon_sym_upcast] = ACTIONS(4344), - [anon_sym_downcast] = ACTIONS(4344), - [anon_sym_LT_AT] = ACTIONS(4344), - [anon_sym_LT_AT_AT] = ACTIONS(4342), - [anon_sym_for] = ACTIONS(4344), - [anon_sym_while] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_match] = ACTIONS(4344), - [anon_sym_match_BANG] = ACTIONS(4342), - [anon_sym_function] = ACTIONS(4344), - [anon_sym_use] = ACTIONS(4344), - [anon_sym_use_BANG] = ACTIONS(4342), - [anon_sym_do_BANG] = ACTIONS(4342), - [anon_sym_begin] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_DQUOTE] = ACTIONS(4344), - [anon_sym_AT_DQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [sym_bool] = ACTIONS(4344), - [sym_unit] = ACTIONS(4342), - [aux_sym__identifier_or_op_token1] = ACTIONS(4342), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4344), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_PLUS_DOT] = ACTIONS(4342), - [anon_sym_DASH_DOT] = ACTIONS(4342), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_TILDE] = ACTIONS(4342), - [aux_sym_prefix_op_token1] = ACTIONS(4342), - [sym_int] = ACTIONS(4344), - [sym_xint] = ACTIONS(4342), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4342), }, [2354] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3814), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3965), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2354), [sym_block_comment] = STATE(2354), [sym_preproc_line] = STATE(2354), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2355] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2722), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2833), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2355), [sym_block_comment] = STATE(2355), [sym_preproc_line] = STATE(2355), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2356] = { + [sym_attributes] = STATE(2343), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2837), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2152), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2356), [sym_block_comment] = STATE(2356), [sym_preproc_line] = STATE(2356), - [ts_builtin_sym_end] = ACTIONS(4346), - [sym_identifier] = ACTIONS(4348), - [anon_sym_namespace] = ACTIONS(4348), - [anon_sym_module] = ACTIONS(4348), - [anon_sym_POUNDnowarn] = ACTIONS(4346), - [anon_sym_POUNDr] = ACTIONS(4346), - [anon_sym_POUNDload] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4348), - [anon_sym_LBRACK_LT] = ACTIONS(4346), - [anon_sym_return] = ACTIONS(4348), - [anon_sym_type] = ACTIONS(4348), - [anon_sym_do] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4348), - [anon_sym_let] = ACTIONS(4348), - [anon_sym_let_BANG] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_AMP] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_LBRACK_PIPE] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_LBRACE_PIPE] = ACTIONS(4346), - [anon_sym_new] = ACTIONS(4348), - [anon_sym_return_BANG] = ACTIONS(4346), - [anon_sym_yield] = ACTIONS(4348), - [anon_sym_yield_BANG] = ACTIONS(4346), - [anon_sym_lazy] = ACTIONS(4348), - [anon_sym_assert] = ACTIONS(4348), - [anon_sym_upcast] = ACTIONS(4348), - [anon_sym_downcast] = ACTIONS(4348), - [anon_sym_LT_AT] = ACTIONS(4348), - [anon_sym_LT_AT_AT] = ACTIONS(4346), - [anon_sym_for] = ACTIONS(4348), - [anon_sym_while] = ACTIONS(4348), - [anon_sym_if] = ACTIONS(4348), - [anon_sym_fun] = ACTIONS(4348), - [anon_sym_try] = ACTIONS(4348), - [anon_sym_match] = ACTIONS(4348), - [anon_sym_match_BANG] = ACTIONS(4346), - [anon_sym_function] = ACTIONS(4348), - [anon_sym_use] = ACTIONS(4348), - [anon_sym_use_BANG] = ACTIONS(4346), - [anon_sym_do_BANG] = ACTIONS(4346), - [anon_sym_begin] = ACTIONS(4348), - [anon_sym_SQUOTE] = ACTIONS(4346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4348), - [anon_sym_DQUOTE] = ACTIONS(4348), - [anon_sym_AT_DQUOTE] = ACTIONS(4346), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4346), - [sym_bool] = ACTIONS(4348), - [sym_unit] = ACTIONS(4346), - [aux_sym__identifier_or_op_token1] = ACTIONS(4346), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4348), - [anon_sym_DASH] = ACTIONS(4348), - [anon_sym_PLUS_DOT] = ACTIONS(4346), - [anon_sym_DASH_DOT] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_TILDE] = ACTIONS(4346), - [aux_sym_prefix_op_token1] = ACTIONS(4346), - [sym_int] = ACTIONS(4348), - [sym_xint] = ACTIONS(4346), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4346), }, [2357] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3598), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2938), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2357), [sym_block_comment] = STATE(2357), [sym_preproc_line] = STATE(2357), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2358] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3794), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2358), [sym_block_comment] = STATE(2358), [sym_preproc_line] = STATE(2358), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2359] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3868), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2359), - [sym_block_comment] = STATE(2359), - [sym_preproc_line] = STATE(2359), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4306), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2360] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3793), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2360), - [sym_block_comment] = STATE(2360), - [sym_preproc_line] = STATE(2360), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2361] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2765), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), - [sym_xml_doc] = STATE(2361), - [sym_block_comment] = STATE(2361), - [sym_preproc_line] = STATE(2361), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2362] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3791), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2362), - [sym_block_comment] = STATE(2362), - [sym_preproc_line] = STATE(2362), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2363] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3846), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2363), - [sym_block_comment] = STATE(2363), - [sym_preproc_line] = STATE(2363), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4350), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), - [aux_sym_preproc_line_token1] = ACTIONS(9), - }, - [2364] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3694), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), - [sym_xml_doc] = STATE(2364), - [sym_block_comment] = STATE(2364), - [sym_preproc_line] = STATE(2364), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), - [sym_line_comment] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(4388), + [sym_identifier] = ACTIONS(4390), + [anon_sym_namespace] = ACTIONS(4390), + [anon_sym_module] = ACTIONS(4390), + [anon_sym_POUNDnowarn] = ACTIONS(4388), + [anon_sym_POUNDr] = ACTIONS(4388), + [anon_sym_POUNDload] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_LBRACK_LT] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_let] = ACTIONS(4390), + [anon_sym_let_BANG] = ACTIONS(4388), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_LBRACK_PIPE] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_PIPE] = ACTIONS(4388), + [anon_sym_new] = ACTIONS(4390), + [anon_sym_return_BANG] = ACTIONS(4388), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_yield_BANG] = ACTIONS(4388), + [anon_sym_lazy] = ACTIONS(4390), + [anon_sym_assert] = ACTIONS(4390), + [anon_sym_upcast] = ACTIONS(4390), + [anon_sym_downcast] = ACTIONS(4390), + [anon_sym_LT_AT] = ACTIONS(4390), + [anon_sym_LT_AT_AT] = ACTIONS(4388), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_match_BANG] = ACTIONS(4388), + [anon_sym_function] = ACTIONS(4390), + [anon_sym_use] = ACTIONS(4390), + [anon_sym_use_BANG] = ACTIONS(4388), + [anon_sym_do_BANG] = ACTIONS(4388), + [anon_sym_begin] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_DQUOTE] = ACTIONS(4390), + [anon_sym_AT_DQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), + [sym_bool] = ACTIONS(4390), + [sym_unit] = ACTIONS(4388), + [aux_sym__identifier_or_op_token1] = ACTIONS(4388), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_PLUS_DOT] = ACTIONS(4388), + [anon_sym_DASH_DOT] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_TILDE] = ACTIONS(4388), + [aux_sym_prefix_op_token1] = ACTIONS(4388), + [sym_int] = ACTIONS(4390), + [sym_xint] = ACTIONS(4388), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4388), + }, + [2359] = { + [sym_xml_doc] = STATE(2359), + [sym_block_comment] = STATE(2359), + [sym_preproc_line] = STATE(2359), + [sym_identifier] = ACTIONS(4320), + [anon_sym_module] = ACTIONS(4320), + [anon_sym_POUNDnowarn] = ACTIONS(4318), + [anon_sym_POUNDr] = ACTIONS(4318), + [anon_sym_POUNDload] = ACTIONS(4318), + [anon_sym_open] = ACTIONS(4320), + [anon_sym_LBRACK_LT] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4320), + [anon_sym_type] = ACTIONS(4320), + [anon_sym_do] = ACTIONS(4320), + [anon_sym_and] = ACTIONS(4320), + [anon_sym_let] = ACTIONS(4320), + [anon_sym_let_BANG] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4320), + [anon_sym_LBRACK] = ACTIONS(4320), + [anon_sym_LBRACK_PIPE] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_LBRACE_PIPE] = ACTIONS(4318), + [anon_sym_new] = ACTIONS(4320), + [anon_sym_return_BANG] = ACTIONS(4318), + [anon_sym_yield] = ACTIONS(4320), + [anon_sym_yield_BANG] = ACTIONS(4318), + [anon_sym_lazy] = ACTIONS(4320), + [anon_sym_assert] = ACTIONS(4320), + [anon_sym_upcast] = ACTIONS(4320), + [anon_sym_downcast] = ACTIONS(4320), + [anon_sym_LT_AT] = ACTIONS(4320), + [anon_sym_LT_AT_AT] = ACTIONS(4318), + [anon_sym_for] = ACTIONS(4320), + [anon_sym_while] = ACTIONS(4320), + [anon_sym_if] = ACTIONS(4320), + [anon_sym_fun] = ACTIONS(4320), + [anon_sym_try] = ACTIONS(4320), + [anon_sym_match] = ACTIONS(4320), + [anon_sym_match_BANG] = ACTIONS(4318), + [anon_sym_function] = ACTIONS(4320), + [anon_sym_use] = ACTIONS(4320), + [anon_sym_use_BANG] = ACTIONS(4318), + [anon_sym_do_BANG] = ACTIONS(4318), + [anon_sym_begin] = ACTIONS(4320), + [anon_sym_SQUOTE] = ACTIONS(4318), + [anon_sym_interface] = ACTIONS(4320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4320), + [anon_sym_DQUOTE] = ACTIONS(4320), + [anon_sym_AT_DQUOTE] = ACTIONS(4318), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4318), + [sym_bool] = ACTIONS(4320), + [sym_unit] = ACTIONS(4318), + [aux_sym__identifier_or_op_token1] = ACTIONS(4318), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4320), + [anon_sym_PLUS] = ACTIONS(4320), + [anon_sym_DASH] = ACTIONS(4320), + [anon_sym_PLUS_DOT] = ACTIONS(4318), + [anon_sym_DASH_DOT] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_AMP_AMP] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(4318), + [aux_sym_prefix_op_token1] = ACTIONS(4318), + [sym_int] = ACTIONS(4320), + [sym_xint] = ACTIONS(4318), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4318), + [sym__dedent] = ACTIONS(4318), + }, + [2360] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3820), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2360), + [sym_block_comment] = STATE(2360), + [sym_preproc_line] = STATE(2360), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2361] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2936), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), + [sym_xml_doc] = STATE(2361), + [sym_block_comment] = STATE(2361), + [sym_preproc_line] = STATE(2361), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2362] = { + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3797), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), + [sym_xml_doc] = STATE(2362), + [sym_block_comment] = STATE(2362), + [sym_preproc_line] = STATE(2362), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + }, + [2363] = { + [sym_xml_doc] = STATE(2363), + [sym_block_comment] = STATE(2363), + [sym_preproc_line] = STATE(2363), + [aux_sym_long_identifier_repeat1] = STATE(2452), + [sym_identifier] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_POUNDnowarn] = ACTIONS(2523), + [anon_sym_POUNDr] = ACTIONS(2523), + [anon_sym_POUNDload] = ACTIONS(2523), + [anon_sym_open] = ACTIONS(2517), + [anon_sym_LBRACK_LT] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__dedent] = ACTIONS(2523), + }, + [2364] = { + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2933), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), + [sym_xml_doc] = STATE(2364), + [sym_block_comment] = STATE(2364), + [sym_preproc_line] = STATE(2364), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), + [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2365] = { - [sym_attributes] = STATE(2323), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3809), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2066), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3811), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2365), [sym_block_comment] = STATE(2365), [sym_preproc_line] = STATE(2365), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3824), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2366] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2757), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), [sym_xml_doc] = STATE(2366), [sym_block_comment] = STATE(2366), [sym_preproc_line] = STATE(2366), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [ts_builtin_sym_end] = ACTIONS(4394), + [sym_identifier] = ACTIONS(4396), + [anon_sym_namespace] = ACTIONS(4396), + [anon_sym_module] = ACTIONS(4396), + [anon_sym_POUNDnowarn] = ACTIONS(4394), + [anon_sym_POUNDr] = ACTIONS(4394), + [anon_sym_POUNDload] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_LBRACK_LT] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_type] = ACTIONS(4396), + [anon_sym_do] = ACTIONS(4396), + [anon_sym_and] = ACTIONS(4396), + [anon_sym_let] = ACTIONS(4396), + [anon_sym_let_BANG] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_LBRACK_PIPE] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_LBRACE_PIPE] = ACTIONS(4394), + [anon_sym_new] = ACTIONS(4396), + [anon_sym_return_BANG] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4396), + [anon_sym_yield_BANG] = ACTIONS(4394), + [anon_sym_lazy] = ACTIONS(4396), + [anon_sym_assert] = ACTIONS(4396), + [anon_sym_upcast] = ACTIONS(4396), + [anon_sym_downcast] = ACTIONS(4396), + [anon_sym_LT_AT] = ACTIONS(4396), + [anon_sym_LT_AT_AT] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_match] = ACTIONS(4396), + [anon_sym_match_BANG] = ACTIONS(4394), + [anon_sym_function] = ACTIONS(4396), + [anon_sym_use] = ACTIONS(4396), + [anon_sym_use_BANG] = ACTIONS(4394), + [anon_sym_do_BANG] = ACTIONS(4394), + [anon_sym_begin] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4396), + [anon_sym_DQUOTE] = ACTIONS(4396), + [anon_sym_AT_DQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4394), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4394), + [sym_bool] = ACTIONS(4396), + [sym_unit] = ACTIONS(4394), + [aux_sym__identifier_or_op_token1] = ACTIONS(4394), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_PLUS_DOT] = ACTIONS(4394), + [anon_sym_DASH_DOT] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_AMP_AMP] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [aux_sym_prefix_op_token1] = ACTIONS(4394), + [sym_int] = ACTIONS(4396), + [sym_xint] = ACTIONS(4394), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4394), }, [2367] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2790), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2775), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2367), [sym_block_comment] = STATE(2367), [sym_preproc_line] = STATE(2367), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2368] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3858), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2350), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3810), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2132), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2368), [sym_block_comment] = STATE(2368), [sym_preproc_line] = STATE(2368), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2369] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3874), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2827), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2369), [sym_block_comment] = STATE(2369), [sym_preproc_line] = STATE(2369), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2370] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3617), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2811), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2370), [sym_block_comment] = STATE(2370), [sym_preproc_line] = STATE(2370), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2371] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2730), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), [sym_xml_doc] = STATE(2371), [sym_block_comment] = STATE(2371), [sym_preproc_line] = STATE(2371), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [ts_builtin_sym_end] = ACTIONS(4398), + [sym_identifier] = ACTIONS(4400), + [anon_sym_namespace] = ACTIONS(4400), + [anon_sym_module] = ACTIONS(4400), + [anon_sym_POUNDnowarn] = ACTIONS(4398), + [anon_sym_POUNDr] = ACTIONS(4398), + [anon_sym_POUNDload] = ACTIONS(4398), + [anon_sym_open] = ACTIONS(4400), + [anon_sym_LBRACK_LT] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4400), + [anon_sym_type] = ACTIONS(4400), + [anon_sym_do] = ACTIONS(4400), + [anon_sym_and] = ACTIONS(4400), + [anon_sym_let] = ACTIONS(4400), + [anon_sym_let_BANG] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_LBRACK_PIPE] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_LBRACE_PIPE] = ACTIONS(4398), + [anon_sym_new] = ACTIONS(4400), + [anon_sym_return_BANG] = ACTIONS(4398), + [anon_sym_yield] = ACTIONS(4400), + [anon_sym_yield_BANG] = ACTIONS(4398), + [anon_sym_lazy] = ACTIONS(4400), + [anon_sym_assert] = ACTIONS(4400), + [anon_sym_upcast] = ACTIONS(4400), + [anon_sym_downcast] = ACTIONS(4400), + [anon_sym_LT_AT] = ACTIONS(4400), + [anon_sym_LT_AT_AT] = ACTIONS(4398), + [anon_sym_for] = ACTIONS(4400), + [anon_sym_while] = ACTIONS(4400), + [anon_sym_if] = ACTIONS(4400), + [anon_sym_fun] = ACTIONS(4400), + [anon_sym_try] = ACTIONS(4400), + [anon_sym_match] = ACTIONS(4400), + [anon_sym_match_BANG] = ACTIONS(4398), + [anon_sym_function] = ACTIONS(4400), + [anon_sym_use] = ACTIONS(4400), + [anon_sym_use_BANG] = ACTIONS(4398), + [anon_sym_do_BANG] = ACTIONS(4398), + [anon_sym_begin] = ACTIONS(4400), + [anon_sym_SQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4400), + [anon_sym_DQUOTE] = ACTIONS(4400), + [anon_sym_AT_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), + [sym_bool] = ACTIONS(4400), + [sym_unit] = ACTIONS(4398), + [aux_sym__identifier_or_op_token1] = ACTIONS(4398), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4400), + [anon_sym_DASH] = ACTIONS(4400), + [anon_sym_PLUS_DOT] = ACTIONS(4398), + [anon_sym_DASH_DOT] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [aux_sym_prefix_op_token1] = ACTIONS(4398), + [sym_int] = ACTIONS(4400), + [sym_xint] = ACTIONS(4398), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4398), }, [2372] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3616), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2929), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2372), [sym_block_comment] = STATE(2372), [sym_preproc_line] = STATE(2372), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2373] = { - [sym_attributes] = STATE(2373), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3420), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2031), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3730), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2373), [sym_block_comment] = STATE(2373), [sym_preproc_line] = STATE(2373), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3712), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2374] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3875), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3932), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2374), [sym_block_comment] = STATE(2374), [sym_preproc_line] = STATE(2374), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4402), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2375] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3614), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3903), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2375), [sym_block_comment] = STATE(2375), [sym_preproc_line] = STATE(2375), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2376] = { - [sym_attributes] = STATE(2334), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3611), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2060), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2376), [sym_block_comment] = STATE(2376), [sym_preproc_line] = STATE(2376), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3788), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_COLON_QMARK] = ACTIONS(3794), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), }, [2377] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2853), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3955), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2377), [sym_block_comment] = STATE(2377), [sym_preproc_line] = STATE(2377), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2378] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3552), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2378), [sym_block_comment] = STATE(2378), [sym_preproc_line] = STATE(2378), - [ts_builtin_sym_end] = ACTIONS(4352), - [sym_identifier] = ACTIONS(4354), - [anon_sym_namespace] = ACTIONS(4354), - [anon_sym_module] = ACTIONS(4354), - [anon_sym_POUNDnowarn] = ACTIONS(4352), - [anon_sym_POUNDr] = ACTIONS(4352), - [anon_sym_POUNDload] = ACTIONS(4352), - [anon_sym_open] = ACTIONS(4354), - [anon_sym_LBRACK_LT] = ACTIONS(4352), - [anon_sym_return] = ACTIONS(4354), - [anon_sym_type] = ACTIONS(4354), - [anon_sym_do] = ACTIONS(4354), - [anon_sym_and] = ACTIONS(4354), - [anon_sym_let] = ACTIONS(4354), - [anon_sym_let_BANG] = ACTIONS(4352), - [anon_sym_null] = ACTIONS(4354), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_AMP] = ACTIONS(4354), - [anon_sym_LBRACK] = ACTIONS(4354), - [anon_sym_LBRACK_PIPE] = ACTIONS(4352), - [anon_sym_LBRACE] = ACTIONS(4354), - [anon_sym_LBRACE_PIPE] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_return_BANG] = ACTIONS(4352), - [anon_sym_yield] = ACTIONS(4354), - [anon_sym_yield_BANG] = ACTIONS(4352), - [anon_sym_lazy] = ACTIONS(4354), - [anon_sym_assert] = ACTIONS(4354), - [anon_sym_upcast] = ACTIONS(4354), - [anon_sym_downcast] = ACTIONS(4354), - [anon_sym_LT_AT] = ACTIONS(4354), - [anon_sym_LT_AT_AT] = ACTIONS(4352), - [anon_sym_for] = ACTIONS(4354), - [anon_sym_while] = ACTIONS(4354), - [anon_sym_if] = ACTIONS(4354), - [anon_sym_fun] = ACTIONS(4354), - [anon_sym_try] = ACTIONS(4354), - [anon_sym_match] = ACTIONS(4354), - [anon_sym_match_BANG] = ACTIONS(4352), - [anon_sym_function] = ACTIONS(4354), - [anon_sym_use] = ACTIONS(4354), - [anon_sym_use_BANG] = ACTIONS(4352), - [anon_sym_do_BANG] = ACTIONS(4352), - [anon_sym_begin] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4354), - [anon_sym_DQUOTE] = ACTIONS(4354), - [anon_sym_AT_DQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4352), - [sym_bool] = ACTIONS(4354), - [sym_unit] = ACTIONS(4352), - [aux_sym__identifier_or_op_token1] = ACTIONS(4352), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4354), - [anon_sym_PLUS] = ACTIONS(4354), - [anon_sym_DASH] = ACTIONS(4354), - [anon_sym_PLUS_DOT] = ACTIONS(4352), - [anon_sym_DASH_DOT] = ACTIONS(4352), - [anon_sym_PERCENT] = ACTIONS(4352), - [anon_sym_AMP_AMP] = ACTIONS(4352), - [anon_sym_TILDE] = ACTIONS(4352), - [aux_sym_prefix_op_token1] = ACTIONS(4352), - [sym_int] = ACTIONS(4354), - [sym_xint] = ACTIONS(4352), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4352), }, [2379] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3788), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2379), [sym_block_comment] = STATE(2379), [sym_preproc_line] = STATE(2379), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4404), + [sym_identifier] = ACTIONS(4406), + [anon_sym_namespace] = ACTIONS(4406), + [anon_sym_module] = ACTIONS(4406), + [anon_sym_POUNDnowarn] = ACTIONS(4404), + [anon_sym_POUNDr] = ACTIONS(4404), + [anon_sym_POUNDload] = ACTIONS(4404), + [anon_sym_open] = ACTIONS(4406), + [anon_sym_LBRACK_LT] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_do] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_let] = ACTIONS(4406), + [anon_sym_let_BANG] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4406), + [anon_sym_LBRACK_PIPE] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_LBRACE_PIPE] = ACTIONS(4404), + [anon_sym_new] = ACTIONS(4406), + [anon_sym_return_BANG] = ACTIONS(4404), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_yield_BANG] = ACTIONS(4404), + [anon_sym_lazy] = ACTIONS(4406), + [anon_sym_assert] = ACTIONS(4406), + [anon_sym_upcast] = ACTIONS(4406), + [anon_sym_downcast] = ACTIONS(4406), + [anon_sym_LT_AT] = ACTIONS(4406), + [anon_sym_LT_AT_AT] = ACTIONS(4404), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_fun] = ACTIONS(4406), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_match_BANG] = ACTIONS(4404), + [anon_sym_function] = ACTIONS(4406), + [anon_sym_use] = ACTIONS(4406), + [anon_sym_use_BANG] = ACTIONS(4404), + [anon_sym_do_BANG] = ACTIONS(4404), + [anon_sym_begin] = ACTIONS(4406), + [anon_sym_SQUOTE] = ACTIONS(4404), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(4406), + [anon_sym_AT_DQUOTE] = ACTIONS(4404), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4404), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4404), + [sym_bool] = ACTIONS(4406), + [sym_unit] = ACTIONS(4404), + [aux_sym__identifier_or_op_token1] = ACTIONS(4404), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_PLUS_DOT] = ACTIONS(4404), + [anon_sym_DASH_DOT] = ACTIONS(4404), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [aux_sym_prefix_op_token1] = ACTIONS(4404), + [sym_int] = ACTIONS(4406), + [sym_xint] = ACTIONS(4404), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4404), }, [2380] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3826), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2335), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2927), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2131), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2380), [sym_block_comment] = STATE(2380), [sym_preproc_line] = STATE(2380), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3982), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2381] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2860), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3867), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2381), [sym_block_comment] = STATE(2381), [sym_preproc_line] = STATE(2381), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2382] = { - [sym_attributes] = STATE(2276), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3766), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2068), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), [sym_xml_doc] = STATE(2382), [sym_block_comment] = STATE(2382), [sym_preproc_line] = STATE(2382), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3836), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3840), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [ts_builtin_sym_end] = ACTIONS(4183), + [sym_identifier] = ACTIONS(4185), + [anon_sym_namespace] = ACTIONS(4185), + [anon_sym_module] = ACTIONS(4185), + [anon_sym_POUNDnowarn] = ACTIONS(4183), + [anon_sym_POUNDr] = ACTIONS(4183), + [anon_sym_POUNDload] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4185), + [anon_sym_LBRACK_LT] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_do] = ACTIONS(4185), + [anon_sym_and] = ACTIONS(4185), + [anon_sym_let] = ACTIONS(4185), + [anon_sym_let_BANG] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_LBRACK_PIPE] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_return_BANG] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_yield_BANG] = ACTIONS(4183), + [anon_sym_lazy] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_upcast] = ACTIONS(4185), + [anon_sym_downcast] = ACTIONS(4185), + [anon_sym_LT_AT] = ACTIONS(4185), + [anon_sym_LT_AT_AT] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_fun] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_match_BANG] = ACTIONS(4183), + [anon_sym_function] = ACTIONS(4185), + [anon_sym_use] = ACTIONS(4185), + [anon_sym_use_BANG] = ACTIONS(4183), + [anon_sym_do_BANG] = ACTIONS(4183), + [anon_sym_begin] = ACTIONS(4185), + [anon_sym_SQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4185), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_AT_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [sym_bool] = ACTIONS(4185), + [sym_unit] = ACTIONS(4183), + [aux_sym__identifier_or_op_token1] = ACTIONS(4183), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_PLUS_DOT] = ACTIONS(4183), + [anon_sym_DASH_DOT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [aux_sym_prefix_op_token1] = ACTIONS(4183), + [sym_int] = ACTIONS(4185), + [sym_xint] = ACTIONS(4183), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4183), }, [2383] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3827), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3509), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2383), [sym_block_comment] = STATE(2383), [sym_preproc_line] = STATE(2383), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2384] = { - [sym_attributes] = STATE(2332), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2851), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2067), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), [sym_xml_doc] = STATE(2384), [sym_block_comment] = STATE(2384), [sym_preproc_line] = STATE(2384), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [ts_builtin_sym_end] = ACTIONS(4408), + [sym_identifier] = ACTIONS(4410), + [anon_sym_namespace] = ACTIONS(4410), + [anon_sym_module] = ACTIONS(4410), + [anon_sym_POUNDnowarn] = ACTIONS(4408), + [anon_sym_POUNDr] = ACTIONS(4408), + [anon_sym_POUNDload] = ACTIONS(4408), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_LBRACK_LT] = ACTIONS(4408), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_type] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4410), + [anon_sym_and] = ACTIONS(4410), + [anon_sym_let] = ACTIONS(4410), + [anon_sym_let_BANG] = ACTIONS(4408), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4410), + [anon_sym_LBRACK] = ACTIONS(4410), + [anon_sym_LBRACK_PIPE] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4410), + [anon_sym_LBRACE_PIPE] = ACTIONS(4408), + [anon_sym_new] = ACTIONS(4410), + [anon_sym_return_BANG] = ACTIONS(4408), + [anon_sym_yield] = ACTIONS(4410), + [anon_sym_yield_BANG] = ACTIONS(4408), + [anon_sym_lazy] = ACTIONS(4410), + [anon_sym_assert] = ACTIONS(4410), + [anon_sym_upcast] = ACTIONS(4410), + [anon_sym_downcast] = ACTIONS(4410), + [anon_sym_LT_AT] = ACTIONS(4410), + [anon_sym_LT_AT_AT] = ACTIONS(4408), + [anon_sym_for] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_match] = ACTIONS(4410), + [anon_sym_match_BANG] = ACTIONS(4408), + [anon_sym_function] = ACTIONS(4410), + [anon_sym_use] = ACTIONS(4410), + [anon_sym_use_BANG] = ACTIONS(4408), + [anon_sym_do_BANG] = ACTIONS(4408), + [anon_sym_begin] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4408), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4410), + [anon_sym_DQUOTE] = ACTIONS(4410), + [anon_sym_AT_DQUOTE] = ACTIONS(4408), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4408), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4408), + [sym_bool] = ACTIONS(4410), + [sym_unit] = ACTIONS(4408), + [aux_sym__identifier_or_op_token1] = ACTIONS(4408), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4410), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_PLUS_DOT] = ACTIONS(4408), + [anon_sym_DASH_DOT] = ACTIONS(4408), + [anon_sym_PERCENT] = ACTIONS(4408), + [anon_sym_AMP_AMP] = ACTIONS(4408), + [anon_sym_TILDE] = ACTIONS(4408), + [aux_sym_prefix_op_token1] = ACTIONS(4408), + [sym_int] = ACTIONS(4410), + [sym_xint] = ACTIONS(4408), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4408), }, [2385] = { - [sym_attributes] = STATE(2311), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3822), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2065), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3535), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2385), [sym_block_comment] = STATE(2385), [sym_preproc_line] = STATE(2385), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3704), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2386] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2877), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2917), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2386), [sym_block_comment] = STATE(2386), [sym_preproc_line] = STATE(2386), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2387] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2881), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3548), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2387), [sym_block_comment] = STATE(2387), [sym_preproc_line] = STATE(2387), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2388] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2903), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3926), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2388), [sym_block_comment] = STATE(2388), [sym_preproc_line] = STATE(2388), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2389] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2882), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3915), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2389), [sym_block_comment] = STATE(2389), [sym_preproc_line] = STATE(2389), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4416), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2390] = { - [sym_attributes] = STATE(2281), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2836), - [sym_optional_pattern] = STATE(2888), - [sym_type_check_pattern] = STATE(2888), - [sym_attribute_pattern] = STATE(2888), - [sym_paren_pattern] = STATE(2888), - [sym_repeat_pattern] = STATE(2888), - [sym_as_pattern] = STATE(2888), - [sym_cons_pattern] = STATE(2888), - [sym_disjunct_pattern] = STATE(2888), - [sym_conjunct_pattern] = STATE(2888), - [sym_typed_pattern] = STATE(2888), - [sym_list_pattern] = STATE(2888), - [sym_array_pattern] = STATE(2888), - [sym_record_pattern] = STATE(2888), - [sym_identifier_pattern] = STATE(2888), - [sym_char] = STATE(2841), - [sym_format_string] = STATE(2862), - [sym__string_literal] = STATE(2862), - [sym_string] = STATE(2841), - [sym_verbatim_string] = STATE(2841), - [sym_bytechar] = STATE(2841), - [sym_bytearray] = STATE(2841), - [sym_verbatim_bytearray] = STATE(2841), - [sym_format_triple_quoted_string] = STATE(2838), - [sym_triple_quoted_string] = STATE(2841), - [sym_const] = STATE(2889), - [sym_long_identifier] = STATE(2074), - [sym_sbyte] = STATE(2841), - [sym_byte] = STATE(2841), - [sym_int16] = STATE(2841), - [sym_uint16] = STATE(2841), - [sym_int32] = STATE(2841), - [sym_uint32] = STATE(2841), - [sym_nativeint] = STATE(2841), - [sym_unativeint] = STATE(2841), - [sym_int64] = STATE(2841), - [sym_uint64] = STATE(2841), - [sym_ieee32] = STATE(2841), - [sym_ieee64] = STATE(2841), - [sym_bignum] = STATE(2841), - [sym_decimal] = STATE(2841), - [sym_float] = STATE(4339), + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3516), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2390), [sym_block_comment] = STATE(2390), [sym_preproc_line] = STATE(2390), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(4230), - [anon_sym__] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_COLON_QMARK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4246), - [anon_sym_AT_DQUOTE] = ACTIONS(4248), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4252), - [sym_bool] = ACTIONS(4254), - [sym_unit] = ACTIONS(4256), - [sym_int] = ACTIONS(4258), - [sym_xint] = ACTIONS(4260), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2391] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3853), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3954), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2391), [sym_block_comment] = STATE(2391), [sym_preproc_line] = STATE(2391), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3832), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2392] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3951), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2392), [sym_block_comment] = STATE(2392), [sym_preproc_line] = STATE(2392), - [ts_builtin_sym_end] = ACTIONS(4356), - [sym_identifier] = ACTIONS(4358), - [anon_sym_namespace] = ACTIONS(4358), - [anon_sym_module] = ACTIONS(4358), - [anon_sym_POUNDnowarn] = ACTIONS(4356), - [anon_sym_POUNDr] = ACTIONS(4356), - [anon_sym_POUNDload] = ACTIONS(4356), - [anon_sym_open] = ACTIONS(4358), - [anon_sym_LBRACK_LT] = ACTIONS(4356), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_type] = ACTIONS(4358), - [anon_sym_do] = ACTIONS(4358), - [anon_sym_and] = ACTIONS(4358), - [anon_sym_let] = ACTIONS(4358), - [anon_sym_let_BANG] = ACTIONS(4356), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_AMP] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(4358), - [anon_sym_LBRACK_PIPE] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACE_PIPE] = ACTIONS(4356), - [anon_sym_new] = ACTIONS(4358), - [anon_sym_return_BANG] = ACTIONS(4356), - [anon_sym_yield] = ACTIONS(4358), - [anon_sym_yield_BANG] = ACTIONS(4356), - [anon_sym_lazy] = ACTIONS(4358), - [anon_sym_assert] = ACTIONS(4358), - [anon_sym_upcast] = ACTIONS(4358), - [anon_sym_downcast] = ACTIONS(4358), - [anon_sym_LT_AT] = ACTIONS(4358), - [anon_sym_LT_AT_AT] = ACTIONS(4356), - [anon_sym_for] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_match] = ACTIONS(4358), - [anon_sym_match_BANG] = ACTIONS(4356), - [anon_sym_function] = ACTIONS(4358), - [anon_sym_use] = ACTIONS(4358), - [anon_sym_use_BANG] = ACTIONS(4356), - [anon_sym_do_BANG] = ACTIONS(4356), - [anon_sym_begin] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_DQUOTE] = ACTIONS(4358), - [anon_sym_AT_DQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4356), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4356), - [sym_bool] = ACTIONS(4358), - [sym_unit] = ACTIONS(4356), - [aux_sym__identifier_or_op_token1] = ACTIONS(4356), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4358), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_PLUS_DOT] = ACTIONS(4356), - [anon_sym_DASH_DOT] = ACTIONS(4356), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_AMP_AMP] = ACTIONS(4356), - [anon_sym_TILDE] = ACTIONS(4356), - [aux_sym_prefix_op_token1] = ACTIONS(4356), - [sym_int] = ACTIONS(4358), - [sym_xint] = ACTIONS(4356), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4356), }, [2393] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3702), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2393), [sym_block_comment] = STATE(2393), [sym_preproc_line] = STATE(2393), - [ts_builtin_sym_end] = ACTIONS(4360), - [sym_identifier] = ACTIONS(4362), - [anon_sym_namespace] = ACTIONS(4362), - [anon_sym_module] = ACTIONS(4362), - [anon_sym_POUNDnowarn] = ACTIONS(4360), - [anon_sym_POUNDr] = ACTIONS(4360), - [anon_sym_POUNDload] = ACTIONS(4360), - [anon_sym_open] = ACTIONS(4362), - [anon_sym_LBRACK_LT] = ACTIONS(4360), - [anon_sym_return] = ACTIONS(4362), - [anon_sym_type] = ACTIONS(4362), - [anon_sym_do] = ACTIONS(4362), - [anon_sym_and] = ACTIONS(4362), - [anon_sym_let] = ACTIONS(4362), - [anon_sym_let_BANG] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_AMP] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4362), - [anon_sym_LBRACE_PIPE] = ACTIONS(4360), - [anon_sym_new] = ACTIONS(4362), - [anon_sym_return_BANG] = ACTIONS(4360), - [anon_sym_yield] = ACTIONS(4362), - [anon_sym_yield_BANG] = ACTIONS(4360), - [anon_sym_lazy] = ACTIONS(4362), - [anon_sym_assert] = ACTIONS(4362), - [anon_sym_upcast] = ACTIONS(4362), - [anon_sym_downcast] = ACTIONS(4362), - [anon_sym_LT_AT] = ACTIONS(4362), - [anon_sym_LT_AT_AT] = ACTIONS(4360), - [anon_sym_for] = ACTIONS(4362), - [anon_sym_while] = ACTIONS(4362), - [anon_sym_if] = ACTIONS(4362), - [anon_sym_fun] = ACTIONS(4362), - [anon_sym_try] = ACTIONS(4362), - [anon_sym_match] = ACTIONS(4362), - [anon_sym_match_BANG] = ACTIONS(4360), - [anon_sym_function] = ACTIONS(4362), - [anon_sym_use] = ACTIONS(4362), - [anon_sym_use_BANG] = ACTIONS(4360), - [anon_sym_do_BANG] = ACTIONS(4360), - [anon_sym_begin] = ACTIONS(4362), - [anon_sym_SQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [aux_sym__identifier_or_op_token1] = ACTIONS(4360), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4362), - [anon_sym_PLUS] = ACTIONS(4362), - [anon_sym_DASH] = ACTIONS(4362), - [anon_sym_PLUS_DOT] = ACTIONS(4360), - [anon_sym_DASH_DOT] = ACTIONS(4360), - [anon_sym_PERCENT] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_TILDE] = ACTIONS(4360), - [aux_sym_prefix_op_token1] = ACTIONS(4360), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4360), }, [2394] = { - [sym_attributes] = STATE(2366), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2811), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2095), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3869), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2394), [sym_block_comment] = STATE(2394), [sym_preproc_line] = STATE(2394), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, @@ -276113,443 +274379,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xml_doc] = STATE(2395), [sym_block_comment] = STATE(2395), [sym_preproc_line] = STATE(2395), - [sym_identifier] = ACTIONS(4207), - [anon_sym_module] = ACTIONS(4207), - [anon_sym_POUNDnowarn] = ACTIONS(4205), - [anon_sym_POUNDr] = ACTIONS(4205), - [anon_sym_POUNDload] = ACTIONS(4205), - [anon_sym_open] = ACTIONS(4207), - [anon_sym_LBRACK_LT] = ACTIONS(4205), - [anon_sym_return] = ACTIONS(4207), - [anon_sym_type] = ACTIONS(4207), - [anon_sym_do] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4207), - [anon_sym_let] = ACTIONS(4207), - [anon_sym_let_BANG] = ACTIONS(4205), - [anon_sym_null] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4207), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LBRACK_PIPE] = ACTIONS(4205), - [anon_sym_LBRACE] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4205), - [anon_sym_new] = ACTIONS(4207), - [anon_sym_return_BANG] = ACTIONS(4205), - [anon_sym_yield] = ACTIONS(4207), - [anon_sym_yield_BANG] = ACTIONS(4205), - [anon_sym_lazy] = ACTIONS(4207), - [anon_sym_assert] = ACTIONS(4207), - [anon_sym_upcast] = ACTIONS(4207), - [anon_sym_downcast] = ACTIONS(4207), - [anon_sym_LT_AT] = ACTIONS(4207), - [anon_sym_LT_AT_AT] = ACTIONS(4205), - [anon_sym_for] = ACTIONS(4207), - [anon_sym_while] = ACTIONS(4207), - [anon_sym_if] = ACTIONS(4207), - [anon_sym_fun] = ACTIONS(4207), - [anon_sym_try] = ACTIONS(4207), - [anon_sym_match] = ACTIONS(4207), - [anon_sym_match_BANG] = ACTIONS(4205), - [anon_sym_function] = ACTIONS(4207), - [anon_sym_use] = ACTIONS(4207), - [anon_sym_use_BANG] = ACTIONS(4205), - [anon_sym_do_BANG] = ACTIONS(4205), - [anon_sym_begin] = ACTIONS(4207), - [anon_sym_SQUOTE] = ACTIONS(4205), - [anon_sym_interface] = ACTIONS(4207), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4207), - [anon_sym_DQUOTE] = ACTIONS(4207), - [anon_sym_AT_DQUOTE] = ACTIONS(4205), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4205), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4205), - [sym_bool] = ACTIONS(4207), - [sym_unit] = ACTIONS(4205), - [aux_sym__identifier_or_op_token1] = ACTIONS(4205), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4207), - [anon_sym_DASH] = ACTIONS(4207), - [anon_sym_PLUS_DOT] = ACTIONS(4205), - [anon_sym_DASH_DOT] = ACTIONS(4205), - [anon_sym_PERCENT] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(4205), - [anon_sym_TILDE] = ACTIONS(4205), - [aux_sym_prefix_op_token1] = ACTIONS(4205), - [sym_int] = ACTIONS(4207), - [sym_xint] = ACTIONS(4205), + [ts_builtin_sym_end] = ACTIONS(4418), + [sym_identifier] = ACTIONS(4420), + [anon_sym_namespace] = ACTIONS(4420), + [anon_sym_module] = ACTIONS(4420), + [anon_sym_POUNDnowarn] = ACTIONS(4418), + [anon_sym_POUNDr] = ACTIONS(4418), + [anon_sym_POUNDload] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4420), + [anon_sym_LBRACK_LT] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_type] = ACTIONS(4420), + [anon_sym_do] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_let] = ACTIONS(4420), + [anon_sym_let_BANG] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_LBRACK_PIPE] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_LBRACE_PIPE] = ACTIONS(4418), + [anon_sym_new] = ACTIONS(4420), + [anon_sym_return_BANG] = ACTIONS(4418), + [anon_sym_yield] = ACTIONS(4420), + [anon_sym_yield_BANG] = ACTIONS(4418), + [anon_sym_lazy] = ACTIONS(4420), + [anon_sym_assert] = ACTIONS(4420), + [anon_sym_upcast] = ACTIONS(4420), + [anon_sym_downcast] = ACTIONS(4420), + [anon_sym_LT_AT] = ACTIONS(4420), + [anon_sym_LT_AT_AT] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_while] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_fun] = ACTIONS(4420), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_match_BANG] = ACTIONS(4418), + [anon_sym_function] = ACTIONS(4420), + [anon_sym_use] = ACTIONS(4420), + [anon_sym_use_BANG] = ACTIONS(4418), + [anon_sym_do_BANG] = ACTIONS(4418), + [anon_sym_begin] = ACTIONS(4420), + [anon_sym_SQUOTE] = ACTIONS(4418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(4420), + [anon_sym_AT_DQUOTE] = ACTIONS(4418), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), + [sym_bool] = ACTIONS(4420), + [sym_unit] = ACTIONS(4418), + [aux_sym__identifier_or_op_token1] = ACTIONS(4418), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_PLUS_DOT] = ACTIONS(4418), + [anon_sym_DASH_DOT] = ACTIONS(4418), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [aux_sym_prefix_op_token1] = ACTIONS(4418), + [sym_int] = ACTIONS(4420), + [sym_xint] = ACTIONS(4418), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4205), - [sym__dedent] = ACTIONS(4205), + [anon_sym_POUNDif] = ACTIONS(4418), }, [2396] = { + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3859), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2396), [sym_block_comment] = STATE(2396), [sym_preproc_line] = STATE(2396), - [ts_builtin_sym_end] = ACTIONS(4076), - [sym_identifier] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_module] = ACTIONS(4078), - [anon_sym_POUNDnowarn] = ACTIONS(4076), - [anon_sym_POUNDr] = ACTIONS(4076), - [anon_sym_POUNDload] = ACTIONS(4076), - [anon_sym_open] = ACTIONS(4078), - [anon_sym_LBRACK_LT] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_and] = ACTIONS(4078), - [anon_sym_let] = ACTIONS(4078), - [anon_sym_let_BANG] = ACTIONS(4076), - [anon_sym_null] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_LBRACK_PIPE] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_LBRACE_PIPE] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_return_BANG] = ACTIONS(4076), - [anon_sym_yield] = ACTIONS(4078), - [anon_sym_yield_BANG] = ACTIONS(4076), - [anon_sym_lazy] = ACTIONS(4078), - [anon_sym_assert] = ACTIONS(4078), - [anon_sym_upcast] = ACTIONS(4078), - [anon_sym_downcast] = ACTIONS(4078), - [anon_sym_LT_AT] = ACTIONS(4078), - [anon_sym_LT_AT_AT] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_fun] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_match] = ACTIONS(4078), - [anon_sym_match_BANG] = ACTIONS(4076), - [anon_sym_function] = ACTIONS(4078), - [anon_sym_use] = ACTIONS(4078), - [anon_sym_use_BANG] = ACTIONS(4076), - [anon_sym_do_BANG] = ACTIONS(4076), - [anon_sym_begin] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [anon_sym_AT_DQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [sym_bool] = ACTIONS(4078), - [sym_unit] = ACTIONS(4076), - [aux_sym__identifier_or_op_token1] = ACTIONS(4076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS_DOT] = ACTIONS(4076), - [anon_sym_DASH_DOT] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [aux_sym_prefix_op_token1] = ACTIONS(4076), - [sym_int] = ACTIONS(4078), - [sym_xint] = ACTIONS(4076), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4076), }, [2397] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2731), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2973), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2397), [sym_block_comment] = STATE(2397), [sym_preproc_line] = STATE(2397), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2398] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2732), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3857), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2398), [sym_block_comment] = STATE(2398), [sym_preproc_line] = STATE(2398), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2399] = { - [sym_attributes] = STATE(2277), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(3862), - [sym_optional_pattern] = STATE(3351), - [sym_type_check_pattern] = STATE(3351), - [sym_attribute_pattern] = STATE(3351), - [sym_paren_pattern] = STATE(3351), - [sym_repeat_pattern] = STATE(3351), - [sym_as_pattern] = STATE(3351), - [sym_cons_pattern] = STATE(3351), - [sym_disjunct_pattern] = STATE(3351), - [sym_conjunct_pattern] = STATE(3351), - [sym_typed_pattern] = STATE(3351), - [sym_list_pattern] = STATE(3351), - [sym_array_pattern] = STATE(3351), - [sym_record_pattern] = STATE(3351), - [sym_identifier_pattern] = STATE(3351), - [sym_char] = STATE(3354), - [sym_format_string] = STATE(3387), - [sym__string_literal] = STATE(3387), - [sym_string] = STATE(3354), - [sym_verbatim_string] = STATE(3354), - [sym_bytechar] = STATE(3354), - [sym_bytearray] = STATE(3354), - [sym_verbatim_bytearray] = STATE(3354), - [sym_format_triple_quoted_string] = STATE(3357), - [sym_triple_quoted_string] = STATE(3354), - [sym_const] = STATE(3329), - [sym_long_identifier] = STATE(2086), - [sym_sbyte] = STATE(3354), - [sym_byte] = STATE(3354), - [sym_int16] = STATE(3354), - [sym_uint16] = STATE(3354), - [sym_int32] = STATE(3354), - [sym_uint32] = STATE(3354), - [sym_nativeint] = STATE(3354), - [sym_unativeint] = STATE(3354), - [sym_int64] = STATE(3354), - [sym_uint64] = STATE(3354), - [sym_ieee32] = STATE(3354), - [sym_ieee64] = STATE(3354), - [sym_bignum] = STATE(3354), - [sym_decimal] = STATE(3354), - [sym_float] = STATE(4583), + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3855), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2399), [sym_block_comment] = STATE(2399), [sym_preproc_line] = STATE(2399), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(4364), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3740), - [anon_sym__] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_LBRACK_PIPE] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3746), - [anon_sym_AT_DQUOTE] = ACTIONS(3748), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3750), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3752), - [sym_bool] = ACTIONS(3754), - [sym_unit] = ACTIONS(3756), - [sym_int] = ACTIONS(3758), - [sym_xint] = ACTIONS(3760), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, [2400] = { - [sym_attributes] = STATE(2355), - [sym_attribute_set] = STATE(2921), - [sym__pattern] = STATE(2701), - [sym_optional_pattern] = STATE(2817), - [sym_type_check_pattern] = STATE(2817), - [sym_attribute_pattern] = STATE(2817), - [sym_paren_pattern] = STATE(2817), - [sym_repeat_pattern] = STATE(2817), - [sym_as_pattern] = STATE(2817), - [sym_cons_pattern] = STATE(2817), - [sym_disjunct_pattern] = STATE(2817), - [sym_conjunct_pattern] = STATE(2817), - [sym_typed_pattern] = STATE(2817), - [sym_list_pattern] = STATE(2817), - [sym_array_pattern] = STATE(2817), - [sym_record_pattern] = STATE(2817), - [sym_identifier_pattern] = STATE(2817), - [sym_char] = STATE(2622), - [sym_format_string] = STATE(2601), - [sym__string_literal] = STATE(2601), - [sym_string] = STATE(2622), - [sym_verbatim_string] = STATE(2622), - [sym_bytechar] = STATE(2622), - [sym_bytearray] = STATE(2622), - [sym_verbatim_bytearray] = STATE(2622), - [sym_format_triple_quoted_string] = STATE(2630), - [sym_triple_quoted_string] = STATE(2622), - [sym_const] = STATE(2814), - [sym_long_identifier] = STATE(2075), - [sym_sbyte] = STATE(2622), - [sym_byte] = STATE(2622), - [sym_int16] = STATE(2622), - [sym_uint16] = STATE(2622), - [sym_int32] = STATE(2622), - [sym_uint32] = STATE(2622), - [sym_nativeint] = STATE(2622), - [sym_unativeint] = STATE(2622), - [sym_int64] = STATE(2622), - [sym_uint64] = STATE(2622), - [sym_ieee32] = STATE(2622), - [sym_ieee64] = STATE(2622), - [sym_bignum] = STATE(2622), - [sym_decimal] = STATE(2622), - [sym_float] = STATE(4578), + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3853), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2400), [sym_block_comment] = STATE(2400), [sym_preproc_line] = STATE(2400), - [aux_sym_attributes_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(3690), - [anon_sym_LBRACK_LT] = ACTIONS(3694), - [anon_sym_null] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3990), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3716), - [anon_sym_DQUOTE] = ACTIONS(3718), - [anon_sym_AT_DQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), - [sym_bool] = ACTIONS(3726), - [sym_unit] = ACTIONS(3728), - [sym_int] = ACTIONS(3730), - [sym_xint] = ACTIONS(3732), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(3655), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), }, @@ -276557,6440 +274823,6551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xml_doc] = STATE(2401), [sym_block_comment] = STATE(2401), [sym_preproc_line] = STATE(2401), - [aux_sym__function_or_value_defns_repeat1] = STATE(2333), - [sym_identifier] = ACTIONS(4213), - [anon_sym_module] = ACTIONS(4213), - [anon_sym_POUNDnowarn] = ACTIONS(4211), - [anon_sym_POUNDr] = ACTIONS(4211), - [anon_sym_POUNDload] = ACTIONS(4211), - [anon_sym_open] = ACTIONS(4213), - [anon_sym_LBRACK_LT] = ACTIONS(4211), - [anon_sym_return] = ACTIONS(4213), - [anon_sym_type] = ACTIONS(4213), - [anon_sym_do] = ACTIONS(4213), - [anon_sym_and] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4213), - [anon_sym_let_BANG] = ACTIONS(4211), - [anon_sym_null] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_AMP] = ACTIONS(4213), - [anon_sym_LBRACK] = ACTIONS(4213), - [anon_sym_LBRACK_PIPE] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_LBRACE_PIPE] = ACTIONS(4211), - [anon_sym_new] = ACTIONS(4213), - [anon_sym_return_BANG] = ACTIONS(4211), - [anon_sym_yield] = ACTIONS(4213), - [anon_sym_yield_BANG] = ACTIONS(4211), - [anon_sym_lazy] = ACTIONS(4213), - [anon_sym_assert] = ACTIONS(4213), - [anon_sym_upcast] = ACTIONS(4213), - [anon_sym_downcast] = ACTIONS(4213), - [anon_sym_LT_AT] = ACTIONS(4213), - [anon_sym_LT_AT_AT] = ACTIONS(4211), - [anon_sym_for] = ACTIONS(4213), - [anon_sym_while] = ACTIONS(4213), - [anon_sym_if] = ACTIONS(4213), - [anon_sym_fun] = ACTIONS(4213), - [anon_sym_try] = ACTIONS(4213), - [anon_sym_match] = ACTIONS(4213), - [anon_sym_match_BANG] = ACTIONS(4211), - [anon_sym_function] = ACTIONS(4213), - [anon_sym_use] = ACTIONS(4213), - [anon_sym_use_BANG] = ACTIONS(4211), - [anon_sym_do_BANG] = ACTIONS(4211), - [anon_sym_begin] = ACTIONS(4213), - [anon_sym_SQUOTE] = ACTIONS(4211), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4213), - [anon_sym_AT_DQUOTE] = ACTIONS(4211), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4211), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4211), - [sym_bool] = ACTIONS(4213), - [sym_unit] = ACTIONS(4211), - [aux_sym__identifier_or_op_token1] = ACTIONS(4211), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4213), - [anon_sym_PLUS] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4213), - [anon_sym_PLUS_DOT] = ACTIONS(4211), - [anon_sym_DASH_DOT] = ACTIONS(4211), - [anon_sym_PERCENT] = ACTIONS(4211), - [anon_sym_AMP_AMP] = ACTIONS(4211), - [anon_sym_TILDE] = ACTIONS(4211), - [aux_sym_prefix_op_token1] = ACTIONS(4211), - [sym_int] = ACTIONS(4213), - [sym_xint] = ACTIONS(4211), + [ts_builtin_sym_end] = ACTIONS(4422), + [sym_identifier] = ACTIONS(4424), + [anon_sym_namespace] = ACTIONS(4424), + [anon_sym_module] = ACTIONS(4424), + [anon_sym_POUNDnowarn] = ACTIONS(4422), + [anon_sym_POUNDr] = ACTIONS(4422), + [anon_sym_POUNDload] = ACTIONS(4422), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_LBRACK_LT] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_type] = ACTIONS(4424), + [anon_sym_do] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_let] = ACTIONS(4424), + [anon_sym_let_BANG] = ACTIONS(4422), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_LBRACK_PIPE] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4424), + [anon_sym_LBRACE_PIPE] = ACTIONS(4422), + [anon_sym_new] = ACTIONS(4424), + [anon_sym_return_BANG] = ACTIONS(4422), + [anon_sym_yield] = ACTIONS(4424), + [anon_sym_yield_BANG] = ACTIONS(4422), + [anon_sym_lazy] = ACTIONS(4424), + [anon_sym_assert] = ACTIONS(4424), + [anon_sym_upcast] = ACTIONS(4424), + [anon_sym_downcast] = ACTIONS(4424), + [anon_sym_LT_AT] = ACTIONS(4424), + [anon_sym_LT_AT_AT] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_match_BANG] = ACTIONS(4422), + [anon_sym_function] = ACTIONS(4424), + [anon_sym_use] = ACTIONS(4424), + [anon_sym_use_BANG] = ACTIONS(4422), + [anon_sym_do_BANG] = ACTIONS(4422), + [anon_sym_begin] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4424), + [anon_sym_DQUOTE] = ACTIONS(4424), + [anon_sym_AT_DQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4422), + [sym_bool] = ACTIONS(4424), + [sym_unit] = ACTIONS(4422), + [aux_sym__identifier_or_op_token1] = ACTIONS(4422), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_PLUS_DOT] = ACTIONS(4422), + [anon_sym_DASH_DOT] = ACTIONS(4422), + [anon_sym_PERCENT] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [aux_sym_prefix_op_token1] = ACTIONS(4422), + [sym_int] = ACTIONS(4424), + [sym_xint] = ACTIONS(4422), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4211), - [sym__dedent] = ACTIONS(4211), + [anon_sym_POUNDif] = ACTIONS(4422), }, [2402] = { [sym_xml_doc] = STATE(2402), [sym_block_comment] = STATE(2402), [sym_preproc_line] = STATE(2402), - [sym_identifier] = ACTIONS(4304), - [anon_sym_module] = ACTIONS(4304), - [anon_sym_POUNDnowarn] = ACTIONS(4302), - [anon_sym_POUNDr] = ACTIONS(4302), - [anon_sym_POUNDload] = ACTIONS(4302), - [anon_sym_open] = ACTIONS(4304), - [anon_sym_LBRACK_LT] = ACTIONS(4302), - [anon_sym_return] = ACTIONS(4304), - [anon_sym_type] = ACTIONS(4304), - [anon_sym_do] = ACTIONS(4304), - [anon_sym_and] = ACTIONS(4304), - [anon_sym_let] = ACTIONS(4304), - [anon_sym_let_BANG] = ACTIONS(4302), - [anon_sym_null] = ACTIONS(4304), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_LBRACK_PIPE] = ACTIONS(4302), - [anon_sym_LBRACE] = ACTIONS(4304), - [anon_sym_LBRACE_PIPE] = ACTIONS(4302), - [anon_sym_new] = ACTIONS(4304), - [anon_sym_return_BANG] = ACTIONS(4302), - [anon_sym_yield] = ACTIONS(4304), - [anon_sym_yield_BANG] = ACTIONS(4302), - [anon_sym_lazy] = ACTIONS(4304), - [anon_sym_assert] = ACTIONS(4304), - [anon_sym_upcast] = ACTIONS(4304), - [anon_sym_downcast] = ACTIONS(4304), - [anon_sym_LT_AT] = ACTIONS(4304), - [anon_sym_LT_AT_AT] = ACTIONS(4302), - [anon_sym_for] = ACTIONS(4304), - [anon_sym_while] = ACTIONS(4304), - [anon_sym_if] = ACTIONS(4304), - [anon_sym_fun] = ACTIONS(4304), - [anon_sym_try] = ACTIONS(4304), - [anon_sym_match] = ACTIONS(4304), - [anon_sym_match_BANG] = ACTIONS(4302), - [anon_sym_function] = ACTIONS(4304), - [anon_sym_use] = ACTIONS(4304), - [anon_sym_use_BANG] = ACTIONS(4302), - [anon_sym_do_BANG] = ACTIONS(4302), - [anon_sym_begin] = ACTIONS(4304), - [anon_sym_SQUOTE] = ACTIONS(4302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4304), - [anon_sym_DQUOTE] = ACTIONS(4304), - [anon_sym_AT_DQUOTE] = ACTIONS(4302), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4302), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4302), - [sym_bool] = ACTIONS(4304), - [sym_unit] = ACTIONS(4302), - [aux_sym__identifier_or_op_token1] = ACTIONS(4302), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS_DOT] = ACTIONS(4302), - [anon_sym_DASH_DOT] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [aux_sym_prefix_op_token1] = ACTIONS(4302), - [sym_int] = ACTIONS(4304), - [sym_xint] = ACTIONS(4302), + [ts_builtin_sym_end] = ACTIONS(4426), + [sym_identifier] = ACTIONS(4428), + [anon_sym_namespace] = ACTIONS(4428), + [anon_sym_module] = ACTIONS(4428), + [anon_sym_POUNDnowarn] = ACTIONS(4426), + [anon_sym_POUNDr] = ACTIONS(4426), + [anon_sym_POUNDload] = ACTIONS(4426), + [anon_sym_open] = ACTIONS(4428), + [anon_sym_LBRACK_LT] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4428), + [anon_sym_type] = ACTIONS(4428), + [anon_sym_do] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_let] = ACTIONS(4428), + [anon_sym_let_BANG] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4428), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_LBRACK_PIPE] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4428), + [anon_sym_LBRACE_PIPE] = ACTIONS(4426), + [anon_sym_new] = ACTIONS(4428), + [anon_sym_return_BANG] = ACTIONS(4426), + [anon_sym_yield] = ACTIONS(4428), + [anon_sym_yield_BANG] = ACTIONS(4426), + [anon_sym_lazy] = ACTIONS(4428), + [anon_sym_assert] = ACTIONS(4428), + [anon_sym_upcast] = ACTIONS(4428), + [anon_sym_downcast] = ACTIONS(4428), + [anon_sym_LT_AT] = ACTIONS(4428), + [anon_sym_LT_AT_AT] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_if] = ACTIONS(4428), + [anon_sym_fun] = ACTIONS(4428), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_match_BANG] = ACTIONS(4426), + [anon_sym_function] = ACTIONS(4428), + [anon_sym_use] = ACTIONS(4428), + [anon_sym_use_BANG] = ACTIONS(4426), + [anon_sym_do_BANG] = ACTIONS(4426), + [anon_sym_begin] = ACTIONS(4428), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4428), + [anon_sym_DQUOTE] = ACTIONS(4428), + [anon_sym_AT_DQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4426), + [sym_bool] = ACTIONS(4428), + [sym_unit] = ACTIONS(4426), + [aux_sym__identifier_or_op_token1] = ACTIONS(4426), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_PLUS_DOT] = ACTIONS(4426), + [anon_sym_DASH_DOT] = ACTIONS(4426), + [anon_sym_PERCENT] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [aux_sym_prefix_op_token1] = ACTIONS(4426), + [sym_int] = ACTIONS(4428), + [sym_xint] = ACTIONS(4426), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4302), - [sym__dedent] = ACTIONS(4302), + [anon_sym_POUNDif] = ACTIONS(4426), }, [2403] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3909), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2403), [sym_block_comment] = STATE(2403), [sym_preproc_line] = STATE(2403), - [ts_builtin_sym_end] = ACTIONS(4366), - [sym_identifier] = ACTIONS(4368), - [anon_sym_namespace] = ACTIONS(4368), - [anon_sym_module] = ACTIONS(4368), - [anon_sym_POUNDnowarn] = ACTIONS(4366), - [anon_sym_POUNDr] = ACTIONS(4366), - [anon_sym_POUNDload] = ACTIONS(4366), - [anon_sym_open] = ACTIONS(4368), - [anon_sym_LBRACK_LT] = ACTIONS(4366), - [anon_sym_return] = ACTIONS(4368), - [anon_sym_type] = ACTIONS(4368), - [anon_sym_do] = ACTIONS(4368), - [anon_sym_let] = ACTIONS(4368), - [anon_sym_let_BANG] = ACTIONS(4366), - [anon_sym_null] = ACTIONS(4368), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_AMP] = ACTIONS(4368), - [anon_sym_LBRACK] = ACTIONS(4368), - [anon_sym_LBRACK_PIPE] = ACTIONS(4366), - [anon_sym_LBRACE] = ACTIONS(4368), - [anon_sym_LBRACE_PIPE] = ACTIONS(4366), - [anon_sym_new] = ACTIONS(4368), - [anon_sym_return_BANG] = ACTIONS(4366), - [anon_sym_yield] = ACTIONS(4368), - [anon_sym_yield_BANG] = ACTIONS(4366), - [anon_sym_lazy] = ACTIONS(4368), - [anon_sym_assert] = ACTIONS(4368), - [anon_sym_upcast] = ACTIONS(4368), - [anon_sym_downcast] = ACTIONS(4368), - [anon_sym_LT_AT] = ACTIONS(4368), - [anon_sym_LT_AT_AT] = ACTIONS(4366), - [anon_sym_for] = ACTIONS(4368), - [anon_sym_while] = ACTIONS(4368), - [anon_sym_if] = ACTIONS(4368), - [anon_sym_fun] = ACTIONS(4368), - [anon_sym_try] = ACTIONS(4368), - [anon_sym_match] = ACTIONS(4368), - [anon_sym_match_BANG] = ACTIONS(4366), - [anon_sym_function] = ACTIONS(4368), - [anon_sym_use] = ACTIONS(4368), - [anon_sym_use_BANG] = ACTIONS(4366), - [anon_sym_do_BANG] = ACTIONS(4366), - [anon_sym_begin] = ACTIONS(4368), - [anon_sym_SQUOTE] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4368), - [anon_sym_AT_DQUOTE] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4366), - [sym_bool] = ACTIONS(4368), - [sym_unit] = ACTIONS(4366), - [aux_sym__identifier_or_op_token1] = ACTIONS(4366), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4368), - [anon_sym_PLUS] = ACTIONS(4368), - [anon_sym_DASH] = ACTIONS(4368), - [anon_sym_PLUS_DOT] = ACTIONS(4366), - [anon_sym_DASH_DOT] = ACTIONS(4366), - [anon_sym_PERCENT] = ACTIONS(4366), - [anon_sym_AMP_AMP] = ACTIONS(4366), - [anon_sym_TILDE] = ACTIONS(4366), - [aux_sym_prefix_op_token1] = ACTIONS(4366), - [sym_int] = ACTIONS(4368), - [sym_xint] = ACTIONS(4366), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4366), }, [2404] = { - [sym_type_arguments] = STATE(2509), - [sym_long_identifier] = STATE(2501), + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3712), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2404), [sym_block_comment] = STATE(2404), [sym_preproc_line] = STATE(2404), - [aux_sym__compound_type_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_LT_AT_AT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2361), - [aux_sym__identifier_or_op_token1] = ACTIONS(2361), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2361), - [anon_sym_DASH_DOT] = ACTIONS(2361), - [anon_sym_PERCENT] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), }, [2405] = { [sym_xml_doc] = STATE(2405), [sym_block_comment] = STATE(2405), [sym_preproc_line] = STATE(2405), - [ts_builtin_sym_end] = ACTIONS(3034), - [sym_identifier] = ACTIONS(3032), - [anon_sym_namespace] = ACTIONS(3032), - [anon_sym_module] = ACTIONS(3032), - [anon_sym_POUNDnowarn] = ACTIONS(3034), - [anon_sym_POUNDr] = ACTIONS(3034), - [anon_sym_POUNDload] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3032), - [anon_sym_LBRACK_LT] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_LT_AT_AT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3034), - [aux_sym__identifier_or_op_token1] = ACTIONS(3034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3034), - [anon_sym_DASH_DOT] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(4430), + [sym_identifier] = ACTIONS(4432), + [anon_sym_namespace] = ACTIONS(4432), + [anon_sym_module] = ACTIONS(4432), + [anon_sym_POUNDnowarn] = ACTIONS(4430), + [anon_sym_POUNDr] = ACTIONS(4430), + [anon_sym_POUNDload] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_LBRACK_LT] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4432), + [anon_sym_type] = ACTIONS(4432), + [anon_sym_do] = ACTIONS(4432), + [anon_sym_and] = ACTIONS(4432), + [anon_sym_let] = ACTIONS(4432), + [anon_sym_let_BANG] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_AMP] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_LBRACK_PIPE] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_LBRACE_PIPE] = ACTIONS(4430), + [anon_sym_new] = ACTIONS(4432), + [anon_sym_return_BANG] = ACTIONS(4430), + [anon_sym_yield] = ACTIONS(4432), + [anon_sym_yield_BANG] = ACTIONS(4430), + [anon_sym_lazy] = ACTIONS(4432), + [anon_sym_assert] = ACTIONS(4432), + [anon_sym_upcast] = ACTIONS(4432), + [anon_sym_downcast] = ACTIONS(4432), + [anon_sym_LT_AT] = ACTIONS(4432), + [anon_sym_LT_AT_AT] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4432), + [anon_sym_while] = ACTIONS(4432), + [anon_sym_if] = ACTIONS(4432), + [anon_sym_fun] = ACTIONS(4432), + [anon_sym_try] = ACTIONS(4432), + [anon_sym_match] = ACTIONS(4432), + [anon_sym_match_BANG] = ACTIONS(4430), + [anon_sym_function] = ACTIONS(4432), + [anon_sym_use] = ACTIONS(4432), + [anon_sym_use_BANG] = ACTIONS(4430), + [anon_sym_do_BANG] = ACTIONS(4430), + [anon_sym_begin] = ACTIONS(4432), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4432), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_AT_DQUOTE] = ACTIONS(4430), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4430), + [sym_bool] = ACTIONS(4432), + [sym_unit] = ACTIONS(4430), + [aux_sym__identifier_or_op_token1] = ACTIONS(4430), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_PLUS_DOT] = ACTIONS(4430), + [anon_sym_DASH_DOT] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [aux_sym_prefix_op_token1] = ACTIONS(4430), + [sym_int] = ACTIONS(4432), + [sym_xint] = ACTIONS(4430), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), + [anon_sym_POUNDif] = ACTIONS(4430), }, [2406] = { [sym_xml_doc] = STATE(2406), [sym_block_comment] = STATE(2406), [sym_preproc_line] = STATE(2406), - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(2998), - [anon_sym_namespace] = ACTIONS(2998), - [anon_sym_module] = ACTIONS(2998), - [anon_sym_POUNDnowarn] = ACTIONS(3000), - [anon_sym_POUNDr] = ACTIONS(3000), - [anon_sym_POUNDload] = ACTIONS(3000), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_LBRACK_LT] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_type] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_LT_AT_AT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(3000), - [aux_sym__identifier_or_op_token1] = ACTIONS(3000), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(3000), - [anon_sym_DASH_DOT] = ACTIONS(3000), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), + [sym_identifier] = ACTIONS(4329), + [anon_sym_module] = ACTIONS(4329), + [anon_sym_POUNDnowarn] = ACTIONS(4327), + [anon_sym_POUNDr] = ACTIONS(4327), + [anon_sym_POUNDload] = ACTIONS(4327), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_LBRACK_LT] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_type] = ACTIONS(4329), + [anon_sym_do] = ACTIONS(4329), + [anon_sym_and] = ACTIONS(4329), + [anon_sym_let] = ACTIONS(4329), + [anon_sym_let_BANG] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_PIPE] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_LBRACE_PIPE] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4329), + [anon_sym_return_BANG] = ACTIONS(4327), + [anon_sym_yield] = ACTIONS(4329), + [anon_sym_yield_BANG] = ACTIONS(4327), + [anon_sym_lazy] = ACTIONS(4329), + [anon_sym_assert] = ACTIONS(4329), + [anon_sym_upcast] = ACTIONS(4329), + [anon_sym_downcast] = ACTIONS(4329), + [anon_sym_LT_AT] = ACTIONS(4329), + [anon_sym_LT_AT_AT] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_match] = ACTIONS(4329), + [anon_sym_match_BANG] = ACTIONS(4327), + [anon_sym_function] = ACTIONS(4329), + [anon_sym_use] = ACTIONS(4329), + [anon_sym_use_BANG] = ACTIONS(4327), + [anon_sym_do_BANG] = ACTIONS(4327), + [anon_sym_begin] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_interface] = ACTIONS(4329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_AT_DQUOTE] = ACTIONS(4327), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4327), + [sym_bool] = ACTIONS(4329), + [sym_unit] = ACTIONS(4327), + [aux_sym__identifier_or_op_token1] = ACTIONS(4327), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_PLUS_DOT] = ACTIONS(4327), + [anon_sym_DASH_DOT] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [aux_sym_prefix_op_token1] = ACTIONS(4327), + [sym_int] = ACTIONS(4329), + [sym_xint] = ACTIONS(4327), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), + [anon_sym_POUNDif] = ACTIONS(4327), + [sym__dedent] = ACTIONS(4327), }, [2407] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3905), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2407), [sym_block_comment] = STATE(2407), [sym_preproc_line] = STATE(2407), - [sym_identifier] = ACTIONS(4344), - [anon_sym_module] = ACTIONS(4344), - [anon_sym_POUNDnowarn] = ACTIONS(4342), - [anon_sym_POUNDr] = ACTIONS(4342), - [anon_sym_POUNDload] = ACTIONS(4342), - [anon_sym_open] = ACTIONS(4344), - [anon_sym_LBRACK_LT] = ACTIONS(4342), - [anon_sym_return] = ACTIONS(4344), - [anon_sym_type] = ACTIONS(4344), - [anon_sym_do] = ACTIONS(4344), - [anon_sym_and] = ACTIONS(4344), - [anon_sym_let] = ACTIONS(4344), - [anon_sym_let_BANG] = ACTIONS(4342), - [anon_sym_null] = ACTIONS(4344), - [anon_sym_LPAREN] = ACTIONS(4344), - [anon_sym_AMP] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4344), - [anon_sym_LBRACK_PIPE] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_LBRACE_PIPE] = ACTIONS(4342), - [anon_sym_new] = ACTIONS(4344), - [anon_sym_return_BANG] = ACTIONS(4342), - [anon_sym_yield] = ACTIONS(4344), - [anon_sym_yield_BANG] = ACTIONS(4342), - [anon_sym_lazy] = ACTIONS(4344), - [anon_sym_assert] = ACTIONS(4344), - [anon_sym_upcast] = ACTIONS(4344), - [anon_sym_downcast] = ACTIONS(4344), - [anon_sym_LT_AT] = ACTIONS(4344), - [anon_sym_LT_AT_AT] = ACTIONS(4342), - [anon_sym_for] = ACTIONS(4344), - [anon_sym_while] = ACTIONS(4344), - [anon_sym_if] = ACTIONS(4344), - [anon_sym_fun] = ACTIONS(4344), - [anon_sym_try] = ACTIONS(4344), - [anon_sym_match] = ACTIONS(4344), - [anon_sym_match_BANG] = ACTIONS(4342), - [anon_sym_function] = ACTIONS(4344), - [anon_sym_use] = ACTIONS(4344), - [anon_sym_use_BANG] = ACTIONS(4342), - [anon_sym_do_BANG] = ACTIONS(4342), - [anon_sym_begin] = ACTIONS(4344), - [anon_sym_SQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4344), - [anon_sym_DQUOTE] = ACTIONS(4344), - [anon_sym_AT_DQUOTE] = ACTIONS(4342), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [sym_bool] = ACTIONS(4344), - [sym_unit] = ACTIONS(4342), - [aux_sym__identifier_or_op_token1] = ACTIONS(4342), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4344), - [anon_sym_PLUS] = ACTIONS(4344), - [anon_sym_DASH] = ACTIONS(4344), - [anon_sym_PLUS_DOT] = ACTIONS(4342), - [anon_sym_DASH_DOT] = ACTIONS(4342), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_TILDE] = ACTIONS(4342), - [aux_sym_prefix_op_token1] = ACTIONS(4342), - [sym_int] = ACTIONS(4344), - [sym_xint] = ACTIONS(4342), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4402), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4342), - [sym__dedent] = ACTIONS(4342), }, [2408] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3688), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2408), [sym_block_comment] = STATE(2408), [sym_preproc_line] = STATE(2408), - [sym_identifier] = ACTIONS(4362), - [anon_sym_module] = ACTIONS(4362), - [anon_sym_POUNDnowarn] = ACTIONS(4360), - [anon_sym_POUNDr] = ACTIONS(4360), - [anon_sym_POUNDload] = ACTIONS(4360), - [anon_sym_open] = ACTIONS(4362), - [anon_sym_LBRACK_LT] = ACTIONS(4360), - [anon_sym_return] = ACTIONS(4362), - [anon_sym_type] = ACTIONS(4362), - [anon_sym_do] = ACTIONS(4362), - [anon_sym_and] = ACTIONS(4362), - [anon_sym_let] = ACTIONS(4362), - [anon_sym_let_BANG] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_AMP] = ACTIONS(4362), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4362), - [anon_sym_LBRACE_PIPE] = ACTIONS(4360), - [anon_sym_new] = ACTIONS(4362), - [anon_sym_return_BANG] = ACTIONS(4360), - [anon_sym_yield] = ACTIONS(4362), - [anon_sym_yield_BANG] = ACTIONS(4360), - [anon_sym_lazy] = ACTIONS(4362), - [anon_sym_assert] = ACTIONS(4362), - [anon_sym_upcast] = ACTIONS(4362), - [anon_sym_downcast] = ACTIONS(4362), - [anon_sym_LT_AT] = ACTIONS(4362), - [anon_sym_LT_AT_AT] = ACTIONS(4360), - [anon_sym_for] = ACTIONS(4362), - [anon_sym_while] = ACTIONS(4362), - [anon_sym_if] = ACTIONS(4362), - [anon_sym_fun] = ACTIONS(4362), - [anon_sym_try] = ACTIONS(4362), - [anon_sym_match] = ACTIONS(4362), - [anon_sym_match_BANG] = ACTIONS(4360), - [anon_sym_function] = ACTIONS(4362), - [anon_sym_use] = ACTIONS(4362), - [anon_sym_use_BANG] = ACTIONS(4360), - [anon_sym_do_BANG] = ACTIONS(4360), - [anon_sym_begin] = ACTIONS(4362), - [anon_sym_SQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [aux_sym__identifier_or_op_token1] = ACTIONS(4360), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4362), - [anon_sym_PLUS] = ACTIONS(4362), - [anon_sym_DASH] = ACTIONS(4362), - [anon_sym_PLUS_DOT] = ACTIONS(4360), - [anon_sym_DASH_DOT] = ACTIONS(4360), - [anon_sym_PERCENT] = ACTIONS(4360), - [anon_sym_AMP_AMP] = ACTIONS(4360), - [anon_sym_TILDE] = ACTIONS(4360), - [aux_sym_prefix_op_token1] = ACTIONS(4360), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4360), - [sym__dedent] = ACTIONS(4360), }, [2409] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3687), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2409), [sym_block_comment] = STATE(2409), [sym_preproc_line] = STATE(2409), - [sym_identifier] = ACTIONS(4348), - [anon_sym_module] = ACTIONS(4348), - [anon_sym_POUNDnowarn] = ACTIONS(4346), - [anon_sym_POUNDr] = ACTIONS(4346), - [anon_sym_POUNDload] = ACTIONS(4346), - [anon_sym_open] = ACTIONS(4348), - [anon_sym_LBRACK_LT] = ACTIONS(4346), - [anon_sym_return] = ACTIONS(4348), - [anon_sym_type] = ACTIONS(4348), - [anon_sym_do] = ACTIONS(4348), - [anon_sym_and] = ACTIONS(4348), - [anon_sym_let] = ACTIONS(4348), - [anon_sym_let_BANG] = ACTIONS(4346), - [anon_sym_null] = ACTIONS(4348), - [anon_sym_LPAREN] = ACTIONS(4348), - [anon_sym_AMP] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4348), - [anon_sym_LBRACK_PIPE] = ACTIONS(4346), - [anon_sym_LBRACE] = ACTIONS(4348), - [anon_sym_LBRACE_PIPE] = ACTIONS(4346), - [anon_sym_new] = ACTIONS(4348), - [anon_sym_return_BANG] = ACTIONS(4346), - [anon_sym_yield] = ACTIONS(4348), - [anon_sym_yield_BANG] = ACTIONS(4346), - [anon_sym_lazy] = ACTIONS(4348), - [anon_sym_assert] = ACTIONS(4348), - [anon_sym_upcast] = ACTIONS(4348), - [anon_sym_downcast] = ACTIONS(4348), - [anon_sym_LT_AT] = ACTIONS(4348), - [anon_sym_LT_AT_AT] = ACTIONS(4346), - [anon_sym_for] = ACTIONS(4348), - [anon_sym_while] = ACTIONS(4348), - [anon_sym_if] = ACTIONS(4348), - [anon_sym_fun] = ACTIONS(4348), - [anon_sym_try] = ACTIONS(4348), - [anon_sym_match] = ACTIONS(4348), - [anon_sym_match_BANG] = ACTIONS(4346), - [anon_sym_function] = ACTIONS(4348), - [anon_sym_use] = ACTIONS(4348), - [anon_sym_use_BANG] = ACTIONS(4346), - [anon_sym_do_BANG] = ACTIONS(4346), - [anon_sym_begin] = ACTIONS(4348), - [anon_sym_SQUOTE] = ACTIONS(4346), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4348), - [anon_sym_DQUOTE] = ACTIONS(4348), - [anon_sym_AT_DQUOTE] = ACTIONS(4346), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4346), - [sym_bool] = ACTIONS(4348), - [sym_unit] = ACTIONS(4346), - [aux_sym__identifier_or_op_token1] = ACTIONS(4346), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4348), - [anon_sym_PLUS] = ACTIONS(4348), - [anon_sym_DASH] = ACTIONS(4348), - [anon_sym_PLUS_DOT] = ACTIONS(4346), - [anon_sym_DASH_DOT] = ACTIONS(4346), - [anon_sym_PERCENT] = ACTIONS(4346), - [anon_sym_AMP_AMP] = ACTIONS(4346), - [anon_sym_TILDE] = ACTIONS(4346), - [aux_sym_prefix_op_token1] = ACTIONS(4346), - [sym_int] = ACTIONS(4348), - [sym_xint] = ACTIONS(4346), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4346), - [sym__dedent] = ACTIONS(4346), }, [2410] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3949), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2410), [sym_block_comment] = STATE(2410), [sym_preproc_line] = STATE(2410), - [ts_builtin_sym_end] = ACTIONS(4372), - [sym_identifier] = ACTIONS(4374), - [anon_sym_namespace] = ACTIONS(4374), - [anon_sym_module] = ACTIONS(4374), - [anon_sym_POUNDnowarn] = ACTIONS(4372), - [anon_sym_POUNDr] = ACTIONS(4372), - [anon_sym_POUNDload] = ACTIONS(4372), - [anon_sym_open] = ACTIONS(4374), - [anon_sym_LBRACK_LT] = ACTIONS(4372), - [anon_sym_return] = ACTIONS(4374), - [anon_sym_type] = ACTIONS(4374), - [anon_sym_do] = ACTIONS(4374), - [anon_sym_let] = ACTIONS(4374), - [anon_sym_let_BANG] = ACTIONS(4372), - [anon_sym_null] = ACTIONS(4374), - [anon_sym_LPAREN] = ACTIONS(4374), - [anon_sym_AMP] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_LBRACK_PIPE] = ACTIONS(4372), - [anon_sym_LBRACE] = ACTIONS(4374), - [anon_sym_LBRACE_PIPE] = ACTIONS(4372), - [anon_sym_new] = ACTIONS(4374), - [anon_sym_return_BANG] = ACTIONS(4372), - [anon_sym_yield] = ACTIONS(4374), - [anon_sym_yield_BANG] = ACTIONS(4372), - [anon_sym_lazy] = ACTIONS(4374), - [anon_sym_assert] = ACTIONS(4374), - [anon_sym_upcast] = ACTIONS(4374), - [anon_sym_downcast] = ACTIONS(4374), - [anon_sym_LT_AT] = ACTIONS(4374), - [anon_sym_LT_AT_AT] = ACTIONS(4372), - [anon_sym_for] = ACTIONS(4374), - [anon_sym_while] = ACTIONS(4374), - [anon_sym_if] = ACTIONS(4374), - [anon_sym_fun] = ACTIONS(4374), - [anon_sym_try] = ACTIONS(4374), - [anon_sym_match] = ACTIONS(4374), - [anon_sym_match_BANG] = ACTIONS(4372), - [anon_sym_function] = ACTIONS(4374), - [anon_sym_use] = ACTIONS(4374), - [anon_sym_use_BANG] = ACTIONS(4372), - [anon_sym_do_BANG] = ACTIONS(4372), - [anon_sym_begin] = ACTIONS(4374), - [anon_sym_SQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4374), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4372), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4372), - [sym_bool] = ACTIONS(4374), - [sym_unit] = ACTIONS(4372), - [aux_sym__identifier_or_op_token1] = ACTIONS(4372), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4374), - [anon_sym_PLUS] = ACTIONS(4374), - [anon_sym_DASH] = ACTIONS(4374), - [anon_sym_PLUS_DOT] = ACTIONS(4372), - [anon_sym_DASH_DOT] = ACTIONS(4372), - [anon_sym_PERCENT] = ACTIONS(4372), - [anon_sym_AMP_AMP] = ACTIONS(4372), - [anon_sym_TILDE] = ACTIONS(4372), - [aux_sym_prefix_op_token1] = ACTIONS(4372), - [sym_int] = ACTIONS(4374), - [sym_xint] = ACTIONS(4372), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4372), }, [2411] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3685), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2411), [sym_block_comment] = STATE(2411), [sym_preproc_line] = STATE(2411), - [sym_identifier] = ACTIONS(4354), - [anon_sym_module] = ACTIONS(4354), - [anon_sym_POUNDnowarn] = ACTIONS(4352), - [anon_sym_POUNDr] = ACTIONS(4352), - [anon_sym_POUNDload] = ACTIONS(4352), - [anon_sym_open] = ACTIONS(4354), - [anon_sym_LBRACK_LT] = ACTIONS(4352), - [anon_sym_return] = ACTIONS(4354), - [anon_sym_type] = ACTIONS(4354), - [anon_sym_do] = ACTIONS(4354), - [anon_sym_and] = ACTIONS(4354), - [anon_sym_let] = ACTIONS(4354), - [anon_sym_let_BANG] = ACTIONS(4352), - [anon_sym_null] = ACTIONS(4354), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_AMP] = ACTIONS(4354), - [anon_sym_LBRACK] = ACTIONS(4354), - [anon_sym_LBRACK_PIPE] = ACTIONS(4352), - [anon_sym_LBRACE] = ACTIONS(4354), - [anon_sym_LBRACE_PIPE] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_return_BANG] = ACTIONS(4352), - [anon_sym_yield] = ACTIONS(4354), - [anon_sym_yield_BANG] = ACTIONS(4352), - [anon_sym_lazy] = ACTIONS(4354), - [anon_sym_assert] = ACTIONS(4354), - [anon_sym_upcast] = ACTIONS(4354), - [anon_sym_downcast] = ACTIONS(4354), - [anon_sym_LT_AT] = ACTIONS(4354), - [anon_sym_LT_AT_AT] = ACTIONS(4352), - [anon_sym_for] = ACTIONS(4354), - [anon_sym_while] = ACTIONS(4354), - [anon_sym_if] = ACTIONS(4354), - [anon_sym_fun] = ACTIONS(4354), - [anon_sym_try] = ACTIONS(4354), - [anon_sym_match] = ACTIONS(4354), - [anon_sym_match_BANG] = ACTIONS(4352), - [anon_sym_function] = ACTIONS(4354), - [anon_sym_use] = ACTIONS(4354), - [anon_sym_use_BANG] = ACTIONS(4352), - [anon_sym_do_BANG] = ACTIONS(4352), - [anon_sym_begin] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4354), - [anon_sym_DQUOTE] = ACTIONS(4354), - [anon_sym_AT_DQUOTE] = ACTIONS(4352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4352), - [sym_bool] = ACTIONS(4354), - [sym_unit] = ACTIONS(4352), - [aux_sym__identifier_or_op_token1] = ACTIONS(4352), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4354), - [anon_sym_PLUS] = ACTIONS(4354), - [anon_sym_DASH] = ACTIONS(4354), - [anon_sym_PLUS_DOT] = ACTIONS(4352), - [anon_sym_DASH_DOT] = ACTIONS(4352), - [anon_sym_PERCENT] = ACTIONS(4352), - [anon_sym_AMP_AMP] = ACTIONS(4352), - [anon_sym_TILDE] = ACTIONS(4352), - [aux_sym_prefix_op_token1] = ACTIONS(4352), - [sym_int] = ACTIONS(4354), - [sym_xint] = ACTIONS(4352), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4352), - [sym__dedent] = ACTIONS(4352), }, [2412] = { + [sym_attributes] = STATE(2394), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3845), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2126), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2412), [sym_block_comment] = STATE(2412), [sym_preproc_line] = STATE(2412), - [sym_identifier] = ACTIONS(4318), - [anon_sym_module] = ACTIONS(4318), - [anon_sym_POUNDnowarn] = ACTIONS(4316), - [anon_sym_POUNDr] = ACTIONS(4316), - [anon_sym_POUNDload] = ACTIONS(4316), - [anon_sym_open] = ACTIONS(4318), - [anon_sym_LBRACK_LT] = ACTIONS(4316), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_type] = ACTIONS(4318), - [anon_sym_do] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_let_BANG] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_AMP] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_LBRACK_PIPE] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_LBRACE_PIPE] = ACTIONS(4316), - [anon_sym_new] = ACTIONS(4318), - [anon_sym_return_BANG] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4318), - [anon_sym_yield_BANG] = ACTIONS(4316), - [anon_sym_lazy] = ACTIONS(4318), - [anon_sym_assert] = ACTIONS(4318), - [anon_sym_upcast] = ACTIONS(4318), - [anon_sym_downcast] = ACTIONS(4318), - [anon_sym_LT_AT] = ACTIONS(4318), - [anon_sym_LT_AT_AT] = ACTIONS(4316), - [anon_sym_for] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_fun] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_match] = ACTIONS(4318), - [anon_sym_match_BANG] = ACTIONS(4316), - [anon_sym_function] = ACTIONS(4318), - [anon_sym_use] = ACTIONS(4318), - [anon_sym_use_BANG] = ACTIONS(4316), - [anon_sym_do_BANG] = ACTIONS(4316), - [anon_sym_begin] = ACTIONS(4318), - [anon_sym_SQUOTE] = ACTIONS(4316), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4318), - [anon_sym_DQUOTE] = ACTIONS(4318), - [anon_sym_AT_DQUOTE] = ACTIONS(4316), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4316), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4316), - [sym_bool] = ACTIONS(4318), - [sym_unit] = ACTIONS(4316), - [aux_sym__identifier_or_op_token1] = ACTIONS(4316), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_PLUS_DOT] = ACTIONS(4316), - [anon_sym_DASH_DOT] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [aux_sym_prefix_op_token1] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4316), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3952), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4316), - [sym__dedent] = ACTIONS(4316), }, [2413] = { + [sym_attributes] = STATE(2404), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3684), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2114), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2413), [sym_block_comment] = STATE(2413), [sym_preproc_line] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(4376), - [sym_identifier] = ACTIONS(4378), - [anon_sym_namespace] = ACTIONS(4378), - [anon_sym_module] = ACTIONS(4378), - [anon_sym_POUNDnowarn] = ACTIONS(4376), - [anon_sym_POUNDr] = ACTIONS(4376), - [anon_sym_POUNDload] = ACTIONS(4376), - [anon_sym_open] = ACTIONS(4378), - [anon_sym_LBRACK_LT] = ACTIONS(4376), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_type] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_let] = ACTIONS(4378), - [anon_sym_let_BANG] = ACTIONS(4376), - [anon_sym_null] = ACTIONS(4378), - [anon_sym_LPAREN] = ACTIONS(4378), - [anon_sym_AMP] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_LBRACK_PIPE] = ACTIONS(4376), - [anon_sym_LBRACE] = ACTIONS(4378), - [anon_sym_LBRACE_PIPE] = ACTIONS(4376), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_return_BANG] = ACTIONS(4376), - [anon_sym_yield] = ACTIONS(4378), - [anon_sym_yield_BANG] = ACTIONS(4376), - [anon_sym_lazy] = ACTIONS(4378), - [anon_sym_assert] = ACTIONS(4378), - [anon_sym_upcast] = ACTIONS(4378), - [anon_sym_downcast] = ACTIONS(4378), - [anon_sym_LT_AT] = ACTIONS(4378), - [anon_sym_LT_AT_AT] = ACTIONS(4376), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_fun] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_match] = ACTIONS(4378), - [anon_sym_match_BANG] = ACTIONS(4376), - [anon_sym_function] = ACTIONS(4378), - [anon_sym_use] = ACTIONS(4378), - [anon_sym_use_BANG] = ACTIONS(4376), - [anon_sym_do_BANG] = ACTIONS(4376), - [anon_sym_begin] = ACTIONS(4378), - [anon_sym_SQUOTE] = ACTIONS(4376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4378), - [anon_sym_DQUOTE] = ACTIONS(4378), - [anon_sym_AT_DQUOTE] = ACTIONS(4376), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4376), - [aux_sym__identifier_or_op_token1] = ACTIONS(4376), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_PLUS_DOT] = ACTIONS(4376), - [anon_sym_DASH_DOT] = ACTIONS(4376), - [anon_sym_PERCENT] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4376), - [anon_sym_TILDE] = ACTIONS(4376), - [aux_sym_prefix_op_token1] = ACTIONS(4376), - [sym_int] = ACTIONS(4378), - [sym_xint] = ACTIONS(4376), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3918), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4376), }, [2414] = { [sym_xml_doc] = STATE(2414), [sym_block_comment] = STATE(2414), [sym_preproc_line] = STATE(2414), - [ts_builtin_sym_end] = ACTIONS(4380), - [sym_identifier] = ACTIONS(4382), - [anon_sym_namespace] = ACTIONS(4382), - [anon_sym_module] = ACTIONS(4382), - [anon_sym_POUNDnowarn] = ACTIONS(4380), - [anon_sym_POUNDr] = ACTIONS(4380), - [anon_sym_POUNDload] = ACTIONS(4380), - [anon_sym_open] = ACTIONS(4382), - [anon_sym_LBRACK_LT] = ACTIONS(4380), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_type] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_let] = ACTIONS(4382), - [anon_sym_let_BANG] = ACTIONS(4380), - [anon_sym_null] = ACTIONS(4382), - [anon_sym_LPAREN] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_LBRACK_PIPE] = ACTIONS(4380), - [anon_sym_LBRACE] = ACTIONS(4382), - [anon_sym_LBRACE_PIPE] = ACTIONS(4380), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_return_BANG] = ACTIONS(4380), - [anon_sym_yield] = ACTIONS(4382), - [anon_sym_yield_BANG] = ACTIONS(4380), - [anon_sym_lazy] = ACTIONS(4382), - [anon_sym_assert] = ACTIONS(4382), - [anon_sym_upcast] = ACTIONS(4382), - [anon_sym_downcast] = ACTIONS(4382), - [anon_sym_LT_AT] = ACTIONS(4382), - [anon_sym_LT_AT_AT] = ACTIONS(4380), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_fun] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_match] = ACTIONS(4382), - [anon_sym_match_BANG] = ACTIONS(4380), - [anon_sym_function] = ACTIONS(4382), - [anon_sym_use] = ACTIONS(4382), - [anon_sym_use_BANG] = ACTIONS(4380), - [anon_sym_do_BANG] = ACTIONS(4380), - [anon_sym_begin] = ACTIONS(4382), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(4382), - [anon_sym_AT_DQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4380), - [sym_bool] = ACTIONS(4382), - [sym_unit] = ACTIONS(4380), - [aux_sym__identifier_or_op_token1] = ACTIONS(4380), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS_DOT] = ACTIONS(4380), - [anon_sym_DASH_DOT] = ACTIONS(4380), - [anon_sym_PERCENT] = ACTIONS(4380), - [anon_sym_AMP_AMP] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [aux_sym_prefix_op_token1] = ACTIONS(4380), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4380), + [ts_builtin_sym_end] = ACTIONS(4434), + [sym_identifier] = ACTIONS(4436), + [anon_sym_namespace] = ACTIONS(4436), + [anon_sym_module] = ACTIONS(4436), + [anon_sym_POUNDnowarn] = ACTIONS(4434), + [anon_sym_POUNDr] = ACTIONS(4434), + [anon_sym_POUNDload] = ACTIONS(4434), + [anon_sym_open] = ACTIONS(4436), + [anon_sym_LBRACK_LT] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4436), + [anon_sym_type] = ACTIONS(4436), + [anon_sym_do] = ACTIONS(4436), + [anon_sym_and] = ACTIONS(4436), + [anon_sym_let] = ACTIONS(4436), + [anon_sym_let_BANG] = ACTIONS(4434), + [anon_sym_null] = ACTIONS(4436), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_LBRACK_PIPE] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_LBRACE_PIPE] = ACTIONS(4434), + [anon_sym_new] = ACTIONS(4436), + [anon_sym_return_BANG] = ACTIONS(4434), + [anon_sym_yield] = ACTIONS(4436), + [anon_sym_yield_BANG] = ACTIONS(4434), + [anon_sym_lazy] = ACTIONS(4436), + [anon_sym_assert] = ACTIONS(4436), + [anon_sym_upcast] = ACTIONS(4436), + [anon_sym_downcast] = ACTIONS(4436), + [anon_sym_LT_AT] = ACTIONS(4436), + [anon_sym_LT_AT_AT] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4436), + [anon_sym_while] = ACTIONS(4436), + [anon_sym_if] = ACTIONS(4436), + [anon_sym_fun] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4436), + [anon_sym_match] = ACTIONS(4436), + [anon_sym_match_BANG] = ACTIONS(4434), + [anon_sym_function] = ACTIONS(4436), + [anon_sym_use] = ACTIONS(4436), + [anon_sym_use_BANG] = ACTIONS(4434), + [anon_sym_do_BANG] = ACTIONS(4434), + [anon_sym_begin] = ACTIONS(4436), + [anon_sym_SQUOTE] = ACTIONS(4434), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [anon_sym_AT_DQUOTE] = ACTIONS(4434), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4434), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4434), + [sym_bool] = ACTIONS(4436), + [sym_unit] = ACTIONS(4434), + [aux_sym__identifier_or_op_token1] = ACTIONS(4434), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4436), + [anon_sym_PLUS] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_PLUS_DOT] = ACTIONS(4434), + [anon_sym_DASH_DOT] = ACTIONS(4434), + [anon_sym_PERCENT] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [aux_sym_prefix_op_token1] = ACTIONS(4434), + [sym_int] = ACTIONS(4436), + [sym_xint] = ACTIONS(4434), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4380), + [anon_sym_POUNDif] = ACTIONS(4434), }, [2415] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3936), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2415), [sym_block_comment] = STATE(2415), [sym_preproc_line] = STATE(2415), - [sym_identifier] = ACTIONS(4314), - [anon_sym_module] = ACTIONS(4314), - [anon_sym_POUNDnowarn] = ACTIONS(4312), - [anon_sym_POUNDr] = ACTIONS(4312), - [anon_sym_POUNDload] = ACTIONS(4312), - [anon_sym_open] = ACTIONS(4314), - [anon_sym_LBRACK_LT] = ACTIONS(4312), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_type] = ACTIONS(4314), - [anon_sym_do] = ACTIONS(4314), - [anon_sym_and] = ACTIONS(4314), - [anon_sym_let] = ACTIONS(4314), - [anon_sym_let_BANG] = ACTIONS(4312), - [anon_sym_null] = ACTIONS(4314), - [anon_sym_LPAREN] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4314), - [anon_sym_LBRACK_PIPE] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4314), - [anon_sym_LBRACE_PIPE] = ACTIONS(4312), - [anon_sym_new] = ACTIONS(4314), - [anon_sym_return_BANG] = ACTIONS(4312), - [anon_sym_yield] = ACTIONS(4314), - [anon_sym_yield_BANG] = ACTIONS(4312), - [anon_sym_lazy] = ACTIONS(4314), - [anon_sym_assert] = ACTIONS(4314), - [anon_sym_upcast] = ACTIONS(4314), - [anon_sym_downcast] = ACTIONS(4314), - [anon_sym_LT_AT] = ACTIONS(4314), - [anon_sym_LT_AT_AT] = ACTIONS(4312), - [anon_sym_for] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_fun] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_match] = ACTIONS(4314), - [anon_sym_match_BANG] = ACTIONS(4312), - [anon_sym_function] = ACTIONS(4314), - [anon_sym_use] = ACTIONS(4314), - [anon_sym_use_BANG] = ACTIONS(4312), - [anon_sym_do_BANG] = ACTIONS(4312), - [anon_sym_begin] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4314), - [anon_sym_DQUOTE] = ACTIONS(4314), - [anon_sym_AT_DQUOTE] = ACTIONS(4312), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4312), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4312), - [sym_bool] = ACTIONS(4314), - [sym_unit] = ACTIONS(4312), - [aux_sym__identifier_or_op_token1] = ACTIONS(4312), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4314), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_PLUS_DOT] = ACTIONS(4312), - [anon_sym_DASH_DOT] = ACTIONS(4312), - [anon_sym_PERCENT] = ACTIONS(4312), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_TILDE] = ACTIONS(4312), - [aux_sym_prefix_op_token1] = ACTIONS(4312), - [sym_int] = ACTIONS(4314), - [sym_xint] = ACTIONS(4312), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4312), - [sym__dedent] = ACTIONS(4312), }, [2416] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3918), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2416), [sym_block_comment] = STATE(2416), [sym_preproc_line] = STATE(2416), - [ts_builtin_sym_end] = ACTIONS(4384), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4386), - [anon_sym_module] = ACTIONS(4386), - [anon_sym_POUNDnowarn] = ACTIONS(4384), - [anon_sym_POUNDr] = ACTIONS(4384), - [anon_sym_POUNDload] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4386), - [anon_sym_LBRACK_LT] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4386), - [anon_sym_type] = ACTIONS(4386), - [anon_sym_do] = ACTIONS(4386), - [anon_sym_let] = ACTIONS(4386), - [anon_sym_let_BANG] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_LBRACK_PIPE] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4386), - [anon_sym_LBRACE_PIPE] = ACTIONS(4384), - [anon_sym_new] = ACTIONS(4386), - [anon_sym_return_BANG] = ACTIONS(4384), - [anon_sym_yield] = ACTIONS(4386), - [anon_sym_yield_BANG] = ACTIONS(4384), - [anon_sym_lazy] = ACTIONS(4386), - [anon_sym_assert] = ACTIONS(4386), - [anon_sym_upcast] = ACTIONS(4386), - [anon_sym_downcast] = ACTIONS(4386), - [anon_sym_LT_AT] = ACTIONS(4386), - [anon_sym_LT_AT_AT] = ACTIONS(4384), - [anon_sym_for] = ACTIONS(4386), - [anon_sym_while] = ACTIONS(4386), - [anon_sym_if] = ACTIONS(4386), - [anon_sym_fun] = ACTIONS(4386), - [anon_sym_try] = ACTIONS(4386), - [anon_sym_match] = ACTIONS(4386), - [anon_sym_match_BANG] = ACTIONS(4384), - [anon_sym_function] = ACTIONS(4386), - [anon_sym_use] = ACTIONS(4386), - [anon_sym_use_BANG] = ACTIONS(4384), - [anon_sym_do_BANG] = ACTIONS(4384), - [anon_sym_begin] = ACTIONS(4386), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4386), - [anon_sym_DQUOTE] = ACTIONS(4386), - [anon_sym_AT_DQUOTE] = ACTIONS(4384), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4384), - [sym_bool] = ACTIONS(4386), - [sym_unit] = ACTIONS(4384), - [aux_sym__identifier_or_op_token1] = ACTIONS(4384), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_PLUS_DOT] = ACTIONS(4384), - [anon_sym_DASH_DOT] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [aux_sym_prefix_op_token1] = ACTIONS(4384), - [sym_int] = ACTIONS(4386), - [sym_xint] = ACTIONS(4384), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4438), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4384), }, [2417] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3934), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2417), [sym_block_comment] = STATE(2417), [sym_preproc_line] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(4388), - [sym_identifier] = ACTIONS(4390), - [anon_sym_namespace] = ACTIONS(4390), - [anon_sym_module] = ACTIONS(4390), - [anon_sym_POUNDnowarn] = ACTIONS(4388), - [anon_sym_POUNDr] = ACTIONS(4388), - [anon_sym_POUNDload] = ACTIONS(4388), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_LBRACK_LT] = ACTIONS(4388), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_type] = ACTIONS(4390), - [anon_sym_do] = ACTIONS(4390), - [anon_sym_let] = ACTIONS(4390), - [anon_sym_let_BANG] = ACTIONS(4388), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_LPAREN] = ACTIONS(4390), - [anon_sym_AMP] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4390), - [anon_sym_LBRACK_PIPE] = ACTIONS(4388), - [anon_sym_LBRACE] = ACTIONS(4390), - [anon_sym_LBRACE_PIPE] = ACTIONS(4388), - [anon_sym_new] = ACTIONS(4390), - [anon_sym_return_BANG] = ACTIONS(4388), - [anon_sym_yield] = ACTIONS(4390), - [anon_sym_yield_BANG] = ACTIONS(4388), - [anon_sym_lazy] = ACTIONS(4390), - [anon_sym_assert] = ACTIONS(4390), - [anon_sym_upcast] = ACTIONS(4390), - [anon_sym_downcast] = ACTIONS(4390), - [anon_sym_LT_AT] = ACTIONS(4390), - [anon_sym_LT_AT_AT] = ACTIONS(4388), - [anon_sym_for] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_fun] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_match] = ACTIONS(4390), - [anon_sym_match_BANG] = ACTIONS(4388), - [anon_sym_function] = ACTIONS(4390), - [anon_sym_use] = ACTIONS(4390), - [anon_sym_use_BANG] = ACTIONS(4388), - [anon_sym_do_BANG] = ACTIONS(4388), - [anon_sym_begin] = ACTIONS(4390), - [anon_sym_SQUOTE] = ACTIONS(4388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), - [anon_sym_DQUOTE] = ACTIONS(4390), - [anon_sym_AT_DQUOTE] = ACTIONS(4388), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), - [sym_bool] = ACTIONS(4390), - [sym_unit] = ACTIONS(4388), - [aux_sym__identifier_or_op_token1] = ACTIONS(4388), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4390), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_PLUS_DOT] = ACTIONS(4388), - [anon_sym_DASH_DOT] = ACTIONS(4388), - [anon_sym_PERCENT] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_TILDE] = ACTIONS(4388), - [aux_sym_prefix_op_token1] = ACTIONS(4388), - [sym_int] = ACTIONS(4390), - [sym_xint] = ACTIONS(4388), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4440), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4388), }, [2418] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3938), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2418), [sym_block_comment] = STATE(2418), [sym_preproc_line] = STATE(2418), - [ts_builtin_sym_end] = ACTIONS(3070), - [sym_identifier] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_POUNDnowarn] = ACTIONS(3070), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3068), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_LT_AT_AT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3070), - [aux_sym__identifier_or_op_token1] = ACTIONS(3070), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3070), - [anon_sym_DASH_DOT] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4442), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), }, [2419] = { - [sym_type_arguments] = STATE(2509), - [sym_long_identifier] = STATE(2501), [sym_xml_doc] = STATE(2419), [sym_block_comment] = STATE(2419), [sym_preproc_line] = STATE(2419), - [aux_sym__compound_type_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(4444), + [sym_identifier] = ACTIONS(4446), + [anon_sym_namespace] = ACTIONS(4446), + [anon_sym_module] = ACTIONS(4446), + [anon_sym_POUNDnowarn] = ACTIONS(4444), + [anon_sym_POUNDr] = ACTIONS(4444), + [anon_sym_POUNDload] = ACTIONS(4444), + [anon_sym_open] = ACTIONS(4446), + [anon_sym_LBRACK_LT] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_let] = ACTIONS(4446), + [anon_sym_let_BANG] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4446), + [anon_sym_LBRACK_PIPE] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4446), + [anon_sym_LBRACE_PIPE] = ACTIONS(4444), + [anon_sym_new] = ACTIONS(4446), + [anon_sym_return_BANG] = ACTIONS(4444), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_yield_BANG] = ACTIONS(4444), + [anon_sym_lazy] = ACTIONS(4446), + [anon_sym_assert] = ACTIONS(4446), + [anon_sym_upcast] = ACTIONS(4446), + [anon_sym_downcast] = ACTIONS(4446), + [anon_sym_LT_AT] = ACTIONS(4446), + [anon_sym_LT_AT_AT] = ACTIONS(4444), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_fun] = ACTIONS(4446), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_match_BANG] = ACTIONS(4444), + [anon_sym_function] = ACTIONS(4446), + [anon_sym_use] = ACTIONS(4446), + [anon_sym_use_BANG] = ACTIONS(4444), + [anon_sym_do_BANG] = ACTIONS(4444), + [anon_sym_begin] = ACTIONS(4446), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(4446), + [anon_sym_AT_DQUOTE] = ACTIONS(4444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4444), + [sym_bool] = ACTIONS(4446), + [sym_unit] = ACTIONS(4444), + [aux_sym__identifier_or_op_token1] = ACTIONS(4444), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_PLUS_DOT] = ACTIONS(4444), + [anon_sym_DASH_DOT] = ACTIONS(4444), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [aux_sym_prefix_op_token1] = ACTIONS(4444), + [sym_int] = ACTIONS(4446), + [sym_xint] = ACTIONS(4444), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(4444), }, [2420] = { [sym_xml_doc] = STATE(2420), [sym_block_comment] = STATE(2420), [sym_preproc_line] = STATE(2420), - [ts_builtin_sym_end] = ACTIONS(4392), - [sym_identifier] = ACTIONS(4394), - [anon_sym_namespace] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_POUNDnowarn] = ACTIONS(4392), - [anon_sym_POUNDr] = ACTIONS(4392), - [anon_sym_POUNDload] = ACTIONS(4392), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_LBRACK_LT] = ACTIONS(4392), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_type] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_let] = ACTIONS(4394), - [anon_sym_let_BANG] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_LBRACK_PIPE] = ACTIONS(4392), - [anon_sym_LBRACE] = ACTIONS(4394), - [anon_sym_LBRACE_PIPE] = ACTIONS(4392), - [anon_sym_new] = ACTIONS(4394), - [anon_sym_return_BANG] = ACTIONS(4392), - [anon_sym_yield] = ACTIONS(4394), - [anon_sym_yield_BANG] = ACTIONS(4392), - [anon_sym_lazy] = ACTIONS(4394), - [anon_sym_assert] = ACTIONS(4394), - [anon_sym_upcast] = ACTIONS(4394), - [anon_sym_downcast] = ACTIONS(4394), - [anon_sym_LT_AT] = ACTIONS(4394), - [anon_sym_LT_AT_AT] = ACTIONS(4392), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_match] = ACTIONS(4394), - [anon_sym_match_BANG] = ACTIONS(4392), - [anon_sym_function] = ACTIONS(4394), - [anon_sym_use] = ACTIONS(4394), - [anon_sym_use_BANG] = ACTIONS(4392), - [anon_sym_do_BANG] = ACTIONS(4392), - [anon_sym_begin] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(4394), - [anon_sym_AT_DQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [sym_bool] = ACTIONS(4394), - [sym_unit] = ACTIONS(4392), - [aux_sym__identifier_or_op_token1] = ACTIONS(4392), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS_DOT] = ACTIONS(4392), - [anon_sym_DASH_DOT] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [aux_sym_prefix_op_token1] = ACTIONS(4392), - [sym_int] = ACTIONS(4394), - [sym_xint] = ACTIONS(4392), + [ts_builtin_sym_end] = ACTIONS(4448), + [sym_identifier] = ACTIONS(4450), + [anon_sym_namespace] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_POUNDnowarn] = ACTIONS(4448), + [anon_sym_POUNDr] = ACTIONS(4448), + [anon_sym_POUNDload] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4450), + [anon_sym_LBRACK_LT] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_type] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_and] = ACTIONS(4450), + [anon_sym_let] = ACTIONS(4450), + [anon_sym_let_BANG] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_LBRACK_PIPE] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_LBRACE_PIPE] = ACTIONS(4448), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_return_BANG] = ACTIONS(4448), + [anon_sym_yield] = ACTIONS(4450), + [anon_sym_yield_BANG] = ACTIONS(4448), + [anon_sym_lazy] = ACTIONS(4450), + [anon_sym_assert] = ACTIONS(4450), + [anon_sym_upcast] = ACTIONS(4450), + [anon_sym_downcast] = ACTIONS(4450), + [anon_sym_LT_AT] = ACTIONS(4450), + [anon_sym_LT_AT_AT] = ACTIONS(4448), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_fun] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_match] = ACTIONS(4450), + [anon_sym_match_BANG] = ACTIONS(4448), + [anon_sym_function] = ACTIONS(4450), + [anon_sym_use] = ACTIONS(4450), + [anon_sym_use_BANG] = ACTIONS(4448), + [anon_sym_do_BANG] = ACTIONS(4448), + [anon_sym_begin] = ACTIONS(4450), + [anon_sym_SQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4450), + [anon_sym_DQUOTE] = ACTIONS(4450), + [anon_sym_AT_DQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4448), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4448), + [sym_bool] = ACTIONS(4450), + [sym_unit] = ACTIONS(4448), + [aux_sym__identifier_or_op_token1] = ACTIONS(4448), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS_DOT] = ACTIONS(4448), + [anon_sym_DASH_DOT] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4448), + [anon_sym_TILDE] = ACTIONS(4448), + [aux_sym_prefix_op_token1] = ACTIONS(4448), + [sym_int] = ACTIONS(4450), + [sym_xint] = ACTIONS(4448), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4392), + [anon_sym_POUNDif] = ACTIONS(4448), }, [2421] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3935), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2421), [sym_block_comment] = STATE(2421), [sym_preproc_line] = STATE(2421), - [sym_identifier] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_POUNDnowarn] = ACTIONS(4034), - [anon_sym_POUNDr] = ACTIONS(4034), - [anon_sym_POUNDload] = ACTIONS(4034), - [anon_sym_open] = ACTIONS(4036), - [anon_sym_LBRACK_LT] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_type] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_and] = ACTIONS(4036), - [anon_sym_let] = ACTIONS(4036), - [anon_sym_let_BANG] = ACTIONS(4034), - [anon_sym_null] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_LBRACK_PIPE] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_LBRACE_PIPE] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_return_BANG] = ACTIONS(4034), - [anon_sym_yield] = ACTIONS(4036), - [anon_sym_yield_BANG] = ACTIONS(4034), - [anon_sym_lazy] = ACTIONS(4036), - [anon_sym_assert] = ACTIONS(4036), - [anon_sym_upcast] = ACTIONS(4036), - [anon_sym_downcast] = ACTIONS(4036), - [anon_sym_LT_AT] = ACTIONS(4036), - [anon_sym_LT_AT_AT] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_fun] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_match] = ACTIONS(4036), - [anon_sym_match_BANG] = ACTIONS(4034), - [anon_sym_function] = ACTIONS(4036), - [anon_sym_use] = ACTIONS(4036), - [anon_sym_use_BANG] = ACTIONS(4034), - [anon_sym_do_BANG] = ACTIONS(4034), - [anon_sym_begin] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_AT_DQUOTE] = ACTIONS(4034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4034), - [sym_bool] = ACTIONS(4036), - [sym_unit] = ACTIONS(4034), - [aux_sym__identifier_or_op_token1] = ACTIONS(4034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS_DOT] = ACTIONS(4034), - [anon_sym_DASH_DOT] = ACTIONS(4034), - [anon_sym_PERCENT] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [aux_sym_prefix_op_token1] = ACTIONS(4034), - [sym_int] = ACTIONS(4036), - [sym_xint] = ACTIONS(4034), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4034), - [sym__dedent] = ACTIONS(4034), }, [2422] = { - [sym_type_arguments] = STATE(2509), - [sym_long_identifier] = STATE(2501), [sym_xml_doc] = STATE(2422), [sym_block_comment] = STATE(2422), [sym_preproc_line] = STATE(2422), - [aux_sym__compound_type_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_LT_AT_AT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2305), - [aux_sym__identifier_or_op_token1] = ACTIONS(2305), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2305), - [anon_sym_DASH_DOT] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(4452), + [sym_identifier] = ACTIONS(4454), + [anon_sym_namespace] = ACTIONS(4454), + [anon_sym_module] = ACTIONS(4454), + [anon_sym_POUNDnowarn] = ACTIONS(4452), + [anon_sym_POUNDr] = ACTIONS(4452), + [anon_sym_POUNDload] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4454), + [anon_sym_LBRACK_LT] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_type] = ACTIONS(4454), + [anon_sym_do] = ACTIONS(4454), + [anon_sym_and] = ACTIONS(4454), + [anon_sym_let] = ACTIONS(4454), + [anon_sym_let_BANG] = ACTIONS(4452), + [anon_sym_null] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_LBRACK_PIPE] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_LBRACE_PIPE] = ACTIONS(4452), + [anon_sym_new] = ACTIONS(4454), + [anon_sym_return_BANG] = ACTIONS(4452), + [anon_sym_yield] = ACTIONS(4454), + [anon_sym_yield_BANG] = ACTIONS(4452), + [anon_sym_lazy] = ACTIONS(4454), + [anon_sym_assert] = ACTIONS(4454), + [anon_sym_upcast] = ACTIONS(4454), + [anon_sym_downcast] = ACTIONS(4454), + [anon_sym_LT_AT] = ACTIONS(4454), + [anon_sym_LT_AT_AT] = ACTIONS(4452), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_while] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_fun] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4454), + [anon_sym_match] = ACTIONS(4454), + [anon_sym_match_BANG] = ACTIONS(4452), + [anon_sym_function] = ACTIONS(4454), + [anon_sym_use] = ACTIONS(4454), + [anon_sym_use_BANG] = ACTIONS(4452), + [anon_sym_do_BANG] = ACTIONS(4452), + [anon_sym_begin] = ACTIONS(4454), + [anon_sym_SQUOTE] = ACTIONS(4452), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4454), + [anon_sym_DQUOTE] = ACTIONS(4454), + [anon_sym_AT_DQUOTE] = ACTIONS(4452), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4452), + [sym_bool] = ACTIONS(4454), + [sym_unit] = ACTIONS(4452), + [aux_sym__identifier_or_op_token1] = ACTIONS(4452), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PLUS_DOT] = ACTIONS(4452), + [anon_sym_DASH_DOT] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_AMP_AMP] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [aux_sym_prefix_op_token1] = ACTIONS(4452), + [sym_int] = ACTIONS(4454), + [sym_xint] = ACTIONS(4452), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), + [anon_sym_POUNDif] = ACTIONS(4452), }, [2423] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3947), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2423), [sym_block_comment] = STATE(2423), [sym_preproc_line] = STATE(2423), - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_namespace] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_POUNDnowarn] = ACTIONS(3131), - [anon_sym_POUNDr] = ACTIONS(3131), - [anon_sym_POUNDload] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_LBRACK_LT] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_let_BANG] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_return_BANG] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3133), - [anon_sym_yield_BANG] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_upcast] = ACTIONS(3133), - [anon_sym_downcast] = ACTIONS(3133), - [anon_sym_LT_AT] = ACTIONS(3133), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_match_BANG] = ACTIONS(3131), - [anon_sym_function] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3133), - [anon_sym_use_BANG] = ACTIONS(3131), - [anon_sym_do_BANG] = ACTIONS(3131), - [anon_sym_begin] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [anon_sym_AT_DQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [sym_bool] = ACTIONS(3133), - [sym_unit] = ACTIONS(3131), - [aux_sym__identifier_or_op_token1] = ACTIONS(3131), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [sym_int] = ACTIONS(3133), - [sym_xint] = ACTIONS(3131), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3131), }, [2424] = { - [sym_type_arguments] = STATE(2514), - [sym_long_identifier] = STATE(2496), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3929), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2424), [sym_block_comment] = STATE(2424), [sym_preproc_line] = STATE(2424), - [aux_sym__compound_type_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4396), - [anon_sym_GT_RBRACK] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), - [anon_sym_LT_AT_AT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_use_BANG] = ACTIONS(2361), - [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [anon_sym_AT_DQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), - [sym_unit] = ACTIONS(2361), - [aux_sym__identifier_or_op_token1] = ACTIONS(2361), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS_DOT] = ACTIONS(2361), - [anon_sym_DASH_DOT] = ACTIONS(2361), - [anon_sym_PERCENT] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [aux_sym_prefix_op_token1] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), - [sym_xint] = ACTIONS(2361), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), }, [2425] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3928), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2425), [sym_block_comment] = STATE(2425), [sym_preproc_line] = STATE(2425), - [sym_identifier] = ACTIONS(4324), - [anon_sym_module] = ACTIONS(4324), - [anon_sym_POUNDnowarn] = ACTIONS(4322), - [anon_sym_POUNDr] = ACTIONS(4322), - [anon_sym_POUNDload] = ACTIONS(4322), - [anon_sym_open] = ACTIONS(4324), - [anon_sym_LBRACK_LT] = ACTIONS(4322), - [anon_sym_return] = ACTIONS(4324), - [anon_sym_type] = ACTIONS(4324), - [anon_sym_do] = ACTIONS(4324), - [anon_sym_and] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_let_BANG] = ACTIONS(4322), - [anon_sym_null] = ACTIONS(4324), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4324), - [anon_sym_LBRACK_PIPE] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_LBRACE_PIPE] = ACTIONS(4322), - [anon_sym_new] = ACTIONS(4324), - [anon_sym_return_BANG] = ACTIONS(4322), - [anon_sym_yield] = ACTIONS(4324), - [anon_sym_yield_BANG] = ACTIONS(4322), - [anon_sym_lazy] = ACTIONS(4324), - [anon_sym_assert] = ACTIONS(4324), - [anon_sym_upcast] = ACTIONS(4324), - [anon_sym_downcast] = ACTIONS(4324), - [anon_sym_LT_AT] = ACTIONS(4324), - [anon_sym_LT_AT_AT] = ACTIONS(4322), - [anon_sym_for] = ACTIONS(4324), - [anon_sym_while] = ACTIONS(4324), - [anon_sym_if] = ACTIONS(4324), - [anon_sym_fun] = ACTIONS(4324), - [anon_sym_try] = ACTIONS(4324), - [anon_sym_match] = ACTIONS(4324), - [anon_sym_match_BANG] = ACTIONS(4322), - [anon_sym_function] = ACTIONS(4324), - [anon_sym_use] = ACTIONS(4324), - [anon_sym_use_BANG] = ACTIONS(4322), - [anon_sym_do_BANG] = ACTIONS(4322), - [anon_sym_begin] = ACTIONS(4324), - [anon_sym_SQUOTE] = ACTIONS(4322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4324), - [anon_sym_DQUOTE] = ACTIONS(4324), - [anon_sym_AT_DQUOTE] = ACTIONS(4322), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4322), - [sym_bool] = ACTIONS(4324), - [sym_unit] = ACTIONS(4322), - [aux_sym__identifier_or_op_token1] = ACTIONS(4322), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4324), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_PLUS_DOT] = ACTIONS(4322), - [anon_sym_DASH_DOT] = ACTIONS(4322), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_TILDE] = ACTIONS(4322), - [aux_sym_prefix_op_token1] = ACTIONS(4322), - [sym_int] = ACTIONS(4324), - [sym_xint] = ACTIONS(4322), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4322), - [sym__dedent] = ACTIONS(4322), }, [2426] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3925), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2426), [sym_block_comment] = STATE(2426), [sym_preproc_line] = STATE(2426), - [ts_builtin_sym_end] = ACTIONS(4398), - [sym_identifier] = ACTIONS(4400), - [anon_sym_namespace] = ACTIONS(4400), - [anon_sym_module] = ACTIONS(4400), - [anon_sym_POUNDnowarn] = ACTIONS(4398), - [anon_sym_POUNDr] = ACTIONS(4398), - [anon_sym_POUNDload] = ACTIONS(4398), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_LBRACK_LT] = ACTIONS(4398), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_type] = ACTIONS(4400), - [anon_sym_do] = ACTIONS(4400), - [anon_sym_let] = ACTIONS(4400), - [anon_sym_let_BANG] = ACTIONS(4398), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [anon_sym_LBRACK_PIPE] = ACTIONS(4398), - [anon_sym_LBRACE] = ACTIONS(4400), - [anon_sym_LBRACE_PIPE] = ACTIONS(4398), - [anon_sym_new] = ACTIONS(4400), - [anon_sym_return_BANG] = ACTIONS(4398), - [anon_sym_yield] = ACTIONS(4400), - [anon_sym_yield_BANG] = ACTIONS(4398), - [anon_sym_lazy] = ACTIONS(4400), - [anon_sym_assert] = ACTIONS(4400), - [anon_sym_upcast] = ACTIONS(4400), - [anon_sym_downcast] = ACTIONS(4400), - [anon_sym_LT_AT] = ACTIONS(4400), - [anon_sym_LT_AT_AT] = ACTIONS(4398), - [anon_sym_for] = ACTIONS(4400), - [anon_sym_while] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_match] = ACTIONS(4400), - [anon_sym_match_BANG] = ACTIONS(4398), - [anon_sym_function] = ACTIONS(4400), - [anon_sym_use] = ACTIONS(4400), - [anon_sym_use_BANG] = ACTIONS(4398), - [anon_sym_do_BANG] = ACTIONS(4398), - [anon_sym_begin] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4400), - [anon_sym_AT_DQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), - [sym_bool] = ACTIONS(4400), - [sym_unit] = ACTIONS(4398), - [aux_sym__identifier_or_op_token1] = ACTIONS(4398), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4400), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_PLUS_DOT] = ACTIONS(4398), - [anon_sym_DASH_DOT] = ACTIONS(4398), - [anon_sym_PERCENT] = ACTIONS(4398), - [anon_sym_AMP_AMP] = ACTIONS(4398), - [anon_sym_TILDE] = ACTIONS(4398), - [aux_sym_prefix_op_token1] = ACTIONS(4398), - [sym_int] = ACTIONS(4400), - [sym_xint] = ACTIONS(4398), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4398), }, [2427] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3904), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2427), [sym_block_comment] = STATE(2427), [sym_preproc_line] = STATE(2427), - [sym_identifier] = ACTIONS(4300), - [anon_sym_module] = ACTIONS(4300), - [anon_sym_POUNDnowarn] = ACTIONS(4298), - [anon_sym_POUNDr] = ACTIONS(4298), - [anon_sym_POUNDload] = ACTIONS(4298), - [anon_sym_open] = ACTIONS(4300), - [anon_sym_LBRACK_LT] = ACTIONS(4298), - [anon_sym_return] = ACTIONS(4300), - [anon_sym_type] = ACTIONS(4300), - [anon_sym_do] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4300), - [anon_sym_let] = ACTIONS(4300), - [anon_sym_let_BANG] = ACTIONS(4298), - [anon_sym_null] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(4300), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LBRACK_PIPE] = ACTIONS(4298), - [anon_sym_LBRACE] = ACTIONS(4300), - [anon_sym_LBRACE_PIPE] = ACTIONS(4298), - [anon_sym_new] = ACTIONS(4300), - [anon_sym_return_BANG] = ACTIONS(4298), - [anon_sym_yield] = ACTIONS(4300), - [anon_sym_yield_BANG] = ACTIONS(4298), - [anon_sym_lazy] = ACTIONS(4300), - [anon_sym_assert] = ACTIONS(4300), - [anon_sym_upcast] = ACTIONS(4300), - [anon_sym_downcast] = ACTIONS(4300), - [anon_sym_LT_AT] = ACTIONS(4300), - [anon_sym_LT_AT_AT] = ACTIONS(4298), - [anon_sym_for] = ACTIONS(4300), - [anon_sym_while] = ACTIONS(4300), - [anon_sym_if] = ACTIONS(4300), - [anon_sym_fun] = ACTIONS(4300), - [anon_sym_try] = ACTIONS(4300), - [anon_sym_match] = ACTIONS(4300), - [anon_sym_match_BANG] = ACTIONS(4298), - [anon_sym_function] = ACTIONS(4300), - [anon_sym_use] = ACTIONS(4300), - [anon_sym_use_BANG] = ACTIONS(4298), - [anon_sym_do_BANG] = ACTIONS(4298), - [anon_sym_begin] = ACTIONS(4300), - [anon_sym_SQUOTE] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4300), - [anon_sym_AT_DQUOTE] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4298), - [sym_bool] = ACTIONS(4300), - [sym_unit] = ACTIONS(4298), - [aux_sym__identifier_or_op_token1] = ACTIONS(4298), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_PLUS_DOT] = ACTIONS(4298), - [anon_sym_DASH_DOT] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(4298), - [aux_sym_prefix_op_token1] = ACTIONS(4298), - [sym_int] = ACTIONS(4300), - [sym_xint] = ACTIONS(4298), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4298), - [sym__dedent] = ACTIONS(4298), }, [2428] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3961), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2428), [sym_block_comment] = STATE(2428), [sym_preproc_line] = STATE(2428), - [sym_identifier] = ACTIONS(4334), - [anon_sym_module] = ACTIONS(4334), - [anon_sym_POUNDnowarn] = ACTIONS(4332), - [anon_sym_POUNDr] = ACTIONS(4332), - [anon_sym_POUNDload] = ACTIONS(4332), - [anon_sym_open] = ACTIONS(4334), - [anon_sym_LBRACK_LT] = ACTIONS(4332), - [anon_sym_return] = ACTIONS(4334), - [anon_sym_type] = ACTIONS(4334), - [anon_sym_do] = ACTIONS(4334), - [anon_sym_and] = ACTIONS(4334), - [anon_sym_let] = ACTIONS(4334), - [anon_sym_let_BANG] = ACTIONS(4332), - [anon_sym_null] = ACTIONS(4334), - [anon_sym_LPAREN] = ACTIONS(4334), - [anon_sym_AMP] = ACTIONS(4334), - [anon_sym_LBRACK] = ACTIONS(4334), - [anon_sym_LBRACK_PIPE] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(4334), - [anon_sym_LBRACE_PIPE] = ACTIONS(4332), - [anon_sym_new] = ACTIONS(4334), - [anon_sym_return_BANG] = ACTIONS(4332), - [anon_sym_yield] = ACTIONS(4334), - [anon_sym_yield_BANG] = ACTIONS(4332), - [anon_sym_lazy] = ACTIONS(4334), - [anon_sym_assert] = ACTIONS(4334), - [anon_sym_upcast] = ACTIONS(4334), - [anon_sym_downcast] = ACTIONS(4334), - [anon_sym_LT_AT] = ACTIONS(4334), - [anon_sym_LT_AT_AT] = ACTIONS(4332), - [anon_sym_for] = ACTIONS(4334), - [anon_sym_while] = ACTIONS(4334), - [anon_sym_if] = ACTIONS(4334), - [anon_sym_fun] = ACTIONS(4334), - [anon_sym_try] = ACTIONS(4334), - [anon_sym_match] = ACTIONS(4334), - [anon_sym_match_BANG] = ACTIONS(4332), - [anon_sym_function] = ACTIONS(4334), - [anon_sym_use] = ACTIONS(4334), - [anon_sym_use_BANG] = ACTIONS(4332), - [anon_sym_do_BANG] = ACTIONS(4332), - [anon_sym_begin] = ACTIONS(4334), - [anon_sym_SQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), - [anon_sym_DQUOTE] = ACTIONS(4334), - [anon_sym_AT_DQUOTE] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4332), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4332), - [sym_bool] = ACTIONS(4334), - [sym_unit] = ACTIONS(4332), - [aux_sym__identifier_or_op_token1] = ACTIONS(4332), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4334), - [anon_sym_PLUS] = ACTIONS(4334), - [anon_sym_DASH] = ACTIONS(4334), - [anon_sym_PLUS_DOT] = ACTIONS(4332), - [anon_sym_DASH_DOT] = ACTIONS(4332), - [anon_sym_PERCENT] = ACTIONS(4332), - [anon_sym_AMP_AMP] = ACTIONS(4332), - [anon_sym_TILDE] = ACTIONS(4332), - [aux_sym_prefix_op_token1] = ACTIONS(4332), - [sym_int] = ACTIONS(4334), - [sym_xint] = ACTIONS(4332), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4332), - [sym__dedent] = ACTIONS(4332), }, [2429] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3907), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2429), [sym_block_comment] = STATE(2429), [sym_preproc_line] = STATE(2429), - [sym_identifier] = ACTIONS(4292), - [anon_sym_module] = ACTIONS(4292), - [anon_sym_POUNDnowarn] = ACTIONS(4290), - [anon_sym_POUNDr] = ACTIONS(4290), - [anon_sym_POUNDload] = ACTIONS(4290), - [anon_sym_open] = ACTIONS(4292), - [anon_sym_LBRACK_LT] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_type] = ACTIONS(4292), - [anon_sym_do] = ACTIONS(4292), - [anon_sym_and] = ACTIONS(4292), - [anon_sym_let] = ACTIONS(4292), - [anon_sym_let_BANG] = ACTIONS(4290), - [anon_sym_null] = ACTIONS(4292), - [anon_sym_LPAREN] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_LBRACE_PIPE] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4292), - [anon_sym_return_BANG] = ACTIONS(4290), - [anon_sym_yield] = ACTIONS(4292), - [anon_sym_yield_BANG] = ACTIONS(4290), - [anon_sym_lazy] = ACTIONS(4292), - [anon_sym_assert] = ACTIONS(4292), - [anon_sym_upcast] = ACTIONS(4292), - [anon_sym_downcast] = ACTIONS(4292), - [anon_sym_LT_AT] = ACTIONS(4292), - [anon_sym_LT_AT_AT] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4292), - [anon_sym_while] = ACTIONS(4292), - [anon_sym_if] = ACTIONS(4292), - [anon_sym_fun] = ACTIONS(4292), - [anon_sym_try] = ACTIONS(4292), - [anon_sym_match] = ACTIONS(4292), - [anon_sym_match_BANG] = ACTIONS(4290), - [anon_sym_function] = ACTIONS(4292), - [anon_sym_use] = ACTIONS(4292), - [anon_sym_use_BANG] = ACTIONS(4290), - [anon_sym_do_BANG] = ACTIONS(4290), - [anon_sym_begin] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [anon_sym_AT_DQUOTE] = ACTIONS(4290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4290), - [sym_bool] = ACTIONS(4292), - [sym_unit] = ACTIONS(4290), - [aux_sym__identifier_or_op_token1] = ACTIONS(4290), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4292), - [anon_sym_PLUS] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4292), - [anon_sym_PLUS_DOT] = ACTIONS(4290), - [anon_sym_DASH_DOT] = ACTIONS(4290), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(4290), - [aux_sym_prefix_op_token1] = ACTIONS(4290), - [sym_int] = ACTIONS(4292), - [sym_xint] = ACTIONS(4290), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4290), - [sym__dedent] = ACTIONS(4290), }, [2430] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3940), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2430), [sym_block_comment] = STATE(2430), [sym_preproc_line] = STATE(2430), - [sym_identifier] = ACTIONS(4264), - [anon_sym_module] = ACTIONS(4264), - [anon_sym_POUNDnowarn] = ACTIONS(4262), - [anon_sym_POUNDr] = ACTIONS(4262), - [anon_sym_POUNDload] = ACTIONS(4262), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_LBRACK_LT] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_type] = ACTIONS(4264), - [anon_sym_do] = ACTIONS(4264), - [anon_sym_and] = ACTIONS(4264), - [anon_sym_let] = ACTIONS(4264), - [anon_sym_let_BANG] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4264), - [anon_sym_LBRACK_PIPE] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_LBRACE_PIPE] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4264), - [anon_sym_return_BANG] = ACTIONS(4262), - [anon_sym_yield] = ACTIONS(4264), - [anon_sym_yield_BANG] = ACTIONS(4262), - [anon_sym_lazy] = ACTIONS(4264), - [anon_sym_assert] = ACTIONS(4264), - [anon_sym_upcast] = ACTIONS(4264), - [anon_sym_downcast] = ACTIONS(4264), - [anon_sym_LT_AT] = ACTIONS(4264), - [anon_sym_LT_AT_AT] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_match] = ACTIONS(4264), - [anon_sym_match_BANG] = ACTIONS(4262), - [anon_sym_function] = ACTIONS(4264), - [anon_sym_use] = ACTIONS(4264), - [anon_sym_use_BANG] = ACTIONS(4262), - [anon_sym_do_BANG] = ACTIONS(4262), - [anon_sym_begin] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4262), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [anon_sym_AT_DQUOTE] = ACTIONS(4262), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4262), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4262), - [sym_bool] = ACTIONS(4264), - [sym_unit] = ACTIONS(4262), - [aux_sym__identifier_or_op_token1] = ACTIONS(4262), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_PLUS_DOT] = ACTIONS(4262), - [anon_sym_DASH_DOT] = ACTIONS(4262), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_TILDE] = ACTIONS(4262), - [aux_sym_prefix_op_token1] = ACTIONS(4262), - [sym_int] = ACTIONS(4264), - [sym_xint] = ACTIONS(4262), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4456), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4262), - [sym__dedent] = ACTIONS(4262), }, [2431] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3941), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2431), [sym_block_comment] = STATE(2431), [sym_preproc_line] = STATE(2431), - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_POUNDnowarn] = ACTIONS(1865), - [anon_sym_POUNDr] = ACTIONS(1865), - [anon_sym_POUNDload] = ACTIONS(1865), - [anon_sym_open] = ACTIONS(1867), - [anon_sym_LBRACK_LT] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_BANG] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_LBRACK_PIPE] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LBRACE_PIPE] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_return_BANG] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_yield_BANG] = ACTIONS(1865), - [anon_sym_lazy] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_upcast] = ACTIONS(1867), - [anon_sym_downcast] = ACTIONS(1867), - [anon_sym_LT_AT] = ACTIONS(1867), - [anon_sym_LT_AT_AT] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_fun] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_match_BANG] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_use_BANG] = ACTIONS(1865), - [anon_sym_do_BANG] = ACTIONS(1865), - [anon_sym_begin] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_AT_DQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [sym_bool] = ACTIONS(1867), - [sym_unit] = ACTIONS(1865), - [aux_sym__identifier_or_op_token1] = ACTIONS(1865), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(1865), - [anon_sym_DASH_DOT] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [aux_sym_prefix_op_token1] = ACTIONS(1865), - [sym_int] = ACTIONS(1867), - [sym_xint] = ACTIONS(1865), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4458), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1865), }, [2432] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3944), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2432), [sym_block_comment] = STATE(2432), [sym_preproc_line] = STATE(2432), - [sym_identifier] = ACTIONS(4310), - [anon_sym_module] = ACTIONS(4310), - [anon_sym_POUNDnowarn] = ACTIONS(4308), - [anon_sym_POUNDr] = ACTIONS(4308), - [anon_sym_POUNDload] = ACTIONS(4308), - [anon_sym_open] = ACTIONS(4310), - [anon_sym_LBRACK_LT] = ACTIONS(4308), - [anon_sym_return] = ACTIONS(4310), - [anon_sym_type] = ACTIONS(4310), - [anon_sym_do] = ACTIONS(4310), - [anon_sym_and] = ACTIONS(4310), - [anon_sym_let] = ACTIONS(4310), - [anon_sym_let_BANG] = ACTIONS(4308), - [anon_sym_null] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_LBRACK_PIPE] = ACTIONS(4308), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_LBRACE_PIPE] = ACTIONS(4308), - [anon_sym_new] = ACTIONS(4310), - [anon_sym_return_BANG] = ACTIONS(4308), - [anon_sym_yield] = ACTIONS(4310), - [anon_sym_yield_BANG] = ACTIONS(4308), - [anon_sym_lazy] = ACTIONS(4310), - [anon_sym_assert] = ACTIONS(4310), - [anon_sym_upcast] = ACTIONS(4310), - [anon_sym_downcast] = ACTIONS(4310), - [anon_sym_LT_AT] = ACTIONS(4310), - [anon_sym_LT_AT_AT] = ACTIONS(4308), - [anon_sym_for] = ACTIONS(4310), - [anon_sym_while] = ACTIONS(4310), - [anon_sym_if] = ACTIONS(4310), - [anon_sym_fun] = ACTIONS(4310), - [anon_sym_try] = ACTIONS(4310), - [anon_sym_match] = ACTIONS(4310), - [anon_sym_match_BANG] = ACTIONS(4308), - [anon_sym_function] = ACTIONS(4310), - [anon_sym_use] = ACTIONS(4310), - [anon_sym_use_BANG] = ACTIONS(4308), - [anon_sym_do_BANG] = ACTIONS(4308), - [anon_sym_begin] = ACTIONS(4310), - [anon_sym_SQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4310), - [anon_sym_DQUOTE] = ACTIONS(4310), - [anon_sym_AT_DQUOTE] = ACTIONS(4308), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4308), - [aux_sym__identifier_or_op_token1] = ACTIONS(4308), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_PLUS_DOT] = ACTIONS(4308), - [anon_sym_DASH_DOT] = ACTIONS(4308), - [anon_sym_PERCENT] = ACTIONS(4308), - [anon_sym_AMP_AMP] = ACTIONS(4308), - [anon_sym_TILDE] = ACTIONS(4308), - [aux_sym_prefix_op_token1] = ACTIONS(4308), - [sym_int] = ACTIONS(4310), - [sym_xint] = ACTIONS(4308), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4440), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4308), - [sym__dedent] = ACTIONS(4308), }, [2433] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3906), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2433), [sym_block_comment] = STATE(2433), [sym_preproc_line] = STATE(2433), - [ts_builtin_sym_end] = ACTIONS(4402), - [sym_identifier] = ACTIONS(4405), - [anon_sym_namespace] = ACTIONS(4408), - [anon_sym_module] = ACTIONS(4405), - [anon_sym_POUNDnowarn] = ACTIONS(4402), - [anon_sym_POUNDr] = ACTIONS(4402), - [anon_sym_POUNDload] = ACTIONS(4402), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_LBRACK_LT] = ACTIONS(4402), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_type] = ACTIONS(4405), - [anon_sym_do] = ACTIONS(4405), - [anon_sym_let] = ACTIONS(4405), - [anon_sym_let_BANG] = ACTIONS(4402), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4405), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_LBRACK_PIPE] = ACTIONS(4402), - [anon_sym_LBRACE] = ACTIONS(4405), - [anon_sym_LBRACE_PIPE] = ACTIONS(4402), - [anon_sym_new] = ACTIONS(4405), - [anon_sym_return_BANG] = ACTIONS(4402), - [anon_sym_yield] = ACTIONS(4405), - [anon_sym_yield_BANG] = ACTIONS(4402), - [anon_sym_lazy] = ACTIONS(4405), - [anon_sym_assert] = ACTIONS(4405), - [anon_sym_upcast] = ACTIONS(4405), - [anon_sym_downcast] = ACTIONS(4405), - [anon_sym_LT_AT] = ACTIONS(4405), - [anon_sym_LT_AT_AT] = ACTIONS(4402), - [anon_sym_for] = ACTIONS(4405), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_match] = ACTIONS(4405), - [anon_sym_match_BANG] = ACTIONS(4402), - [anon_sym_function] = ACTIONS(4405), - [anon_sym_use] = ACTIONS(4405), - [anon_sym_use_BANG] = ACTIONS(4402), - [anon_sym_do_BANG] = ACTIONS(4402), - [anon_sym_begin] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4402), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4405), - [anon_sym_DQUOTE] = ACTIONS(4405), - [anon_sym_AT_DQUOTE] = ACTIONS(4402), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4402), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4402), - [sym_bool] = ACTIONS(4405), - [sym_unit] = ACTIONS(4402), - [aux_sym__identifier_or_op_token1] = ACTIONS(4402), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4405), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_PLUS_DOT] = ACTIONS(4402), - [anon_sym_DASH_DOT] = ACTIONS(4402), - [anon_sym_PERCENT] = ACTIONS(4402), - [anon_sym_AMP_AMP] = ACTIONS(4402), - [anon_sym_TILDE] = ACTIONS(4402), - [aux_sym_prefix_op_token1] = ACTIONS(4402), - [sym_int] = ACTIONS(4405), - [sym_xint] = ACTIONS(4402), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4402), }, [2434] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3950), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2434), [sym_block_comment] = STATE(2434), [sym_preproc_line] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4410), - [sym_identifier] = ACTIONS(4412), - [anon_sym_namespace] = ACTIONS(4412), - [anon_sym_module] = ACTIONS(4412), - [anon_sym_POUNDnowarn] = ACTIONS(4410), - [anon_sym_POUNDr] = ACTIONS(4410), - [anon_sym_POUNDload] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4412), - [anon_sym_LBRACK_LT] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4412), - [anon_sym_type] = ACTIONS(4412), - [anon_sym_do] = ACTIONS(4412), - [anon_sym_let] = ACTIONS(4412), - [anon_sym_let_BANG] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_AMP] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_LBRACK_PIPE] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_LBRACE_PIPE] = ACTIONS(4410), - [anon_sym_new] = ACTIONS(4412), - [anon_sym_return_BANG] = ACTIONS(4410), - [anon_sym_yield] = ACTIONS(4412), - [anon_sym_yield_BANG] = ACTIONS(4410), - [anon_sym_lazy] = ACTIONS(4412), - [anon_sym_assert] = ACTIONS(4412), - [anon_sym_upcast] = ACTIONS(4412), - [anon_sym_downcast] = ACTIONS(4412), - [anon_sym_LT_AT] = ACTIONS(4412), - [anon_sym_LT_AT_AT] = ACTIONS(4410), - [anon_sym_for] = ACTIONS(4412), - [anon_sym_while] = ACTIONS(4412), - [anon_sym_if] = ACTIONS(4412), - [anon_sym_fun] = ACTIONS(4412), - [anon_sym_try] = ACTIONS(4412), - [anon_sym_match] = ACTIONS(4412), - [anon_sym_match_BANG] = ACTIONS(4410), - [anon_sym_function] = ACTIONS(4412), - [anon_sym_use] = ACTIONS(4412), - [anon_sym_use_BANG] = ACTIONS(4410), - [anon_sym_do_BANG] = ACTIONS(4410), - [anon_sym_begin] = ACTIONS(4412), - [anon_sym_SQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4412), - [anon_sym_DQUOTE] = ACTIONS(4412), - [anon_sym_AT_DQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4410), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4410), - [sym_bool] = ACTIONS(4412), - [sym_unit] = ACTIONS(4410), - [aux_sym__identifier_or_op_token1] = ACTIONS(4410), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4412), - [anon_sym_DASH] = ACTIONS(4412), - [anon_sym_PLUS_DOT] = ACTIONS(4410), - [anon_sym_DASH_DOT] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_TILDE] = ACTIONS(4410), - [aux_sym_prefix_op_token1] = ACTIONS(4410), - [sym_int] = ACTIONS(4412), - [sym_xint] = ACTIONS(4410), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4460), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4410), }, [2435] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3911), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2435), [sym_block_comment] = STATE(2435), [sym_preproc_line] = STATE(2435), - [sym_identifier] = ACTIONS(4282), - [anon_sym_module] = ACTIONS(4282), - [anon_sym_POUNDnowarn] = ACTIONS(4280), - [anon_sym_POUNDr] = ACTIONS(4280), - [anon_sym_POUNDload] = ACTIONS(4280), - [anon_sym_open] = ACTIONS(4282), - [anon_sym_LBRACK_LT] = ACTIONS(4280), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_type] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_and] = ACTIONS(4282), - [anon_sym_let] = ACTIONS(4282), - [anon_sym_let_BANG] = ACTIONS(4280), - [anon_sym_null] = ACTIONS(4282), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_LBRACK_PIPE] = ACTIONS(4280), - [anon_sym_LBRACE] = ACTIONS(4282), - [anon_sym_LBRACE_PIPE] = ACTIONS(4280), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_return_BANG] = ACTIONS(4280), - [anon_sym_yield] = ACTIONS(4282), - [anon_sym_yield_BANG] = ACTIONS(4280), - [anon_sym_lazy] = ACTIONS(4282), - [anon_sym_assert] = ACTIONS(4282), - [anon_sym_upcast] = ACTIONS(4282), - [anon_sym_downcast] = ACTIONS(4282), - [anon_sym_LT_AT] = ACTIONS(4282), - [anon_sym_LT_AT_AT] = ACTIONS(4280), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_fun] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_match] = ACTIONS(4282), - [anon_sym_match_BANG] = ACTIONS(4280), - [anon_sym_function] = ACTIONS(4282), - [anon_sym_use] = ACTIONS(4282), - [anon_sym_use_BANG] = ACTIONS(4280), - [anon_sym_do_BANG] = ACTIONS(4280), - [anon_sym_begin] = ACTIONS(4282), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4282), - [anon_sym_DQUOTE] = ACTIONS(4282), - [anon_sym_AT_DQUOTE] = ACTIONS(4280), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4280), - [sym_bool] = ACTIONS(4282), - [sym_unit] = ACTIONS(4280), - [aux_sym__identifier_or_op_token1] = ACTIONS(4280), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS_DOT] = ACTIONS(4280), - [anon_sym_DASH_DOT] = ACTIONS(4280), - [anon_sym_PERCENT] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [aux_sym_prefix_op_token1] = ACTIONS(4280), - [sym_int] = ACTIONS(4282), - [sym_xint] = ACTIONS(4280), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4280), - [sym__dedent] = ACTIONS(4280), }, [2436] = { [sym_xml_doc] = STATE(2436), [sym_block_comment] = STATE(2436), [sym_preproc_line] = STATE(2436), - [ts_builtin_sym_end] = ACTIONS(291), - [sym_identifier] = ACTIONS(293), - [anon_sym_namespace] = ACTIONS(293), - [anon_sym_module] = ACTIONS(293), - [anon_sym_POUNDnowarn] = ACTIONS(291), - [anon_sym_POUNDr] = ACTIONS(291), - [anon_sym_POUNDload] = ACTIONS(291), - [anon_sym_open] = ACTIONS(293), - [anon_sym_LBRACK_LT] = ACTIONS(291), - [anon_sym_return] = ACTIONS(293), - [anon_sym_type] = ACTIONS(293), - [anon_sym_do] = ACTIONS(293), - [anon_sym_let] = ACTIONS(293), - [anon_sym_let_BANG] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACK_PIPE] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_LBRACE_PIPE] = ACTIONS(291), - [anon_sym_new] = ACTIONS(293), - [anon_sym_return_BANG] = ACTIONS(291), - [anon_sym_yield] = ACTIONS(293), - [anon_sym_yield_BANG] = ACTIONS(291), - [anon_sym_lazy] = ACTIONS(293), - [anon_sym_assert] = ACTIONS(293), - [anon_sym_upcast] = ACTIONS(293), - [anon_sym_downcast] = ACTIONS(293), - [anon_sym_LT_AT] = ACTIONS(293), - [anon_sym_LT_AT_AT] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [anon_sym_while] = ACTIONS(293), - [anon_sym_if] = ACTIONS(293), - [anon_sym_fun] = ACTIONS(293), - [anon_sym_try] = ACTIONS(293), - [anon_sym_match] = ACTIONS(293), - [anon_sym_match_BANG] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_use] = ACTIONS(293), - [anon_sym_use_BANG] = ACTIONS(291), - [anon_sym_do_BANG] = ACTIONS(291), - [anon_sym_begin] = ACTIONS(293), - [anon_sym_SQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(293), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), - [sym_bool] = ACTIONS(293), - [sym_unit] = ACTIONS(291), - [aux_sym__identifier_or_op_token1] = ACTIONS(291), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(291), - [anon_sym_DASH_DOT] = ACTIONS(291), - [anon_sym_PERCENT] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [aux_sym_prefix_op_token1] = ACTIONS(291), - [sym_int] = ACTIONS(293), - [sym_xint] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(4462), + [sym_identifier] = ACTIONS(4464), + [anon_sym_namespace] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_POUNDnowarn] = ACTIONS(4462), + [anon_sym_POUNDr] = ACTIONS(4462), + [anon_sym_POUNDload] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_LBRACK_LT] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_type] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_and] = ACTIONS(4464), + [anon_sym_let] = ACTIONS(4464), + [anon_sym_let_BANG] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_LBRACK_PIPE] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_LBRACE_PIPE] = ACTIONS(4462), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_return_BANG] = ACTIONS(4462), + [anon_sym_yield] = ACTIONS(4464), + [anon_sym_yield_BANG] = ACTIONS(4462), + [anon_sym_lazy] = ACTIONS(4464), + [anon_sym_assert] = ACTIONS(4464), + [anon_sym_upcast] = ACTIONS(4464), + [anon_sym_downcast] = ACTIONS(4464), + [anon_sym_LT_AT] = ACTIONS(4464), + [anon_sym_LT_AT_AT] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_match] = ACTIONS(4464), + [anon_sym_match_BANG] = ACTIONS(4462), + [anon_sym_function] = ACTIONS(4464), + [anon_sym_use] = ACTIONS(4464), + [anon_sym_use_BANG] = ACTIONS(4462), + [anon_sym_do_BANG] = ACTIONS(4462), + [anon_sym_begin] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [anon_sym_AT_DQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), + [sym_bool] = ACTIONS(4464), + [sym_unit] = ACTIONS(4462), + [aux_sym__identifier_or_op_token1] = ACTIONS(4462), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS_DOT] = ACTIONS(4462), + [anon_sym_DASH_DOT] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [aux_sym_prefix_op_token1] = ACTIONS(4462), + [sym_int] = ACTIONS(4464), + [sym_xint] = ACTIONS(4462), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(291), + [anon_sym_POUNDif] = ACTIONS(4462), }, [2437] = { [sym_xml_doc] = STATE(2437), [sym_block_comment] = STATE(2437), [sym_preproc_line] = STATE(2437), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2776), - [anon_sym_namespace] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_POUNDnowarn] = ACTIONS(2778), - [anon_sym_POUNDr] = ACTIONS(2778), - [anon_sym_POUNDload] = ACTIONS(2778), - [anon_sym_open] = ACTIONS(2776), - [anon_sym_LBRACK_LT] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_LT_AT_AT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2778), - [aux_sym__identifier_or_op_token1] = ACTIONS(2778), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2778), - [anon_sym_DASH_DOT] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4468), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_POUNDnowarn] = ACTIONS(4466), + [anon_sym_POUNDr] = ACTIONS(4466), + [anon_sym_POUNDload] = ACTIONS(4466), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_LBRACK_LT] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_let] = ACTIONS(4468), + [anon_sym_let_BANG] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_LBRACK_PIPE] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_LBRACE_PIPE] = ACTIONS(4466), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_return_BANG] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4468), + [anon_sym_yield_BANG] = ACTIONS(4466), + [anon_sym_lazy] = ACTIONS(4468), + [anon_sym_assert] = ACTIONS(4468), + [anon_sym_upcast] = ACTIONS(4468), + [anon_sym_downcast] = ACTIONS(4468), + [anon_sym_LT_AT] = ACTIONS(4468), + [anon_sym_LT_AT_AT] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_match_BANG] = ACTIONS(4466), + [anon_sym_function] = ACTIONS(4468), + [anon_sym_use] = ACTIONS(4468), + [anon_sym_use_BANG] = ACTIONS(4466), + [anon_sym_do_BANG] = ACTIONS(4466), + [anon_sym_begin] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [anon_sym_AT_DQUOTE] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [sym_bool] = ACTIONS(4468), + [sym_unit] = ACTIONS(4466), + [aux_sym__identifier_or_op_token1] = ACTIONS(4466), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS_DOT] = ACTIONS(4466), + [anon_sym_DASH_DOT] = ACTIONS(4466), + [anon_sym_PERCENT] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [aux_sym_prefix_op_token1] = ACTIONS(4466), + [sym_int] = ACTIONS(4468), + [sym_xint] = ACTIONS(4466), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), + [anon_sym_POUNDif] = ACTIONS(4466), }, [2438] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3914), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2438), [sym_block_comment] = STATE(2438), [sym_preproc_line] = STATE(2438), - [sym_identifier] = ACTIONS(4330), - [anon_sym_module] = ACTIONS(4330), - [anon_sym_POUNDnowarn] = ACTIONS(4328), - [anon_sym_POUNDr] = ACTIONS(4328), - [anon_sym_POUNDload] = ACTIONS(4328), - [anon_sym_open] = ACTIONS(4330), - [anon_sym_LBRACK_LT] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4330), - [anon_sym_type] = ACTIONS(4330), - [anon_sym_do] = ACTIONS(4330), - [anon_sym_and] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_let_BANG] = ACTIONS(4328), - [anon_sym_null] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(4330), - [anon_sym_AMP] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(4330), - [anon_sym_LBRACK_PIPE] = ACTIONS(4328), - [anon_sym_LBRACE] = ACTIONS(4330), - [anon_sym_LBRACE_PIPE] = ACTIONS(4328), - [anon_sym_new] = ACTIONS(4330), - [anon_sym_return_BANG] = ACTIONS(4328), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_yield_BANG] = ACTIONS(4328), - [anon_sym_lazy] = ACTIONS(4330), - [anon_sym_assert] = ACTIONS(4330), - [anon_sym_upcast] = ACTIONS(4330), - [anon_sym_downcast] = ACTIONS(4330), - [anon_sym_LT_AT] = ACTIONS(4330), - [anon_sym_LT_AT_AT] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4330), - [anon_sym_while] = ACTIONS(4330), - [anon_sym_if] = ACTIONS(4330), - [anon_sym_fun] = ACTIONS(4330), - [anon_sym_try] = ACTIONS(4330), - [anon_sym_match] = ACTIONS(4330), - [anon_sym_match_BANG] = ACTIONS(4328), - [anon_sym_function] = ACTIONS(4330), - [anon_sym_use] = ACTIONS(4330), - [anon_sym_use_BANG] = ACTIONS(4328), - [anon_sym_do_BANG] = ACTIONS(4328), - [anon_sym_begin] = ACTIONS(4330), - [anon_sym_SQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4330), - [anon_sym_DQUOTE] = ACTIONS(4330), - [anon_sym_AT_DQUOTE] = ACTIONS(4328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4328), - [sym_bool] = ACTIONS(4330), - [sym_unit] = ACTIONS(4328), - [aux_sym__identifier_or_op_token1] = ACTIONS(4328), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4330), - [anon_sym_PLUS] = ACTIONS(4330), - [anon_sym_DASH] = ACTIONS(4330), - [anon_sym_PLUS_DOT] = ACTIONS(4328), - [anon_sym_DASH_DOT] = ACTIONS(4328), - [anon_sym_PERCENT] = ACTIONS(4328), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_TILDE] = ACTIONS(4328), - [aux_sym_prefix_op_token1] = ACTIONS(4328), - [sym_int] = ACTIONS(4330), - [sym_xint] = ACTIONS(4328), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3948), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4328), - [sym__dedent] = ACTIONS(4328), }, [2439] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3686), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2439), [sym_block_comment] = STATE(2439), [sym_preproc_line] = STATE(2439), - [ts_builtin_sym_end] = ACTIONS(4414), - [sym_identifier] = ACTIONS(4416), - [anon_sym_namespace] = ACTIONS(4416), - [anon_sym_module] = ACTIONS(4416), - [anon_sym_POUNDnowarn] = ACTIONS(4414), - [anon_sym_POUNDr] = ACTIONS(4414), - [anon_sym_POUNDload] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4416), - [anon_sym_LBRACK_LT] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4416), - [anon_sym_type] = ACTIONS(4416), - [anon_sym_do] = ACTIONS(4416), - [anon_sym_let] = ACTIONS(4416), - [anon_sym_let_BANG] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_LBRACK_PIPE] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_LBRACE_PIPE] = ACTIONS(4414), - [anon_sym_new] = ACTIONS(4416), - [anon_sym_return_BANG] = ACTIONS(4414), - [anon_sym_yield] = ACTIONS(4416), - [anon_sym_yield_BANG] = ACTIONS(4414), - [anon_sym_lazy] = ACTIONS(4416), - [anon_sym_assert] = ACTIONS(4416), - [anon_sym_upcast] = ACTIONS(4416), - [anon_sym_downcast] = ACTIONS(4416), - [anon_sym_LT_AT] = ACTIONS(4416), - [anon_sym_LT_AT_AT] = ACTIONS(4414), - [anon_sym_for] = ACTIONS(4416), - [anon_sym_while] = ACTIONS(4416), - [anon_sym_if] = ACTIONS(4416), - [anon_sym_fun] = ACTIONS(4416), - [anon_sym_try] = ACTIONS(4416), - [anon_sym_match] = ACTIONS(4416), - [anon_sym_match_BANG] = ACTIONS(4414), - [anon_sym_function] = ACTIONS(4416), - [anon_sym_use] = ACTIONS(4416), - [anon_sym_use_BANG] = ACTIONS(4414), - [anon_sym_do_BANG] = ACTIONS(4414), - [anon_sym_begin] = ACTIONS(4416), - [anon_sym_SQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4416), - [anon_sym_DQUOTE] = ACTIONS(4416), - [anon_sym_AT_DQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4414), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4414), - [sym_bool] = ACTIONS(4416), - [sym_unit] = ACTIONS(4414), - [aux_sym__identifier_or_op_token1] = ACTIONS(4414), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4416), - [anon_sym_DASH] = ACTIONS(4416), - [anon_sym_PLUS_DOT] = ACTIONS(4414), - [anon_sym_DASH_DOT] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4414), - [anon_sym_TILDE] = ACTIONS(4414), - [aux_sym_prefix_op_token1] = ACTIONS(4414), - [sym_int] = ACTIONS(4416), - [sym_xint] = ACTIONS(4414), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4414), }, [2440] = { - [sym_type_arguments] = STATE(2514), - [sym_long_identifier] = STATE(2496), + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2979), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2440), [sym_block_comment] = STATE(2440), [sym_preproc_line] = STATE(2440), - [aux_sym__compound_type_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4396), - [anon_sym_GT_RBRACK] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), }, [2441] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2985), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2441), [sym_block_comment] = STATE(2441), [sym_preproc_line] = STATE(2441), - [sym_identifier] = ACTIONS(4078), - [anon_sym_module] = ACTIONS(4078), - [anon_sym_POUNDnowarn] = ACTIONS(4076), - [anon_sym_POUNDr] = ACTIONS(4076), - [anon_sym_POUNDload] = ACTIONS(4076), - [anon_sym_open] = ACTIONS(4078), - [anon_sym_LBRACK_LT] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_and] = ACTIONS(4078), - [anon_sym_let] = ACTIONS(4078), - [anon_sym_let_BANG] = ACTIONS(4076), - [anon_sym_null] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_LBRACK_PIPE] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_LBRACE_PIPE] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_return_BANG] = ACTIONS(4076), - [anon_sym_yield] = ACTIONS(4078), - [anon_sym_yield_BANG] = ACTIONS(4076), - [anon_sym_lazy] = ACTIONS(4078), - [anon_sym_assert] = ACTIONS(4078), - [anon_sym_upcast] = ACTIONS(4078), - [anon_sym_downcast] = ACTIONS(4078), - [anon_sym_LT_AT] = ACTIONS(4078), - [anon_sym_LT_AT_AT] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_fun] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_match] = ACTIONS(4078), - [anon_sym_match_BANG] = ACTIONS(4076), - [anon_sym_function] = ACTIONS(4078), - [anon_sym_use] = ACTIONS(4078), - [anon_sym_use_BANG] = ACTIONS(4076), - [anon_sym_do_BANG] = ACTIONS(4076), - [anon_sym_begin] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [anon_sym_AT_DQUOTE] = ACTIONS(4076), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4076), - [sym_bool] = ACTIONS(4078), - [sym_unit] = ACTIONS(4076), - [aux_sym__identifier_or_op_token1] = ACTIONS(4076), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS_DOT] = ACTIONS(4076), - [anon_sym_DASH_DOT] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [aux_sym_prefix_op_token1] = ACTIONS(4076), - [sym_int] = ACTIONS(4078), - [sym_xint] = ACTIONS(4076), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4076), - [sym__dedent] = ACTIONS(4076), }, [2442] = { + [sym_attributes] = STATE(2435), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3953), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2150), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2442), [sym_block_comment] = STATE(2442), [sym_preproc_line] = STATE(2442), - [sym_identifier] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_POUNDnowarn] = ACTIONS(2485), - [anon_sym_POUNDr] = ACTIONS(2485), - [anon_sym_POUNDload] = ACTIONS(2485), - [anon_sym_open] = ACTIONS(2483), - [anon_sym_LBRACK_LT] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(4470), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(4030), + [anon_sym_COLON_QMARK] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__dedent] = ACTIONS(2485), }, [2443] = { - [sym_type_arguments] = STATE(2514), - [sym_long_identifier] = STATE(2496), + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3689), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2443), [sym_block_comment] = STATE(2443), [sym_preproc_line] = STATE(2443), - [aux_sym__compound_type_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4396), - [anon_sym_GT_RBRACK] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_LT_AT_AT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2363), - [aux_sym__identifier_or_op_token1] = ACTIONS(2363), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2363), - [anon_sym_DASH_DOT] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), }, [2444] = { - [sym_type_arguments] = STATE(2514), - [sym_long_identifier] = STATE(2496), [sym_xml_doc] = STATE(2444), [sym_block_comment] = STATE(2444), [sym_preproc_line] = STATE(2444), - [aux_sym__compound_type_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4396), - [anon_sym_GT_RBRACK] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_LT_AT_AT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2305), - [aux_sym__identifier_or_op_token1] = ACTIONS(2305), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2305), - [anon_sym_DASH_DOT] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), + [aux_sym__function_or_value_defns_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_POUNDnowarn] = ACTIONS(4337), + [anon_sym_POUNDr] = ACTIONS(4337), + [anon_sym_POUNDload] = ACTIONS(4337), + [anon_sym_open] = ACTIONS(4339), + [anon_sym_LBRACK_LT] = ACTIONS(4337), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_type] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_and] = ACTIONS(4472), + [anon_sym_let] = ACTIONS(4339), + [anon_sym_let_BANG] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4339), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_LBRACK_PIPE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_LBRACE_PIPE] = ACTIONS(4337), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_return_BANG] = ACTIONS(4337), + [anon_sym_yield] = ACTIONS(4339), + [anon_sym_yield_BANG] = ACTIONS(4337), + [anon_sym_lazy] = ACTIONS(4339), + [anon_sym_assert] = ACTIONS(4339), + [anon_sym_upcast] = ACTIONS(4339), + [anon_sym_downcast] = ACTIONS(4339), + [anon_sym_LT_AT] = ACTIONS(4339), + [anon_sym_LT_AT_AT] = ACTIONS(4337), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_fun] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_match] = ACTIONS(4339), + [anon_sym_match_BANG] = ACTIONS(4337), + [anon_sym_function] = ACTIONS(4339), + [anon_sym_use] = ACTIONS(4339), + [anon_sym_use_BANG] = ACTIONS(4337), + [anon_sym_do_BANG] = ACTIONS(4337), + [anon_sym_begin] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), + [anon_sym_DQUOTE] = ACTIONS(4339), + [anon_sym_AT_DQUOTE] = ACTIONS(4337), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4337), + [sym_bool] = ACTIONS(4339), + [sym_unit] = ACTIONS(4337), + [aux_sym__identifier_or_op_token1] = ACTIONS(4337), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS_DOT] = ACTIONS(4337), + [anon_sym_DASH_DOT] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [aux_sym_prefix_op_token1] = ACTIONS(4337), + [sym_int] = ACTIONS(4339), + [sym_xint] = ACTIONS(4337), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), + [anon_sym_POUNDif] = ACTIONS(4337), + [sym__dedent] = ACTIONS(4337), }, [2445] = { [sym_xml_doc] = STATE(2445), [sym_block_comment] = STATE(2445), [sym_preproc_line] = STATE(2445), - [ts_builtin_sym_end] = ACTIONS(4392), - [sym_identifier] = ACTIONS(4394), - [anon_sym_namespace] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_POUNDnowarn] = ACTIONS(4392), - [anon_sym_POUNDr] = ACTIONS(4392), - [anon_sym_POUNDload] = ACTIONS(4392), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_LBRACK_LT] = ACTIONS(4392), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_type] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_let] = ACTIONS(4394), - [anon_sym_let_BANG] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_LBRACK_PIPE] = ACTIONS(4392), - [anon_sym_LBRACE] = ACTIONS(4394), - [anon_sym_LBRACE_PIPE] = ACTIONS(4392), - [anon_sym_new] = ACTIONS(4394), - [anon_sym_return_BANG] = ACTIONS(4392), - [anon_sym_yield] = ACTIONS(4394), - [anon_sym_yield_BANG] = ACTIONS(4392), - [anon_sym_lazy] = ACTIONS(4394), - [anon_sym_assert] = ACTIONS(4394), - [anon_sym_upcast] = ACTIONS(4394), - [anon_sym_downcast] = ACTIONS(4394), - [anon_sym_LT_AT] = ACTIONS(4394), - [anon_sym_LT_AT_AT] = ACTIONS(4392), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_match] = ACTIONS(4394), - [anon_sym_match_BANG] = ACTIONS(4392), - [anon_sym_function] = ACTIONS(4394), - [anon_sym_use] = ACTIONS(4394), - [anon_sym_use_BANG] = ACTIONS(4392), - [anon_sym_do_BANG] = ACTIONS(4392), - [anon_sym_begin] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(4394), - [anon_sym_AT_DQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [sym_bool] = ACTIONS(4394), - [sym_unit] = ACTIONS(4392), - [aux_sym__identifier_or_op_token1] = ACTIONS(4392), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS_DOT] = ACTIONS(4392), - [anon_sym_DASH_DOT] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [aux_sym_prefix_op_token1] = ACTIONS(4392), - [sym_int] = ACTIONS(4394), - [sym_xint] = ACTIONS(4392), + [aux_sym__function_or_value_defns_repeat1] = STATE(2451), + [sym_identifier] = ACTIONS(4350), + [anon_sym_module] = ACTIONS(4350), + [anon_sym_POUNDnowarn] = ACTIONS(4348), + [anon_sym_POUNDr] = ACTIONS(4348), + [anon_sym_POUNDload] = ACTIONS(4348), + [anon_sym_open] = ACTIONS(4350), + [anon_sym_LBRACK_LT] = ACTIONS(4348), + [anon_sym_return] = ACTIONS(4350), + [anon_sym_type] = ACTIONS(4350), + [anon_sym_do] = ACTIONS(4350), + [anon_sym_and] = ACTIONS(4475), + [anon_sym_let] = ACTIONS(4350), + [anon_sym_let_BANG] = ACTIONS(4348), + [anon_sym_null] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4350), + [anon_sym_AMP] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LBRACK_PIPE] = ACTIONS(4348), + [anon_sym_LBRACE] = ACTIONS(4350), + [anon_sym_LBRACE_PIPE] = ACTIONS(4348), + [anon_sym_new] = ACTIONS(4350), + [anon_sym_return_BANG] = ACTIONS(4348), + [anon_sym_yield] = ACTIONS(4350), + [anon_sym_yield_BANG] = ACTIONS(4348), + [anon_sym_lazy] = ACTIONS(4350), + [anon_sym_assert] = ACTIONS(4350), + [anon_sym_upcast] = ACTIONS(4350), + [anon_sym_downcast] = ACTIONS(4350), + [anon_sym_LT_AT] = ACTIONS(4350), + [anon_sym_LT_AT_AT] = ACTIONS(4348), + [anon_sym_for] = ACTIONS(4350), + [anon_sym_while] = ACTIONS(4350), + [anon_sym_if] = ACTIONS(4350), + [anon_sym_fun] = ACTIONS(4350), + [anon_sym_try] = ACTIONS(4350), + [anon_sym_match] = ACTIONS(4350), + [anon_sym_match_BANG] = ACTIONS(4348), + [anon_sym_function] = ACTIONS(4350), + [anon_sym_use] = ACTIONS(4350), + [anon_sym_use_BANG] = ACTIONS(4348), + [anon_sym_do_BANG] = ACTIONS(4348), + [anon_sym_begin] = ACTIONS(4350), + [anon_sym_SQUOTE] = ACTIONS(4348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4350), + [anon_sym_AT_DQUOTE] = ACTIONS(4348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4348), + [sym_bool] = ACTIONS(4350), + [sym_unit] = ACTIONS(4348), + [aux_sym__identifier_or_op_token1] = ACTIONS(4348), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4350), + [anon_sym_PLUS] = ACTIONS(4350), + [anon_sym_DASH] = ACTIONS(4350), + [anon_sym_PLUS_DOT] = ACTIONS(4348), + [anon_sym_DASH_DOT] = ACTIONS(4348), + [anon_sym_PERCENT] = ACTIONS(4348), + [anon_sym_AMP_AMP] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [aux_sym_prefix_op_token1] = ACTIONS(4348), + [sym_int] = ACTIONS(4350), + [sym_xint] = ACTIONS(4348), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4392), + [anon_sym_POUNDif] = ACTIONS(4348), + [sym__dedent] = ACTIONS(4348), }, [2446] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2966), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2446), [sym_block_comment] = STATE(2446), [sym_preproc_line] = STATE(2446), - [sym_identifier] = ACTIONS(4296), - [anon_sym_module] = ACTIONS(4296), - [anon_sym_POUNDnowarn] = ACTIONS(4294), - [anon_sym_POUNDr] = ACTIONS(4294), - [anon_sym_POUNDload] = ACTIONS(4294), - [anon_sym_open] = ACTIONS(4296), - [anon_sym_LBRACK_LT] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4296), - [anon_sym_type] = ACTIONS(4296), - [anon_sym_do] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4296), - [anon_sym_let] = ACTIONS(4296), - [anon_sym_let_BANG] = ACTIONS(4294), - [anon_sym_null] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_LBRACE_PIPE] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4296), - [anon_sym_return_BANG] = ACTIONS(4294), - [anon_sym_yield] = ACTIONS(4296), - [anon_sym_yield_BANG] = ACTIONS(4294), - [anon_sym_lazy] = ACTIONS(4296), - [anon_sym_assert] = ACTIONS(4296), - [anon_sym_upcast] = ACTIONS(4296), - [anon_sym_downcast] = ACTIONS(4296), - [anon_sym_LT_AT] = ACTIONS(4296), - [anon_sym_LT_AT_AT] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4296), - [anon_sym_while] = ACTIONS(4296), - [anon_sym_if] = ACTIONS(4296), - [anon_sym_fun] = ACTIONS(4296), - [anon_sym_try] = ACTIONS(4296), - [anon_sym_match] = ACTIONS(4296), - [anon_sym_match_BANG] = ACTIONS(4294), - [anon_sym_function] = ACTIONS(4296), - [anon_sym_use] = ACTIONS(4296), - [anon_sym_use_BANG] = ACTIONS(4294), - [anon_sym_do_BANG] = ACTIONS(4294), - [anon_sym_begin] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [anon_sym_AT_DQUOTE] = ACTIONS(4294), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4294), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4294), - [sym_bool] = ACTIONS(4296), - [sym_unit] = ACTIONS(4294), - [aux_sym__identifier_or_op_token1] = ACTIONS(4294), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4296), - [anon_sym_PLUS_DOT] = ACTIONS(4294), - [anon_sym_DASH_DOT] = ACTIONS(4294), - [anon_sym_PERCENT] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_TILDE] = ACTIONS(4294), - [aux_sym_prefix_op_token1] = ACTIONS(4294), - [sym_int] = ACTIONS(4296), - [sym_xint] = ACTIONS(4294), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4294), - [sym__dedent] = ACTIONS(4294), }, [2447] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2965), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2447), [sym_block_comment] = STATE(2447), [sym_preproc_line] = STATE(2447), - [ts_builtin_sym_end] = ACTIONS(4418), - [sym_identifier] = ACTIONS(4408), - [anon_sym_namespace] = ACTIONS(4408), - [anon_sym_module] = ACTIONS(4408), - [anon_sym_POUNDnowarn] = ACTIONS(4418), - [anon_sym_POUNDr] = ACTIONS(4418), - [anon_sym_POUNDload] = ACTIONS(4418), - [anon_sym_open] = ACTIONS(4408), - [anon_sym_LBRACK_LT] = ACTIONS(4418), - [anon_sym_return] = ACTIONS(4408), - [anon_sym_type] = ACTIONS(4408), - [anon_sym_do] = ACTIONS(4408), - [anon_sym_let] = ACTIONS(4408), - [anon_sym_let_BANG] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4408), - [anon_sym_LPAREN] = ACTIONS(4408), - [anon_sym_AMP] = ACTIONS(4408), - [anon_sym_LBRACK] = ACTIONS(4408), - [anon_sym_LBRACK_PIPE] = ACTIONS(4418), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_LBRACE_PIPE] = ACTIONS(4418), - [anon_sym_new] = ACTIONS(4408), - [anon_sym_return_BANG] = ACTIONS(4418), - [anon_sym_yield] = ACTIONS(4408), - [anon_sym_yield_BANG] = ACTIONS(4418), - [anon_sym_lazy] = ACTIONS(4408), - [anon_sym_assert] = ACTIONS(4408), - [anon_sym_upcast] = ACTIONS(4408), - [anon_sym_downcast] = ACTIONS(4408), - [anon_sym_LT_AT] = ACTIONS(4408), - [anon_sym_LT_AT_AT] = ACTIONS(4418), - [anon_sym_for] = ACTIONS(4408), - [anon_sym_while] = ACTIONS(4408), - [anon_sym_if] = ACTIONS(4408), - [anon_sym_fun] = ACTIONS(4408), - [anon_sym_try] = ACTIONS(4408), - [anon_sym_match] = ACTIONS(4408), - [anon_sym_match_BANG] = ACTIONS(4418), - [anon_sym_function] = ACTIONS(4408), - [anon_sym_use] = ACTIONS(4408), - [anon_sym_use_BANG] = ACTIONS(4418), - [anon_sym_do_BANG] = ACTIONS(4418), - [anon_sym_begin] = ACTIONS(4408), - [anon_sym_SQUOTE] = ACTIONS(4418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4408), - [anon_sym_DQUOTE] = ACTIONS(4408), - [anon_sym_AT_DQUOTE] = ACTIONS(4418), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), - [sym_bool] = ACTIONS(4408), - [sym_unit] = ACTIONS(4418), - [aux_sym__identifier_or_op_token1] = ACTIONS(4418), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4408), - [anon_sym_PLUS] = ACTIONS(4408), - [anon_sym_DASH] = ACTIONS(4408), - [anon_sym_PLUS_DOT] = ACTIONS(4418), - [anon_sym_DASH_DOT] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4418), - [anon_sym_AMP_AMP] = ACTIONS(4418), - [anon_sym_TILDE] = ACTIONS(4418), - [aux_sym_prefix_op_token1] = ACTIONS(4418), - [sym_int] = ACTIONS(4408), - [sym_xint] = ACTIONS(4418), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4418), }, [2448] = { - [sym_type_arguments] = STATE(2509), - [sym_long_identifier] = STATE(2501), + [sym_attributes] = STATE(2369), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2778), + [sym_optional_pattern] = STATE(2859), + [sym_type_check_pattern] = STATE(2859), + [sym_attribute_pattern] = STATE(2859), + [sym_paren_pattern] = STATE(2859), + [sym_repeat_pattern] = STATE(2859), + [sym_as_pattern] = STATE(2859), + [sym_cons_pattern] = STATE(2859), + [sym_disjunct_pattern] = STATE(2859), + [sym_conjunct_pattern] = STATE(2859), + [sym_typed_pattern] = STATE(2859), + [sym_list_pattern] = STATE(2859), + [sym_array_pattern] = STATE(2859), + [sym_record_pattern] = STATE(2859), + [sym_identifier_pattern] = STATE(2859), + [sym_char] = STATE(2678), + [sym_format_string] = STATE(2692), + [sym__string_literal] = STATE(2692), + [sym_string] = STATE(2678), + [sym_verbatim_string] = STATE(2678), + [sym_bytechar] = STATE(2678), + [sym_bytearray] = STATE(2678), + [sym_verbatim_bytearray] = STATE(2678), + [sym_format_triple_quoted_string] = STATE(2677), + [sym_triple_quoted_string] = STATE(2678), + [sym_const] = STATE(2858), + [sym_long_identifier] = STATE(2127), + [sym_sbyte] = STATE(2678), + [sym_byte] = STATE(2678), + [sym_int16] = STATE(2678), + [sym_uint16] = STATE(2678), + [sym_int32] = STATE(2678), + [sym_uint32] = STATE(2678), + [sym_nativeint] = STATE(2678), + [sym_unativeint] = STATE(2678), + [sym_int64] = STATE(2678), + [sym_uint64] = STATE(2678), + [sym_ieee32] = STATE(2678), + [sym_ieee64] = STATE(2678), + [sym_bignum] = STATE(2678), + [sym_decimal] = STATE(2678), + [sym_float] = STATE(2651), [sym_xml_doc] = STATE(2448), [sym_block_comment] = STATE(2448), [sym_preproc_line] = STATE(2448), - [aux_sym__compound_type_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(4370), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_LT_AT_AT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2363), - [aux_sym__identifier_or_op_token1] = ACTIONS(2363), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2363), - [anon_sym_DASH_DOT] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4110), + [anon_sym__] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_COLON_QMARK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_LBRACK_PIPE] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4354), + [anon_sym_SQUOTE] = ACTIONS(3798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3808), + [sym_bool] = ACTIONS(3810), + [sym_unit] = ACTIONS(3812), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), }, [2449] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2962), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2449), [sym_block_comment] = STATE(2449), [sym_preproc_line] = STATE(2449), - [sym_identifier] = ACTIONS(4358), - [anon_sym_module] = ACTIONS(4358), - [anon_sym_POUNDnowarn] = ACTIONS(4356), - [anon_sym_POUNDr] = ACTIONS(4356), - [anon_sym_POUNDload] = ACTIONS(4356), - [anon_sym_open] = ACTIONS(4358), - [anon_sym_LBRACK_LT] = ACTIONS(4356), - [anon_sym_return] = ACTIONS(4358), - [anon_sym_type] = ACTIONS(4358), - [anon_sym_do] = ACTIONS(4358), - [anon_sym_and] = ACTIONS(4358), - [anon_sym_let] = ACTIONS(4358), - [anon_sym_let_BANG] = ACTIONS(4356), - [anon_sym_null] = ACTIONS(4358), - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_AMP] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(4358), - [anon_sym_LBRACK_PIPE] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACE_PIPE] = ACTIONS(4356), - [anon_sym_new] = ACTIONS(4358), - [anon_sym_return_BANG] = ACTIONS(4356), - [anon_sym_yield] = ACTIONS(4358), - [anon_sym_yield_BANG] = ACTIONS(4356), - [anon_sym_lazy] = ACTIONS(4358), - [anon_sym_assert] = ACTIONS(4358), - [anon_sym_upcast] = ACTIONS(4358), - [anon_sym_downcast] = ACTIONS(4358), - [anon_sym_LT_AT] = ACTIONS(4358), - [anon_sym_LT_AT_AT] = ACTIONS(4356), - [anon_sym_for] = ACTIONS(4358), - [anon_sym_while] = ACTIONS(4358), - [anon_sym_if] = ACTIONS(4358), - [anon_sym_fun] = ACTIONS(4358), - [anon_sym_try] = ACTIONS(4358), - [anon_sym_match] = ACTIONS(4358), - [anon_sym_match_BANG] = ACTIONS(4356), - [anon_sym_function] = ACTIONS(4358), - [anon_sym_use] = ACTIONS(4358), - [anon_sym_use_BANG] = ACTIONS(4356), - [anon_sym_do_BANG] = ACTIONS(4356), - [anon_sym_begin] = ACTIONS(4358), - [anon_sym_SQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), - [anon_sym_DQUOTE] = ACTIONS(4358), - [anon_sym_AT_DQUOTE] = ACTIONS(4356), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4356), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4356), - [sym_bool] = ACTIONS(4358), - [sym_unit] = ACTIONS(4356), - [aux_sym__identifier_or_op_token1] = ACTIONS(4356), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4358), - [anon_sym_PLUS] = ACTIONS(4358), - [anon_sym_DASH] = ACTIONS(4358), - [anon_sym_PLUS_DOT] = ACTIONS(4356), - [anon_sym_DASH_DOT] = ACTIONS(4356), - [anon_sym_PERCENT] = ACTIONS(4356), - [anon_sym_AMP_AMP] = ACTIONS(4356), - [anon_sym_TILDE] = ACTIONS(4356), - [aux_sym_prefix_op_token1] = ACTIONS(4356), - [sym_int] = ACTIONS(4358), - [sym_xint] = ACTIONS(4356), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4356), - [sym__dedent] = ACTIONS(4356), }, [2450] = { + [sym_attributes] = STATE(2441), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(2960), + [sym_optional_pattern] = STATE(2920), + [sym_type_check_pattern] = STATE(2920), + [sym_attribute_pattern] = STATE(2920), + [sym_paren_pattern] = STATE(2920), + [sym_repeat_pattern] = STATE(2920), + [sym_as_pattern] = STATE(2920), + [sym_cons_pattern] = STATE(2920), + [sym_disjunct_pattern] = STATE(2920), + [sym_conjunct_pattern] = STATE(2920), + [sym_typed_pattern] = STATE(2920), + [sym_list_pattern] = STATE(2920), + [sym_array_pattern] = STATE(2920), + [sym_record_pattern] = STATE(2920), + [sym_identifier_pattern] = STATE(2920), + [sym_char] = STATE(2925), + [sym_format_string] = STATE(2986), + [sym__string_literal] = STATE(2986), + [sym_string] = STATE(2925), + [sym_verbatim_string] = STATE(2925), + [sym_bytechar] = STATE(2925), + [sym_bytearray] = STATE(2925), + [sym_verbatim_bytearray] = STATE(2925), + [sym_format_triple_quoted_string] = STATE(2926), + [sym_triple_quoted_string] = STATE(2925), + [sym_const] = STATE(2922), + [sym_long_identifier] = STATE(2130), + [sym_sbyte] = STATE(2925), + [sym_byte] = STATE(2925), + [sym_int16] = STATE(2925), + [sym_uint16] = STATE(2925), + [sym_int32] = STATE(2925), + [sym_uint32] = STATE(2925), + [sym_nativeint] = STATE(2925), + [sym_unativeint] = STATE(2925), + [sym_int64] = STATE(2925), + [sym_uint64] = STATE(2925), + [sym_ieee32] = STATE(2925), + [sym_ieee64] = STATE(2925), + [sym_bignum] = STATE(2925), + [sym_decimal] = STATE(2925), + [sym_float] = STATE(2866), [sym_xml_doc] = STATE(2450), [sym_block_comment] = STATE(2450), [sym_preproc_line] = STATE(2450), - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2952), - [anon_sym_namespace] = ACTIONS(2952), - [anon_sym_module] = ACTIONS(2952), - [anon_sym_POUNDnowarn] = ACTIONS(2954), - [anon_sym_POUNDr] = ACTIONS(2954), - [anon_sym_POUNDload] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2952), - [anon_sym_LBRACK_LT] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_LT_AT_AT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2954), - [aux_sym__identifier_or_op_token1] = ACTIONS(2954), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2954), - [anon_sym_DASH_DOT] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4358), + [anon_sym_QMARK] = ACTIONS(3978), + [anon_sym_COLON_QMARK] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_LBRACK_PIPE] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4372), + [anon_sym_AT_DQUOTE] = ACTIONS(4374), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4378), + [sym_bool] = ACTIONS(4380), + [sym_unit] = ACTIONS(4382), + [sym_int] = ACTIONS(4384), + [sym_xint] = ACTIONS(4386), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), }, [2451] = { [sym_xml_doc] = STATE(2451), [sym_block_comment] = STATE(2451), [sym_preproc_line] = STATE(2451), - [aux_sym_long_identifier_repeat1] = STATE(2451), - [sym_identifier] = ACTIONS(2483), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(4420), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym__function_or_value_defns_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(4293), + [anon_sym_module] = ACTIONS(4293), + [anon_sym_POUNDnowarn] = ACTIONS(4291), + [anon_sym_POUNDr] = ACTIONS(4291), + [anon_sym_POUNDload] = ACTIONS(4291), + [anon_sym_open] = ACTIONS(4293), + [anon_sym_LBRACK_LT] = ACTIONS(4291), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_type] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_and] = ACTIONS(4475), + [anon_sym_let] = ACTIONS(4293), + [anon_sym_let_BANG] = ACTIONS(4291), + [anon_sym_null] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_LBRACK_PIPE] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_LBRACE_PIPE] = ACTIONS(4291), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_return_BANG] = ACTIONS(4291), + [anon_sym_yield] = ACTIONS(4293), + [anon_sym_yield_BANG] = ACTIONS(4291), + [anon_sym_lazy] = ACTIONS(4293), + [anon_sym_assert] = ACTIONS(4293), + [anon_sym_upcast] = ACTIONS(4293), + [anon_sym_downcast] = ACTIONS(4293), + [anon_sym_LT_AT] = ACTIONS(4293), + [anon_sym_LT_AT_AT] = ACTIONS(4291), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_fun] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_match] = ACTIONS(4293), + [anon_sym_match_BANG] = ACTIONS(4291), + [anon_sym_function] = ACTIONS(4293), + [anon_sym_use] = ACTIONS(4293), + [anon_sym_use_BANG] = ACTIONS(4291), + [anon_sym_do_BANG] = ACTIONS(4291), + [anon_sym_begin] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4293), + [anon_sym_DQUOTE] = ACTIONS(4293), + [anon_sym_AT_DQUOTE] = ACTIONS(4291), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4291), + [sym_bool] = ACTIONS(4293), + [sym_unit] = ACTIONS(4291), + [aux_sym__identifier_or_op_token1] = ACTIONS(4291), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS_DOT] = ACTIONS(4291), + [anon_sym_DASH_DOT] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [aux_sym_prefix_op_token1] = ACTIONS(4291), + [sym_int] = ACTIONS(4293), + [sym_xint] = ACTIONS(4291), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(4291), + [sym__dedent] = ACTIONS(4291), }, [2452] = { [sym_xml_doc] = STATE(2452), [sym_block_comment] = STATE(2452), [sym_preproc_line] = STATE(2452), - [aux_sym_long_identifier_repeat1] = STATE(2455), - [sym_identifier] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [aux_sym_long_identifier_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_POUNDnowarn] = ACTIONS(2596), + [anon_sym_POUNDr] = ACTIONS(2596), + [anon_sym_POUNDload] = ACTIONS(2596), + [anon_sym_open] = ACTIONS(2594), + [anon_sym_LBRACK_LT] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__dedent] = ACTIONS(2596), }, [2453] = { [sym_xml_doc] = STATE(2453), [sym_block_comment] = STATE(2453), [sym_preproc_line] = STATE(2453), - [sym_identifier] = ACTIONS(2998), - [anon_sym_module] = ACTIONS(2998), - [anon_sym_POUNDnowarn] = ACTIONS(3000), - [anon_sym_POUNDr] = ACTIONS(3000), - [anon_sym_POUNDload] = ACTIONS(3000), - [anon_sym_open] = ACTIONS(2998), - [anon_sym_LBRACK_LT] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_type] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_let_BANG] = ACTIONS(3000), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_return_BANG] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(2998), - [anon_sym_yield_BANG] = ACTIONS(3000), - [anon_sym_lazy] = ACTIONS(2998), - [anon_sym_assert] = ACTIONS(2998), - [anon_sym_upcast] = ACTIONS(2998), - [anon_sym_downcast] = ACTIONS(2998), - [anon_sym_LT_AT] = ACTIONS(2998), - [anon_sym_LT_AT_AT] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_match] = ACTIONS(2998), - [anon_sym_match_BANG] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2998), - [anon_sym_use_BANG] = ACTIONS(3000), - [anon_sym_do_BANG] = ACTIONS(3000), - [anon_sym_begin] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_AT_DQUOTE] = ACTIONS(3000), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3000), - [sym_bool] = ACTIONS(2998), - [sym_unit] = ACTIONS(3000), - [aux_sym__identifier_or_op_token1] = ACTIONS(3000), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_PLUS_DOT] = ACTIONS(3000), - [anon_sym_DASH_DOT] = ACTIONS(3000), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_prefix_op_token1] = ACTIONS(3000), - [sym_int] = ACTIONS(2998), - [sym_xint] = ACTIONS(3000), + [ts_builtin_sym_end] = ACTIONS(4477), + [sym_identifier] = ACTIONS(4479), + [anon_sym_namespace] = ACTIONS(4479), + [anon_sym_module] = ACTIONS(4479), + [anon_sym_POUNDnowarn] = ACTIONS(4477), + [anon_sym_POUNDr] = ACTIONS(4477), + [anon_sym_POUNDload] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4479), + [anon_sym_LBRACK_LT] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4479), + [anon_sym_type] = ACTIONS(4479), + [anon_sym_do] = ACTIONS(4479), + [anon_sym_and] = ACTIONS(4479), + [anon_sym_let] = ACTIONS(4479), + [anon_sym_let_BANG] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_AMP] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LBRACK_PIPE] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_LBRACE_PIPE] = ACTIONS(4477), + [anon_sym_new] = ACTIONS(4479), + [anon_sym_return_BANG] = ACTIONS(4477), + [anon_sym_yield] = ACTIONS(4479), + [anon_sym_yield_BANG] = ACTIONS(4477), + [anon_sym_lazy] = ACTIONS(4479), + [anon_sym_assert] = ACTIONS(4479), + [anon_sym_upcast] = ACTIONS(4479), + [anon_sym_downcast] = ACTIONS(4479), + [anon_sym_LT_AT] = ACTIONS(4479), + [anon_sym_LT_AT_AT] = ACTIONS(4477), + [anon_sym_for] = ACTIONS(4479), + [anon_sym_while] = ACTIONS(4479), + [anon_sym_if] = ACTIONS(4479), + [anon_sym_fun] = ACTIONS(4479), + [anon_sym_try] = ACTIONS(4479), + [anon_sym_match] = ACTIONS(4479), + [anon_sym_match_BANG] = ACTIONS(4477), + [anon_sym_function] = ACTIONS(4479), + [anon_sym_use] = ACTIONS(4479), + [anon_sym_use_BANG] = ACTIONS(4477), + [anon_sym_do_BANG] = ACTIONS(4477), + [anon_sym_begin] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4479), + [anon_sym_DQUOTE] = ACTIONS(4479), + [anon_sym_AT_DQUOTE] = ACTIONS(4477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4477), + [sym_bool] = ACTIONS(4479), + [sym_unit] = ACTIONS(4477), + [aux_sym__identifier_or_op_token1] = ACTIONS(4477), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_PLUS_DOT] = ACTIONS(4477), + [anon_sym_DASH_DOT] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4477), + [anon_sym_TILDE] = ACTIONS(4477), + [aux_sym_prefix_op_token1] = ACTIONS(4477), + [sym_int] = ACTIONS(4479), + [sym_xint] = ACTIONS(4477), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3000), - [sym__dedent] = ACTIONS(3000), + [anon_sym_POUNDif] = ACTIONS(4477), }, [2454] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3510), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2454), [sym_block_comment] = STATE(2454), [sym_preproc_line] = STATE(2454), - [aux_sym_long_identifier_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(4425), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), }, [2455] = { [sym_xml_doc] = STATE(2455), [sym_block_comment] = STATE(2455), [sym_preproc_line] = STATE(2455), - [aux_sym_long_identifier_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(4481), + [sym_identifier] = ACTIONS(4483), + [anon_sym_namespace] = ACTIONS(4483), + [anon_sym_module] = ACTIONS(4483), + [anon_sym_POUNDnowarn] = ACTIONS(4481), + [anon_sym_POUNDr] = ACTIONS(4481), + [anon_sym_POUNDload] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4483), + [anon_sym_LBRACK_LT] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4483), + [anon_sym_type] = ACTIONS(4483), + [anon_sym_do] = ACTIONS(4483), + [anon_sym_and] = ACTIONS(4483), + [anon_sym_let] = ACTIONS(4483), + [anon_sym_let_BANG] = ACTIONS(4481), + [anon_sym_null] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_AMP] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_LBRACK_PIPE] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_LBRACE_PIPE] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4483), + [anon_sym_return_BANG] = ACTIONS(4481), + [anon_sym_yield] = ACTIONS(4483), + [anon_sym_yield_BANG] = ACTIONS(4481), + [anon_sym_lazy] = ACTIONS(4483), + [anon_sym_assert] = ACTIONS(4483), + [anon_sym_upcast] = ACTIONS(4483), + [anon_sym_downcast] = ACTIONS(4483), + [anon_sym_LT_AT] = ACTIONS(4483), + [anon_sym_LT_AT_AT] = ACTIONS(4481), + [anon_sym_for] = ACTIONS(4483), + [anon_sym_while] = ACTIONS(4483), + [anon_sym_if] = ACTIONS(4483), + [anon_sym_fun] = ACTIONS(4483), + [anon_sym_try] = ACTIONS(4483), + [anon_sym_match] = ACTIONS(4483), + [anon_sym_match_BANG] = ACTIONS(4481), + [anon_sym_function] = ACTIONS(4483), + [anon_sym_use] = ACTIONS(4483), + [anon_sym_use_BANG] = ACTIONS(4481), + [anon_sym_do_BANG] = ACTIONS(4481), + [anon_sym_begin] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4483), + [anon_sym_DQUOTE] = ACTIONS(4483), + [anon_sym_AT_DQUOTE] = ACTIONS(4481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4481), + [sym_bool] = ACTIONS(4483), + [sym_unit] = ACTIONS(4481), + [aux_sym__identifier_or_op_token1] = ACTIONS(4481), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_PLUS_DOT] = ACTIONS(4481), + [anon_sym_DASH_DOT] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_AMP_AMP] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4481), + [aux_sym_prefix_op_token1] = ACTIONS(4481), + [sym_int] = ACTIONS(4483), + [sym_xint] = ACTIONS(4481), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), + [anon_sym_POUNDif] = ACTIONS(4481), }, [2456] = { + [sym_attributes] = STATE(2338), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3708), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2067), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2456), [sym_block_comment] = STATE(2456), [sym_preproc_line] = STATE(2456), - [sym_identifier] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_POUNDnowarn] = ACTIONS(3131), - [anon_sym_POUNDr] = ACTIONS(3131), - [anon_sym_POUNDload] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_LBRACK_LT] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_let_BANG] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_return_BANG] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3133), - [anon_sym_yield_BANG] = ACTIONS(3131), - [anon_sym_lazy] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_upcast] = ACTIONS(3133), - [anon_sym_downcast] = ACTIONS(3133), - [anon_sym_LT_AT] = ACTIONS(3133), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_match_BANG] = ACTIONS(3131), - [anon_sym_function] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3133), - [anon_sym_use_BANG] = ACTIONS(3131), - [anon_sym_do_BANG] = ACTIONS(3131), - [anon_sym_begin] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [anon_sym_AT_DQUOTE] = ACTIONS(3131), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3131), - [sym_bool] = ACTIONS(3133), - [sym_unit] = ACTIONS(3131), - [aux_sym__identifier_or_op_token1] = ACTIONS(3131), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [sym_int] = ACTIONS(3133), - [sym_xint] = ACTIONS(3131), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3796), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3131), - [sym__dedent] = ACTIONS(3131), }, [2457] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3692), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2457), [sym_block_comment] = STATE(2457), [sym_preproc_line] = STATE(2457), - [sym_identifier] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_POUNDnowarn] = ACTIONS(2778), - [anon_sym_POUNDr] = ACTIONS(2778), - [anon_sym_POUNDload] = ACTIONS(2778), - [anon_sym_open] = ACTIONS(2776), - [anon_sym_LBRACK_LT] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_let_BANG] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LBRACK_PIPE] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACE_PIPE] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_return_BANG] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_yield_BANG] = ACTIONS(2778), - [anon_sym_lazy] = ACTIONS(2776), - [anon_sym_assert] = ACTIONS(2776), - [anon_sym_upcast] = ACTIONS(2776), - [anon_sym_downcast] = ACTIONS(2776), - [anon_sym_LT_AT] = ACTIONS(2776), - [anon_sym_LT_AT_AT] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_fun] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_match_BANG] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_use_BANG] = ACTIONS(2778), - [anon_sym_do_BANG] = ACTIONS(2778), - [anon_sym_begin] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_AT_DQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2778), - [sym_bool] = ACTIONS(2776), - [sym_unit] = ACTIONS(2778), - [aux_sym__identifier_or_op_token1] = ACTIONS(2778), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_PLUS_DOT] = ACTIONS(2778), - [anon_sym_DASH_DOT] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_prefix_op_token1] = ACTIONS(2778), - [sym_int] = ACTIONS(2776), - [sym_xint] = ACTIONS(2778), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2778), - [sym__dedent] = ACTIONS(2778), }, [2458] = { [sym_xml_doc] = STATE(2458), [sym_block_comment] = STATE(2458), [sym_preproc_line] = STATE(2458), - [aux_sym_long_identifier_repeat1] = STATE(2451), - [sym_identifier] = ACTIONS(2492), - [anon_sym_GT_RBRACK] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), + [aux_sym_long_identifier_repeat1] = STATE(2458), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), - [sym__newline] = ACTIONS(2494), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [2459] = { + [sym_attributes] = STATE(2337), + [sym_attribute_set] = STATE(2994), + [sym__pattern] = STATE(3699), + [sym_optional_pattern] = STATE(3450), + [sym_type_check_pattern] = STATE(3450), + [sym_attribute_pattern] = STATE(3450), + [sym_paren_pattern] = STATE(3450), + [sym_repeat_pattern] = STATE(3450), + [sym_as_pattern] = STATE(3450), + [sym_cons_pattern] = STATE(3450), + [sym_disjunct_pattern] = STATE(3450), + [sym_conjunct_pattern] = STATE(3450), + [sym_typed_pattern] = STATE(3450), + [sym_list_pattern] = STATE(3450), + [sym_array_pattern] = STATE(3450), + [sym_record_pattern] = STATE(3450), + [sym_identifier_pattern] = STATE(3450), + [sym_char] = STATE(3424), + [sym_format_string] = STATE(3422), + [sym__string_literal] = STATE(3422), + [sym_string] = STATE(3424), + [sym_verbatim_string] = STATE(3424), + [sym_bytechar] = STATE(3424), + [sym_bytearray] = STATE(3424), + [sym_verbatim_bytearray] = STATE(3424), + [sym_format_triple_quoted_string] = STATE(3438), + [sym_triple_quoted_string] = STATE(3424), + [sym_const] = STATE(3419), + [sym_long_identifier] = STATE(2122), + [sym_sbyte] = STATE(3424), + [sym_byte] = STATE(3424), + [sym_int16] = STATE(3424), + [sym_uint16] = STATE(3424), + [sym_int32] = STATE(3424), + [sym_uint32] = STATE(3424), + [sym_nativeint] = STATE(3424), + [sym_unativeint] = STATE(3424), + [sym_int64] = STATE(3424), + [sym_uint64] = STATE(3424), + [sym_ieee32] = STATE(3424), + [sym_ieee64] = STATE(3424), + [sym_bignum] = STATE(3424), + [sym_decimal] = STATE(3424), + [sym_float] = STATE(3392), [sym_xml_doc] = STATE(2459), [sym_block_comment] = STATE(2459), [sym_preproc_line] = STATE(2459), - [sym_identifier] = ACTIONS(4368), - [anon_sym_module] = ACTIONS(4368), - [anon_sym_POUNDnowarn] = ACTIONS(4366), - [anon_sym_POUNDr] = ACTIONS(4366), - [anon_sym_POUNDload] = ACTIONS(4366), - [anon_sym_open] = ACTIONS(4368), - [anon_sym_LBRACK_LT] = ACTIONS(4366), - [anon_sym_return] = ACTIONS(4368), - [anon_sym_type] = ACTIONS(4368), - [anon_sym_do] = ACTIONS(4368), - [anon_sym_let] = ACTIONS(4368), - [anon_sym_let_BANG] = ACTIONS(4366), - [anon_sym_null] = ACTIONS(4368), - [anon_sym_LPAREN] = ACTIONS(4368), - [anon_sym_AMP] = ACTIONS(4368), - [anon_sym_LBRACK] = ACTIONS(4368), - [anon_sym_LBRACK_PIPE] = ACTIONS(4366), - [anon_sym_LBRACE] = ACTIONS(4368), - [anon_sym_LBRACE_PIPE] = ACTIONS(4366), - [anon_sym_new] = ACTIONS(4368), - [anon_sym_return_BANG] = ACTIONS(4366), - [anon_sym_yield] = ACTIONS(4368), - [anon_sym_yield_BANG] = ACTIONS(4366), - [anon_sym_lazy] = ACTIONS(4368), - [anon_sym_assert] = ACTIONS(4368), - [anon_sym_upcast] = ACTIONS(4368), - [anon_sym_downcast] = ACTIONS(4368), - [anon_sym_LT_AT] = ACTIONS(4368), - [anon_sym_LT_AT_AT] = ACTIONS(4366), - [anon_sym_for] = ACTIONS(4368), - [anon_sym_while] = ACTIONS(4368), - [anon_sym_if] = ACTIONS(4368), - [anon_sym_fun] = ACTIONS(4368), - [anon_sym_try] = ACTIONS(4368), - [anon_sym_match] = ACTIONS(4368), - [anon_sym_match_BANG] = ACTIONS(4366), - [anon_sym_function] = ACTIONS(4368), - [anon_sym_use] = ACTIONS(4368), - [anon_sym_use_BANG] = ACTIONS(4366), - [anon_sym_do_BANG] = ACTIONS(4366), - [anon_sym_begin] = ACTIONS(4368), - [anon_sym_SQUOTE] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4368), - [anon_sym_AT_DQUOTE] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4366), - [sym_bool] = ACTIONS(4368), - [sym_unit] = ACTIONS(4366), - [aux_sym__identifier_or_op_token1] = ACTIONS(4366), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4368), - [anon_sym_PLUS] = ACTIONS(4368), - [anon_sym_DASH] = ACTIONS(4368), - [anon_sym_PLUS_DOT] = ACTIONS(4366), - [anon_sym_DASH_DOT] = ACTIONS(4366), - [anon_sym_PERCENT] = ACTIONS(4366), - [anon_sym_AMP_AMP] = ACTIONS(4366), - [anon_sym_TILDE] = ACTIONS(4366), - [aux_sym_prefix_op_token1] = ACTIONS(4366), - [sym_int] = ACTIONS(4368), - [sym_xint] = ACTIONS(4366), + [aux_sym_attributes_repeat1] = STATE(3031), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3862), + [anon_sym__] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_COLON_QMARK] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3868), + [anon_sym_AT_DQUOTE] = ACTIONS(3870), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3874), + [sym_bool] = ACTIONS(3876), + [sym_unit] = ACTIONS(3878), + [sym_int] = ACTIONS(3880), + [sym_xint] = ACTIONS(3882), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_LPAREN_STAR] = ACTIONS(3818), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4366), - [sym__dedent] = ACTIONS(4366), }, [2460] = { + [sym_type_arguments] = STATE(2552), + [sym_long_identifier] = STATE(2572), [sym_xml_doc] = STATE(2460), [sym_block_comment] = STATE(2460), [sym_preproc_line] = STATE(2460), - [sym_identifier] = ACTIONS(3032), - [anon_sym_module] = ACTIONS(3032), - [anon_sym_POUNDnowarn] = ACTIONS(3034), - [anon_sym_POUNDr] = ACTIONS(3034), - [anon_sym_POUNDload] = ACTIONS(3034), - [anon_sym_open] = ACTIONS(3032), - [anon_sym_LBRACK_LT] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_do] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_let_BANG] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_AMP] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LBRACK_PIPE] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LBRACE_PIPE] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3032), - [anon_sym_return_BANG] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_yield_BANG] = ACTIONS(3034), - [anon_sym_lazy] = ACTIONS(3032), - [anon_sym_assert] = ACTIONS(3032), - [anon_sym_upcast] = ACTIONS(3032), - [anon_sym_downcast] = ACTIONS(3032), - [anon_sym_LT_AT] = ACTIONS(3032), - [anon_sym_LT_AT_AT] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_fun] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_match_BANG] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3032), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_use_BANG] = ACTIONS(3034), - [anon_sym_do_BANG] = ACTIONS(3034), - [anon_sym_begin] = ACTIONS(3032), - [anon_sym_SQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_AT_DQUOTE] = ACTIONS(3034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3034), - [sym_bool] = ACTIONS(3032), - [sym_unit] = ACTIONS(3034), - [aux_sym__identifier_or_op_token1] = ACTIONS(3034), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3032), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_PLUS_DOT] = ACTIONS(3034), - [anon_sym_DASH_DOT] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [aux_sym_prefix_op_token1] = ACTIONS(3034), - [sym_int] = ACTIONS(3032), - [sym_xint] = ACTIONS(3034), + [aux_sym__compound_type_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(4488), + [anon_sym_GT_RBRACK] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_LT_AT_AT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2375), + [aux_sym__identifier_or_op_token1] = ACTIONS(2375), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2375), + [anon_sym_DASH_DOT] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3034), - [sym__dedent] = ACTIONS(3034), + [anon_sym_POUNDif] = ACTIONS(2375), + [sym__newline] = ACTIONS(2375), }, [2461] = { [sym_xml_doc] = STATE(2461), [sym_block_comment] = STATE(2461), [sym_preproc_line] = STATE(2461), - [sym_identifier] = ACTIONS(2952), - [anon_sym_module] = ACTIONS(2952), - [anon_sym_POUNDnowarn] = ACTIONS(2954), - [anon_sym_POUNDr] = ACTIONS(2954), - [anon_sym_POUNDload] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2952), - [anon_sym_LBRACK_LT] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_let_BANG] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LBRACK_PIPE] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACE_PIPE] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_return_BANG] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_yield_BANG] = ACTIONS(2954), - [anon_sym_lazy] = ACTIONS(2952), - [anon_sym_assert] = ACTIONS(2952), - [anon_sym_upcast] = ACTIONS(2952), - [anon_sym_downcast] = ACTIONS(2952), - [anon_sym_LT_AT] = ACTIONS(2952), - [anon_sym_LT_AT_AT] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_fun] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_match_BANG] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_use_BANG] = ACTIONS(2954), - [anon_sym_do_BANG] = ACTIONS(2954), - [anon_sym_begin] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_AT_DQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2954), - [sym_bool] = ACTIONS(2952), - [sym_unit] = ACTIONS(2954), - [aux_sym__identifier_or_op_token1] = ACTIONS(2954), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2952), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_PLUS_DOT] = ACTIONS(2954), - [anon_sym_DASH_DOT] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [aux_sym_prefix_op_token1] = ACTIONS(2954), - [sym_int] = ACTIONS(2952), - [sym_xint] = ACTIONS(2954), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [anon_sym_namespace] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_POUNDnowarn] = ACTIONS(287), + [anon_sym_POUNDr] = ACTIONS(287), + [anon_sym_POUNDload] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_LBRACK_LT] = ACTIONS(287), + [anon_sym_return] = ACTIONS(289), + [anon_sym_type] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_BANG] = ACTIONS(287), + [anon_sym_null] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_LBRACK_PIPE] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_LBRACE_PIPE] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_return_BANG] = ACTIONS(287), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_yield_BANG] = ACTIONS(287), + [anon_sym_lazy] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_upcast] = ACTIONS(289), + [anon_sym_downcast] = ACTIONS(289), + [anon_sym_LT_AT] = ACTIONS(289), + [anon_sym_LT_AT_AT] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_fun] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_match_BANG] = ACTIONS(287), + [anon_sym_function] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_use_BANG] = ACTIONS(287), + [anon_sym_do_BANG] = ACTIONS(287), + [anon_sym_begin] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_AT_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_bool] = ACTIONS(289), + [sym_unit] = ACTIONS(287), + [aux_sym__identifier_or_op_token1] = ACTIONS(287), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_PLUS_DOT] = ACTIONS(287), + [anon_sym_DASH_DOT] = ACTIONS(287), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(287), + [aux_sym_prefix_op_token1] = ACTIONS(287), + [sym_int] = ACTIONS(289), + [sym_xint] = ACTIONS(287), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2954), - [sym__dedent] = ACTIONS(2954), + [anon_sym_POUNDif] = ACTIONS(287), }, [2462] = { [sym_xml_doc] = STATE(2462), [sym_block_comment] = STATE(2462), [sym_preproc_line] = STATE(2462), - [sym_identifier] = ACTIONS(4400), - [anon_sym_module] = ACTIONS(4400), - [anon_sym_POUNDnowarn] = ACTIONS(4398), - [anon_sym_POUNDr] = ACTIONS(4398), - [anon_sym_POUNDload] = ACTIONS(4398), - [anon_sym_open] = ACTIONS(4400), - [anon_sym_LBRACK_LT] = ACTIONS(4398), - [anon_sym_return] = ACTIONS(4400), - [anon_sym_type] = ACTIONS(4400), - [anon_sym_do] = ACTIONS(4400), - [anon_sym_let] = ACTIONS(4400), - [anon_sym_let_BANG] = ACTIONS(4398), - [anon_sym_null] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4400), - [anon_sym_LBRACK] = ACTIONS(4400), - [anon_sym_LBRACK_PIPE] = ACTIONS(4398), - [anon_sym_LBRACE] = ACTIONS(4400), - [anon_sym_LBRACE_PIPE] = ACTIONS(4398), - [anon_sym_new] = ACTIONS(4400), - [anon_sym_return_BANG] = ACTIONS(4398), - [anon_sym_yield] = ACTIONS(4400), - [anon_sym_yield_BANG] = ACTIONS(4398), - [anon_sym_lazy] = ACTIONS(4400), - [anon_sym_assert] = ACTIONS(4400), - [anon_sym_upcast] = ACTIONS(4400), - [anon_sym_downcast] = ACTIONS(4400), - [anon_sym_LT_AT] = ACTIONS(4400), - [anon_sym_LT_AT_AT] = ACTIONS(4398), - [anon_sym_for] = ACTIONS(4400), - [anon_sym_while] = ACTIONS(4400), - [anon_sym_if] = ACTIONS(4400), - [anon_sym_fun] = ACTIONS(4400), - [anon_sym_try] = ACTIONS(4400), - [anon_sym_match] = ACTIONS(4400), - [anon_sym_match_BANG] = ACTIONS(4398), - [anon_sym_function] = ACTIONS(4400), - [anon_sym_use] = ACTIONS(4400), - [anon_sym_use_BANG] = ACTIONS(4398), - [anon_sym_do_BANG] = ACTIONS(4398), - [anon_sym_begin] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4400), - [anon_sym_AT_DQUOTE] = ACTIONS(4398), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), - [sym_bool] = ACTIONS(4400), - [sym_unit] = ACTIONS(4398), - [aux_sym__identifier_or_op_token1] = ACTIONS(4398), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4400), - [anon_sym_PLUS] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4400), - [anon_sym_PLUS_DOT] = ACTIONS(4398), - [anon_sym_DASH_DOT] = ACTIONS(4398), - [anon_sym_PERCENT] = ACTIONS(4398), - [anon_sym_AMP_AMP] = ACTIONS(4398), - [anon_sym_TILDE] = ACTIONS(4398), - [aux_sym_prefix_op_token1] = ACTIONS(4398), - [sym_int] = ACTIONS(4400), - [sym_xint] = ACTIONS(4398), + [ts_builtin_sym_end] = ACTIONS(4490), + [sym_identifier] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_POUNDnowarn] = ACTIONS(4490), + [anon_sym_POUNDr] = ACTIONS(4490), + [anon_sym_POUNDload] = ACTIONS(4490), + [anon_sym_open] = ACTIONS(4492), + [anon_sym_LBRACK_LT] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_type] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_let] = ACTIONS(4492), + [anon_sym_let_BANG] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4492), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_LBRACK_PIPE] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_LBRACE_PIPE] = ACTIONS(4490), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_return_BANG] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4492), + [anon_sym_yield_BANG] = ACTIONS(4490), + [anon_sym_lazy] = ACTIONS(4492), + [anon_sym_assert] = ACTIONS(4492), + [anon_sym_upcast] = ACTIONS(4492), + [anon_sym_downcast] = ACTIONS(4492), + [anon_sym_LT_AT] = ACTIONS(4492), + [anon_sym_LT_AT_AT] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_fun] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_match] = ACTIONS(4492), + [anon_sym_match_BANG] = ACTIONS(4490), + [anon_sym_function] = ACTIONS(4492), + [anon_sym_use] = ACTIONS(4492), + [anon_sym_use_BANG] = ACTIONS(4490), + [anon_sym_do_BANG] = ACTIONS(4490), + [anon_sym_begin] = ACTIONS(4492), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4492), + [anon_sym_DQUOTE] = ACTIONS(4492), + [anon_sym_AT_DQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4490), + [sym_bool] = ACTIONS(4492), + [sym_unit] = ACTIONS(4490), + [aux_sym__identifier_or_op_token1] = ACTIONS(4490), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS_DOT] = ACTIONS(4490), + [anon_sym_DASH_DOT] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [aux_sym_prefix_op_token1] = ACTIONS(4490), + [sym_int] = ACTIONS(4492), + [sym_xint] = ACTIONS(4490), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4398), - [sym__dedent] = ACTIONS(4398), + [anon_sym_POUNDif] = ACTIONS(4490), }, [2463] = { [sym_xml_doc] = STATE(2463), [sym_block_comment] = STATE(2463), [sym_preproc_line] = STATE(2463), - [sym_identifier] = ACTIONS(4416), - [anon_sym_module] = ACTIONS(4416), - [anon_sym_POUNDnowarn] = ACTIONS(4414), - [anon_sym_POUNDr] = ACTIONS(4414), - [anon_sym_POUNDload] = ACTIONS(4414), - [anon_sym_open] = ACTIONS(4416), - [anon_sym_LBRACK_LT] = ACTIONS(4414), - [anon_sym_return] = ACTIONS(4416), - [anon_sym_type] = ACTIONS(4416), - [anon_sym_do] = ACTIONS(4416), - [anon_sym_let] = ACTIONS(4416), - [anon_sym_let_BANG] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_AMP] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_LBRACK_PIPE] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_LBRACE_PIPE] = ACTIONS(4414), - [anon_sym_new] = ACTIONS(4416), - [anon_sym_return_BANG] = ACTIONS(4414), - [anon_sym_yield] = ACTIONS(4416), - [anon_sym_yield_BANG] = ACTIONS(4414), - [anon_sym_lazy] = ACTIONS(4416), - [anon_sym_assert] = ACTIONS(4416), - [anon_sym_upcast] = ACTIONS(4416), - [anon_sym_downcast] = ACTIONS(4416), - [anon_sym_LT_AT] = ACTIONS(4416), - [anon_sym_LT_AT_AT] = ACTIONS(4414), - [anon_sym_for] = ACTIONS(4416), - [anon_sym_while] = ACTIONS(4416), - [anon_sym_if] = ACTIONS(4416), - [anon_sym_fun] = ACTIONS(4416), - [anon_sym_try] = ACTIONS(4416), - [anon_sym_match] = ACTIONS(4416), - [anon_sym_match_BANG] = ACTIONS(4414), - [anon_sym_function] = ACTIONS(4416), - [anon_sym_use] = ACTIONS(4416), - [anon_sym_use_BANG] = ACTIONS(4414), - [anon_sym_do_BANG] = ACTIONS(4414), - [anon_sym_begin] = ACTIONS(4416), - [anon_sym_SQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4416), - [anon_sym_DQUOTE] = ACTIONS(4416), - [anon_sym_AT_DQUOTE] = ACTIONS(4414), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4414), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4414), - [sym_bool] = ACTIONS(4416), - [sym_unit] = ACTIONS(4414), - [aux_sym__identifier_or_op_token1] = ACTIONS(4414), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4416), - [anon_sym_DASH] = ACTIONS(4416), - [anon_sym_PLUS_DOT] = ACTIONS(4414), - [anon_sym_DASH_DOT] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4414), - [anon_sym_TILDE] = ACTIONS(4414), - [aux_sym_prefix_op_token1] = ACTIONS(4414), - [sym_int] = ACTIONS(4416), - [sym_xint] = ACTIONS(4414), + [sym_identifier] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_POUNDnowarn] = ACTIONS(4462), + [anon_sym_POUNDr] = ACTIONS(4462), + [anon_sym_POUNDload] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4464), + [anon_sym_LBRACK_LT] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_type] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_and] = ACTIONS(4464), + [anon_sym_let] = ACTIONS(4464), + [anon_sym_let_BANG] = ACTIONS(4462), + [anon_sym_null] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_LBRACK_PIPE] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_LBRACE_PIPE] = ACTIONS(4462), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_return_BANG] = ACTIONS(4462), + [anon_sym_yield] = ACTIONS(4464), + [anon_sym_yield_BANG] = ACTIONS(4462), + [anon_sym_lazy] = ACTIONS(4464), + [anon_sym_assert] = ACTIONS(4464), + [anon_sym_upcast] = ACTIONS(4464), + [anon_sym_downcast] = ACTIONS(4464), + [anon_sym_LT_AT] = ACTIONS(4464), + [anon_sym_LT_AT_AT] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_fun] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_match] = ACTIONS(4464), + [anon_sym_match_BANG] = ACTIONS(4462), + [anon_sym_function] = ACTIONS(4464), + [anon_sym_use] = ACTIONS(4464), + [anon_sym_use_BANG] = ACTIONS(4462), + [anon_sym_do_BANG] = ACTIONS(4462), + [anon_sym_begin] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [anon_sym_AT_DQUOTE] = ACTIONS(4462), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4462), + [sym_bool] = ACTIONS(4464), + [sym_unit] = ACTIONS(4462), + [aux_sym__identifier_or_op_token1] = ACTIONS(4462), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS_DOT] = ACTIONS(4462), + [anon_sym_DASH_DOT] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [aux_sym_prefix_op_token1] = ACTIONS(4462), + [sym_int] = ACTIONS(4464), + [sym_xint] = ACTIONS(4462), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4414), - [sym__dedent] = ACTIONS(4414), + [anon_sym_POUNDif] = ACTIONS(4462), + [sym__dedent] = ACTIONS(4462), }, [2464] = { [sym_xml_doc] = STATE(2464), [sym_block_comment] = STATE(2464), [sym_preproc_line] = STATE(2464), - [sym_identifier] = ACTIONS(4374), - [anon_sym_module] = ACTIONS(4374), - [anon_sym_POUNDnowarn] = ACTIONS(4372), - [anon_sym_POUNDr] = ACTIONS(4372), - [anon_sym_POUNDload] = ACTIONS(4372), - [anon_sym_open] = ACTIONS(4374), - [anon_sym_LBRACK_LT] = ACTIONS(4372), - [anon_sym_return] = ACTIONS(4374), - [anon_sym_type] = ACTIONS(4374), - [anon_sym_do] = ACTIONS(4374), - [anon_sym_let] = ACTIONS(4374), - [anon_sym_let_BANG] = ACTIONS(4372), - [anon_sym_null] = ACTIONS(4374), - [anon_sym_LPAREN] = ACTIONS(4374), - [anon_sym_AMP] = ACTIONS(4374), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_LBRACK_PIPE] = ACTIONS(4372), - [anon_sym_LBRACE] = ACTIONS(4374), - [anon_sym_LBRACE_PIPE] = ACTIONS(4372), - [anon_sym_new] = ACTIONS(4374), - [anon_sym_return_BANG] = ACTIONS(4372), - [anon_sym_yield] = ACTIONS(4374), - [anon_sym_yield_BANG] = ACTIONS(4372), - [anon_sym_lazy] = ACTIONS(4374), - [anon_sym_assert] = ACTIONS(4374), - [anon_sym_upcast] = ACTIONS(4374), - [anon_sym_downcast] = ACTIONS(4374), - [anon_sym_LT_AT] = ACTIONS(4374), - [anon_sym_LT_AT_AT] = ACTIONS(4372), - [anon_sym_for] = ACTIONS(4374), - [anon_sym_while] = ACTIONS(4374), - [anon_sym_if] = ACTIONS(4374), - [anon_sym_fun] = ACTIONS(4374), - [anon_sym_try] = ACTIONS(4374), - [anon_sym_match] = ACTIONS(4374), - [anon_sym_match_BANG] = ACTIONS(4372), - [anon_sym_function] = ACTIONS(4374), - [anon_sym_use] = ACTIONS(4374), - [anon_sym_use_BANG] = ACTIONS(4372), - [anon_sym_do_BANG] = ACTIONS(4372), - [anon_sym_begin] = ACTIONS(4374), - [anon_sym_SQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE] = ACTIONS(4374), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4372), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4372), - [sym_bool] = ACTIONS(4374), - [sym_unit] = ACTIONS(4372), - [aux_sym__identifier_or_op_token1] = ACTIONS(4372), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4374), - [anon_sym_PLUS] = ACTIONS(4374), - [anon_sym_DASH] = ACTIONS(4374), - [anon_sym_PLUS_DOT] = ACTIONS(4372), - [anon_sym_DASH_DOT] = ACTIONS(4372), - [anon_sym_PERCENT] = ACTIONS(4372), - [anon_sym_AMP_AMP] = ACTIONS(4372), - [anon_sym_TILDE] = ACTIONS(4372), - [aux_sym_prefix_op_token1] = ACTIONS(4372), - [sym_int] = ACTIONS(4374), - [sym_xint] = ACTIONS(4372), + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_POUNDnowarn] = ACTIONS(4494), + [anon_sym_POUNDr] = ACTIONS(4494), + [anon_sym_POUNDload] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4496), + [anon_sym_LBRACK_LT] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_let] = ACTIONS(4496), + [anon_sym_let_BANG] = ACTIONS(4494), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_LBRACK_PIPE] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_LBRACE_PIPE] = ACTIONS(4494), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_return_BANG] = ACTIONS(4494), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_yield_BANG] = ACTIONS(4494), + [anon_sym_lazy] = ACTIONS(4496), + [anon_sym_assert] = ACTIONS(4496), + [anon_sym_upcast] = ACTIONS(4496), + [anon_sym_downcast] = ACTIONS(4496), + [anon_sym_LT_AT] = ACTIONS(4496), + [anon_sym_LT_AT_AT] = ACTIONS(4494), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_fun] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_match_BANG] = ACTIONS(4494), + [anon_sym_function] = ACTIONS(4496), + [anon_sym_use] = ACTIONS(4496), + [anon_sym_use_BANG] = ACTIONS(4494), + [anon_sym_do_BANG] = ACTIONS(4494), + [anon_sym_begin] = ACTIONS(4496), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4496), + [anon_sym_DQUOTE] = ACTIONS(4496), + [anon_sym_AT_DQUOTE] = ACTIONS(4494), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [sym_bool] = ACTIONS(4496), + [sym_unit] = ACTIONS(4494), + [aux_sym__identifier_or_op_token1] = ACTIONS(4494), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS_DOT] = ACTIONS(4494), + [anon_sym_DASH_DOT] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [aux_sym_prefix_op_token1] = ACTIONS(4494), + [sym_int] = ACTIONS(4496), + [sym_xint] = ACTIONS(4494), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4372), - [sym__dedent] = ACTIONS(4372), + [anon_sym_POUNDif] = ACTIONS(4494), }, [2465] = { [sym_xml_doc] = STATE(2465), [sym_block_comment] = STATE(2465), [sym_preproc_line] = STATE(2465), - [sym_identifier] = ACTIONS(4386), - [anon_sym_module] = ACTIONS(4386), - [anon_sym_POUNDnowarn] = ACTIONS(4384), - [anon_sym_POUNDr] = ACTIONS(4384), - [anon_sym_POUNDload] = ACTIONS(4384), - [anon_sym_open] = ACTIONS(4386), - [anon_sym_LBRACK_LT] = ACTIONS(4384), - [anon_sym_return] = ACTIONS(4386), - [anon_sym_type] = ACTIONS(4386), - [anon_sym_do] = ACTIONS(4386), - [anon_sym_let] = ACTIONS(4386), - [anon_sym_let_BANG] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4386), - [anon_sym_LPAREN] = ACTIONS(4386), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_LBRACK_PIPE] = ACTIONS(4384), - [anon_sym_LBRACE] = ACTIONS(4386), - [anon_sym_LBRACE_PIPE] = ACTIONS(4384), - [anon_sym_new] = ACTIONS(4386), - [anon_sym_return_BANG] = ACTIONS(4384), - [anon_sym_yield] = ACTIONS(4386), - [anon_sym_yield_BANG] = ACTIONS(4384), - [anon_sym_lazy] = ACTIONS(4386), - [anon_sym_assert] = ACTIONS(4386), - [anon_sym_upcast] = ACTIONS(4386), - [anon_sym_downcast] = ACTIONS(4386), - [anon_sym_LT_AT] = ACTIONS(4386), - [anon_sym_LT_AT_AT] = ACTIONS(4384), - [anon_sym_for] = ACTIONS(4386), - [anon_sym_while] = ACTIONS(4386), - [anon_sym_if] = ACTIONS(4386), - [anon_sym_fun] = ACTIONS(4386), - [anon_sym_try] = ACTIONS(4386), - [anon_sym_match] = ACTIONS(4386), - [anon_sym_match_BANG] = ACTIONS(4384), - [anon_sym_function] = ACTIONS(4386), - [anon_sym_use] = ACTIONS(4386), - [anon_sym_use_BANG] = ACTIONS(4384), - [anon_sym_do_BANG] = ACTIONS(4384), - [anon_sym_begin] = ACTIONS(4386), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4386), - [anon_sym_DQUOTE] = ACTIONS(4386), - [anon_sym_AT_DQUOTE] = ACTIONS(4384), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4384), - [sym_bool] = ACTIONS(4386), - [sym_unit] = ACTIONS(4384), - [aux_sym__identifier_or_op_token1] = ACTIONS(4384), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_PLUS_DOT] = ACTIONS(4384), - [anon_sym_DASH_DOT] = ACTIONS(4384), - [anon_sym_PERCENT] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [aux_sym_prefix_op_token1] = ACTIONS(4384), - [sym_int] = ACTIONS(4386), - [sym_xint] = ACTIONS(4384), + [sym_identifier] = ACTIONS(4406), + [anon_sym_module] = ACTIONS(4406), + [anon_sym_POUNDnowarn] = ACTIONS(4404), + [anon_sym_POUNDr] = ACTIONS(4404), + [anon_sym_POUNDload] = ACTIONS(4404), + [anon_sym_open] = ACTIONS(4406), + [anon_sym_LBRACK_LT] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_type] = ACTIONS(4406), + [anon_sym_do] = ACTIONS(4406), + [anon_sym_and] = ACTIONS(4406), + [anon_sym_let] = ACTIONS(4406), + [anon_sym_let_BANG] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4406), + [anon_sym_LPAREN] = ACTIONS(4406), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4406), + [anon_sym_LBRACK_PIPE] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4406), + [anon_sym_LBRACE_PIPE] = ACTIONS(4404), + [anon_sym_new] = ACTIONS(4406), + [anon_sym_return_BANG] = ACTIONS(4404), + [anon_sym_yield] = ACTIONS(4406), + [anon_sym_yield_BANG] = ACTIONS(4404), + [anon_sym_lazy] = ACTIONS(4406), + [anon_sym_assert] = ACTIONS(4406), + [anon_sym_upcast] = ACTIONS(4406), + [anon_sym_downcast] = ACTIONS(4406), + [anon_sym_LT_AT] = ACTIONS(4406), + [anon_sym_LT_AT_AT] = ACTIONS(4404), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_fun] = ACTIONS(4406), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_match] = ACTIONS(4406), + [anon_sym_match_BANG] = ACTIONS(4404), + [anon_sym_function] = ACTIONS(4406), + [anon_sym_use] = ACTIONS(4406), + [anon_sym_use_BANG] = ACTIONS(4404), + [anon_sym_do_BANG] = ACTIONS(4404), + [anon_sym_begin] = ACTIONS(4406), + [anon_sym_SQUOTE] = ACTIONS(4404), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(4406), + [anon_sym_AT_DQUOTE] = ACTIONS(4404), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4404), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4404), + [sym_bool] = ACTIONS(4406), + [sym_unit] = ACTIONS(4404), + [aux_sym__identifier_or_op_token1] = ACTIONS(4404), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_PLUS_DOT] = ACTIONS(4404), + [anon_sym_DASH_DOT] = ACTIONS(4404), + [anon_sym_PERCENT] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [aux_sym_prefix_op_token1] = ACTIONS(4404), + [sym_int] = ACTIONS(4406), + [sym_xint] = ACTIONS(4404), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4384), - [sym__dedent] = ACTIONS(4384), + [anon_sym_POUNDif] = ACTIONS(4404), + [sym__dedent] = ACTIONS(4404), }, [2466] = { [sym_xml_doc] = STATE(2466), [sym_block_comment] = STATE(2466), [sym_preproc_line] = STATE(2466), - [sym_identifier] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_POUNDnowarn] = ACTIONS(1865), - [anon_sym_POUNDr] = ACTIONS(1865), - [anon_sym_POUNDload] = ACTIONS(1865), - [anon_sym_open] = ACTIONS(1867), - [anon_sym_LBRACK_LT] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_BANG] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_LBRACK_PIPE] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LBRACE_PIPE] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_return_BANG] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_yield_BANG] = ACTIONS(1865), - [anon_sym_lazy] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_upcast] = ACTIONS(1867), - [anon_sym_downcast] = ACTIONS(1867), - [anon_sym_LT_AT] = ACTIONS(1867), - [anon_sym_LT_AT_AT] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_fun] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_match_BANG] = ACTIONS(1865), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_use_BANG] = ACTIONS(1865), - [anon_sym_do_BANG] = ACTIONS(1865), - [anon_sym_begin] = ACTIONS(1867), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [anon_sym_AT_DQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1865), - [sym_bool] = ACTIONS(1867), - [sym_unit] = ACTIONS(1865), - [aux_sym__identifier_or_op_token1] = ACTIONS(1865), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(1865), - [anon_sym_DASH_DOT] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [aux_sym_prefix_op_token1] = ACTIONS(1865), - [sym_int] = ACTIONS(1867), - [sym_xint] = ACTIONS(1865), + [sym_identifier] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_POUNDnowarn] = ACTIONS(2605), + [anon_sym_POUNDr] = ACTIONS(2605), + [anon_sym_POUNDload] = ACTIONS(2605), + [anon_sym_open] = ACTIONS(2603), + [anon_sym_LBRACK_LT] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(1865), - [sym__dedent] = ACTIONS(1865), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__dedent] = ACTIONS(2605), }, [2467] = { [sym_xml_doc] = STATE(2467), [sym_block_comment] = STATE(2467), [sym_preproc_line] = STATE(2467), - [sym_identifier] = ACTIONS(293), - [anon_sym_module] = ACTIONS(293), - [anon_sym_POUNDnowarn] = ACTIONS(291), - [anon_sym_POUNDr] = ACTIONS(291), - [anon_sym_POUNDload] = ACTIONS(291), - [anon_sym_open] = ACTIONS(293), - [anon_sym_LBRACK_LT] = ACTIONS(291), - [anon_sym_return] = ACTIONS(293), - [anon_sym_type] = ACTIONS(293), - [anon_sym_do] = ACTIONS(293), - [anon_sym_let] = ACTIONS(293), - [anon_sym_let_BANG] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACK_PIPE] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(293), - [anon_sym_LBRACE_PIPE] = ACTIONS(291), - [anon_sym_new] = ACTIONS(293), - [anon_sym_return_BANG] = ACTIONS(291), - [anon_sym_yield] = ACTIONS(293), - [anon_sym_yield_BANG] = ACTIONS(291), - [anon_sym_lazy] = ACTIONS(293), - [anon_sym_assert] = ACTIONS(293), - [anon_sym_upcast] = ACTIONS(293), - [anon_sym_downcast] = ACTIONS(293), - [anon_sym_LT_AT] = ACTIONS(293), - [anon_sym_LT_AT_AT] = ACTIONS(291), - [anon_sym_for] = ACTIONS(293), - [anon_sym_while] = ACTIONS(293), - [anon_sym_if] = ACTIONS(293), - [anon_sym_fun] = ACTIONS(293), - [anon_sym_try] = ACTIONS(293), - [anon_sym_match] = ACTIONS(293), - [anon_sym_match_BANG] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_use] = ACTIONS(293), - [anon_sym_use_BANG] = ACTIONS(291), - [anon_sym_do_BANG] = ACTIONS(291), - [anon_sym_begin] = ACTIONS(293), - [anon_sym_SQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(293), - [anon_sym_DQUOTE] = ACTIONS(293), - [anon_sym_AT_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(291), - [sym_bool] = ACTIONS(293), - [sym_unit] = ACTIONS(291), - [aux_sym__identifier_or_op_token1] = ACTIONS(291), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(291), - [anon_sym_DASH_DOT] = ACTIONS(291), - [anon_sym_PERCENT] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_TILDE] = ACTIONS(291), - [aux_sym_prefix_op_token1] = ACTIONS(291), - [sym_int] = ACTIONS(293), - [sym_xint] = ACTIONS(291), + [sym_identifier] = ACTIONS(4420), + [anon_sym_module] = ACTIONS(4420), + [anon_sym_POUNDnowarn] = ACTIONS(4418), + [anon_sym_POUNDr] = ACTIONS(4418), + [anon_sym_POUNDload] = ACTIONS(4418), + [anon_sym_open] = ACTIONS(4420), + [anon_sym_LBRACK_LT] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_type] = ACTIONS(4420), + [anon_sym_do] = ACTIONS(4420), + [anon_sym_and] = ACTIONS(4420), + [anon_sym_let] = ACTIONS(4420), + [anon_sym_let_BANG] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_LBRACK] = ACTIONS(4420), + [anon_sym_LBRACK_PIPE] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_LBRACE_PIPE] = ACTIONS(4418), + [anon_sym_new] = ACTIONS(4420), + [anon_sym_return_BANG] = ACTIONS(4418), + [anon_sym_yield] = ACTIONS(4420), + [anon_sym_yield_BANG] = ACTIONS(4418), + [anon_sym_lazy] = ACTIONS(4420), + [anon_sym_assert] = ACTIONS(4420), + [anon_sym_upcast] = ACTIONS(4420), + [anon_sym_downcast] = ACTIONS(4420), + [anon_sym_LT_AT] = ACTIONS(4420), + [anon_sym_LT_AT_AT] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_while] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_fun] = ACTIONS(4420), + [anon_sym_try] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_match_BANG] = ACTIONS(4418), + [anon_sym_function] = ACTIONS(4420), + [anon_sym_use] = ACTIONS(4420), + [anon_sym_use_BANG] = ACTIONS(4418), + [anon_sym_do_BANG] = ACTIONS(4418), + [anon_sym_begin] = ACTIONS(4420), + [anon_sym_SQUOTE] = ACTIONS(4418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4420), + [anon_sym_DQUOTE] = ACTIONS(4420), + [anon_sym_AT_DQUOTE] = ACTIONS(4418), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4418), + [sym_bool] = ACTIONS(4420), + [sym_unit] = ACTIONS(4418), + [aux_sym__identifier_or_op_token1] = ACTIONS(4418), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_PLUS_DOT] = ACTIONS(4418), + [anon_sym_DASH_DOT] = ACTIONS(4418), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [aux_sym_prefix_op_token1] = ACTIONS(4418), + [sym_int] = ACTIONS(4420), + [sym_xint] = ACTIONS(4418), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(291), - [sym__dedent] = ACTIONS(291), + [anon_sym_POUNDif] = ACTIONS(4418), + [sym__dedent] = ACTIONS(4418), }, [2468] = { [sym_xml_doc] = STATE(2468), [sym_block_comment] = STATE(2468), [sym_preproc_line] = STATE(2468), - [sym_identifier] = ACTIONS(4378), - [anon_sym_module] = ACTIONS(4378), - [anon_sym_POUNDnowarn] = ACTIONS(4376), - [anon_sym_POUNDr] = ACTIONS(4376), - [anon_sym_POUNDload] = ACTIONS(4376), - [anon_sym_open] = ACTIONS(4378), - [anon_sym_LBRACK_LT] = ACTIONS(4376), - [anon_sym_return] = ACTIONS(4378), - [anon_sym_type] = ACTIONS(4378), - [anon_sym_do] = ACTIONS(4378), - [anon_sym_let] = ACTIONS(4378), - [anon_sym_let_BANG] = ACTIONS(4376), - [anon_sym_null] = ACTIONS(4378), - [anon_sym_LPAREN] = ACTIONS(4378), - [anon_sym_AMP] = ACTIONS(4378), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_LBRACK_PIPE] = ACTIONS(4376), - [anon_sym_LBRACE] = ACTIONS(4378), - [anon_sym_LBRACE_PIPE] = ACTIONS(4376), - [anon_sym_new] = ACTIONS(4378), - [anon_sym_return_BANG] = ACTIONS(4376), - [anon_sym_yield] = ACTIONS(4378), - [anon_sym_yield_BANG] = ACTIONS(4376), - [anon_sym_lazy] = ACTIONS(4378), - [anon_sym_assert] = ACTIONS(4378), - [anon_sym_upcast] = ACTIONS(4378), - [anon_sym_downcast] = ACTIONS(4378), - [anon_sym_LT_AT] = ACTIONS(4378), - [anon_sym_LT_AT_AT] = ACTIONS(4376), - [anon_sym_for] = ACTIONS(4378), - [anon_sym_while] = ACTIONS(4378), - [anon_sym_if] = ACTIONS(4378), - [anon_sym_fun] = ACTIONS(4378), - [anon_sym_try] = ACTIONS(4378), - [anon_sym_match] = ACTIONS(4378), - [anon_sym_match_BANG] = ACTIONS(4376), - [anon_sym_function] = ACTIONS(4378), - [anon_sym_use] = ACTIONS(4378), - [anon_sym_use_BANG] = ACTIONS(4376), - [anon_sym_do_BANG] = ACTIONS(4376), - [anon_sym_begin] = ACTIONS(4378), - [anon_sym_SQUOTE] = ACTIONS(4376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4378), - [anon_sym_DQUOTE] = ACTIONS(4378), - [anon_sym_AT_DQUOTE] = ACTIONS(4376), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4376), - [aux_sym__identifier_or_op_token1] = ACTIONS(4376), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4378), - [anon_sym_PLUS] = ACTIONS(4378), - [anon_sym_DASH] = ACTIONS(4378), - [anon_sym_PLUS_DOT] = ACTIONS(4376), - [anon_sym_DASH_DOT] = ACTIONS(4376), - [anon_sym_PERCENT] = ACTIONS(4376), - [anon_sym_AMP_AMP] = ACTIONS(4376), - [anon_sym_TILDE] = ACTIONS(4376), - [aux_sym_prefix_op_token1] = ACTIONS(4376), - [sym_int] = ACTIONS(4378), - [sym_xint] = ACTIONS(4376), + [sym_identifier] = ACTIONS(4483), + [anon_sym_module] = ACTIONS(4483), + [anon_sym_POUNDnowarn] = ACTIONS(4481), + [anon_sym_POUNDr] = ACTIONS(4481), + [anon_sym_POUNDload] = ACTIONS(4481), + [anon_sym_open] = ACTIONS(4483), + [anon_sym_LBRACK_LT] = ACTIONS(4481), + [anon_sym_return] = ACTIONS(4483), + [anon_sym_type] = ACTIONS(4483), + [anon_sym_do] = ACTIONS(4483), + [anon_sym_and] = ACTIONS(4483), + [anon_sym_let] = ACTIONS(4483), + [anon_sym_let_BANG] = ACTIONS(4481), + [anon_sym_null] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_AMP] = ACTIONS(4483), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_LBRACK_PIPE] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4483), + [anon_sym_LBRACE_PIPE] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4483), + [anon_sym_return_BANG] = ACTIONS(4481), + [anon_sym_yield] = ACTIONS(4483), + [anon_sym_yield_BANG] = ACTIONS(4481), + [anon_sym_lazy] = ACTIONS(4483), + [anon_sym_assert] = ACTIONS(4483), + [anon_sym_upcast] = ACTIONS(4483), + [anon_sym_downcast] = ACTIONS(4483), + [anon_sym_LT_AT] = ACTIONS(4483), + [anon_sym_LT_AT_AT] = ACTIONS(4481), + [anon_sym_for] = ACTIONS(4483), + [anon_sym_while] = ACTIONS(4483), + [anon_sym_if] = ACTIONS(4483), + [anon_sym_fun] = ACTIONS(4483), + [anon_sym_try] = ACTIONS(4483), + [anon_sym_match] = ACTIONS(4483), + [anon_sym_match_BANG] = ACTIONS(4481), + [anon_sym_function] = ACTIONS(4483), + [anon_sym_use] = ACTIONS(4483), + [anon_sym_use_BANG] = ACTIONS(4481), + [anon_sym_do_BANG] = ACTIONS(4481), + [anon_sym_begin] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4483), + [anon_sym_DQUOTE] = ACTIONS(4483), + [anon_sym_AT_DQUOTE] = ACTIONS(4481), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4481), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4481), + [sym_bool] = ACTIONS(4483), + [sym_unit] = ACTIONS(4481), + [aux_sym__identifier_or_op_token1] = ACTIONS(4481), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_PLUS_DOT] = ACTIONS(4481), + [anon_sym_DASH_DOT] = ACTIONS(4481), + [anon_sym_PERCENT] = ACTIONS(4481), + [anon_sym_AMP_AMP] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4481), + [aux_sym_prefix_op_token1] = ACTIONS(4481), + [sym_int] = ACTIONS(4483), + [sym_xint] = ACTIONS(4481), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4376), - [sym__dedent] = ACTIONS(4376), + [anon_sym_POUNDif] = ACTIONS(4481), + [sym__dedent] = ACTIONS(4481), }, [2469] = { [sym_xml_doc] = STATE(2469), [sym_block_comment] = STATE(2469), [sym_preproc_line] = STATE(2469), - [sym_identifier] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_POUNDnowarn] = ACTIONS(4392), - [anon_sym_POUNDr] = ACTIONS(4392), - [anon_sym_POUNDload] = ACTIONS(4392), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_LBRACK_LT] = ACTIONS(4392), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_type] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_let] = ACTIONS(4394), - [anon_sym_let_BANG] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_LBRACK_PIPE] = ACTIONS(4392), - [anon_sym_LBRACE] = ACTIONS(4394), - [anon_sym_LBRACE_PIPE] = ACTIONS(4392), - [anon_sym_new] = ACTIONS(4394), - [anon_sym_return_BANG] = ACTIONS(4392), - [anon_sym_yield] = ACTIONS(4394), - [anon_sym_yield_BANG] = ACTIONS(4392), - [anon_sym_lazy] = ACTIONS(4394), - [anon_sym_assert] = ACTIONS(4394), - [anon_sym_upcast] = ACTIONS(4394), - [anon_sym_downcast] = ACTIONS(4394), - [anon_sym_LT_AT] = ACTIONS(4394), - [anon_sym_LT_AT_AT] = ACTIONS(4392), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_match] = ACTIONS(4394), - [anon_sym_match_BANG] = ACTIONS(4392), - [anon_sym_function] = ACTIONS(4394), - [anon_sym_use] = ACTIONS(4394), - [anon_sym_use_BANG] = ACTIONS(4392), - [anon_sym_do_BANG] = ACTIONS(4392), - [anon_sym_begin] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(4394), - [anon_sym_AT_DQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [sym_bool] = ACTIONS(4394), - [sym_unit] = ACTIONS(4392), - [aux_sym__identifier_or_op_token1] = ACTIONS(4392), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS_DOT] = ACTIONS(4392), - [anon_sym_DASH_DOT] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [aux_sym_prefix_op_token1] = ACTIONS(4392), - [sym_int] = ACTIONS(4394), - [sym_xint] = ACTIONS(4392), + [sym_identifier] = ACTIONS(4432), + [anon_sym_module] = ACTIONS(4432), + [anon_sym_POUNDnowarn] = ACTIONS(4430), + [anon_sym_POUNDr] = ACTIONS(4430), + [anon_sym_POUNDload] = ACTIONS(4430), + [anon_sym_open] = ACTIONS(4432), + [anon_sym_LBRACK_LT] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4432), + [anon_sym_type] = ACTIONS(4432), + [anon_sym_do] = ACTIONS(4432), + [anon_sym_and] = ACTIONS(4432), + [anon_sym_let] = ACTIONS(4432), + [anon_sym_let_BANG] = ACTIONS(4430), + [anon_sym_null] = ACTIONS(4432), + [anon_sym_LPAREN] = ACTIONS(4432), + [anon_sym_AMP] = ACTIONS(4432), + [anon_sym_LBRACK] = ACTIONS(4432), + [anon_sym_LBRACK_PIPE] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4432), + [anon_sym_LBRACE_PIPE] = ACTIONS(4430), + [anon_sym_new] = ACTIONS(4432), + [anon_sym_return_BANG] = ACTIONS(4430), + [anon_sym_yield] = ACTIONS(4432), + [anon_sym_yield_BANG] = ACTIONS(4430), + [anon_sym_lazy] = ACTIONS(4432), + [anon_sym_assert] = ACTIONS(4432), + [anon_sym_upcast] = ACTIONS(4432), + [anon_sym_downcast] = ACTIONS(4432), + [anon_sym_LT_AT] = ACTIONS(4432), + [anon_sym_LT_AT_AT] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4432), + [anon_sym_while] = ACTIONS(4432), + [anon_sym_if] = ACTIONS(4432), + [anon_sym_fun] = ACTIONS(4432), + [anon_sym_try] = ACTIONS(4432), + [anon_sym_match] = ACTIONS(4432), + [anon_sym_match_BANG] = ACTIONS(4430), + [anon_sym_function] = ACTIONS(4432), + [anon_sym_use] = ACTIONS(4432), + [anon_sym_use_BANG] = ACTIONS(4430), + [anon_sym_do_BANG] = ACTIONS(4430), + [anon_sym_begin] = ACTIONS(4432), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4432), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_AT_DQUOTE] = ACTIONS(4430), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4430), + [sym_bool] = ACTIONS(4432), + [sym_unit] = ACTIONS(4430), + [aux_sym__identifier_or_op_token1] = ACTIONS(4430), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4432), + [anon_sym_PLUS] = ACTIONS(4432), + [anon_sym_DASH] = ACTIONS(4432), + [anon_sym_PLUS_DOT] = ACTIONS(4430), + [anon_sym_DASH_DOT] = ACTIONS(4430), + [anon_sym_PERCENT] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [aux_sym_prefix_op_token1] = ACTIONS(4430), + [sym_int] = ACTIONS(4432), + [sym_xint] = ACTIONS(4430), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4392), - [sym__dedent] = ACTIONS(4392), + [anon_sym_POUNDif] = ACTIONS(4430), + [sym__dedent] = ACTIONS(4430), }, [2470] = { [sym_xml_doc] = STATE(2470), [sym_block_comment] = STATE(2470), [sym_preproc_line] = STATE(2470), - [sym_identifier] = ACTIONS(4382), - [anon_sym_module] = ACTIONS(4382), - [anon_sym_POUNDnowarn] = ACTIONS(4380), - [anon_sym_POUNDr] = ACTIONS(4380), - [anon_sym_POUNDload] = ACTIONS(4380), - [anon_sym_open] = ACTIONS(4382), - [anon_sym_LBRACK_LT] = ACTIONS(4380), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_type] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_let] = ACTIONS(4382), - [anon_sym_let_BANG] = ACTIONS(4380), - [anon_sym_null] = ACTIONS(4382), - [anon_sym_LPAREN] = ACTIONS(4382), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_LBRACK_PIPE] = ACTIONS(4380), - [anon_sym_LBRACE] = ACTIONS(4382), - [anon_sym_LBRACE_PIPE] = ACTIONS(4380), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_return_BANG] = ACTIONS(4380), - [anon_sym_yield] = ACTIONS(4382), - [anon_sym_yield_BANG] = ACTIONS(4380), - [anon_sym_lazy] = ACTIONS(4382), - [anon_sym_assert] = ACTIONS(4382), - [anon_sym_upcast] = ACTIONS(4382), - [anon_sym_downcast] = ACTIONS(4382), - [anon_sym_LT_AT] = ACTIONS(4382), - [anon_sym_LT_AT_AT] = ACTIONS(4380), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_fun] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_match] = ACTIONS(4382), - [anon_sym_match_BANG] = ACTIONS(4380), - [anon_sym_function] = ACTIONS(4382), - [anon_sym_use] = ACTIONS(4382), - [anon_sym_use_BANG] = ACTIONS(4380), - [anon_sym_do_BANG] = ACTIONS(4380), - [anon_sym_begin] = ACTIONS(4382), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4382), - [anon_sym_DQUOTE] = ACTIONS(4382), - [anon_sym_AT_DQUOTE] = ACTIONS(4380), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4380), - [sym_bool] = ACTIONS(4382), - [sym_unit] = ACTIONS(4380), - [aux_sym__identifier_or_op_token1] = ACTIONS(4380), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS_DOT] = ACTIONS(4380), - [anon_sym_DASH_DOT] = ACTIONS(4380), - [anon_sym_PERCENT] = ACTIONS(4380), - [anon_sym_AMP_AMP] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [aux_sym_prefix_op_token1] = ACTIONS(4380), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4380), + [ts_builtin_sym_end] = ACTIONS(4498), + [sym_identifier] = ACTIONS(4500), + [anon_sym_namespace] = ACTIONS(4500), + [anon_sym_module] = ACTIONS(4500), + [anon_sym_POUNDnowarn] = ACTIONS(4498), + [anon_sym_POUNDr] = ACTIONS(4498), + [anon_sym_POUNDload] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4500), + [anon_sym_LBRACK_LT] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_type] = ACTIONS(4500), + [anon_sym_do] = ACTIONS(4500), + [anon_sym_let] = ACTIONS(4500), + [anon_sym_let_BANG] = ACTIONS(4498), + [anon_sym_null] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_LBRACK_PIPE] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_LBRACE_PIPE] = ACTIONS(4498), + [anon_sym_new] = ACTIONS(4500), + [anon_sym_return_BANG] = ACTIONS(4498), + [anon_sym_yield] = ACTIONS(4500), + [anon_sym_yield_BANG] = ACTIONS(4498), + [anon_sym_lazy] = ACTIONS(4500), + [anon_sym_assert] = ACTIONS(4500), + [anon_sym_upcast] = ACTIONS(4500), + [anon_sym_downcast] = ACTIONS(4500), + [anon_sym_LT_AT] = ACTIONS(4500), + [anon_sym_LT_AT_AT] = ACTIONS(4498), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_while] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_fun] = ACTIONS(4500), + [anon_sym_try] = ACTIONS(4500), + [anon_sym_match] = ACTIONS(4500), + [anon_sym_match_BANG] = ACTIONS(4498), + [anon_sym_function] = ACTIONS(4500), + [anon_sym_use] = ACTIONS(4500), + [anon_sym_use_BANG] = ACTIONS(4498), + [anon_sym_do_BANG] = ACTIONS(4498), + [anon_sym_begin] = ACTIONS(4500), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(4500), + [anon_sym_AT_DQUOTE] = ACTIONS(4498), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4498), + [sym_bool] = ACTIONS(4500), + [sym_unit] = ACTIONS(4498), + [aux_sym__identifier_or_op_token1] = ACTIONS(4498), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_PLUS_DOT] = ACTIONS(4498), + [anon_sym_DASH_DOT] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [aux_sym_prefix_op_token1] = ACTIONS(4498), + [sym_int] = ACTIONS(4500), + [sym_xint] = ACTIONS(4498), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4380), - [sym__dedent] = ACTIONS(4380), + [anon_sym_POUNDif] = ACTIONS(4498), }, [2471] = { [sym_xml_doc] = STATE(2471), [sym_block_comment] = STATE(2471), [sym_preproc_line] = STATE(2471), - [sym_identifier] = ACTIONS(4390), - [anon_sym_module] = ACTIONS(4390), - [anon_sym_POUNDnowarn] = ACTIONS(4388), - [anon_sym_POUNDr] = ACTIONS(4388), - [anon_sym_POUNDload] = ACTIONS(4388), - [anon_sym_open] = ACTIONS(4390), - [anon_sym_LBRACK_LT] = ACTIONS(4388), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_type] = ACTIONS(4390), - [anon_sym_do] = ACTIONS(4390), - [anon_sym_let] = ACTIONS(4390), - [anon_sym_let_BANG] = ACTIONS(4388), - [anon_sym_null] = ACTIONS(4390), - [anon_sym_LPAREN] = ACTIONS(4390), - [anon_sym_AMP] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4390), - [anon_sym_LBRACK_PIPE] = ACTIONS(4388), - [anon_sym_LBRACE] = ACTIONS(4390), - [anon_sym_LBRACE_PIPE] = ACTIONS(4388), - [anon_sym_new] = ACTIONS(4390), - [anon_sym_return_BANG] = ACTIONS(4388), - [anon_sym_yield] = ACTIONS(4390), - [anon_sym_yield_BANG] = ACTIONS(4388), - [anon_sym_lazy] = ACTIONS(4390), - [anon_sym_assert] = ACTIONS(4390), - [anon_sym_upcast] = ACTIONS(4390), - [anon_sym_downcast] = ACTIONS(4390), - [anon_sym_LT_AT] = ACTIONS(4390), - [anon_sym_LT_AT_AT] = ACTIONS(4388), - [anon_sym_for] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_fun] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_match] = ACTIONS(4390), - [anon_sym_match_BANG] = ACTIONS(4388), - [anon_sym_function] = ACTIONS(4390), - [anon_sym_use] = ACTIONS(4390), - [anon_sym_use_BANG] = ACTIONS(4388), - [anon_sym_do_BANG] = ACTIONS(4388), - [anon_sym_begin] = ACTIONS(4390), - [anon_sym_SQUOTE] = ACTIONS(4388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), - [anon_sym_DQUOTE] = ACTIONS(4390), - [anon_sym_AT_DQUOTE] = ACTIONS(4388), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), - [sym_bool] = ACTIONS(4390), - [sym_unit] = ACTIONS(4388), - [aux_sym__identifier_or_op_token1] = ACTIONS(4388), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4390), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_PLUS_DOT] = ACTIONS(4388), - [anon_sym_DASH_DOT] = ACTIONS(4388), - [anon_sym_PERCENT] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_TILDE] = ACTIONS(4388), - [aux_sym_prefix_op_token1] = ACTIONS(4388), - [sym_int] = ACTIONS(4390), - [sym_xint] = ACTIONS(4388), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_POUNDnowarn] = ACTIONS(3204), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3206), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_upcast] = ACTIONS(3206), + [anon_sym_downcast] = ACTIONS(3206), + [anon_sym_LT_AT] = ACTIONS(3206), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_fun] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_use] = ACTIONS(3206), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3206), + [sym_unit] = ACTIONS(3204), + [aux_sym__identifier_or_op_token1] = ACTIONS(3204), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3206), + [sym_xint] = ACTIONS(3204), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4388), - [sym__dedent] = ACTIONS(4388), + [anon_sym_POUNDif] = ACTIONS(3204), }, [2472] = { [sym_xml_doc] = STATE(2472), [sym_block_comment] = STATE(2472), [sym_preproc_line] = STATE(2472), - [aux_sym_long_identifier_repeat1] = STATE(2458), - [sym_identifier] = ACTIONS(2473), - [anon_sym_GT_RBRACK] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4428), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_namespace] = ACTIONS(4504), + [anon_sym_module] = ACTIONS(4504), + [anon_sym_POUNDnowarn] = ACTIONS(4502), + [anon_sym_POUNDr] = ACTIONS(4502), + [anon_sym_POUNDload] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4504), + [anon_sym_LBRACK_LT] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_do] = ACTIONS(4504), + [anon_sym_let] = ACTIONS(4504), + [anon_sym_let_BANG] = ACTIONS(4502), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_LBRACK_PIPE] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_LBRACE_PIPE] = ACTIONS(4502), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_return_BANG] = ACTIONS(4502), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_yield_BANG] = ACTIONS(4502), + [anon_sym_lazy] = ACTIONS(4504), + [anon_sym_assert] = ACTIONS(4504), + [anon_sym_upcast] = ACTIONS(4504), + [anon_sym_downcast] = ACTIONS(4504), + [anon_sym_LT_AT] = ACTIONS(4504), + [anon_sym_LT_AT_AT] = ACTIONS(4502), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_fun] = ACTIONS(4504), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_match_BANG] = ACTIONS(4502), + [anon_sym_function] = ACTIONS(4504), + [anon_sym_use] = ACTIONS(4504), + [anon_sym_use_BANG] = ACTIONS(4502), + [anon_sym_do_BANG] = ACTIONS(4502), + [anon_sym_begin] = ACTIONS(4504), + [anon_sym_SQUOTE] = ACTIONS(4502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4504), + [anon_sym_DQUOTE] = ACTIONS(4504), + [anon_sym_AT_DQUOTE] = ACTIONS(4502), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4502), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4502), + [sym_bool] = ACTIONS(4504), + [sym_unit] = ACTIONS(4502), + [aux_sym__identifier_or_op_token1] = ACTIONS(4502), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS_DOT] = ACTIONS(4502), + [anon_sym_DASH_DOT] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_AMP_AMP] = ACTIONS(4502), + [anon_sym_TILDE] = ACTIONS(4502), + [aux_sym_prefix_op_token1] = ACTIONS(4502), + [sym_int] = ACTIONS(4504), + [sym_xint] = ACTIONS(4502), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(4502), }, [2473] = { [sym_xml_doc] = STATE(2473), [sym_block_comment] = STATE(2473), [sym_preproc_line] = STATE(2473), - [sym_identifier] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_POUNDnowarn] = ACTIONS(4392), - [anon_sym_POUNDr] = ACTIONS(4392), - [anon_sym_POUNDload] = ACTIONS(4392), - [anon_sym_open] = ACTIONS(4394), - [anon_sym_LBRACK_LT] = ACTIONS(4392), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_type] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_let] = ACTIONS(4394), - [anon_sym_let_BANG] = ACTIONS(4392), - [anon_sym_null] = ACTIONS(4394), - [anon_sym_LPAREN] = ACTIONS(4394), - [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_LBRACK_PIPE] = ACTIONS(4392), - [anon_sym_LBRACE] = ACTIONS(4394), - [anon_sym_LBRACE_PIPE] = ACTIONS(4392), - [anon_sym_new] = ACTIONS(4394), - [anon_sym_return_BANG] = ACTIONS(4392), - [anon_sym_yield] = ACTIONS(4394), - [anon_sym_yield_BANG] = ACTIONS(4392), - [anon_sym_lazy] = ACTIONS(4394), - [anon_sym_assert] = ACTIONS(4394), - [anon_sym_upcast] = ACTIONS(4394), - [anon_sym_downcast] = ACTIONS(4394), - [anon_sym_LT_AT] = ACTIONS(4394), - [anon_sym_LT_AT_AT] = ACTIONS(4392), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_fun] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_match] = ACTIONS(4394), - [anon_sym_match_BANG] = ACTIONS(4392), - [anon_sym_function] = ACTIONS(4394), - [anon_sym_use] = ACTIONS(4394), - [anon_sym_use_BANG] = ACTIONS(4392), - [anon_sym_do_BANG] = ACTIONS(4392), - [anon_sym_begin] = ACTIONS(4394), - [anon_sym_SQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(4394), - [anon_sym_AT_DQUOTE] = ACTIONS(4392), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4392), - [sym_bool] = ACTIONS(4394), - [sym_unit] = ACTIONS(4392), - [aux_sym__identifier_or_op_token1] = ACTIONS(4392), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS_DOT] = ACTIONS(4392), - [anon_sym_DASH_DOT] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [aux_sym_prefix_op_token1] = ACTIONS(4392), - [sym_int] = ACTIONS(4394), - [sym_xint] = ACTIONS(4392), + [sym_identifier] = ACTIONS(4400), + [anon_sym_module] = ACTIONS(4400), + [anon_sym_POUNDnowarn] = ACTIONS(4398), + [anon_sym_POUNDr] = ACTIONS(4398), + [anon_sym_POUNDload] = ACTIONS(4398), + [anon_sym_open] = ACTIONS(4400), + [anon_sym_LBRACK_LT] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4400), + [anon_sym_type] = ACTIONS(4400), + [anon_sym_do] = ACTIONS(4400), + [anon_sym_and] = ACTIONS(4400), + [anon_sym_let] = ACTIONS(4400), + [anon_sym_let_BANG] = ACTIONS(4398), + [anon_sym_null] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_LBRACK_PIPE] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_LBRACE_PIPE] = ACTIONS(4398), + [anon_sym_new] = ACTIONS(4400), + [anon_sym_return_BANG] = ACTIONS(4398), + [anon_sym_yield] = ACTIONS(4400), + [anon_sym_yield_BANG] = ACTIONS(4398), + [anon_sym_lazy] = ACTIONS(4400), + [anon_sym_assert] = ACTIONS(4400), + [anon_sym_upcast] = ACTIONS(4400), + [anon_sym_downcast] = ACTIONS(4400), + [anon_sym_LT_AT] = ACTIONS(4400), + [anon_sym_LT_AT_AT] = ACTIONS(4398), + [anon_sym_for] = ACTIONS(4400), + [anon_sym_while] = ACTIONS(4400), + [anon_sym_if] = ACTIONS(4400), + [anon_sym_fun] = ACTIONS(4400), + [anon_sym_try] = ACTIONS(4400), + [anon_sym_match] = ACTIONS(4400), + [anon_sym_match_BANG] = ACTIONS(4398), + [anon_sym_function] = ACTIONS(4400), + [anon_sym_use] = ACTIONS(4400), + [anon_sym_use_BANG] = ACTIONS(4398), + [anon_sym_do_BANG] = ACTIONS(4398), + [anon_sym_begin] = ACTIONS(4400), + [anon_sym_SQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4400), + [anon_sym_DQUOTE] = ACTIONS(4400), + [anon_sym_AT_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4398), + [sym_bool] = ACTIONS(4400), + [sym_unit] = ACTIONS(4398), + [aux_sym__identifier_or_op_token1] = ACTIONS(4398), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4400), + [anon_sym_DASH] = ACTIONS(4400), + [anon_sym_PLUS_DOT] = ACTIONS(4398), + [anon_sym_DASH_DOT] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_AMP_AMP] = ACTIONS(4398), + [anon_sym_TILDE] = ACTIONS(4398), + [aux_sym_prefix_op_token1] = ACTIONS(4398), + [sym_int] = ACTIONS(4400), + [sym_xint] = ACTIONS(4398), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4392), - [sym__dedent] = ACTIONS(4392), + [anon_sym_POUNDif] = ACTIONS(4398), + [sym__dedent] = ACTIONS(4398), }, [2474] = { + [sym_type_arguments] = STATE(2552), + [sym_long_identifier] = STATE(2572), [sym_xml_doc] = STATE(2474), [sym_block_comment] = STATE(2474), [sym_preproc_line] = STATE(2474), - [sym_identifier] = ACTIONS(4412), - [anon_sym_module] = ACTIONS(4412), - [anon_sym_POUNDnowarn] = ACTIONS(4410), - [anon_sym_POUNDr] = ACTIONS(4410), - [anon_sym_POUNDload] = ACTIONS(4410), - [anon_sym_open] = ACTIONS(4412), - [anon_sym_LBRACK_LT] = ACTIONS(4410), - [anon_sym_return] = ACTIONS(4412), - [anon_sym_type] = ACTIONS(4412), - [anon_sym_do] = ACTIONS(4412), - [anon_sym_let] = ACTIONS(4412), - [anon_sym_let_BANG] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(4412), - [anon_sym_LPAREN] = ACTIONS(4412), - [anon_sym_AMP] = ACTIONS(4412), - [anon_sym_LBRACK] = ACTIONS(4412), - [anon_sym_LBRACK_PIPE] = ACTIONS(4410), - [anon_sym_LBRACE] = ACTIONS(4412), - [anon_sym_LBRACE_PIPE] = ACTIONS(4410), - [anon_sym_new] = ACTIONS(4412), - [anon_sym_return_BANG] = ACTIONS(4410), - [anon_sym_yield] = ACTIONS(4412), - [anon_sym_yield_BANG] = ACTIONS(4410), - [anon_sym_lazy] = ACTIONS(4412), - [anon_sym_assert] = ACTIONS(4412), - [anon_sym_upcast] = ACTIONS(4412), - [anon_sym_downcast] = ACTIONS(4412), - [anon_sym_LT_AT] = ACTIONS(4412), - [anon_sym_LT_AT_AT] = ACTIONS(4410), - [anon_sym_for] = ACTIONS(4412), - [anon_sym_while] = ACTIONS(4412), - [anon_sym_if] = ACTIONS(4412), - [anon_sym_fun] = ACTIONS(4412), - [anon_sym_try] = ACTIONS(4412), - [anon_sym_match] = ACTIONS(4412), - [anon_sym_match_BANG] = ACTIONS(4410), - [anon_sym_function] = ACTIONS(4412), - [anon_sym_use] = ACTIONS(4412), - [anon_sym_use_BANG] = ACTIONS(4410), - [anon_sym_do_BANG] = ACTIONS(4410), - [anon_sym_begin] = ACTIONS(4412), - [anon_sym_SQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4412), - [anon_sym_DQUOTE] = ACTIONS(4412), - [anon_sym_AT_DQUOTE] = ACTIONS(4410), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4410), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4410), - [sym_bool] = ACTIONS(4412), - [sym_unit] = ACTIONS(4410), - [aux_sym__identifier_or_op_token1] = ACTIONS(4410), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4412), - [anon_sym_PLUS] = ACTIONS(4412), - [anon_sym_DASH] = ACTIONS(4412), - [anon_sym_PLUS_DOT] = ACTIONS(4410), - [anon_sym_DASH_DOT] = ACTIONS(4410), - [anon_sym_PERCENT] = ACTIONS(4410), - [anon_sym_AMP_AMP] = ACTIONS(4410), - [anon_sym_TILDE] = ACTIONS(4410), - [aux_sym_prefix_op_token1] = ACTIONS(4410), - [sym_int] = ACTIONS(4412), - [sym_xint] = ACTIONS(4410), + [aux_sym__compound_type_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(4488), + [anon_sym_GT_RBRACK] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_LT_AT_AT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2361), + [aux_sym__identifier_or_op_token1] = ACTIONS(2361), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2361), + [anon_sym_DASH_DOT] = ACTIONS(2361), + [anon_sym_PERCENT] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(4410), - [sym__dedent] = ACTIONS(4410), + [anon_sym_POUNDif] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), }, [2475] = { [sym_xml_doc] = STATE(2475), [sym_block_comment] = STATE(2475), [sym_preproc_line] = STATE(2475), - [sym_identifier] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_POUNDnowarn] = ACTIONS(3070), - [anon_sym_POUNDr] = ACTIONS(3070), - [anon_sym_POUNDload] = ACTIONS(3070), - [anon_sym_open] = ACTIONS(3068), - [anon_sym_LBRACK_LT] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_let_BANG] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LBRACK_PIPE] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LBRACE_PIPE] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_return_BANG] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_yield_BANG] = ACTIONS(3070), - [anon_sym_lazy] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_upcast] = ACTIONS(3068), - [anon_sym_downcast] = ACTIONS(3068), - [anon_sym_LT_AT] = ACTIONS(3068), - [anon_sym_LT_AT_AT] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_fun] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_match_BANG] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_use] = ACTIONS(3068), - [anon_sym_use_BANG] = ACTIONS(3070), - [anon_sym_do_BANG] = ACTIONS(3070), - [anon_sym_begin] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_AT_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3070), - [sym_bool] = ACTIONS(3068), - [sym_unit] = ACTIONS(3070), - [aux_sym__identifier_or_op_token1] = ACTIONS(3070), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_PLUS_DOT] = ACTIONS(3070), - [anon_sym_DASH_DOT] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [aux_sym_prefix_op_token1] = ACTIONS(3070), - [sym_int] = ACTIONS(3068), - [sym_xint] = ACTIONS(3070), + [ts_builtin_sym_end] = ACTIONS(4506), + [sym_identifier] = ACTIONS(4508), + [anon_sym_namespace] = ACTIONS(4508), + [anon_sym_module] = ACTIONS(4508), + [anon_sym_POUNDnowarn] = ACTIONS(4506), + [anon_sym_POUNDr] = ACTIONS(4506), + [anon_sym_POUNDload] = ACTIONS(4506), + [anon_sym_open] = ACTIONS(4508), + [anon_sym_LBRACK_LT] = ACTIONS(4506), + [anon_sym_return] = ACTIONS(4508), + [anon_sym_type] = ACTIONS(4508), + [anon_sym_do] = ACTIONS(4508), + [anon_sym_let] = ACTIONS(4508), + [anon_sym_let_BANG] = ACTIONS(4506), + [anon_sym_null] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(4508), + [anon_sym_LBRACK] = ACTIONS(4508), + [anon_sym_LBRACK_PIPE] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_LBRACE_PIPE] = ACTIONS(4506), + [anon_sym_new] = ACTIONS(4508), + [anon_sym_return_BANG] = ACTIONS(4506), + [anon_sym_yield] = ACTIONS(4508), + [anon_sym_yield_BANG] = ACTIONS(4506), + [anon_sym_lazy] = ACTIONS(4508), + [anon_sym_assert] = ACTIONS(4508), + [anon_sym_upcast] = ACTIONS(4508), + [anon_sym_downcast] = ACTIONS(4508), + [anon_sym_LT_AT] = ACTIONS(4508), + [anon_sym_LT_AT_AT] = ACTIONS(4506), + [anon_sym_for] = ACTIONS(4508), + [anon_sym_while] = ACTIONS(4508), + [anon_sym_if] = ACTIONS(4508), + [anon_sym_fun] = ACTIONS(4508), + [anon_sym_try] = ACTIONS(4508), + [anon_sym_match] = ACTIONS(4508), + [anon_sym_match_BANG] = ACTIONS(4506), + [anon_sym_function] = ACTIONS(4508), + [anon_sym_use] = ACTIONS(4508), + [anon_sym_use_BANG] = ACTIONS(4506), + [anon_sym_do_BANG] = ACTIONS(4506), + [anon_sym_begin] = ACTIONS(4508), + [anon_sym_SQUOTE] = ACTIONS(4506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4508), + [anon_sym_DQUOTE] = ACTIONS(4508), + [anon_sym_AT_DQUOTE] = ACTIONS(4506), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4506), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4506), + [sym_bool] = ACTIONS(4508), + [sym_unit] = ACTIONS(4506), + [aux_sym__identifier_or_op_token1] = ACTIONS(4506), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4508), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_PLUS_DOT] = ACTIONS(4506), + [anon_sym_DASH_DOT] = ACTIONS(4506), + [anon_sym_PERCENT] = ACTIONS(4506), + [anon_sym_AMP_AMP] = ACTIONS(4506), + [anon_sym_TILDE] = ACTIONS(4506), + [aux_sym_prefix_op_token1] = ACTIONS(4506), + [sym_int] = ACTIONS(4508), + [sym_xint] = ACTIONS(4506), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(3070), - [sym__dedent] = ACTIONS(3070), + [anon_sym_POUNDif] = ACTIONS(4506), }, [2476] = { - [sym_type_arguments] = STATE(2531), - [sym_long_identifier] = STATE(2533), [sym_xml_doc] = STATE(2476), [sym_block_comment] = STATE(2476), [sym_preproc_line] = STATE(2476), - [aux_sym__compound_type_repeat1] = STATE(2522), - [sym_identifier] = ACTIONS(4430), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_BANG] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACK_PIPE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_LBRACE_PIPE] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_return_BANG] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_yield_BANG] = ACTIONS(2363), - [anon_sym_lazy] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_upcast] = ACTIONS(2365), - [anon_sym_downcast] = ACTIONS(2365), - [anon_sym_LT_AT] = ACTIONS(2365), - [anon_sym_LT_AT_AT] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_fun] = ACTIONS(2365), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_match_BANG] = ACTIONS(2363), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_use_BANG] = ACTIONS(2363), - [anon_sym_do_BANG] = ACTIONS(2363), - [anon_sym_begin] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_AT_DQUOTE] = ACTIONS(2363), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym_bool] = ACTIONS(2365), - [sym_unit] = ACTIONS(2363), - [aux_sym__identifier_or_op_token1] = ACTIONS(2363), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_PLUS_DOT] = ACTIONS(2363), - [anon_sym_DASH_DOT] = ACTIONS(2363), - [anon_sym_PERCENT] = ACTIONS(2363), - [anon_sym_AMP_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [aux_sym_prefix_op_token1] = ACTIONS(2363), - [sym_int] = ACTIONS(2365), - [sym_xint] = ACTIONS(2363), + [sym_identifier] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_POUNDnowarn] = ACTIONS(4448), + [anon_sym_POUNDr] = ACTIONS(4448), + [anon_sym_POUNDload] = ACTIONS(4448), + [anon_sym_open] = ACTIONS(4450), + [anon_sym_LBRACK_LT] = ACTIONS(4448), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_type] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_and] = ACTIONS(4450), + [anon_sym_let] = ACTIONS(4450), + [anon_sym_let_BANG] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_LBRACK_PIPE] = ACTIONS(4448), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_LBRACE_PIPE] = ACTIONS(4448), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_return_BANG] = ACTIONS(4448), + [anon_sym_yield] = ACTIONS(4450), + [anon_sym_yield_BANG] = ACTIONS(4448), + [anon_sym_lazy] = ACTIONS(4450), + [anon_sym_assert] = ACTIONS(4450), + [anon_sym_upcast] = ACTIONS(4450), + [anon_sym_downcast] = ACTIONS(4450), + [anon_sym_LT_AT] = ACTIONS(4450), + [anon_sym_LT_AT_AT] = ACTIONS(4448), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_fun] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_match] = ACTIONS(4450), + [anon_sym_match_BANG] = ACTIONS(4448), + [anon_sym_function] = ACTIONS(4450), + [anon_sym_use] = ACTIONS(4450), + [anon_sym_use_BANG] = ACTIONS(4448), + [anon_sym_do_BANG] = ACTIONS(4448), + [anon_sym_begin] = ACTIONS(4450), + [anon_sym_SQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4450), + [anon_sym_DQUOTE] = ACTIONS(4450), + [anon_sym_AT_DQUOTE] = ACTIONS(4448), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4448), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4448), + [sym_bool] = ACTIONS(4450), + [sym_unit] = ACTIONS(4448), + [aux_sym__identifier_or_op_token1] = ACTIONS(4448), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS_DOT] = ACTIONS(4448), + [anon_sym_DASH_DOT] = ACTIONS(4448), + [anon_sym_PERCENT] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4448), + [anon_sym_TILDE] = ACTIONS(4448), + [aux_sym_prefix_op_token1] = ACTIONS(4448), + [sym_int] = ACTIONS(4450), + [sym_xint] = ACTIONS(4448), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2363), + [anon_sym_POUNDif] = ACTIONS(4448), + [sym__dedent] = ACTIONS(4448), }, [2477] = { [sym_xml_doc] = STATE(2477), [sym_block_comment] = STATE(2477), [sym_preproc_line] = STATE(2477), - [sym_identifier] = ACTIONS(2601), - [anon_sym_GT_RBRACK] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_LT_AT_AT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2603), - [aux_sym__identifier_or_op_token1] = ACTIONS(2603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2603), - [anon_sym_DASH_DOT] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), + [sym_identifier] = ACTIONS(4446), + [anon_sym_module] = ACTIONS(4446), + [anon_sym_POUNDnowarn] = ACTIONS(4444), + [anon_sym_POUNDr] = ACTIONS(4444), + [anon_sym_POUNDload] = ACTIONS(4444), + [anon_sym_open] = ACTIONS(4446), + [anon_sym_LBRACK_LT] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_and] = ACTIONS(4446), + [anon_sym_let] = ACTIONS(4446), + [anon_sym_let_BANG] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4446), + [anon_sym_LBRACK_PIPE] = ACTIONS(4444), + [anon_sym_LBRACE] = ACTIONS(4446), + [anon_sym_LBRACE_PIPE] = ACTIONS(4444), + [anon_sym_new] = ACTIONS(4446), + [anon_sym_return_BANG] = ACTIONS(4444), + [anon_sym_yield] = ACTIONS(4446), + [anon_sym_yield_BANG] = ACTIONS(4444), + [anon_sym_lazy] = ACTIONS(4446), + [anon_sym_assert] = ACTIONS(4446), + [anon_sym_upcast] = ACTIONS(4446), + [anon_sym_downcast] = ACTIONS(4446), + [anon_sym_LT_AT] = ACTIONS(4446), + [anon_sym_LT_AT_AT] = ACTIONS(4444), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_while] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_fun] = ACTIONS(4446), + [anon_sym_try] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_match_BANG] = ACTIONS(4444), + [anon_sym_function] = ACTIONS(4446), + [anon_sym_use] = ACTIONS(4446), + [anon_sym_use_BANG] = ACTIONS(4444), + [anon_sym_do_BANG] = ACTIONS(4444), + [anon_sym_begin] = ACTIONS(4446), + [anon_sym_SQUOTE] = ACTIONS(4444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(4446), + [anon_sym_AT_DQUOTE] = ACTIONS(4444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4444), + [sym_bool] = ACTIONS(4446), + [sym_unit] = ACTIONS(4444), + [aux_sym__identifier_or_op_token1] = ACTIONS(4444), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_PLUS_DOT] = ACTIONS(4444), + [anon_sym_DASH_DOT] = ACTIONS(4444), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_AMP_AMP] = ACTIONS(4444), + [anon_sym_TILDE] = ACTIONS(4444), + [aux_sym_prefix_op_token1] = ACTIONS(4444), + [sym_int] = ACTIONS(4446), + [sym_xint] = ACTIONS(4444), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), + [anon_sym_POUNDif] = ACTIONS(4444), + [sym__dedent] = ACTIONS(4444), }, [2478] = { [sym_xml_doc] = STATE(2478), [sym_block_comment] = STATE(2478), [sym_preproc_line] = STATE(2478), - [sym_identifier] = ACTIONS(2609), - [anon_sym_GT_RBRACK] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_LT_AT_AT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2611), - [aux_sym__identifier_or_op_token1] = ACTIONS(2611), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2611), - [anon_sym_DASH_DOT] = ACTIONS(2611), - [anon_sym_PERCENT] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), + [sym_identifier] = ACTIONS(4436), + [anon_sym_module] = ACTIONS(4436), + [anon_sym_POUNDnowarn] = ACTIONS(4434), + [anon_sym_POUNDr] = ACTIONS(4434), + [anon_sym_POUNDload] = ACTIONS(4434), + [anon_sym_open] = ACTIONS(4436), + [anon_sym_LBRACK_LT] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4436), + [anon_sym_type] = ACTIONS(4436), + [anon_sym_do] = ACTIONS(4436), + [anon_sym_and] = ACTIONS(4436), + [anon_sym_let] = ACTIONS(4436), + [anon_sym_let_BANG] = ACTIONS(4434), + [anon_sym_null] = ACTIONS(4436), + [anon_sym_LPAREN] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4436), + [anon_sym_LBRACK] = ACTIONS(4436), + [anon_sym_LBRACK_PIPE] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_LBRACE_PIPE] = ACTIONS(4434), + [anon_sym_new] = ACTIONS(4436), + [anon_sym_return_BANG] = ACTIONS(4434), + [anon_sym_yield] = ACTIONS(4436), + [anon_sym_yield_BANG] = ACTIONS(4434), + [anon_sym_lazy] = ACTIONS(4436), + [anon_sym_assert] = ACTIONS(4436), + [anon_sym_upcast] = ACTIONS(4436), + [anon_sym_downcast] = ACTIONS(4436), + [anon_sym_LT_AT] = ACTIONS(4436), + [anon_sym_LT_AT_AT] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4436), + [anon_sym_while] = ACTIONS(4436), + [anon_sym_if] = ACTIONS(4436), + [anon_sym_fun] = ACTIONS(4436), + [anon_sym_try] = ACTIONS(4436), + [anon_sym_match] = ACTIONS(4436), + [anon_sym_match_BANG] = ACTIONS(4434), + [anon_sym_function] = ACTIONS(4436), + [anon_sym_use] = ACTIONS(4436), + [anon_sym_use_BANG] = ACTIONS(4434), + [anon_sym_do_BANG] = ACTIONS(4434), + [anon_sym_begin] = ACTIONS(4436), + [anon_sym_SQUOTE] = ACTIONS(4434), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [anon_sym_AT_DQUOTE] = ACTIONS(4434), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4434), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4434), + [sym_bool] = ACTIONS(4436), + [sym_unit] = ACTIONS(4434), + [aux_sym__identifier_or_op_token1] = ACTIONS(4434), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4436), + [anon_sym_PLUS] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4436), + [anon_sym_PLUS_DOT] = ACTIONS(4434), + [anon_sym_DASH_DOT] = ACTIONS(4434), + [anon_sym_PERCENT] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [aux_sym_prefix_op_token1] = ACTIONS(4434), + [sym_int] = ACTIONS(4436), + [sym_xint] = ACTIONS(4434), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), - [sym__newline] = ACTIONS(2611), + [anon_sym_POUNDif] = ACTIONS(4434), + [sym__dedent] = ACTIONS(4434), }, [2479] = { [sym_xml_doc] = STATE(2479), [sym_block_comment] = STATE(2479), [sym_preproc_line] = STATE(2479), - [sym_identifier] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(4432), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [sym_identifier] = ACTIONS(4428), + [anon_sym_module] = ACTIONS(4428), + [anon_sym_POUNDnowarn] = ACTIONS(4426), + [anon_sym_POUNDr] = ACTIONS(4426), + [anon_sym_POUNDload] = ACTIONS(4426), + [anon_sym_open] = ACTIONS(4428), + [anon_sym_LBRACK_LT] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4428), + [anon_sym_type] = ACTIONS(4428), + [anon_sym_do] = ACTIONS(4428), + [anon_sym_and] = ACTIONS(4428), + [anon_sym_let] = ACTIONS(4428), + [anon_sym_let_BANG] = ACTIONS(4426), + [anon_sym_null] = ACTIONS(4428), + [anon_sym_LPAREN] = ACTIONS(4428), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_LBRACK_PIPE] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4428), + [anon_sym_LBRACE_PIPE] = ACTIONS(4426), + [anon_sym_new] = ACTIONS(4428), + [anon_sym_return_BANG] = ACTIONS(4426), + [anon_sym_yield] = ACTIONS(4428), + [anon_sym_yield_BANG] = ACTIONS(4426), + [anon_sym_lazy] = ACTIONS(4428), + [anon_sym_assert] = ACTIONS(4428), + [anon_sym_upcast] = ACTIONS(4428), + [anon_sym_downcast] = ACTIONS(4428), + [anon_sym_LT_AT] = ACTIONS(4428), + [anon_sym_LT_AT_AT] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_if] = ACTIONS(4428), + [anon_sym_fun] = ACTIONS(4428), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_match] = ACTIONS(4428), + [anon_sym_match_BANG] = ACTIONS(4426), + [anon_sym_function] = ACTIONS(4428), + [anon_sym_use] = ACTIONS(4428), + [anon_sym_use_BANG] = ACTIONS(4426), + [anon_sym_do_BANG] = ACTIONS(4426), + [anon_sym_begin] = ACTIONS(4428), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4428), + [anon_sym_DQUOTE] = ACTIONS(4428), + [anon_sym_AT_DQUOTE] = ACTIONS(4426), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4426), + [sym_bool] = ACTIONS(4428), + [sym_unit] = ACTIONS(4426), + [aux_sym__identifier_or_op_token1] = ACTIONS(4426), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_PLUS_DOT] = ACTIONS(4426), + [anon_sym_DASH_DOT] = ACTIONS(4426), + [anon_sym_PERCENT] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [aux_sym_prefix_op_token1] = ACTIONS(4426), + [sym_int] = ACTIONS(4428), + [sym_xint] = ACTIONS(4426), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(4426), + [sym__dedent] = ACTIONS(4426), }, [2480] = { [sym_xml_doc] = STATE(2480), [sym_block_comment] = STATE(2480), [sym_preproc_line] = STATE(2480), - [aux_sym__compound_type_repeat1] = STATE(2480), - [sym_identifier] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(4434), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [sym_identifier] = ACTIONS(4424), + [anon_sym_module] = ACTIONS(4424), + [anon_sym_POUNDnowarn] = ACTIONS(4422), + [anon_sym_POUNDr] = ACTIONS(4422), + [anon_sym_POUNDload] = ACTIONS(4422), + [anon_sym_open] = ACTIONS(4424), + [anon_sym_LBRACK_LT] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_type] = ACTIONS(4424), + [anon_sym_do] = ACTIONS(4424), + [anon_sym_and] = ACTIONS(4424), + [anon_sym_let] = ACTIONS(4424), + [anon_sym_let_BANG] = ACTIONS(4422), + [anon_sym_null] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(4424), + [anon_sym_LBRACK_PIPE] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4424), + [anon_sym_LBRACE_PIPE] = ACTIONS(4422), + [anon_sym_new] = ACTIONS(4424), + [anon_sym_return_BANG] = ACTIONS(4422), + [anon_sym_yield] = ACTIONS(4424), + [anon_sym_yield_BANG] = ACTIONS(4422), + [anon_sym_lazy] = ACTIONS(4424), + [anon_sym_assert] = ACTIONS(4424), + [anon_sym_upcast] = ACTIONS(4424), + [anon_sym_downcast] = ACTIONS(4424), + [anon_sym_LT_AT] = ACTIONS(4424), + [anon_sym_LT_AT_AT] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_fun] = ACTIONS(4424), + [anon_sym_try] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_match_BANG] = ACTIONS(4422), + [anon_sym_function] = ACTIONS(4424), + [anon_sym_use] = ACTIONS(4424), + [anon_sym_use_BANG] = ACTIONS(4422), + [anon_sym_do_BANG] = ACTIONS(4422), + [anon_sym_begin] = ACTIONS(4424), + [anon_sym_SQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4424), + [anon_sym_DQUOTE] = ACTIONS(4424), + [anon_sym_AT_DQUOTE] = ACTIONS(4422), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4422), + [sym_bool] = ACTIONS(4424), + [sym_unit] = ACTIONS(4422), + [aux_sym__identifier_or_op_token1] = ACTIONS(4422), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_PLUS_DOT] = ACTIONS(4422), + [anon_sym_DASH_DOT] = ACTIONS(4422), + [anon_sym_PERCENT] = ACTIONS(4422), + [anon_sym_AMP_AMP] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [aux_sym_prefix_op_token1] = ACTIONS(4422), + [sym_int] = ACTIONS(4424), + [sym_xint] = ACTIONS(4422), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(4422), + [sym__dedent] = ACTIONS(4422), }, [2481] = { + [sym_type_arguments] = STATE(2552), + [sym_long_identifier] = STATE(2572), [sym_xml_doc] = STATE(2481), [sym_block_comment] = STATE(2481), [sym_preproc_line] = STATE(2481), - [aux_sym__compound_type_repeat1] = STATE(2490), - [sym_identifier] = ACTIONS(2479), - [anon_sym_GT_RBRACK] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_LT_AT_AT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2481), - [aux_sym__identifier_or_op_token1] = ACTIONS(2481), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2481), - [anon_sym_DASH_DOT] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), + [aux_sym__compound_type_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(4488), + [anon_sym_GT_RBRACK] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_LT_AT_AT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2409), + [aux_sym__identifier_or_op_token1] = ACTIONS(2409), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2409), + [anon_sym_DASH_DOT] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), - [sym__newline] = ACTIONS(2481), + [anon_sym_POUNDif] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), }, [2482] = { [sym_xml_doc] = STATE(2482), [sym_block_comment] = STATE(2482), [sym_preproc_line] = STATE(2482), - [sym_identifier] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [sym_identifier] = ACTIONS(4185), + [anon_sym_module] = ACTIONS(4185), + [anon_sym_POUNDnowarn] = ACTIONS(4183), + [anon_sym_POUNDr] = ACTIONS(4183), + [anon_sym_POUNDload] = ACTIONS(4183), + [anon_sym_open] = ACTIONS(4185), + [anon_sym_LBRACK_LT] = ACTIONS(4183), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_do] = ACTIONS(4185), + [anon_sym_and] = ACTIONS(4185), + [anon_sym_let] = ACTIONS(4185), + [anon_sym_let_BANG] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_LBRACK_PIPE] = ACTIONS(4183), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4183), + [anon_sym_new] = ACTIONS(4185), + [anon_sym_return_BANG] = ACTIONS(4183), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_yield_BANG] = ACTIONS(4183), + [anon_sym_lazy] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_upcast] = ACTIONS(4185), + [anon_sym_downcast] = ACTIONS(4185), + [anon_sym_LT_AT] = ACTIONS(4185), + [anon_sym_LT_AT_AT] = ACTIONS(4183), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_fun] = ACTIONS(4185), + [anon_sym_try] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_match_BANG] = ACTIONS(4183), + [anon_sym_function] = ACTIONS(4185), + [anon_sym_use] = ACTIONS(4185), + [anon_sym_use_BANG] = ACTIONS(4183), + [anon_sym_do_BANG] = ACTIONS(4183), + [anon_sym_begin] = ACTIONS(4185), + [anon_sym_SQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4185), + [anon_sym_DQUOTE] = ACTIONS(4185), + [anon_sym_AT_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4183), + [sym_bool] = ACTIONS(4185), + [sym_unit] = ACTIONS(4183), + [aux_sym__identifier_or_op_token1] = ACTIONS(4183), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_PLUS_DOT] = ACTIONS(4183), + [anon_sym_DASH_DOT] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_TILDE] = ACTIONS(4183), + [aux_sym_prefix_op_token1] = ACTIONS(4183), + [sym_int] = ACTIONS(4185), + [sym_xint] = ACTIONS(4183), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(4183), + [sym__dedent] = ACTIONS(4183), }, [2483] = { + [sym_type_arguments] = STATE(2552), + [sym_long_identifier] = STATE(2572), [sym_xml_doc] = STATE(2483), [sym_block_comment] = STATE(2483), [sym_preproc_line] = STATE(2483), - [sym_identifier] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_as] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_LT_AT_AT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2611), - [aux_sym__identifier_or_op_token1] = ACTIONS(2611), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2611), - [anon_sym_DASH_DOT] = ACTIONS(2611), - [anon_sym_PERCENT] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), + [aux_sym__compound_type_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(4488), + [anon_sym_GT_RBRACK] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), }, [2484] = { [sym_xml_doc] = STATE(2484), [sym_block_comment] = STATE(2484), [sym_preproc_line] = STATE(2484), - [sym_identifier] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_as] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_LT_AT_AT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2603), - [aux_sym__identifier_or_op_token1] = ACTIONS(2603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2603), - [anon_sym_DASH_DOT] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_POUNDnowarn] = ACTIONS(2902), + [anon_sym_POUNDr] = ACTIONS(2902), + [anon_sym_POUNDload] = ACTIONS(2902), + [anon_sym_open] = ACTIONS(2900), + [anon_sym_LBRACK_LT] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2902), + [aux_sym__identifier_or_op_token1] = ACTIONS(2902), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2902), + [anon_sym_DASH_DOT] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), + [anon_sym_POUNDif] = ACTIONS(2902), }, [2485] = { [sym_xml_doc] = STATE(2485), [sym_block_comment] = STATE(2485), [sym_preproc_line] = STATE(2485), - [sym_identifier] = ACTIONS(2605), - [anon_sym_GT_RBRACK] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(4437), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [ts_builtin_sym_end] = ACTIONS(4510), + [sym_identifier] = ACTIONS(4512), + [anon_sym_namespace] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_POUNDnowarn] = ACTIONS(4510), + [anon_sym_POUNDr] = ACTIONS(4510), + [anon_sym_POUNDload] = ACTIONS(4510), + [anon_sym_open] = ACTIONS(4512), + [anon_sym_LBRACK_LT] = ACTIONS(4510), + [anon_sym_return] = ACTIONS(4512), + [anon_sym_type] = ACTIONS(4512), + [anon_sym_do] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_let_BANG] = ACTIONS(4510), + [anon_sym_null] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_LBRACK_PIPE] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_PIPE] = ACTIONS(4510), + [anon_sym_new] = ACTIONS(4512), + [anon_sym_return_BANG] = ACTIONS(4510), + [anon_sym_yield] = ACTIONS(4512), + [anon_sym_yield_BANG] = ACTIONS(4510), + [anon_sym_lazy] = ACTIONS(4512), + [anon_sym_assert] = ACTIONS(4512), + [anon_sym_upcast] = ACTIONS(4512), + [anon_sym_downcast] = ACTIONS(4512), + [anon_sym_LT_AT] = ACTIONS(4512), + [anon_sym_LT_AT_AT] = ACTIONS(4510), + [anon_sym_for] = ACTIONS(4512), + [anon_sym_while] = ACTIONS(4512), + [anon_sym_if] = ACTIONS(4512), + [anon_sym_fun] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4512), + [anon_sym_match] = ACTIONS(4512), + [anon_sym_match_BANG] = ACTIONS(4510), + [anon_sym_function] = ACTIONS(4512), + [anon_sym_use] = ACTIONS(4512), + [anon_sym_use_BANG] = ACTIONS(4510), + [anon_sym_do_BANG] = ACTIONS(4510), + [anon_sym_begin] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4510), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [anon_sym_AT_DQUOTE] = ACTIONS(4510), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), + [sym_bool] = ACTIONS(4512), + [sym_unit] = ACTIONS(4510), + [aux_sym__identifier_or_op_token1] = ACTIONS(4510), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4512), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [anon_sym_PLUS_DOT] = ACTIONS(4510), + [anon_sym_DASH_DOT] = ACTIONS(4510), + [anon_sym_PERCENT] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4510), + [anon_sym_TILDE] = ACTIONS(4510), + [aux_sym_prefix_op_token1] = ACTIONS(4510), + [sym_int] = ACTIONS(4512), + [sym_xint] = ACTIONS(4510), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(4510), }, [2486] = { [sym_xml_doc] = STATE(2486), [sym_block_comment] = STATE(2486), [sym_preproc_line] = STATE(2486), - [sym_identifier] = ACTIONS(2483), - [anon_sym_GT_RBRACK] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(4514), + [sym_identifier] = ACTIONS(4517), + [anon_sym_namespace] = ACTIONS(4508), + [anon_sym_module] = ACTIONS(4517), + [anon_sym_POUNDnowarn] = ACTIONS(4514), + [anon_sym_POUNDr] = ACTIONS(4514), + [anon_sym_POUNDload] = ACTIONS(4514), + [anon_sym_open] = ACTIONS(4517), + [anon_sym_LBRACK_LT] = ACTIONS(4514), + [anon_sym_return] = ACTIONS(4517), + [anon_sym_type] = ACTIONS(4517), + [anon_sym_do] = ACTIONS(4517), + [anon_sym_let] = ACTIONS(4517), + [anon_sym_let_BANG] = ACTIONS(4514), + [anon_sym_null] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_LBRACK_PIPE] = ACTIONS(4514), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_LBRACE_PIPE] = ACTIONS(4514), + [anon_sym_new] = ACTIONS(4517), + [anon_sym_return_BANG] = ACTIONS(4514), + [anon_sym_yield] = ACTIONS(4517), + [anon_sym_yield_BANG] = ACTIONS(4514), + [anon_sym_lazy] = ACTIONS(4517), + [anon_sym_assert] = ACTIONS(4517), + [anon_sym_upcast] = ACTIONS(4517), + [anon_sym_downcast] = ACTIONS(4517), + [anon_sym_LT_AT] = ACTIONS(4517), + [anon_sym_LT_AT_AT] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4517), + [anon_sym_while] = ACTIONS(4517), + [anon_sym_if] = ACTIONS(4517), + [anon_sym_fun] = ACTIONS(4517), + [anon_sym_try] = ACTIONS(4517), + [anon_sym_match] = ACTIONS(4517), + [anon_sym_match_BANG] = ACTIONS(4514), + [anon_sym_function] = ACTIONS(4517), + [anon_sym_use] = ACTIONS(4517), + [anon_sym_use_BANG] = ACTIONS(4514), + [anon_sym_do_BANG] = ACTIONS(4514), + [anon_sym_begin] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4517), + [anon_sym_DQUOTE] = ACTIONS(4517), + [anon_sym_AT_DQUOTE] = ACTIONS(4514), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), + [sym_bool] = ACTIONS(4517), + [sym_unit] = ACTIONS(4514), + [aux_sym__identifier_or_op_token1] = ACTIONS(4514), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS_DOT] = ACTIONS(4514), + [anon_sym_DASH_DOT] = ACTIONS(4514), + [anon_sym_PERCENT] = ACTIONS(4514), + [anon_sym_AMP_AMP] = ACTIONS(4514), + [anon_sym_TILDE] = ACTIONS(4514), + [aux_sym_prefix_op_token1] = ACTIONS(4514), + [sym_int] = ACTIONS(4517), + [sym_xint] = ACTIONS(4514), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), - [sym__newline] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(4514), }, [2487] = { - [sym_type_arguments] = STATE(2531), - [sym_long_identifier] = STATE(2533), [sym_xml_doc] = STATE(2487), [sym_block_comment] = STATE(2487), [sym_preproc_line] = STATE(2487), - [aux_sym__compound_type_repeat1] = STATE(2522), - [sym_identifier] = ACTIONS(4430), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(4520), + [sym_identifier] = ACTIONS(4522), + [anon_sym_namespace] = ACTIONS(4522), + [anon_sym_module] = ACTIONS(4522), + [anon_sym_POUNDnowarn] = ACTIONS(4520), + [anon_sym_POUNDr] = ACTIONS(4520), + [anon_sym_POUNDload] = ACTIONS(4520), + [anon_sym_open] = ACTIONS(4522), + [anon_sym_LBRACK_LT] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_do] = ACTIONS(4522), + [anon_sym_let] = ACTIONS(4522), + [anon_sym_let_BANG] = ACTIONS(4520), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_LBRACK_PIPE] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_LBRACE_PIPE] = ACTIONS(4520), + [anon_sym_new] = ACTIONS(4522), + [anon_sym_return_BANG] = ACTIONS(4520), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_yield_BANG] = ACTIONS(4520), + [anon_sym_lazy] = ACTIONS(4522), + [anon_sym_assert] = ACTIONS(4522), + [anon_sym_upcast] = ACTIONS(4522), + [anon_sym_downcast] = ACTIONS(4522), + [anon_sym_LT_AT] = ACTIONS(4522), + [anon_sym_LT_AT_AT] = ACTIONS(4520), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_fun] = ACTIONS(4522), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_match_BANG] = ACTIONS(4520), + [anon_sym_function] = ACTIONS(4522), + [anon_sym_use] = ACTIONS(4522), + [anon_sym_use_BANG] = ACTIONS(4520), + [anon_sym_do_BANG] = ACTIONS(4520), + [anon_sym_begin] = ACTIONS(4522), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4522), + [anon_sym_DQUOTE] = ACTIONS(4522), + [anon_sym_AT_DQUOTE] = ACTIONS(4520), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4520), + [sym_bool] = ACTIONS(4522), + [sym_unit] = ACTIONS(4520), + [aux_sym__identifier_or_op_token1] = ACTIONS(4520), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_PLUS_DOT] = ACTIONS(4520), + [anon_sym_DASH_DOT] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [aux_sym_prefix_op_token1] = ACTIONS(4520), + [sym_int] = ACTIONS(4522), + [sym_xint] = ACTIONS(4520), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(4520), }, [2488] = { [sym_xml_doc] = STATE(2488), [sym_block_comment] = STATE(2488), [sym_preproc_line] = STATE(2488), - [aux_sym__compound_type_repeat1] = STATE(2480), - [sym_identifier] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_LT_AT_AT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2481), - [aux_sym__identifier_or_op_token1] = ACTIONS(2481), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2481), - [anon_sym_DASH_DOT] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_POUNDnowarn] = ACTIONS(1871), + [anon_sym_POUNDr] = ACTIONS(1871), + [anon_sym_POUNDload] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1873), + [anon_sym_LBRACK_LT] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_BANG] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LBRACK_PIPE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE_PIPE] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_return_BANG] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_yield_BANG] = ACTIONS(1871), + [anon_sym_lazy] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_upcast] = ACTIONS(1873), + [anon_sym_downcast] = ACTIONS(1873), + [anon_sym_LT_AT] = ACTIONS(1873), + [anon_sym_LT_AT_AT] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_fun] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_match_BANG] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_use_BANG] = ACTIONS(1871), + [anon_sym_do_BANG] = ACTIONS(1871), + [anon_sym_begin] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_AT_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [sym_bool] = ACTIONS(1873), + [sym_unit] = ACTIONS(1871), + [aux_sym__identifier_or_op_token1] = ACTIONS(1871), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PLUS_DOT] = ACTIONS(1871), + [anon_sym_DASH_DOT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [aux_sym_prefix_op_token1] = ACTIONS(1871), + [sym_int] = ACTIONS(1873), + [sym_xint] = ACTIONS(1871), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), + [anon_sym_POUNDif] = ACTIONS(1871), }, [2489] = { - [sym_type_arguments] = STATE(2531), - [sym_long_identifier] = STATE(2533), + [sym_type_arguments] = STATE(2571), + [sym_long_identifier] = STATE(2565), [sym_xml_doc] = STATE(2489), [sym_block_comment] = STATE(2489), [sym_preproc_line] = STATE(2489), - [aux_sym__compound_type_repeat1] = STATE(2522), - [sym_identifier] = ACTIONS(4430), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), + [aux_sym__compound_type_repeat1] = STATE(2537), + [sym_identifier] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), [anon_sym_let_BANG] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), [anon_sym_LBRACK_PIPE] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2363), [anon_sym_LBRACE_PIPE] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2359), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), [anon_sym_return_BANG] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2363), [anon_sym_yield_BANG] = ACTIONS(2361), - [anon_sym_lazy] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_upcast] = ACTIONS(2359), - [anon_sym_downcast] = ACTIONS(2359), - [anon_sym_LT_AT] = ACTIONS(2359), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), [anon_sym_LT_AT_AT] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_fun] = ACTIONS(2359), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), [anon_sym_match_BANG] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), [anon_sym_use_BANG] = ACTIONS(2361), [anon_sym_do_BANG] = ACTIONS(2361), - [anon_sym_begin] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), [anon_sym_AT_DQUOTE] = ACTIONS(2361), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), - [sym_bool] = ACTIONS(2359), + [sym_bool] = ACTIONS(2363), [sym_unit] = ACTIONS(2361), [aux_sym__identifier_or_op_token1] = ACTIONS(2361), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), [anon_sym_PLUS_DOT] = ACTIONS(2361), [anon_sym_DASH_DOT] = ACTIONS(2361), [anon_sym_PERCENT] = ACTIONS(2361), [anon_sym_AMP_AMP] = ACTIONS(2361), [anon_sym_TILDE] = ACTIONS(2361), [aux_sym_prefix_op_token1] = ACTIONS(2361), - [sym_int] = ACTIONS(2359), + [sym_int] = ACTIONS(2363), [sym_xint] = ACTIONS(2361), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -283002,2664 +281379,3421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xml_doc] = STATE(2490), [sym_block_comment] = STATE(2490), [sym_preproc_line] = STATE(2490), - [aux_sym__compound_type_repeat1] = STATE(2490), - [sym_identifier] = ACTIONS(2343), - [anon_sym_GT_RBRACK] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(4439), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3139), + [anon_sym_namespace] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_POUNDnowarn] = ACTIONS(3141), + [anon_sym_POUNDr] = ACTIONS(3141), + [anon_sym_POUNDload] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3139), + [anon_sym_LBRACK_LT] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_LT_AT_AT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3141), + [aux_sym__identifier_or_op_token1] = ACTIONS(3141), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3141), + [anon_sym_DASH_DOT] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(3141), }, [2491] = { - [sym_type_arguments] = STATE(2531), - [sym_long_identifier] = STATE(2533), [sym_xml_doc] = STATE(2491), [sym_block_comment] = STATE(2491), [sym_preproc_line] = STATE(2491), - [aux_sym__compound_type_repeat1] = STATE(2522), - [sym_identifier] = ACTIONS(4430), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_BANG] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_LBRACK_PIPE] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_LBRACE_PIPE] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_return_BANG] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_yield_BANG] = ACTIONS(2305), - [anon_sym_lazy] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_upcast] = ACTIONS(2307), - [anon_sym_downcast] = ACTIONS(2307), - [anon_sym_LT_AT] = ACTIONS(2307), - [anon_sym_LT_AT_AT] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_fun] = ACTIONS(2307), - [anon_sym_DASH_GT] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_match_BANG] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_use_BANG] = ACTIONS(2305), - [anon_sym_do_BANG] = ACTIONS(2305), - [anon_sym_begin] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [anon_sym_AT_DQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2305), - [sym_bool] = ACTIONS(2307), - [sym_unit] = ACTIONS(2305), - [aux_sym__identifier_or_op_token1] = ACTIONS(2305), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_PLUS_DOT] = ACTIONS(2305), - [anon_sym_DASH_DOT] = ACTIONS(2305), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [aux_sym_prefix_op_token1] = ACTIONS(2305), - [sym_int] = ACTIONS(2307), - [sym_xint] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(4526), + [sym_identifier] = ACTIONS(4528), + [anon_sym_namespace] = ACTIONS(4528), + [anon_sym_module] = ACTIONS(4528), + [anon_sym_POUNDnowarn] = ACTIONS(4526), + [anon_sym_POUNDr] = ACTIONS(4526), + [anon_sym_POUNDload] = ACTIONS(4526), + [anon_sym_open] = ACTIONS(4528), + [anon_sym_LBRACK_LT] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4528), + [anon_sym_type] = ACTIONS(4528), + [anon_sym_do] = ACTIONS(4528), + [anon_sym_let] = ACTIONS(4528), + [anon_sym_let_BANG] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4528), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_AMP] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4528), + [anon_sym_LBRACK_PIPE] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4528), + [anon_sym_LBRACE_PIPE] = ACTIONS(4526), + [anon_sym_new] = ACTIONS(4528), + [anon_sym_return_BANG] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4528), + [anon_sym_yield_BANG] = ACTIONS(4526), + [anon_sym_lazy] = ACTIONS(4528), + [anon_sym_assert] = ACTIONS(4528), + [anon_sym_upcast] = ACTIONS(4528), + [anon_sym_downcast] = ACTIONS(4528), + [anon_sym_LT_AT] = ACTIONS(4528), + [anon_sym_LT_AT_AT] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4528), + [anon_sym_while] = ACTIONS(4528), + [anon_sym_if] = ACTIONS(4528), + [anon_sym_fun] = ACTIONS(4528), + [anon_sym_try] = ACTIONS(4528), + [anon_sym_match] = ACTIONS(4528), + [anon_sym_match_BANG] = ACTIONS(4526), + [anon_sym_function] = ACTIONS(4528), + [anon_sym_use] = ACTIONS(4528), + [anon_sym_use_BANG] = ACTIONS(4526), + [anon_sym_do_BANG] = ACTIONS(4526), + [anon_sym_begin] = ACTIONS(4528), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4528), + [anon_sym_DQUOTE] = ACTIONS(4528), + [anon_sym_AT_DQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), + [sym_bool] = ACTIONS(4528), + [sym_unit] = ACTIONS(4526), + [aux_sym__identifier_or_op_token1] = ACTIONS(4526), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4528), + [anon_sym_PLUS_DOT] = ACTIONS(4526), + [anon_sym_DASH_DOT] = ACTIONS(4526), + [anon_sym_PERCENT] = ACTIONS(4526), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [aux_sym_prefix_op_token1] = ACTIONS(4526), + [sym_int] = ACTIONS(4528), + [sym_xint] = ACTIONS(4526), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2305), + [anon_sym_POUNDif] = ACTIONS(4526), }, [2492] = { [sym_xml_doc] = STATE(2492), [sym_block_comment] = STATE(2492), [sym_preproc_line] = STATE(2492), - [sym_identifier] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_as] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_with] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [sym_identifier] = ACTIONS(4479), + [anon_sym_module] = ACTIONS(4479), + [anon_sym_POUNDnowarn] = ACTIONS(4477), + [anon_sym_POUNDr] = ACTIONS(4477), + [anon_sym_POUNDload] = ACTIONS(4477), + [anon_sym_open] = ACTIONS(4479), + [anon_sym_LBRACK_LT] = ACTIONS(4477), + [anon_sym_return] = ACTIONS(4479), + [anon_sym_type] = ACTIONS(4479), + [anon_sym_do] = ACTIONS(4479), + [anon_sym_and] = ACTIONS(4479), + [anon_sym_let] = ACTIONS(4479), + [anon_sym_let_BANG] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_AMP] = ACTIONS(4479), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LBRACK_PIPE] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4479), + [anon_sym_LBRACE_PIPE] = ACTIONS(4477), + [anon_sym_new] = ACTIONS(4479), + [anon_sym_return_BANG] = ACTIONS(4477), + [anon_sym_yield] = ACTIONS(4479), + [anon_sym_yield_BANG] = ACTIONS(4477), + [anon_sym_lazy] = ACTIONS(4479), + [anon_sym_assert] = ACTIONS(4479), + [anon_sym_upcast] = ACTIONS(4479), + [anon_sym_downcast] = ACTIONS(4479), + [anon_sym_LT_AT] = ACTIONS(4479), + [anon_sym_LT_AT_AT] = ACTIONS(4477), + [anon_sym_for] = ACTIONS(4479), + [anon_sym_while] = ACTIONS(4479), + [anon_sym_if] = ACTIONS(4479), + [anon_sym_fun] = ACTIONS(4479), + [anon_sym_try] = ACTIONS(4479), + [anon_sym_match] = ACTIONS(4479), + [anon_sym_match_BANG] = ACTIONS(4477), + [anon_sym_function] = ACTIONS(4479), + [anon_sym_use] = ACTIONS(4479), + [anon_sym_use_BANG] = ACTIONS(4477), + [anon_sym_do_BANG] = ACTIONS(4477), + [anon_sym_begin] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4477), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4479), + [anon_sym_DQUOTE] = ACTIONS(4479), + [anon_sym_AT_DQUOTE] = ACTIONS(4477), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4477), + [sym_bool] = ACTIONS(4479), + [sym_unit] = ACTIONS(4477), + [aux_sym__identifier_or_op_token1] = ACTIONS(4477), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_PLUS_DOT] = ACTIONS(4477), + [anon_sym_DASH_DOT] = ACTIONS(4477), + [anon_sym_PERCENT] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4477), + [anon_sym_TILDE] = ACTIONS(4477), + [aux_sym_prefix_op_token1] = ACTIONS(4477), + [sym_int] = ACTIONS(4479), + [sym_xint] = ACTIONS(4477), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(4477), + [sym__dedent] = ACTIONS(4477), }, [2493] = { [sym_xml_doc] = STATE(2493), [sym_block_comment] = STATE(2493), [sym_preproc_line] = STATE(2493), - [sym_identifier] = ACTIONS(2597), - [anon_sym_GT_RBRACK] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_LT_AT_AT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2599), - [aux_sym__identifier_or_op_token1] = ACTIONS(2599), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2599), - [anon_sym_DASH_DOT] = ACTIONS(2599), - [anon_sym_PERCENT] = ACTIONS(2599), - [anon_sym_AMP_AMP] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3027), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_POUNDnowarn] = ACTIONS(3029), + [anon_sym_POUNDr] = ACTIONS(3029), + [anon_sym_POUNDload] = ACTIONS(3029), + [anon_sym_open] = ACTIONS(3027), + [anon_sym_LBRACK_LT] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_LT_AT_AT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3029), + [aux_sym__identifier_or_op_token1] = ACTIONS(3029), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3029), + [anon_sym_DASH_DOT] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), + [anon_sym_POUNDif] = ACTIONS(3029), }, [2494] = { [sym_xml_doc] = STATE(2494), [sym_block_comment] = STATE(2494), [sym_preproc_line] = STATE(2494), - [aux_sym_long_identifier_repeat1] = STATE(2494), - [sym_identifier] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [sym_identifier] = ACTIONS(4390), + [anon_sym_module] = ACTIONS(4390), + [anon_sym_POUNDnowarn] = ACTIONS(4388), + [anon_sym_POUNDr] = ACTIONS(4388), + [anon_sym_POUNDload] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4390), + [anon_sym_LBRACK_LT] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_type] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_and] = ACTIONS(4390), + [anon_sym_let] = ACTIONS(4390), + [anon_sym_let_BANG] = ACTIONS(4388), + [anon_sym_null] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_LBRACK_PIPE] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_LBRACE_PIPE] = ACTIONS(4388), + [anon_sym_new] = ACTIONS(4390), + [anon_sym_return_BANG] = ACTIONS(4388), + [anon_sym_yield] = ACTIONS(4390), + [anon_sym_yield_BANG] = ACTIONS(4388), + [anon_sym_lazy] = ACTIONS(4390), + [anon_sym_assert] = ACTIONS(4390), + [anon_sym_upcast] = ACTIONS(4390), + [anon_sym_downcast] = ACTIONS(4390), + [anon_sym_LT_AT] = ACTIONS(4390), + [anon_sym_LT_AT_AT] = ACTIONS(4388), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_fun] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_match] = ACTIONS(4390), + [anon_sym_match_BANG] = ACTIONS(4388), + [anon_sym_function] = ACTIONS(4390), + [anon_sym_use] = ACTIONS(4390), + [anon_sym_use_BANG] = ACTIONS(4388), + [anon_sym_do_BANG] = ACTIONS(4388), + [anon_sym_begin] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_DQUOTE] = ACTIONS(4390), + [anon_sym_AT_DQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4388), + [sym_bool] = ACTIONS(4390), + [sym_unit] = ACTIONS(4388), + [aux_sym__identifier_or_op_token1] = ACTIONS(4388), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_PLUS_DOT] = ACTIONS(4388), + [anon_sym_DASH_DOT] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_TILDE] = ACTIONS(4388), + [aux_sym_prefix_op_token1] = ACTIONS(4388), + [sym_int] = ACTIONS(4390), + [sym_xint] = ACTIONS(4388), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(4388), + [sym__dedent] = ACTIONS(4388), }, [2495] = { [sym_xml_doc] = STATE(2495), [sym_block_comment] = STATE(2495), [sym_preproc_line] = STATE(2495), - [sym_identifier] = ACTIONS(2583), - [anon_sym_GT_RBRACK] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_LT_AT_AT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2585), - [aux_sym__identifier_or_op_token1] = ACTIONS(2585), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2585), - [anon_sym_DASH_DOT] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), + [ts_builtin_sym_end] = ACTIONS(4530), + [sym_identifier] = ACTIONS(4532), + [anon_sym_namespace] = ACTIONS(4532), + [anon_sym_module] = ACTIONS(4532), + [anon_sym_POUNDnowarn] = ACTIONS(4530), + [anon_sym_POUNDr] = ACTIONS(4530), + [anon_sym_POUNDload] = ACTIONS(4530), + [anon_sym_open] = ACTIONS(4532), + [anon_sym_LBRACK_LT] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4532), + [anon_sym_type] = ACTIONS(4532), + [anon_sym_do] = ACTIONS(4532), + [anon_sym_let] = ACTIONS(4532), + [anon_sym_let_BANG] = ACTIONS(4530), + [anon_sym_null] = ACTIONS(4532), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_LBRACK_PIPE] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_LBRACE_PIPE] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4532), + [anon_sym_return_BANG] = ACTIONS(4530), + [anon_sym_yield] = ACTIONS(4532), + [anon_sym_yield_BANG] = ACTIONS(4530), + [anon_sym_lazy] = ACTIONS(4532), + [anon_sym_assert] = ACTIONS(4532), + [anon_sym_upcast] = ACTIONS(4532), + [anon_sym_downcast] = ACTIONS(4532), + [anon_sym_LT_AT] = ACTIONS(4532), + [anon_sym_LT_AT_AT] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4532), + [anon_sym_while] = ACTIONS(4532), + [anon_sym_if] = ACTIONS(4532), + [anon_sym_fun] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4532), + [anon_sym_match] = ACTIONS(4532), + [anon_sym_match_BANG] = ACTIONS(4530), + [anon_sym_function] = ACTIONS(4532), + [anon_sym_use] = ACTIONS(4532), + [anon_sym_use_BANG] = ACTIONS(4530), + [anon_sym_do_BANG] = ACTIONS(4530), + [anon_sym_begin] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [anon_sym_AT_DQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [sym_bool] = ACTIONS(4532), + [sym_unit] = ACTIONS(4530), + [aux_sym__identifier_or_op_token1] = ACTIONS(4530), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_PLUS_DOT] = ACTIONS(4530), + [anon_sym_DASH_DOT] = ACTIONS(4530), + [anon_sym_PERCENT] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [aux_sym_prefix_op_token1] = ACTIONS(4530), + [sym_int] = ACTIONS(4532), + [sym_xint] = ACTIONS(4530), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), - [sym__newline] = ACTIONS(2585), + [anon_sym_POUNDif] = ACTIONS(4530), }, [2496] = { [sym_xml_doc] = STATE(2496), [sym_block_comment] = STATE(2496), [sym_preproc_line] = STATE(2496), - [sym_identifier] = ACTIONS(2591), - [anon_sym_GT_RBRACK] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_LT_AT_AT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2593), - [aux_sym__identifier_or_op_token1] = ACTIONS(2593), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2593), - [anon_sym_DASH_DOT] = ACTIONS(2593), - [anon_sym_PERCENT] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), + [ts_builtin_sym_end] = ACTIONS(4530), + [sym_identifier] = ACTIONS(4532), + [anon_sym_namespace] = ACTIONS(4532), + [anon_sym_module] = ACTIONS(4532), + [anon_sym_POUNDnowarn] = ACTIONS(4530), + [anon_sym_POUNDr] = ACTIONS(4530), + [anon_sym_POUNDload] = ACTIONS(4530), + [anon_sym_open] = ACTIONS(4532), + [anon_sym_LBRACK_LT] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4532), + [anon_sym_type] = ACTIONS(4532), + [anon_sym_do] = ACTIONS(4532), + [anon_sym_let] = ACTIONS(4532), + [anon_sym_let_BANG] = ACTIONS(4530), + [anon_sym_null] = ACTIONS(4532), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_LBRACK_PIPE] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_LBRACE_PIPE] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4532), + [anon_sym_return_BANG] = ACTIONS(4530), + [anon_sym_yield] = ACTIONS(4532), + [anon_sym_yield_BANG] = ACTIONS(4530), + [anon_sym_lazy] = ACTIONS(4532), + [anon_sym_assert] = ACTIONS(4532), + [anon_sym_upcast] = ACTIONS(4532), + [anon_sym_downcast] = ACTIONS(4532), + [anon_sym_LT_AT] = ACTIONS(4532), + [anon_sym_LT_AT_AT] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4532), + [anon_sym_while] = ACTIONS(4532), + [anon_sym_if] = ACTIONS(4532), + [anon_sym_fun] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4532), + [anon_sym_match] = ACTIONS(4532), + [anon_sym_match_BANG] = ACTIONS(4530), + [anon_sym_function] = ACTIONS(4532), + [anon_sym_use] = ACTIONS(4532), + [anon_sym_use_BANG] = ACTIONS(4530), + [anon_sym_do_BANG] = ACTIONS(4530), + [anon_sym_begin] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [anon_sym_AT_DQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [sym_bool] = ACTIONS(4532), + [sym_unit] = ACTIONS(4530), + [aux_sym__identifier_or_op_token1] = ACTIONS(4530), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_PLUS_DOT] = ACTIONS(4530), + [anon_sym_DASH_DOT] = ACTIONS(4530), + [anon_sym_PERCENT] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [aux_sym_prefix_op_token1] = ACTIONS(4530), + [sym_int] = ACTIONS(4532), + [sym_xint] = ACTIONS(4530), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), + [anon_sym_POUNDif] = ACTIONS(4530), }, [2497] = { + [sym_type_arguments] = STATE(2571), + [sym_long_identifier] = STATE(2565), [sym_xml_doc] = STATE(2497), [sym_block_comment] = STATE(2497), [sym_preproc_line] = STATE(2497), - [sym_identifier] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_as] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_LT_AT_AT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2599), - [aux_sym__identifier_or_op_token1] = ACTIONS(2599), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2599), - [anon_sym_DASH_DOT] = ACTIONS(2599), - [anon_sym_PERCENT] = ACTIONS(2599), - [anon_sym_AMP_AMP] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), + [aux_sym__compound_type_repeat1] = STATE(2537), + [sym_identifier] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_LT_AT_AT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2409), + [aux_sym__identifier_or_op_token1] = ACTIONS(2409), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2409), + [anon_sym_DASH_DOT] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), + [anon_sym_POUNDif] = ACTIONS(2409), }, [2498] = { + [sym_type_arguments] = STATE(2571), + [sym_long_identifier] = STATE(2565), [sym_xml_doc] = STATE(2498), [sym_block_comment] = STATE(2498), [sym_preproc_line] = STATE(2498), - [sym_identifier] = ACTIONS(2579), - [anon_sym_GT_RBRACK] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_LT_AT_AT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2581), - [aux_sym__identifier_or_op_token1] = ACTIONS(2581), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2581), - [anon_sym_DASH_DOT] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), + [aux_sym__compound_type_repeat1] = STATE(2537), + [sym_identifier] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), + [anon_sym_POUNDif] = ACTIONS(2321), }, [2499] = { [sym_xml_doc] = STATE(2499), [sym_block_comment] = STATE(2499), [sym_preproc_line] = STATE(2499), - [sym_identifier] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_as] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_LT_AT_AT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2585), - [aux_sym__identifier_or_op_token1] = ACTIONS(2585), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2585), - [anon_sym_DASH_DOT] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), + [sym_identifier] = ACTIONS(4454), + [anon_sym_module] = ACTIONS(4454), + [anon_sym_POUNDnowarn] = ACTIONS(4452), + [anon_sym_POUNDr] = ACTIONS(4452), + [anon_sym_POUNDload] = ACTIONS(4452), + [anon_sym_open] = ACTIONS(4454), + [anon_sym_LBRACK_LT] = ACTIONS(4452), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_type] = ACTIONS(4454), + [anon_sym_do] = ACTIONS(4454), + [anon_sym_and] = ACTIONS(4454), + [anon_sym_let] = ACTIONS(4454), + [anon_sym_let_BANG] = ACTIONS(4452), + [anon_sym_null] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_LBRACK_PIPE] = ACTIONS(4452), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_LBRACE_PIPE] = ACTIONS(4452), + [anon_sym_new] = ACTIONS(4454), + [anon_sym_return_BANG] = ACTIONS(4452), + [anon_sym_yield] = ACTIONS(4454), + [anon_sym_yield_BANG] = ACTIONS(4452), + [anon_sym_lazy] = ACTIONS(4454), + [anon_sym_assert] = ACTIONS(4454), + [anon_sym_upcast] = ACTIONS(4454), + [anon_sym_downcast] = ACTIONS(4454), + [anon_sym_LT_AT] = ACTIONS(4454), + [anon_sym_LT_AT_AT] = ACTIONS(4452), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_while] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_fun] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4454), + [anon_sym_match] = ACTIONS(4454), + [anon_sym_match_BANG] = ACTIONS(4452), + [anon_sym_function] = ACTIONS(4454), + [anon_sym_use] = ACTIONS(4454), + [anon_sym_use_BANG] = ACTIONS(4452), + [anon_sym_do_BANG] = ACTIONS(4452), + [anon_sym_begin] = ACTIONS(4454), + [anon_sym_SQUOTE] = ACTIONS(4452), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4454), + [anon_sym_DQUOTE] = ACTIONS(4454), + [anon_sym_AT_DQUOTE] = ACTIONS(4452), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4452), + [sym_bool] = ACTIONS(4454), + [sym_unit] = ACTIONS(4452), + [aux_sym__identifier_or_op_token1] = ACTIONS(4452), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PLUS_DOT] = ACTIONS(4452), + [anon_sym_DASH_DOT] = ACTIONS(4452), + [anon_sym_PERCENT] = ACTIONS(4452), + [anon_sym_AMP_AMP] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [aux_sym_prefix_op_token1] = ACTIONS(4452), + [sym_int] = ACTIONS(4454), + [sym_xint] = ACTIONS(4452), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), + [anon_sym_POUNDif] = ACTIONS(4452), + [sym__dedent] = ACTIONS(4452), }, [2500] = { [sym_xml_doc] = STATE(2500), [sym_block_comment] = STATE(2500), [sym_preproc_line] = STATE(2500), - [sym_identifier] = ACTIONS(2575), - [anon_sym_GT_RBRACK] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_LT_AT_AT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2577), - [aux_sym__identifier_or_op_token1] = ACTIONS(2577), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2577), - [anon_sym_DASH_DOT] = ACTIONS(2577), - [anon_sym_PERCENT] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), + [sym_identifier] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_POUNDnowarn] = ACTIONS(4156), + [anon_sym_POUNDr] = ACTIONS(4156), + [anon_sym_POUNDload] = ACTIONS(4156), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_LBRACK_LT] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_and] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(4158), + [anon_sym_let_BANG] = ACTIONS(4156), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_LBRACK_PIPE] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LBRACE_PIPE] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_return_BANG] = ACTIONS(4156), + [anon_sym_yield] = ACTIONS(4158), + [anon_sym_yield_BANG] = ACTIONS(4156), + [anon_sym_lazy] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_upcast] = ACTIONS(4158), + [anon_sym_downcast] = ACTIONS(4158), + [anon_sym_LT_AT] = ACTIONS(4158), + [anon_sym_LT_AT_AT] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_match_BANG] = ACTIONS(4156), + [anon_sym_function] = ACTIONS(4158), + [anon_sym_use] = ACTIONS(4158), + [anon_sym_use_BANG] = ACTIONS(4156), + [anon_sym_do_BANG] = ACTIONS(4156), + [anon_sym_begin] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [anon_sym_AT_DQUOTE] = ACTIONS(4156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4156), + [sym_bool] = ACTIONS(4158), + [sym_unit] = ACTIONS(4156), + [aux_sym__identifier_or_op_token1] = ACTIONS(4156), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS_DOT] = ACTIONS(4156), + [anon_sym_DASH_DOT] = ACTIONS(4156), + [anon_sym_PERCENT] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [aux_sym_prefix_op_token1] = ACTIONS(4156), + [sym_int] = ACTIONS(4158), + [sym_xint] = ACTIONS(4156), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), - [sym__newline] = ACTIONS(2577), + [anon_sym_POUNDif] = ACTIONS(4156), + [sym__dedent] = ACTIONS(4156), }, [2501] = { + [sym_type_arguments] = STATE(2571), + [sym_long_identifier] = STATE(2565), [sym_xml_doc] = STATE(2501), [sym_block_comment] = STATE(2501), [sym_preproc_line] = STATE(2501), - [sym_identifier] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_as] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_LT_AT_AT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2593), - [aux_sym__identifier_or_op_token1] = ACTIONS(2593), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2593), - [anon_sym_DASH_DOT] = ACTIONS(2593), - [anon_sym_PERCENT] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), + [aux_sym__compound_type_repeat1] = STATE(2537), + [sym_identifier] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_LT_AT_AT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2375), + [aux_sym__identifier_or_op_token1] = ACTIONS(2375), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2375), + [anon_sym_DASH_DOT] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), + [anon_sym_POUNDif] = ACTIONS(2375), }, [2502] = { [sym_xml_doc] = STATE(2502), [sym_block_comment] = STATE(2502), [sym_preproc_line] = STATE(2502), - [sym_identifier] = ACTIONS(2567), - [anon_sym_GT_RBRACK] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_LT_AT_AT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2569), - [aux_sym__identifier_or_op_token1] = ACTIONS(2569), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2569), - [anon_sym_DASH_DOT] = ACTIONS(2569), - [anon_sym_PERCENT] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), + [sym_identifier] = ACTIONS(4396), + [anon_sym_module] = ACTIONS(4396), + [anon_sym_POUNDnowarn] = ACTIONS(4394), + [anon_sym_POUNDr] = ACTIONS(4394), + [anon_sym_POUNDload] = ACTIONS(4394), + [anon_sym_open] = ACTIONS(4396), + [anon_sym_LBRACK_LT] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_type] = ACTIONS(4396), + [anon_sym_do] = ACTIONS(4396), + [anon_sym_and] = ACTIONS(4396), + [anon_sym_let] = ACTIONS(4396), + [anon_sym_let_BANG] = ACTIONS(4394), + [anon_sym_null] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_LBRACK_PIPE] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_LBRACE_PIPE] = ACTIONS(4394), + [anon_sym_new] = ACTIONS(4396), + [anon_sym_return_BANG] = ACTIONS(4394), + [anon_sym_yield] = ACTIONS(4396), + [anon_sym_yield_BANG] = ACTIONS(4394), + [anon_sym_lazy] = ACTIONS(4396), + [anon_sym_assert] = ACTIONS(4396), + [anon_sym_upcast] = ACTIONS(4396), + [anon_sym_downcast] = ACTIONS(4396), + [anon_sym_LT_AT] = ACTIONS(4396), + [anon_sym_LT_AT_AT] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4396), + [anon_sym_while] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_fun] = ACTIONS(4396), + [anon_sym_try] = ACTIONS(4396), + [anon_sym_match] = ACTIONS(4396), + [anon_sym_match_BANG] = ACTIONS(4394), + [anon_sym_function] = ACTIONS(4396), + [anon_sym_use] = ACTIONS(4396), + [anon_sym_use_BANG] = ACTIONS(4394), + [anon_sym_do_BANG] = ACTIONS(4394), + [anon_sym_begin] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4396), + [anon_sym_DQUOTE] = ACTIONS(4396), + [anon_sym_AT_DQUOTE] = ACTIONS(4394), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4394), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4394), + [sym_bool] = ACTIONS(4396), + [sym_unit] = ACTIONS(4394), + [aux_sym__identifier_or_op_token1] = ACTIONS(4394), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_PLUS_DOT] = ACTIONS(4394), + [anon_sym_DASH_DOT] = ACTIONS(4394), + [anon_sym_PERCENT] = ACTIONS(4394), + [anon_sym_AMP_AMP] = ACTIONS(4394), + [anon_sym_TILDE] = ACTIONS(4394), + [aux_sym_prefix_op_token1] = ACTIONS(4394), + [sym_int] = ACTIONS(4396), + [sym_xint] = ACTIONS(4394), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), - [sym__newline] = ACTIONS(2569), + [anon_sym_POUNDif] = ACTIONS(4394), + [sym__dedent] = ACTIONS(4394), }, [2503] = { [sym_xml_doc] = STATE(2503), [sym_block_comment] = STATE(2503), [sym_preproc_line] = STATE(2503), - [sym_identifier] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_as] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_LT_AT_AT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2589), - [aux_sym__identifier_or_op_token1] = ACTIONS(2589), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2589), - [anon_sym_DASH_DOT] = ACTIONS(2589), - [anon_sym_PERCENT] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), + [sym_identifier] = ACTIONS(4410), + [anon_sym_module] = ACTIONS(4410), + [anon_sym_POUNDnowarn] = ACTIONS(4408), + [anon_sym_POUNDr] = ACTIONS(4408), + [anon_sym_POUNDload] = ACTIONS(4408), + [anon_sym_open] = ACTIONS(4410), + [anon_sym_LBRACK_LT] = ACTIONS(4408), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_type] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4410), + [anon_sym_and] = ACTIONS(4410), + [anon_sym_let] = ACTIONS(4410), + [anon_sym_let_BANG] = ACTIONS(4408), + [anon_sym_null] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_AMP] = ACTIONS(4410), + [anon_sym_LBRACK] = ACTIONS(4410), + [anon_sym_LBRACK_PIPE] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4410), + [anon_sym_LBRACE_PIPE] = ACTIONS(4408), + [anon_sym_new] = ACTIONS(4410), + [anon_sym_return_BANG] = ACTIONS(4408), + [anon_sym_yield] = ACTIONS(4410), + [anon_sym_yield_BANG] = ACTIONS(4408), + [anon_sym_lazy] = ACTIONS(4410), + [anon_sym_assert] = ACTIONS(4410), + [anon_sym_upcast] = ACTIONS(4410), + [anon_sym_downcast] = ACTIONS(4410), + [anon_sym_LT_AT] = ACTIONS(4410), + [anon_sym_LT_AT_AT] = ACTIONS(4408), + [anon_sym_for] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_if] = ACTIONS(4410), + [anon_sym_fun] = ACTIONS(4410), + [anon_sym_try] = ACTIONS(4410), + [anon_sym_match] = ACTIONS(4410), + [anon_sym_match_BANG] = ACTIONS(4408), + [anon_sym_function] = ACTIONS(4410), + [anon_sym_use] = ACTIONS(4410), + [anon_sym_use_BANG] = ACTIONS(4408), + [anon_sym_do_BANG] = ACTIONS(4408), + [anon_sym_begin] = ACTIONS(4410), + [anon_sym_SQUOTE] = ACTIONS(4408), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4410), + [anon_sym_DQUOTE] = ACTIONS(4410), + [anon_sym_AT_DQUOTE] = ACTIONS(4408), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4408), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4408), + [sym_bool] = ACTIONS(4410), + [sym_unit] = ACTIONS(4408), + [aux_sym__identifier_or_op_token1] = ACTIONS(4408), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4410), + [anon_sym_PLUS] = ACTIONS(4410), + [anon_sym_DASH] = ACTIONS(4410), + [anon_sym_PLUS_DOT] = ACTIONS(4408), + [anon_sym_DASH_DOT] = ACTIONS(4408), + [anon_sym_PERCENT] = ACTIONS(4408), + [anon_sym_AMP_AMP] = ACTIONS(4408), + [anon_sym_TILDE] = ACTIONS(4408), + [aux_sym_prefix_op_token1] = ACTIONS(4408), + [sym_int] = ACTIONS(4410), + [sym_xint] = ACTIONS(4408), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), + [anon_sym_POUNDif] = ACTIONS(4408), + [sym__dedent] = ACTIONS(4408), }, [2504] = { [sym_xml_doc] = STATE(2504), [sym_block_comment] = STATE(2504), [sym_preproc_line] = STATE(2504), - [sym_identifier] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_as] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_LT_AT_AT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2577), - [aux_sym__identifier_or_op_token1] = ACTIONS(2577), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2577), - [anon_sym_DASH_DOT] = ACTIONS(2577), - [anon_sym_PERCENT] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), + [ts_builtin_sym_end] = ACTIONS(4534), + [sym_identifier] = ACTIONS(4536), + [anon_sym_namespace] = ACTIONS(4536), + [anon_sym_module] = ACTIONS(4536), + [anon_sym_POUNDnowarn] = ACTIONS(4534), + [anon_sym_POUNDr] = ACTIONS(4534), + [anon_sym_POUNDload] = ACTIONS(4534), + [anon_sym_open] = ACTIONS(4536), + [anon_sym_LBRACK_LT] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4536), + [anon_sym_type] = ACTIONS(4536), + [anon_sym_do] = ACTIONS(4536), + [anon_sym_let] = ACTIONS(4536), + [anon_sym_let_BANG] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_LBRACK_PIPE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_LBRACE_PIPE] = ACTIONS(4534), + [anon_sym_new] = ACTIONS(4536), + [anon_sym_return_BANG] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4536), + [anon_sym_yield_BANG] = ACTIONS(4534), + [anon_sym_lazy] = ACTIONS(4536), + [anon_sym_assert] = ACTIONS(4536), + [anon_sym_upcast] = ACTIONS(4536), + [anon_sym_downcast] = ACTIONS(4536), + [anon_sym_LT_AT] = ACTIONS(4536), + [anon_sym_LT_AT_AT] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4536), + [anon_sym_while] = ACTIONS(4536), + [anon_sym_if] = ACTIONS(4536), + [anon_sym_fun] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4536), + [anon_sym_match] = ACTIONS(4536), + [anon_sym_match_BANG] = ACTIONS(4534), + [anon_sym_function] = ACTIONS(4536), + [anon_sym_use] = ACTIONS(4536), + [anon_sym_use_BANG] = ACTIONS(4534), + [anon_sym_do_BANG] = ACTIONS(4534), + [anon_sym_begin] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [anon_sym_AT_DQUOTE] = ACTIONS(4534), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4534), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4534), + [sym_bool] = ACTIONS(4536), + [sym_unit] = ACTIONS(4534), + [aux_sym__identifier_or_op_token1] = ACTIONS(4534), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_PLUS_DOT] = ACTIONS(4534), + [anon_sym_DASH_DOT] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [aux_sym_prefix_op_token1] = ACTIONS(4534), + [sym_int] = ACTIONS(4536), + [sym_xint] = ACTIONS(4534), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), + [anon_sym_POUNDif] = ACTIONS(4534), }, [2505] = { [sym_xml_doc] = STATE(2505), [sym_block_comment] = STATE(2505), [sym_preproc_line] = STATE(2505), - [aux_sym_long_identifier_repeat1] = STATE(2511), - [sym_identifier] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_BANG] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACK_PIPE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACE_PIPE] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_return_BANG] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_yield_BANG] = ACTIONS(2475), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_upcast] = ACTIONS(2473), - [anon_sym_downcast] = ACTIONS(2473), - [anon_sym_LT_AT] = ACTIONS(2473), - [anon_sym_LT_AT_AT] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_fun] = ACTIONS(2473), - [anon_sym_DASH_GT] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_match_BANG] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_use_BANG] = ACTIONS(2475), - [anon_sym_do_BANG] = ACTIONS(2475), - [anon_sym_begin] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_AT_DQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2475), - [sym_bool] = ACTIONS(2473), - [sym_unit] = ACTIONS(2475), - [aux_sym__identifier_or_op_token1] = ACTIONS(2475), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_PLUS_DOT] = ACTIONS(2475), - [anon_sym_DASH_DOT] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [aux_sym_prefix_op_token1] = ACTIONS(2475), - [sym_int] = ACTIONS(2473), - [sym_xint] = ACTIONS(2475), + [sym_identifier] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_POUNDnowarn] = ACTIONS(4466), + [anon_sym_POUNDr] = ACTIONS(4466), + [anon_sym_POUNDload] = ACTIONS(4466), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_LBRACK_LT] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_and] = ACTIONS(4468), + [anon_sym_let] = ACTIONS(4468), + [anon_sym_let_BANG] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_LBRACK_PIPE] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_LBRACE_PIPE] = ACTIONS(4466), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_return_BANG] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4468), + [anon_sym_yield_BANG] = ACTIONS(4466), + [anon_sym_lazy] = ACTIONS(4468), + [anon_sym_assert] = ACTIONS(4468), + [anon_sym_upcast] = ACTIONS(4468), + [anon_sym_downcast] = ACTIONS(4468), + [anon_sym_LT_AT] = ACTIONS(4468), + [anon_sym_LT_AT_AT] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_match_BANG] = ACTIONS(4466), + [anon_sym_function] = ACTIONS(4468), + [anon_sym_use] = ACTIONS(4468), + [anon_sym_use_BANG] = ACTIONS(4466), + [anon_sym_do_BANG] = ACTIONS(4466), + [anon_sym_begin] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [anon_sym_AT_DQUOTE] = ACTIONS(4466), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4466), + [sym_bool] = ACTIONS(4468), + [sym_unit] = ACTIONS(4466), + [aux_sym__identifier_or_op_token1] = ACTIONS(4466), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS_DOT] = ACTIONS(4466), + [anon_sym_DASH_DOT] = ACTIONS(4466), + [anon_sym_PERCENT] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [aux_sym_prefix_op_token1] = ACTIONS(4466), + [sym_int] = ACTIONS(4468), + [sym_xint] = ACTIONS(4466), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2475), + [anon_sym_POUNDif] = ACTIONS(4466), + [sym__dedent] = ACTIONS(4466), }, [2506] = { [sym_xml_doc] = STATE(2506), [sym_block_comment] = STATE(2506), [sym_preproc_line] = STATE(2506), - [sym_identifier] = ACTIONS(2605), - [anon_sym_GT_RBRACK] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [ts_builtin_sym_end] = ACTIONS(4538), + [sym_identifier] = ACTIONS(4540), + [anon_sym_namespace] = ACTIONS(4540), + [anon_sym_module] = ACTIONS(4540), + [anon_sym_POUNDnowarn] = ACTIONS(4538), + [anon_sym_POUNDr] = ACTIONS(4538), + [anon_sym_POUNDload] = ACTIONS(4538), + [anon_sym_open] = ACTIONS(4540), + [anon_sym_LBRACK_LT] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4540), + [anon_sym_type] = ACTIONS(4540), + [anon_sym_do] = ACTIONS(4540), + [anon_sym_let] = ACTIONS(4540), + [anon_sym_let_BANG] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_PIPE] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_LBRACE_PIPE] = ACTIONS(4538), + [anon_sym_new] = ACTIONS(4540), + [anon_sym_return_BANG] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4540), + [anon_sym_yield_BANG] = ACTIONS(4538), + [anon_sym_lazy] = ACTIONS(4540), + [anon_sym_assert] = ACTIONS(4540), + [anon_sym_upcast] = ACTIONS(4540), + [anon_sym_downcast] = ACTIONS(4540), + [anon_sym_LT_AT] = ACTIONS(4540), + [anon_sym_LT_AT_AT] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4540), + [anon_sym_while] = ACTIONS(4540), + [anon_sym_if] = ACTIONS(4540), + [anon_sym_fun] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4540), + [anon_sym_match] = ACTIONS(4540), + [anon_sym_match_BANG] = ACTIONS(4538), + [anon_sym_function] = ACTIONS(4540), + [anon_sym_use] = ACTIONS(4540), + [anon_sym_use_BANG] = ACTIONS(4538), + [anon_sym_do_BANG] = ACTIONS(4538), + [anon_sym_begin] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_AT_DQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4538), + [sym_bool] = ACTIONS(4540), + [sym_unit] = ACTIONS(4538), + [aux_sym__identifier_or_op_token1] = ACTIONS(4538), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_PLUS_DOT] = ACTIONS(4538), + [anon_sym_DASH_DOT] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4538), + [aux_sym_prefix_op_token1] = ACTIONS(4538), + [sym_int] = ACTIONS(4540), + [sym_xint] = ACTIONS(4538), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(4538), }, [2507] = { [sym_xml_doc] = STATE(2507), [sym_block_comment] = STATE(2507), [sym_preproc_line] = STATE(2507), - [sym_identifier] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_as] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_LT_AT_AT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2573), - [aux_sym__identifier_or_op_token1] = ACTIONS(2573), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2573), - [anon_sym_DASH_DOT] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_POUNDnowarn] = ACTIONS(2968), + [anon_sym_POUNDr] = ACTIONS(2968), + [anon_sym_POUNDload] = ACTIONS(2968), + [anon_sym_open] = ACTIONS(2966), + [anon_sym_LBRACK_LT] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_LT_AT_AT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2968), + [aux_sym__identifier_or_op_token1] = ACTIONS(2968), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2968), + [anon_sym_DASH_DOT] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), + [anon_sym_POUNDif] = ACTIONS(2968), }, [2508] = { [sym_xml_doc] = STATE(2508), [sym_block_comment] = STATE(2508), [sym_preproc_line] = STATE(2508), - [sym_identifier] = ACTIONS(2620), - [anon_sym_GT_RBRACK] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_LT_AT_AT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(4447), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2622), - [aux_sym__identifier_or_op_token1] = ACTIONS(2622), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_POUNDnowarn] = ACTIONS(2950), + [anon_sym_POUNDr] = ACTIONS(2950), + [anon_sym_POUNDload] = ACTIONS(2950), + [anon_sym_open] = ACTIONS(2948), + [anon_sym_LBRACK_LT] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_LT_AT_AT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2950), + [aux_sym__identifier_or_op_token1] = ACTIONS(2950), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2950), + [anon_sym_DASH_DOT] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), + [anon_sym_POUNDif] = ACTIONS(2950), }, [2509] = { [sym_xml_doc] = STATE(2509), [sym_block_comment] = STATE(2509), [sym_preproc_line] = STATE(2509), - [sym_identifier] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_as] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_LT_AT_AT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2628), - [aux_sym__identifier_or_op_token1] = ACTIONS(2628), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2628), - [anon_sym_DASH_DOT] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), + [sym_identifier] = ACTIONS(4528), + [anon_sym_module] = ACTIONS(4528), + [anon_sym_POUNDnowarn] = ACTIONS(4526), + [anon_sym_POUNDr] = ACTIONS(4526), + [anon_sym_POUNDload] = ACTIONS(4526), + [anon_sym_open] = ACTIONS(4528), + [anon_sym_LBRACK_LT] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4528), + [anon_sym_type] = ACTIONS(4528), + [anon_sym_do] = ACTIONS(4528), + [anon_sym_let] = ACTIONS(4528), + [anon_sym_let_BANG] = ACTIONS(4526), + [anon_sym_null] = ACTIONS(4528), + [anon_sym_LPAREN] = ACTIONS(4528), + [anon_sym_AMP] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4528), + [anon_sym_LBRACK_PIPE] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4528), + [anon_sym_LBRACE_PIPE] = ACTIONS(4526), + [anon_sym_new] = ACTIONS(4528), + [anon_sym_return_BANG] = ACTIONS(4526), + [anon_sym_yield] = ACTIONS(4528), + [anon_sym_yield_BANG] = ACTIONS(4526), + [anon_sym_lazy] = ACTIONS(4528), + [anon_sym_assert] = ACTIONS(4528), + [anon_sym_upcast] = ACTIONS(4528), + [anon_sym_downcast] = ACTIONS(4528), + [anon_sym_LT_AT] = ACTIONS(4528), + [anon_sym_LT_AT_AT] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4528), + [anon_sym_while] = ACTIONS(4528), + [anon_sym_if] = ACTIONS(4528), + [anon_sym_fun] = ACTIONS(4528), + [anon_sym_try] = ACTIONS(4528), + [anon_sym_match] = ACTIONS(4528), + [anon_sym_match_BANG] = ACTIONS(4526), + [anon_sym_function] = ACTIONS(4528), + [anon_sym_use] = ACTIONS(4528), + [anon_sym_use_BANG] = ACTIONS(4526), + [anon_sym_do_BANG] = ACTIONS(4526), + [anon_sym_begin] = ACTIONS(4528), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4528), + [anon_sym_DQUOTE] = ACTIONS(4528), + [anon_sym_AT_DQUOTE] = ACTIONS(4526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4526), + [sym_bool] = ACTIONS(4528), + [sym_unit] = ACTIONS(4526), + [aux_sym__identifier_or_op_token1] = ACTIONS(4526), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4528), + [anon_sym_PLUS_DOT] = ACTIONS(4526), + [anon_sym_DASH_DOT] = ACTIONS(4526), + [anon_sym_PERCENT] = ACTIONS(4526), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [aux_sym_prefix_op_token1] = ACTIONS(4526), + [sym_int] = ACTIONS(4528), + [sym_xint] = ACTIONS(4526), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), + [anon_sym_POUNDif] = ACTIONS(4526), + [sym__dedent] = ACTIONS(4526), }, [2510] = { [sym_xml_doc] = STATE(2510), [sym_block_comment] = STATE(2510), [sym_preproc_line] = STATE(2510), - [sym_identifier] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_as] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2567), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_LT_AT_AT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2569), - [aux_sym__identifier_or_op_token1] = ACTIONS(2569), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2569), - [anon_sym_DASH_DOT] = ACTIONS(2569), - [anon_sym_PERCENT] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), + [sym_identifier] = ACTIONS(3139), + [anon_sym_module] = ACTIONS(3139), + [anon_sym_POUNDnowarn] = ACTIONS(3141), + [anon_sym_POUNDr] = ACTIONS(3141), + [anon_sym_POUNDload] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3139), + [anon_sym_LBRACK_LT] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_do] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_let_BANG] = ACTIONS(3141), + [anon_sym_null] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_LBRACK_PIPE] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_LBRACE_PIPE] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3139), + [anon_sym_return_BANG] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_yield_BANG] = ACTIONS(3141), + [anon_sym_lazy] = ACTIONS(3139), + [anon_sym_assert] = ACTIONS(3139), + [anon_sym_upcast] = ACTIONS(3139), + [anon_sym_downcast] = ACTIONS(3139), + [anon_sym_LT_AT] = ACTIONS(3139), + [anon_sym_LT_AT_AT] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_fun] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_match_BANG] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3139), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_use_BANG] = ACTIONS(3141), + [anon_sym_do_BANG] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_AT_DQUOTE] = ACTIONS(3141), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3141), + [sym_bool] = ACTIONS(3139), + [sym_unit] = ACTIONS(3141), + [aux_sym__identifier_or_op_token1] = ACTIONS(3141), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_PLUS_DOT] = ACTIONS(3141), + [anon_sym_DASH_DOT] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [aux_sym_prefix_op_token1] = ACTIONS(3141), + [sym_int] = ACTIONS(3139), + [sym_xint] = ACTIONS(3141), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), + [anon_sym_POUNDif] = ACTIONS(3141), + [sym__dedent] = ACTIONS(3141), }, [2511] = { [sym_xml_doc] = STATE(2511), [sym_block_comment] = STATE(2511), [sym_preproc_line] = STATE(2511), - [aux_sym_long_identifier_repeat1] = STATE(2494), - [sym_identifier] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_BANG] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LBRACE_PIPE] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_return_BANG] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2492), - [anon_sym_yield_BANG] = ACTIONS(2494), - [anon_sym_lazy] = ACTIONS(2492), - [anon_sym_assert] = ACTIONS(2492), - [anon_sym_upcast] = ACTIONS(2492), - [anon_sym_downcast] = ACTIONS(2492), - [anon_sym_LT_AT] = ACTIONS(2492), - [anon_sym_LT_AT_AT] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_fun] = ACTIONS(2492), - [anon_sym_DASH_GT] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_match_BANG] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2492), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_use_BANG] = ACTIONS(2494), - [anon_sym_do_BANG] = ACTIONS(2494), - [anon_sym_begin] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LT2] = ACTIONS(2492), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_AT_DQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2494), - [sym_bool] = ACTIONS(2492), - [sym_unit] = ACTIONS(2494), - [aux_sym__identifier_or_op_token1] = ACTIONS(2494), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS_DOT] = ACTIONS(2494), - [anon_sym_DASH_DOT] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [aux_sym_prefix_op_token1] = ACTIONS(2494), - [sym_int] = ACTIONS(2492), - [sym_xint] = ACTIONS(2494), + [sym_identifier] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_POUNDnowarn] = ACTIONS(3029), + [anon_sym_POUNDr] = ACTIONS(3029), + [anon_sym_POUNDload] = ACTIONS(3029), + [anon_sym_open] = ACTIONS(3027), + [anon_sym_LBRACK_LT] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_do] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_let_BANG] = ACTIONS(3029), + [anon_sym_null] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_LBRACK_PIPE] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_LBRACE_PIPE] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_return_BANG] = ACTIONS(3029), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_yield_BANG] = ACTIONS(3029), + [anon_sym_lazy] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_upcast] = ACTIONS(3027), + [anon_sym_downcast] = ACTIONS(3027), + [anon_sym_LT_AT] = ACTIONS(3027), + [anon_sym_LT_AT_AT] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_fun] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_match_BANG] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3027), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_use_BANG] = ACTIONS(3029), + [anon_sym_do_BANG] = ACTIONS(3029), + [anon_sym_begin] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_AT_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3029), + [sym_bool] = ACTIONS(3027), + [sym_unit] = ACTIONS(3029), + [aux_sym__identifier_or_op_token1] = ACTIONS(3029), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_PLUS_DOT] = ACTIONS(3029), + [anon_sym_DASH_DOT] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [aux_sym_prefix_op_token1] = ACTIONS(3029), + [sym_int] = ACTIONS(3027), + [sym_xint] = ACTIONS(3029), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2494), + [anon_sym_POUNDif] = ACTIONS(3029), + [sym__dedent] = ACTIONS(3029), }, [2512] = { [sym_xml_doc] = STATE(2512), [sym_block_comment] = STATE(2512), [sym_preproc_line] = STATE(2512), - [sym_identifier] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_as] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_LT_AT_AT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(4449), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2622), - [aux_sym__identifier_or_op_token1] = ACTIONS(2622), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_POUNDnowarn] = ACTIONS(2902), + [anon_sym_POUNDr] = ACTIONS(2902), + [anon_sym_POUNDload] = ACTIONS(2902), + [anon_sym_open] = ACTIONS(2900), + [anon_sym_LBRACK_LT] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_let_BANG] = ACTIONS(2902), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACK_PIPE] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_LBRACE_PIPE] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_return_BANG] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_yield_BANG] = ACTIONS(2902), + [anon_sym_lazy] = ACTIONS(2900), + [anon_sym_assert] = ACTIONS(2900), + [anon_sym_upcast] = ACTIONS(2900), + [anon_sym_downcast] = ACTIONS(2900), + [anon_sym_LT_AT] = ACTIONS(2900), + [anon_sym_LT_AT_AT] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_fun] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_match_BANG] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_use_BANG] = ACTIONS(2902), + [anon_sym_do_BANG] = ACTIONS(2902), + [anon_sym_begin] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_AT_DQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), + [sym_bool] = ACTIONS(2900), + [sym_unit] = ACTIONS(2902), + [aux_sym__identifier_or_op_token1] = ACTIONS(2902), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS_DOT] = ACTIONS(2902), + [anon_sym_DASH_DOT] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_prefix_op_token1] = ACTIONS(2902), + [sym_int] = ACTIONS(2900), + [sym_xint] = ACTIONS(2902), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), + [anon_sym_POUNDif] = ACTIONS(2902), + [sym__dedent] = ACTIONS(2902), }, [2513] = { [sym_xml_doc] = STATE(2513), [sym_block_comment] = STATE(2513), [sym_preproc_line] = STATE(2513), - [sym_identifier] = ACTIONS(2571), - [anon_sym_GT_RBRACK] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_LT_AT_AT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2573), - [aux_sym__identifier_or_op_token1] = ACTIONS(2573), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2573), - [anon_sym_DASH_DOT] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), + [sym_identifier] = ACTIONS(4540), + [anon_sym_module] = ACTIONS(4540), + [anon_sym_POUNDnowarn] = ACTIONS(4538), + [anon_sym_POUNDr] = ACTIONS(4538), + [anon_sym_POUNDload] = ACTIONS(4538), + [anon_sym_open] = ACTIONS(4540), + [anon_sym_LBRACK_LT] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4540), + [anon_sym_type] = ACTIONS(4540), + [anon_sym_do] = ACTIONS(4540), + [anon_sym_let] = ACTIONS(4540), + [anon_sym_let_BANG] = ACTIONS(4538), + [anon_sym_null] = ACTIONS(4540), + [anon_sym_LPAREN] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4540), + [anon_sym_LBRACK] = ACTIONS(4540), + [anon_sym_LBRACK_PIPE] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_LBRACE_PIPE] = ACTIONS(4538), + [anon_sym_new] = ACTIONS(4540), + [anon_sym_return_BANG] = ACTIONS(4538), + [anon_sym_yield] = ACTIONS(4540), + [anon_sym_yield_BANG] = ACTIONS(4538), + [anon_sym_lazy] = ACTIONS(4540), + [anon_sym_assert] = ACTIONS(4540), + [anon_sym_upcast] = ACTIONS(4540), + [anon_sym_downcast] = ACTIONS(4540), + [anon_sym_LT_AT] = ACTIONS(4540), + [anon_sym_LT_AT_AT] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4540), + [anon_sym_while] = ACTIONS(4540), + [anon_sym_if] = ACTIONS(4540), + [anon_sym_fun] = ACTIONS(4540), + [anon_sym_try] = ACTIONS(4540), + [anon_sym_match] = ACTIONS(4540), + [anon_sym_match_BANG] = ACTIONS(4538), + [anon_sym_function] = ACTIONS(4540), + [anon_sym_use] = ACTIONS(4540), + [anon_sym_use_BANG] = ACTIONS(4538), + [anon_sym_do_BANG] = ACTIONS(4538), + [anon_sym_begin] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [anon_sym_AT_DQUOTE] = ACTIONS(4538), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4538), + [sym_bool] = ACTIONS(4540), + [sym_unit] = ACTIONS(4538), + [aux_sym__identifier_or_op_token1] = ACTIONS(4538), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4540), + [anon_sym_PLUS] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_PLUS_DOT] = ACTIONS(4538), + [anon_sym_DASH_DOT] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4538), + [aux_sym_prefix_op_token1] = ACTIONS(4538), + [sym_int] = ACTIONS(4540), + [sym_xint] = ACTIONS(4538), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), + [anon_sym_POUNDif] = ACTIONS(4538), + [sym__dedent] = ACTIONS(4538), }, [2514] = { [sym_xml_doc] = STATE(2514), [sym_block_comment] = STATE(2514), [sym_preproc_line] = STATE(2514), - [sym_identifier] = ACTIONS(2626), - [anon_sym_GT_RBRACK] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_LT_AT_AT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2628), - [aux_sym__identifier_or_op_token1] = ACTIONS(2628), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2628), - [anon_sym_DASH_DOT] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), + [aux_sym_long_identifier_repeat1] = STATE(2518), + [sym_identifier] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_as] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), - [sym__newline] = ACTIONS(2628), + [anon_sym_POUNDif] = ACTIONS(2523), }, [2515] = { [sym_xml_doc] = STATE(2515), [sym_block_comment] = STATE(2515), [sym_preproc_line] = STATE(2515), - [sym_identifier] = ACTIONS(2587), - [anon_sym_GT_RBRACK] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_LBRACK_PIPE] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_LBRACE_PIPE] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_return_BANG] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_yield_BANG] = ACTIONS(2589), - [anon_sym_lazy] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_upcast] = ACTIONS(2587), - [anon_sym_downcast] = ACTIONS(2587), - [anon_sym_LT_AT] = ACTIONS(2587), - [anon_sym_LT_AT_AT] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_fun] = ACTIONS(2587), - [anon_sym_DASH_GT] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_match_BANG] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_use_BANG] = ACTIONS(2589), - [anon_sym_do_BANG] = ACTIONS(2589), - [anon_sym_begin] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2587), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_AT_DQUOTE] = ACTIONS(2589), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), - [sym_bool] = ACTIONS(2587), - [sym_unit] = ACTIONS(2589), - [aux_sym__identifier_or_op_token1] = ACTIONS(2589), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS_DOT] = ACTIONS(2589), - [anon_sym_DASH_DOT] = ACTIONS(2589), - [anon_sym_PERCENT] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_prefix_op_token1] = ACTIONS(2589), - [sym_int] = ACTIONS(2587), - [sym_xint] = ACTIONS(2589), + [sym_identifier] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_POUNDnowarn] = ACTIONS(3204), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3206), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_upcast] = ACTIONS(3206), + [anon_sym_downcast] = ACTIONS(3206), + [anon_sym_LT_AT] = ACTIONS(3206), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_fun] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_use] = ACTIONS(3206), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3206), + [sym_unit] = ACTIONS(3204), + [aux_sym__identifier_or_op_token1] = ACTIONS(3204), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3206), + [sym_xint] = ACTIONS(3204), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [2516] = { [sym_xml_doc] = STATE(2516), [sym_block_comment] = STATE(2516), [sym_preproc_line] = STATE(2516), - [sym_identifier] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_as] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_LT_AT_AT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2581), - [aux_sym__identifier_or_op_token1] = ACTIONS(2581), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2581), - [anon_sym_DASH_DOT] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), + [sym_identifier] = ACTIONS(4532), + [anon_sym_module] = ACTIONS(4532), + [anon_sym_POUNDnowarn] = ACTIONS(4530), + [anon_sym_POUNDr] = ACTIONS(4530), + [anon_sym_POUNDload] = ACTIONS(4530), + [anon_sym_open] = ACTIONS(4532), + [anon_sym_LBRACK_LT] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4532), + [anon_sym_type] = ACTIONS(4532), + [anon_sym_do] = ACTIONS(4532), + [anon_sym_let] = ACTIONS(4532), + [anon_sym_let_BANG] = ACTIONS(4530), + [anon_sym_null] = ACTIONS(4532), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_LBRACK_PIPE] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_LBRACE_PIPE] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4532), + [anon_sym_return_BANG] = ACTIONS(4530), + [anon_sym_yield] = ACTIONS(4532), + [anon_sym_yield_BANG] = ACTIONS(4530), + [anon_sym_lazy] = ACTIONS(4532), + [anon_sym_assert] = ACTIONS(4532), + [anon_sym_upcast] = ACTIONS(4532), + [anon_sym_downcast] = ACTIONS(4532), + [anon_sym_LT_AT] = ACTIONS(4532), + [anon_sym_LT_AT_AT] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4532), + [anon_sym_while] = ACTIONS(4532), + [anon_sym_if] = ACTIONS(4532), + [anon_sym_fun] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4532), + [anon_sym_match] = ACTIONS(4532), + [anon_sym_match_BANG] = ACTIONS(4530), + [anon_sym_function] = ACTIONS(4532), + [anon_sym_use] = ACTIONS(4532), + [anon_sym_use_BANG] = ACTIONS(4530), + [anon_sym_do_BANG] = ACTIONS(4530), + [anon_sym_begin] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [anon_sym_AT_DQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [sym_bool] = ACTIONS(4532), + [sym_unit] = ACTIONS(4530), + [aux_sym__identifier_or_op_token1] = ACTIONS(4530), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_PLUS_DOT] = ACTIONS(4530), + [anon_sym_DASH_DOT] = ACTIONS(4530), + [anon_sym_PERCENT] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [aux_sym_prefix_op_token1] = ACTIONS(4530), + [sym_int] = ACTIONS(4532), + [sym_xint] = ACTIONS(4530), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), + [anon_sym_POUNDif] = ACTIONS(4530), + [sym__dedent] = ACTIONS(4530), }, [2517] = { [sym_xml_doc] = STATE(2517), [sym_block_comment] = STATE(2517), [sym_preproc_line] = STATE(2517), - [sym_identifier] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_let_BANG] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACK_PIPE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_LBRACE_PIPE] = ACTIONS(2611), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_return_BANG] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_yield_BANG] = ACTIONS(2611), - [anon_sym_lazy] = ACTIONS(2609), - [anon_sym_assert] = ACTIONS(2609), - [anon_sym_upcast] = ACTIONS(2609), - [anon_sym_downcast] = ACTIONS(2609), - [anon_sym_LT_AT] = ACTIONS(2609), - [anon_sym_LT_AT_AT] = ACTIONS(2611), - [anon_sym_COLON_GT] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_fun] = ACTIONS(2609), - [anon_sym_DASH_GT] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_match_BANG] = ACTIONS(2611), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_use_BANG] = ACTIONS(2611), - [anon_sym_do_BANG] = ACTIONS(2611), - [anon_sym_begin] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [anon_sym_AT_DQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), - [sym_bool] = ACTIONS(2609), - [sym_unit] = ACTIONS(2611), - [aux_sym__identifier_or_op_token1] = ACTIONS(2611), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS_DOT] = ACTIONS(2611), - [anon_sym_DASH_DOT] = ACTIONS(2611), - [anon_sym_PERCENT] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [aux_sym_prefix_op_token1] = ACTIONS(2611), - [sym_int] = ACTIONS(2609), - [sym_xint] = ACTIONS(2611), + [sym_identifier] = ACTIONS(4500), + [anon_sym_module] = ACTIONS(4500), + [anon_sym_POUNDnowarn] = ACTIONS(4498), + [anon_sym_POUNDr] = ACTIONS(4498), + [anon_sym_POUNDload] = ACTIONS(4498), + [anon_sym_open] = ACTIONS(4500), + [anon_sym_LBRACK_LT] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_type] = ACTIONS(4500), + [anon_sym_do] = ACTIONS(4500), + [anon_sym_let] = ACTIONS(4500), + [anon_sym_let_BANG] = ACTIONS(4498), + [anon_sym_null] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_LBRACK_PIPE] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_LBRACE_PIPE] = ACTIONS(4498), + [anon_sym_new] = ACTIONS(4500), + [anon_sym_return_BANG] = ACTIONS(4498), + [anon_sym_yield] = ACTIONS(4500), + [anon_sym_yield_BANG] = ACTIONS(4498), + [anon_sym_lazy] = ACTIONS(4500), + [anon_sym_assert] = ACTIONS(4500), + [anon_sym_upcast] = ACTIONS(4500), + [anon_sym_downcast] = ACTIONS(4500), + [anon_sym_LT_AT] = ACTIONS(4500), + [anon_sym_LT_AT_AT] = ACTIONS(4498), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_while] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_fun] = ACTIONS(4500), + [anon_sym_try] = ACTIONS(4500), + [anon_sym_match] = ACTIONS(4500), + [anon_sym_match_BANG] = ACTIONS(4498), + [anon_sym_function] = ACTIONS(4500), + [anon_sym_use] = ACTIONS(4500), + [anon_sym_use_BANG] = ACTIONS(4498), + [anon_sym_do_BANG] = ACTIONS(4498), + [anon_sym_begin] = ACTIONS(4500), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(4500), + [anon_sym_AT_DQUOTE] = ACTIONS(4498), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4498), + [sym_bool] = ACTIONS(4500), + [sym_unit] = ACTIONS(4498), + [aux_sym__identifier_or_op_token1] = ACTIONS(4498), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_PLUS_DOT] = ACTIONS(4498), + [anon_sym_DASH_DOT] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [aux_sym_prefix_op_token1] = ACTIONS(4498), + [sym_int] = ACTIONS(4500), + [sym_xint] = ACTIONS(4498), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2611), + [anon_sym_POUNDif] = ACTIONS(4498), + [sym__dedent] = ACTIONS(4498), }, [2518] = { [sym_xml_doc] = STATE(2518), [sym_block_comment] = STATE(2518), [sym_preproc_line] = STATE(2518), - [aux_sym__compound_type_repeat1] = STATE(2518), - [sym_identifier] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_BANG] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACK_PIPE] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_LBRACE_PIPE] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_return_BANG] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_yield_BANG] = ACTIONS(2345), - [anon_sym_lazy] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_upcast] = ACTIONS(2343), - [anon_sym_downcast] = ACTIONS(2343), - [anon_sym_LT_AT] = ACTIONS(2343), - [anon_sym_LT_AT_AT] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_fun] = ACTIONS(2343), - [anon_sym_DASH_GT] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_match_BANG] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_use_BANG] = ACTIONS(2345), - [anon_sym_do_BANG] = ACTIONS(2345), - [anon_sym_begin] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [anon_sym_AT_DQUOTE] = ACTIONS(2345), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2345), - [sym_bool] = ACTIONS(2343), - [sym_unit] = ACTIONS(2345), - [aux_sym__identifier_or_op_token1] = ACTIONS(2345), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_PLUS_DOT] = ACTIONS(2345), - [anon_sym_DASH_DOT] = ACTIONS(2345), - [anon_sym_PERCENT] = ACTIONS(2345), - [anon_sym_AMP_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [aux_sym_prefix_op_token1] = ACTIONS(2345), - [sym_int] = ACTIONS(2343), - [sym_xint] = ACTIONS(2345), + [aux_sym_long_identifier_repeat1] = STATE(2530), + [sym_identifier] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_as] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(4542), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2345), + [anon_sym_POUNDif] = ACTIONS(2596), }, [2519] = { [sym_xml_doc] = STATE(2519), [sym_block_comment] = STATE(2519), [sym_preproc_line] = STATE(2519), - [sym_identifier] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_let_BANG] = ACTIONS(2603), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACK_PIPE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_LBRACE_PIPE] = ACTIONS(2603), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_return_BANG] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_yield_BANG] = ACTIONS(2603), - [anon_sym_lazy] = ACTIONS(2601), - [anon_sym_assert] = ACTIONS(2601), - [anon_sym_upcast] = ACTIONS(2601), - [anon_sym_downcast] = ACTIONS(2601), - [anon_sym_LT_AT] = ACTIONS(2601), - [anon_sym_LT_AT_AT] = ACTIONS(2603), - [anon_sym_COLON_GT] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_fun] = ACTIONS(2601), - [anon_sym_DASH_GT] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_match] = ACTIONS(2601), - [anon_sym_match_BANG] = ACTIONS(2603), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_use_BANG] = ACTIONS(2603), - [anon_sym_do_BANG] = ACTIONS(2603), - [anon_sym_begin] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [anon_sym_AT_DQUOTE] = ACTIONS(2603), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2603), - [sym_bool] = ACTIONS(2601), - [sym_unit] = ACTIONS(2603), - [aux_sym__identifier_or_op_token1] = ACTIONS(2603), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS_DOT] = ACTIONS(2603), - [anon_sym_DASH_DOT] = ACTIONS(2603), - [anon_sym_PERCENT] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [aux_sym_prefix_op_token1] = ACTIONS(2603), - [sym_int] = ACTIONS(2601), - [sym_xint] = ACTIONS(2603), + [sym_identifier] = ACTIONS(4536), + [anon_sym_module] = ACTIONS(4536), + [anon_sym_POUNDnowarn] = ACTIONS(4534), + [anon_sym_POUNDr] = ACTIONS(4534), + [anon_sym_POUNDload] = ACTIONS(4534), + [anon_sym_open] = ACTIONS(4536), + [anon_sym_LBRACK_LT] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4536), + [anon_sym_type] = ACTIONS(4536), + [anon_sym_do] = ACTIONS(4536), + [anon_sym_let] = ACTIONS(4536), + [anon_sym_let_BANG] = ACTIONS(4534), + [anon_sym_null] = ACTIONS(4536), + [anon_sym_LPAREN] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(4536), + [anon_sym_LBRACK_PIPE] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_LBRACE_PIPE] = ACTIONS(4534), + [anon_sym_new] = ACTIONS(4536), + [anon_sym_return_BANG] = ACTIONS(4534), + [anon_sym_yield] = ACTIONS(4536), + [anon_sym_yield_BANG] = ACTIONS(4534), + [anon_sym_lazy] = ACTIONS(4536), + [anon_sym_assert] = ACTIONS(4536), + [anon_sym_upcast] = ACTIONS(4536), + [anon_sym_downcast] = ACTIONS(4536), + [anon_sym_LT_AT] = ACTIONS(4536), + [anon_sym_LT_AT_AT] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4536), + [anon_sym_while] = ACTIONS(4536), + [anon_sym_if] = ACTIONS(4536), + [anon_sym_fun] = ACTIONS(4536), + [anon_sym_try] = ACTIONS(4536), + [anon_sym_match] = ACTIONS(4536), + [anon_sym_match_BANG] = ACTIONS(4534), + [anon_sym_function] = ACTIONS(4536), + [anon_sym_use] = ACTIONS(4536), + [anon_sym_use_BANG] = ACTIONS(4534), + [anon_sym_do_BANG] = ACTIONS(4534), + [anon_sym_begin] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4534), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [anon_sym_AT_DQUOTE] = ACTIONS(4534), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4534), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4534), + [sym_bool] = ACTIONS(4536), + [sym_unit] = ACTIONS(4534), + [aux_sym__identifier_or_op_token1] = ACTIONS(4534), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4536), + [anon_sym_PLUS_DOT] = ACTIONS(4534), + [anon_sym_DASH_DOT] = ACTIONS(4534), + [anon_sym_PERCENT] = ACTIONS(4534), + [anon_sym_AMP_AMP] = ACTIONS(4534), + [anon_sym_TILDE] = ACTIONS(4534), + [aux_sym_prefix_op_token1] = ACTIONS(4534), + [sym_int] = ACTIONS(4536), + [sym_xint] = ACTIONS(4534), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2603), + [anon_sym_POUNDif] = ACTIONS(4534), + [sym__dedent] = ACTIONS(4534), }, [2520] = { [sym_xml_doc] = STATE(2520), [sym_block_comment] = STATE(2520), [sym_preproc_line] = STATE(2520), - [sym_identifier] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_COLON_GT] = ACTIONS(4454), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [sym_identifier] = ACTIONS(4512), + [anon_sym_module] = ACTIONS(4512), + [anon_sym_POUNDnowarn] = ACTIONS(4510), + [anon_sym_POUNDr] = ACTIONS(4510), + [anon_sym_POUNDload] = ACTIONS(4510), + [anon_sym_open] = ACTIONS(4512), + [anon_sym_LBRACK_LT] = ACTIONS(4510), + [anon_sym_return] = ACTIONS(4512), + [anon_sym_type] = ACTIONS(4512), + [anon_sym_do] = ACTIONS(4512), + [anon_sym_let] = ACTIONS(4512), + [anon_sym_let_BANG] = ACTIONS(4510), + [anon_sym_null] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_LBRACK] = ACTIONS(4512), + [anon_sym_LBRACK_PIPE] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_LBRACE_PIPE] = ACTIONS(4510), + [anon_sym_new] = ACTIONS(4512), + [anon_sym_return_BANG] = ACTIONS(4510), + [anon_sym_yield] = ACTIONS(4512), + [anon_sym_yield_BANG] = ACTIONS(4510), + [anon_sym_lazy] = ACTIONS(4512), + [anon_sym_assert] = ACTIONS(4512), + [anon_sym_upcast] = ACTIONS(4512), + [anon_sym_downcast] = ACTIONS(4512), + [anon_sym_LT_AT] = ACTIONS(4512), + [anon_sym_LT_AT_AT] = ACTIONS(4510), + [anon_sym_for] = ACTIONS(4512), + [anon_sym_while] = ACTIONS(4512), + [anon_sym_if] = ACTIONS(4512), + [anon_sym_fun] = ACTIONS(4512), + [anon_sym_try] = ACTIONS(4512), + [anon_sym_match] = ACTIONS(4512), + [anon_sym_match_BANG] = ACTIONS(4510), + [anon_sym_function] = ACTIONS(4512), + [anon_sym_use] = ACTIONS(4512), + [anon_sym_use_BANG] = ACTIONS(4510), + [anon_sym_do_BANG] = ACTIONS(4510), + [anon_sym_begin] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4510), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [anon_sym_AT_DQUOTE] = ACTIONS(4510), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4510), + [sym_bool] = ACTIONS(4512), + [sym_unit] = ACTIONS(4510), + [aux_sym__identifier_or_op_token1] = ACTIONS(4510), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4512), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [anon_sym_PLUS_DOT] = ACTIONS(4510), + [anon_sym_DASH_DOT] = ACTIONS(4510), + [anon_sym_PERCENT] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4510), + [anon_sym_TILDE] = ACTIONS(4510), + [aux_sym_prefix_op_token1] = ACTIONS(4510), + [sym_int] = ACTIONS(4512), + [sym_xint] = ACTIONS(4510), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(4510), + [sym__dedent] = ACTIONS(4510), }, [2521] = { [sym_xml_doc] = STATE(2521), [sym_block_comment] = STATE(2521), [sym_preproc_line] = STATE(2521), - [sym_identifier] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_BANG] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_LBRACE_PIPE] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_return_BANG] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_yield_BANG] = ACTIONS(2485), - [anon_sym_lazy] = ACTIONS(2483), - [anon_sym_assert] = ACTIONS(2483), - [anon_sym_upcast] = ACTIONS(2483), - [anon_sym_downcast] = ACTIONS(2483), - [anon_sym_LT_AT] = ACTIONS(2483), - [anon_sym_LT_AT_AT] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_fun] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_match_BANG] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_use_BANG] = ACTIONS(2485), - [anon_sym_do_BANG] = ACTIONS(2485), - [anon_sym_begin] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LT2] = ACTIONS(2483), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_AT_DQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym_bool] = ACTIONS(2483), - [sym_unit] = ACTIONS(2485), - [aux_sym__identifier_or_op_token1] = ACTIONS(2485), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS_DOT] = ACTIONS(2485), - [anon_sym_DASH_DOT] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [aux_sym_prefix_op_token1] = ACTIONS(2485), - [sym_int] = ACTIONS(2483), - [sym_xint] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2966), + [anon_sym_module] = ACTIONS(2966), + [anon_sym_POUNDnowarn] = ACTIONS(2968), + [anon_sym_POUNDr] = ACTIONS(2968), + [anon_sym_POUNDload] = ACTIONS(2968), + [anon_sym_open] = ACTIONS(2966), + [anon_sym_LBRACK_LT] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_let_BANG] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_LBRACK_PIPE] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LBRACE_PIPE] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_return_BANG] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_yield_BANG] = ACTIONS(2968), + [anon_sym_lazy] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_upcast] = ACTIONS(2966), + [anon_sym_downcast] = ACTIONS(2966), + [anon_sym_LT_AT] = ACTIONS(2966), + [anon_sym_LT_AT_AT] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_fun] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_match_BANG] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_use_BANG] = ACTIONS(2968), + [anon_sym_do_BANG] = ACTIONS(2968), + [anon_sym_begin] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_AT_DQUOTE] = ACTIONS(2968), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), + [sym_bool] = ACTIONS(2966), + [sym_unit] = ACTIONS(2968), + [aux_sym__identifier_or_op_token1] = ACTIONS(2968), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_PLUS_DOT] = ACTIONS(2968), + [anon_sym_DASH_DOT] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [aux_sym_prefix_op_token1] = ACTIONS(2968), + [sym_int] = ACTIONS(2966), + [sym_xint] = ACTIONS(2968), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2485), + [anon_sym_POUNDif] = ACTIONS(2968), + [sym__dedent] = ACTIONS(2968), }, [2522] = { [sym_xml_doc] = STATE(2522), [sym_block_comment] = STATE(2522), [sym_preproc_line] = STATE(2522), - [aux_sym__compound_type_repeat1] = STATE(2518), - [sym_identifier] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_BANG] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_LBRACK_PIPE] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_LBRACE_PIPE] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_return_BANG] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_yield_BANG] = ACTIONS(2481), - [anon_sym_lazy] = ACTIONS(2479), - [anon_sym_assert] = ACTIONS(2479), - [anon_sym_upcast] = ACTIONS(2479), - [anon_sym_downcast] = ACTIONS(2479), - [anon_sym_LT_AT] = ACTIONS(2479), - [anon_sym_LT_AT_AT] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_fun] = ACTIONS(2479), - [anon_sym_DASH_GT] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_match_BANG] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_use_BANG] = ACTIONS(2481), - [anon_sym_do_BANG] = ACTIONS(2481), - [anon_sym_begin] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(2479), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_AT_DQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym_bool] = ACTIONS(2479), - [sym_unit] = ACTIONS(2481), - [aux_sym__identifier_or_op_token1] = ACTIONS(2481), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS_DOT] = ACTIONS(2481), - [anon_sym_DASH_DOT] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [aux_sym_prefix_op_token1] = ACTIONS(2481), - [sym_int] = ACTIONS(2479), - [sym_xint] = ACTIONS(2481), + [sym_identifier] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_POUNDnowarn] = ACTIONS(4490), + [anon_sym_POUNDr] = ACTIONS(4490), + [anon_sym_POUNDload] = ACTIONS(4490), + [anon_sym_open] = ACTIONS(4492), + [anon_sym_LBRACK_LT] = ACTIONS(4490), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_type] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_let] = ACTIONS(4492), + [anon_sym_let_BANG] = ACTIONS(4490), + [anon_sym_null] = ACTIONS(4492), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_LBRACK_PIPE] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_LBRACE_PIPE] = ACTIONS(4490), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_return_BANG] = ACTIONS(4490), + [anon_sym_yield] = ACTIONS(4492), + [anon_sym_yield_BANG] = ACTIONS(4490), + [anon_sym_lazy] = ACTIONS(4492), + [anon_sym_assert] = ACTIONS(4492), + [anon_sym_upcast] = ACTIONS(4492), + [anon_sym_downcast] = ACTIONS(4492), + [anon_sym_LT_AT] = ACTIONS(4492), + [anon_sym_LT_AT_AT] = ACTIONS(4490), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_fun] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_match] = ACTIONS(4492), + [anon_sym_match_BANG] = ACTIONS(4490), + [anon_sym_function] = ACTIONS(4492), + [anon_sym_use] = ACTIONS(4492), + [anon_sym_use_BANG] = ACTIONS(4490), + [anon_sym_do_BANG] = ACTIONS(4490), + [anon_sym_begin] = ACTIONS(4492), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4492), + [anon_sym_DQUOTE] = ACTIONS(4492), + [anon_sym_AT_DQUOTE] = ACTIONS(4490), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4490), + [sym_bool] = ACTIONS(4492), + [sym_unit] = ACTIONS(4490), + [aux_sym__identifier_or_op_token1] = ACTIONS(4490), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS_DOT] = ACTIONS(4490), + [anon_sym_DASH_DOT] = ACTIONS(4490), + [anon_sym_PERCENT] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [aux_sym_prefix_op_token1] = ACTIONS(4490), + [sym_int] = ACTIONS(4492), + [sym_xint] = ACTIONS(4490), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2481), + [anon_sym_POUNDif] = ACTIONS(4490), + [sym__dedent] = ACTIONS(4490), }, [2523] = { [sym_xml_doc] = STATE(2523), [sym_block_comment] = STATE(2523), [sym_preproc_line] = STATE(2523), - [sym_identifier] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_let_BANG] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_LBRACK_PIPE] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_LBRACE_PIPE] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_return_BANG] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_yield_BANG] = ACTIONS(2577), - [anon_sym_lazy] = ACTIONS(2575), - [anon_sym_assert] = ACTIONS(2575), - [anon_sym_upcast] = ACTIONS(2575), - [anon_sym_downcast] = ACTIONS(2575), - [anon_sym_LT_AT] = ACTIONS(2575), - [anon_sym_LT_AT_AT] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_fun] = ACTIONS(2575), - [anon_sym_DASH_GT] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_match_BANG] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_use_BANG] = ACTIONS(2577), - [anon_sym_do_BANG] = ACTIONS(2577), - [anon_sym_begin] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_AT_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2577), - [sym_bool] = ACTIONS(2575), - [sym_unit] = ACTIONS(2577), - [aux_sym__identifier_or_op_token1] = ACTIONS(2577), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_PLUS_DOT] = ACTIONS(2577), - [anon_sym_DASH_DOT] = ACTIONS(2577), - [anon_sym_PERCENT] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2577), - [aux_sym_prefix_op_token1] = ACTIONS(2577), - [sym_int] = ACTIONS(2575), - [sym_xint] = ACTIONS(2577), + [aux_sym_long_identifier_repeat1] = STATE(2525), + [sym_identifier] = ACTIONS(2517), + [anon_sym_GT_RBRACK] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2577), + [anon_sym_POUNDif] = ACTIONS(2523), + [sym__newline] = ACTIONS(2523), }, [2524] = { [sym_xml_doc] = STATE(2524), [sym_block_comment] = STATE(2524), [sym_preproc_line] = STATE(2524), - [sym_identifier] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_let_BANG] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACK_PIPE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_LBRACE_PIPE] = ACTIONS(2599), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_return_BANG] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_yield_BANG] = ACTIONS(2599), - [anon_sym_lazy] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_upcast] = ACTIONS(2597), - [anon_sym_downcast] = ACTIONS(2597), - [anon_sym_LT_AT] = ACTIONS(2597), - [anon_sym_LT_AT_AT] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_fun] = ACTIONS(2597), - [anon_sym_DASH_GT] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_match_BANG] = ACTIONS(2599), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_use_BANG] = ACTIONS(2599), - [anon_sym_do_BANG] = ACTIONS(2599), - [anon_sym_begin] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2597), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_AT_DQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2599), - [sym_bool] = ACTIONS(2597), - [sym_unit] = ACTIONS(2599), - [aux_sym__identifier_or_op_token1] = ACTIONS(2599), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_PLUS_DOT] = ACTIONS(2599), - [anon_sym_DASH_DOT] = ACTIONS(2599), - [anon_sym_PERCENT] = ACTIONS(2599), - [anon_sym_AMP_AMP] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [aux_sym_prefix_op_token1] = ACTIONS(2599), - [sym_int] = ACTIONS(2597), - [sym_xint] = ACTIONS(2599), + [sym_identifier] = ACTIONS(4522), + [anon_sym_module] = ACTIONS(4522), + [anon_sym_POUNDnowarn] = ACTIONS(4520), + [anon_sym_POUNDr] = ACTIONS(4520), + [anon_sym_POUNDload] = ACTIONS(4520), + [anon_sym_open] = ACTIONS(4522), + [anon_sym_LBRACK_LT] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_type] = ACTIONS(4522), + [anon_sym_do] = ACTIONS(4522), + [anon_sym_let] = ACTIONS(4522), + [anon_sym_let_BANG] = ACTIONS(4520), + [anon_sym_null] = ACTIONS(4522), + [anon_sym_LPAREN] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_LBRACK_PIPE] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_LBRACE_PIPE] = ACTIONS(4520), + [anon_sym_new] = ACTIONS(4522), + [anon_sym_return_BANG] = ACTIONS(4520), + [anon_sym_yield] = ACTIONS(4522), + [anon_sym_yield_BANG] = ACTIONS(4520), + [anon_sym_lazy] = ACTIONS(4522), + [anon_sym_assert] = ACTIONS(4522), + [anon_sym_upcast] = ACTIONS(4522), + [anon_sym_downcast] = ACTIONS(4522), + [anon_sym_LT_AT] = ACTIONS(4522), + [anon_sym_LT_AT_AT] = ACTIONS(4520), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_fun] = ACTIONS(4522), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_match] = ACTIONS(4522), + [anon_sym_match_BANG] = ACTIONS(4520), + [anon_sym_function] = ACTIONS(4522), + [anon_sym_use] = ACTIONS(4522), + [anon_sym_use_BANG] = ACTIONS(4520), + [anon_sym_do_BANG] = ACTIONS(4520), + [anon_sym_begin] = ACTIONS(4522), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4522), + [anon_sym_DQUOTE] = ACTIONS(4522), + [anon_sym_AT_DQUOTE] = ACTIONS(4520), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4520), + [sym_bool] = ACTIONS(4522), + [sym_unit] = ACTIONS(4520), + [aux_sym__identifier_or_op_token1] = ACTIONS(4520), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_PLUS_DOT] = ACTIONS(4520), + [anon_sym_DASH_DOT] = ACTIONS(4520), + [anon_sym_PERCENT] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [aux_sym_prefix_op_token1] = ACTIONS(4520), + [sym_int] = ACTIONS(4522), + [sym_xint] = ACTIONS(4520), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2599), + [anon_sym_POUNDif] = ACTIONS(4520), + [sym__dedent] = ACTIONS(4520), }, [2525] = { [sym_xml_doc] = STATE(2525), [sym_block_comment] = STATE(2525), [sym_preproc_line] = STATE(2525), - [sym_identifier] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_let_BANG] = ACTIONS(2622), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_LBRACE_PIPE] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_return_BANG] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_yield_BANG] = ACTIONS(2622), - [anon_sym_lazy] = ACTIONS(2620), - [anon_sym_assert] = ACTIONS(2620), - [anon_sym_upcast] = ACTIONS(2620), - [anon_sym_downcast] = ACTIONS(2620), - [anon_sym_LT_AT] = ACTIONS(2620), - [anon_sym_LT_AT_AT] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_fun] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_match_BANG] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_use_BANG] = ACTIONS(2622), - [anon_sym_do_BANG] = ACTIONS(2622), - [anon_sym_begin] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(4456), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_AT_DQUOTE] = ACTIONS(2622), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2622), - [sym_bool] = ACTIONS(2620), - [sym_unit] = ACTIONS(2622), - [aux_sym__identifier_or_op_token1] = ACTIONS(2622), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [aux_sym_prefix_op_token1] = ACTIONS(2622), - [sym_int] = ACTIONS(2620), - [sym_xint] = ACTIONS(2622), + [aux_sym_long_identifier_repeat1] = STATE(2531), + [sym_identifier] = ACTIONS(2594), + [anon_sym_GT_RBRACK] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(4544), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2622), + [anon_sym_POUNDif] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), }, [2526] = { [sym_xml_doc] = STATE(2526), [sym_block_comment] = STATE(2526), [sym_preproc_line] = STATE(2526), - [sym_identifier] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_do] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_let_BANG] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_LBRACK_PIPE] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_LBRACE_PIPE] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2579), - [anon_sym_return_BANG] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_yield_BANG] = ACTIONS(2581), - [anon_sym_lazy] = ACTIONS(2579), - [anon_sym_assert] = ACTIONS(2579), - [anon_sym_upcast] = ACTIONS(2579), - [anon_sym_downcast] = ACTIONS(2579), - [anon_sym_LT_AT] = ACTIONS(2579), - [anon_sym_LT_AT_AT] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_fun] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_match_BANG] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_use_BANG] = ACTIONS(2581), - [anon_sym_do_BANG] = ACTIONS(2581), - [anon_sym_begin] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2579), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_AT_DQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2581), - [sym_bool] = ACTIONS(2579), - [sym_unit] = ACTIONS(2581), - [aux_sym__identifier_or_op_token1] = ACTIONS(2581), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2579), - [anon_sym_PLUS_DOT] = ACTIONS(2581), - [anon_sym_DASH_DOT] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [aux_sym_prefix_op_token1] = ACTIONS(2581), - [sym_int] = ACTIONS(2579), - [sym_xint] = ACTIONS(2581), + [sym_identifier] = ACTIONS(4504), + [anon_sym_module] = ACTIONS(4504), + [anon_sym_POUNDnowarn] = ACTIONS(4502), + [anon_sym_POUNDr] = ACTIONS(4502), + [anon_sym_POUNDload] = ACTIONS(4502), + [anon_sym_open] = ACTIONS(4504), + [anon_sym_LBRACK_LT] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_do] = ACTIONS(4504), + [anon_sym_let] = ACTIONS(4504), + [anon_sym_let_BANG] = ACTIONS(4502), + [anon_sym_null] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_LBRACK_PIPE] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_LBRACE_PIPE] = ACTIONS(4502), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_return_BANG] = ACTIONS(4502), + [anon_sym_yield] = ACTIONS(4504), + [anon_sym_yield_BANG] = ACTIONS(4502), + [anon_sym_lazy] = ACTIONS(4504), + [anon_sym_assert] = ACTIONS(4504), + [anon_sym_upcast] = ACTIONS(4504), + [anon_sym_downcast] = ACTIONS(4504), + [anon_sym_LT_AT] = ACTIONS(4504), + [anon_sym_LT_AT_AT] = ACTIONS(4502), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_fun] = ACTIONS(4504), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_match_BANG] = ACTIONS(4502), + [anon_sym_function] = ACTIONS(4504), + [anon_sym_use] = ACTIONS(4504), + [anon_sym_use_BANG] = ACTIONS(4502), + [anon_sym_do_BANG] = ACTIONS(4502), + [anon_sym_begin] = ACTIONS(4504), + [anon_sym_SQUOTE] = ACTIONS(4502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4504), + [anon_sym_DQUOTE] = ACTIONS(4504), + [anon_sym_AT_DQUOTE] = ACTIONS(4502), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4502), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4502), + [sym_bool] = ACTIONS(4504), + [sym_unit] = ACTIONS(4502), + [aux_sym__identifier_or_op_token1] = ACTIONS(4502), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS_DOT] = ACTIONS(4502), + [anon_sym_DASH_DOT] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_AMP_AMP] = ACTIONS(4502), + [anon_sym_TILDE] = ACTIONS(4502), + [aux_sym_prefix_op_token1] = ACTIONS(4502), + [sym_int] = ACTIONS(4504), + [sym_xint] = ACTIONS(4502), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2581), + [anon_sym_POUNDif] = ACTIONS(4502), + [sym__dedent] = ACTIONS(4502), }, [2527] = { [sym_xml_doc] = STATE(2527), [sym_block_comment] = STATE(2527), [sym_preproc_line] = STATE(2527), - [sym_identifier] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_let] = ACTIONS(2605), - [anon_sym_let_BANG] = ACTIONS(2607), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACK_PIPE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_LBRACE_PIPE] = ACTIONS(2607), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_return_BANG] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_yield_BANG] = ACTIONS(2607), - [anon_sym_lazy] = ACTIONS(2605), - [anon_sym_assert] = ACTIONS(2605), - [anon_sym_upcast] = ACTIONS(2605), - [anon_sym_downcast] = ACTIONS(2605), - [anon_sym_LT_AT] = ACTIONS(2605), - [anon_sym_LT_AT_AT] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_fun] = ACTIONS(2605), - [anon_sym_DASH_GT] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2605), - [anon_sym_match_BANG] = ACTIONS(2607), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_use_BANG] = ACTIONS(2607), - [anon_sym_do_BANG] = ACTIONS(2607), - [anon_sym_begin] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [anon_sym_AT_DQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2607), - [sym_bool] = ACTIONS(2605), - [sym_unit] = ACTIONS(2607), - [aux_sym__identifier_or_op_token1] = ACTIONS(2607), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS_DOT] = ACTIONS(2607), - [anon_sym_DASH_DOT] = ACTIONS(2607), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [aux_sym_prefix_op_token1] = ACTIONS(2607), - [sym_int] = ACTIONS(2605), - [sym_xint] = ACTIONS(2607), + [sym_identifier] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_POUNDnowarn] = ACTIONS(1871), + [anon_sym_POUNDr] = ACTIONS(1871), + [anon_sym_POUNDload] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1873), + [anon_sym_LBRACK_LT] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_let_BANG] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LBRACK_PIPE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE_PIPE] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_return_BANG] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_yield_BANG] = ACTIONS(1871), + [anon_sym_lazy] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_upcast] = ACTIONS(1873), + [anon_sym_downcast] = ACTIONS(1873), + [anon_sym_LT_AT] = ACTIONS(1873), + [anon_sym_LT_AT_AT] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_fun] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_match_BANG] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_use_BANG] = ACTIONS(1871), + [anon_sym_do_BANG] = ACTIONS(1871), + [anon_sym_begin] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_AT_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [sym_bool] = ACTIONS(1873), + [sym_unit] = ACTIONS(1871), + [aux_sym__identifier_or_op_token1] = ACTIONS(1871), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_PLUS_DOT] = ACTIONS(1871), + [anon_sym_DASH_DOT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [aux_sym_prefix_op_token1] = ACTIONS(1871), + [sym_int] = ACTIONS(1873), + [sym_xint] = ACTIONS(1871), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2607), + [anon_sym_POUNDif] = ACTIONS(1871), + [sym__dedent] = ACTIONS(1871), }, [2528] = { [sym_xml_doc] = STATE(2528), [sym_block_comment] = STATE(2528), [sym_preproc_line] = STATE(2528), - [sym_identifier] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_let_BANG] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_POUNDnowarn] = ACTIONS(2950), + [anon_sym_POUNDr] = ACTIONS(2950), + [anon_sym_POUNDload] = ACTIONS(2950), + [anon_sym_open] = ACTIONS(2948), + [anon_sym_LBRACK_LT] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_let_BANG] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACK_PIPE] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_LBRACE_PIPE] = ACTIONS(2950), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_return_BANG] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_yield_BANG] = ACTIONS(2950), + [anon_sym_lazy] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_upcast] = ACTIONS(2948), + [anon_sym_downcast] = ACTIONS(2948), + [anon_sym_LT_AT] = ACTIONS(2948), + [anon_sym_LT_AT_AT] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_fun] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_match_BANG] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_use] = ACTIONS(2948), + [anon_sym_use_BANG] = ACTIONS(2950), + [anon_sym_do_BANG] = ACTIONS(2950), + [anon_sym_begin] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_AT_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2950), + [sym_bool] = ACTIONS(2948), + [sym_unit] = ACTIONS(2950), + [aux_sym__identifier_or_op_token1] = ACTIONS(2950), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS_DOT] = ACTIONS(2950), + [anon_sym_DASH_DOT] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_prefix_op_token1] = ACTIONS(2950), + [sym_int] = ACTIONS(2948), + [sym_xint] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2950), + [sym__dedent] = ACTIONS(2950), + }, + [2529] = { + [sym_xml_doc] = STATE(2529), + [sym_block_comment] = STATE(2529), + [sym_preproc_line] = STATE(2529), + [sym_identifier] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_POUNDnowarn] = ACTIONS(287), + [anon_sym_POUNDr] = ACTIONS(287), + [anon_sym_POUNDload] = ACTIONS(287), + [anon_sym_open] = ACTIONS(289), + [anon_sym_LBRACK_LT] = ACTIONS(287), + [anon_sym_return] = ACTIONS(289), + [anon_sym_type] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_BANG] = ACTIONS(287), + [anon_sym_null] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(289), + [anon_sym_LBRACK_PIPE] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(289), + [anon_sym_LBRACE_PIPE] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_return_BANG] = ACTIONS(287), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_yield_BANG] = ACTIONS(287), + [anon_sym_lazy] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_upcast] = ACTIONS(289), + [anon_sym_downcast] = ACTIONS(289), + [anon_sym_LT_AT] = ACTIONS(289), + [anon_sym_LT_AT_AT] = ACTIONS(287), + [anon_sym_for] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_fun] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_match_BANG] = ACTIONS(287), + [anon_sym_function] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_use_BANG] = ACTIONS(287), + [anon_sym_do_BANG] = ACTIONS(287), + [anon_sym_begin] = ACTIONS(289), + [anon_sym_SQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_AT_DQUOTE] = ACTIONS(287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_bool] = ACTIONS(289), + [sym_unit] = ACTIONS(287), + [aux_sym__identifier_or_op_token1] = ACTIONS(287), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_PLUS_DOT] = ACTIONS(287), + [anon_sym_DASH_DOT] = ACTIONS(287), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(287), + [aux_sym_prefix_op_token1] = ACTIONS(287), + [sym_int] = ACTIONS(289), + [sym_xint] = ACTIONS(287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(287), + [sym__dedent] = ACTIONS(287), + }, + [2530] = { + [sym_xml_doc] = STATE(2530), + [sym_block_comment] = STATE(2530), + [sym_preproc_line] = STATE(2530), + [aux_sym_long_identifier_repeat1] = STATE(2530), + [sym_identifier] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + }, + [2531] = { + [sym_xml_doc] = STATE(2531), + [sym_block_comment] = STATE(2531), + [sym_preproc_line] = STATE(2531), + [aux_sym_long_identifier_repeat1] = STATE(2531), + [sym_identifier] = ACTIONS(2603), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [2532] = { + [sym_xml_doc] = STATE(2532), + [sym_block_comment] = STATE(2532), + [sym_preproc_line] = STATE(2532), + [sym_identifier] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_POUNDnowarn] = ACTIONS(4494), + [anon_sym_POUNDr] = ACTIONS(4494), + [anon_sym_POUNDload] = ACTIONS(4494), + [anon_sym_open] = ACTIONS(4496), + [anon_sym_LBRACK_LT] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_let] = ACTIONS(4496), + [anon_sym_let_BANG] = ACTIONS(4494), + [anon_sym_null] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_LBRACK_PIPE] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_LBRACE_PIPE] = ACTIONS(4494), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_return_BANG] = ACTIONS(4494), + [anon_sym_yield] = ACTIONS(4496), + [anon_sym_yield_BANG] = ACTIONS(4494), + [anon_sym_lazy] = ACTIONS(4496), + [anon_sym_assert] = ACTIONS(4496), + [anon_sym_upcast] = ACTIONS(4496), + [anon_sym_downcast] = ACTIONS(4496), + [anon_sym_LT_AT] = ACTIONS(4496), + [anon_sym_LT_AT_AT] = ACTIONS(4494), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_fun] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_match_BANG] = ACTIONS(4494), + [anon_sym_function] = ACTIONS(4496), + [anon_sym_use] = ACTIONS(4496), + [anon_sym_use_BANG] = ACTIONS(4494), + [anon_sym_do_BANG] = ACTIONS(4494), + [anon_sym_begin] = ACTIONS(4496), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4496), + [anon_sym_DQUOTE] = ACTIONS(4496), + [anon_sym_AT_DQUOTE] = ACTIONS(4494), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4494), + [sym_bool] = ACTIONS(4496), + [sym_unit] = ACTIONS(4494), + [aux_sym__identifier_or_op_token1] = ACTIONS(4494), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS_DOT] = ACTIONS(4494), + [anon_sym_DASH_DOT] = ACTIONS(4494), + [anon_sym_PERCENT] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [aux_sym_prefix_op_token1] = ACTIONS(4494), + [sym_int] = ACTIONS(4496), + [sym_xint] = ACTIONS(4494), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4494), + [sym__dedent] = ACTIONS(4494), + }, + [2533] = { + [sym_xml_doc] = STATE(2533), + [sym_block_comment] = STATE(2533), + [sym_preproc_line] = STATE(2533), + [sym_identifier] = ACTIONS(4532), + [anon_sym_module] = ACTIONS(4532), + [anon_sym_POUNDnowarn] = ACTIONS(4530), + [anon_sym_POUNDr] = ACTIONS(4530), + [anon_sym_POUNDload] = ACTIONS(4530), + [anon_sym_open] = ACTIONS(4532), + [anon_sym_LBRACK_LT] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4532), + [anon_sym_type] = ACTIONS(4532), + [anon_sym_do] = ACTIONS(4532), + [anon_sym_let] = ACTIONS(4532), + [anon_sym_let_BANG] = ACTIONS(4530), + [anon_sym_null] = ACTIONS(4532), + [anon_sym_LPAREN] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4532), + [anon_sym_LBRACK] = ACTIONS(4532), + [anon_sym_LBRACK_PIPE] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_LBRACE_PIPE] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4532), + [anon_sym_return_BANG] = ACTIONS(4530), + [anon_sym_yield] = ACTIONS(4532), + [anon_sym_yield_BANG] = ACTIONS(4530), + [anon_sym_lazy] = ACTIONS(4532), + [anon_sym_assert] = ACTIONS(4532), + [anon_sym_upcast] = ACTIONS(4532), + [anon_sym_downcast] = ACTIONS(4532), + [anon_sym_LT_AT] = ACTIONS(4532), + [anon_sym_LT_AT_AT] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4532), + [anon_sym_while] = ACTIONS(4532), + [anon_sym_if] = ACTIONS(4532), + [anon_sym_fun] = ACTIONS(4532), + [anon_sym_try] = ACTIONS(4532), + [anon_sym_match] = ACTIONS(4532), + [anon_sym_match_BANG] = ACTIONS(4530), + [anon_sym_function] = ACTIONS(4532), + [anon_sym_use] = ACTIONS(4532), + [anon_sym_use_BANG] = ACTIONS(4530), + [anon_sym_do_BANG] = ACTIONS(4530), + [anon_sym_begin] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [anon_sym_AT_DQUOTE] = ACTIONS(4530), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4530), + [sym_bool] = ACTIONS(4532), + [sym_unit] = ACTIONS(4530), + [aux_sym__identifier_or_op_token1] = ACTIONS(4530), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(4532), + [anon_sym_PLUS] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4532), + [anon_sym_PLUS_DOT] = ACTIONS(4530), + [anon_sym_DASH_DOT] = ACTIONS(4530), + [anon_sym_PERCENT] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_TILDE] = ACTIONS(4530), + [aux_sym_prefix_op_token1] = ACTIONS(4530), + [sym_int] = ACTIONS(4532), + [sym_xint] = ACTIONS(4530), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(4530), + [sym__dedent] = ACTIONS(4530), + }, + [2534] = { + [sym_xml_doc] = STATE(2534), + [sym_block_comment] = STATE(2534), + [sym_preproc_line] = STATE(2534), + [sym_identifier] = ACTIONS(2658), + [anon_sym_GT_RBRACK] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(4552), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [2535] = { + [sym_xml_doc] = STATE(2535), + [sym_block_comment] = STATE(2535), + [sym_preproc_line] = STATE(2535), + [aux_sym__compound_type_repeat1] = STATE(2535), + [sym_identifier] = ACTIONS(2319), + [anon_sym_GT_RBRACK] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(4554), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + [sym__newline] = ACTIONS(2321), + }, + [2536] = { + [sym_xml_doc] = STATE(2536), + [sym_block_comment] = STATE(2536), + [sym_preproc_line] = STATE(2536), + [sym_identifier] = ACTIONS(2603), + [anon_sym_GT_RBRACK] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + [sym__newline] = ACTIONS(2605), + }, + [2537] = { + [sym_xml_doc] = STATE(2537), + [sym_block_comment] = STATE(2537), + [sym_preproc_line] = STATE(2537), + [aux_sym__compound_type_repeat1] = STATE(2538), + [sym_identifier] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), [anon_sym_null] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), [anon_sym_LPAREN] = ACTIONS(2587), [anon_sym_AMP] = ACTIONS(2587), [anon_sym_LBRACK] = ACTIONS(2587), [anon_sym_LBRACK_PIPE] = ACTIONS(2589), [anon_sym_LBRACE] = ACTIONS(2587), [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_with] = ACTIONS(2587), [anon_sym_new] = ACTIONS(2587), [anon_sym_return_BANG] = ACTIONS(2589), [anon_sym_yield] = ACTIONS(2587), @@ -285683,7 +284817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(2589), [anon_sym_do_BANG] = ACTIONS(2589), [anon_sym_begin] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(1895), [anon_sym_LT2] = ACTIONS(2587), [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), [anon_sym_SQUOTE] = ACTIONS(2589), @@ -285712,350 +284846,4576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(9), [anon_sym_POUNDif] = ACTIONS(2589), }, - [2529] = { - [sym_xml_doc] = STATE(2529), - [sym_block_comment] = STATE(2529), - [sym_preproc_line] = STATE(2529), - [sym_identifier] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_let_BANG] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_LBRACK_PIPE] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_LBRACE_PIPE] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_return_BANG] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_yield_BANG] = ACTIONS(2573), - [anon_sym_lazy] = ACTIONS(2571), - [anon_sym_assert] = ACTIONS(2571), - [anon_sym_upcast] = ACTIONS(2571), - [anon_sym_downcast] = ACTIONS(2571), - [anon_sym_LT_AT] = ACTIONS(2571), - [anon_sym_LT_AT_AT] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_fun] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_match_BANG] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_use_BANG] = ACTIONS(2573), - [anon_sym_do_BANG] = ACTIONS(2573), - [anon_sym_begin] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2571), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_AT_DQUOTE] = ACTIONS(2573), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2573), - [sym_bool] = ACTIONS(2571), - [sym_unit] = ACTIONS(2573), - [aux_sym__identifier_or_op_token1] = ACTIONS(2573), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS_DOT] = ACTIONS(2573), - [anon_sym_DASH_DOT] = ACTIONS(2573), - [anon_sym_PERCENT] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [aux_sym_prefix_op_token1] = ACTIONS(2573), - [sym_int] = ACTIONS(2571), - [sym_xint] = ACTIONS(2573), + [2538] = { + [sym_xml_doc] = STATE(2538), + [sym_block_comment] = STATE(2538), + [sym_preproc_line] = STATE(2538), + [aux_sym__compound_type_repeat1] = STATE(2538), + [sym_identifier] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_as] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(4557), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + }, + [2539] = { + [sym_type_arguments] = STATE(2590), + [sym_long_identifier] = STATE(2589), + [sym_xml_doc] = STATE(2539), + [sym_block_comment] = STATE(2539), + [sym_preproc_line] = STATE(2539), + [aux_sym__compound_type_repeat1] = STATE(2579), + [sym_identifier] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_BANG] = ACTIONS(2375), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACK_PIPE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_LBRACE_PIPE] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_return_BANG] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_yield_BANG] = ACTIONS(2375), + [anon_sym_lazy] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_upcast] = ACTIONS(2373), + [anon_sym_downcast] = ACTIONS(2373), + [anon_sym_LT_AT] = ACTIONS(2373), + [anon_sym_LT_AT_AT] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_fun] = ACTIONS(2373), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_match_BANG] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_use_BANG] = ACTIONS(2375), + [anon_sym_do_BANG] = ACTIONS(2375), + [anon_sym_begin] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_AT_DQUOTE] = ACTIONS(2375), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2375), + [sym_bool] = ACTIONS(2373), + [sym_unit] = ACTIONS(2375), + [aux_sym__identifier_or_op_token1] = ACTIONS(2375), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_PLUS_DOT] = ACTIONS(2375), + [anon_sym_DASH_DOT] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_AMP_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [aux_sym_prefix_op_token1] = ACTIONS(2375), + [sym_int] = ACTIONS(2373), + [sym_xint] = ACTIONS(2375), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2375), + }, + [2540] = { + [sym_type_arguments] = STATE(2590), + [sym_long_identifier] = STATE(2589), + [sym_xml_doc] = STATE(2540), + [sym_block_comment] = STATE(2540), + [sym_preproc_line] = STATE(2540), + [aux_sym__compound_type_repeat1] = STATE(2579), + [sym_identifier] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + }, + [2541] = { + [sym_xml_doc] = STATE(2541), + [sym_block_comment] = STATE(2541), + [sym_preproc_line] = STATE(2541), + [sym_identifier] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_as] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_LT_AT_AT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2650), + [aux_sym__identifier_or_op_token1] = ACTIONS(2650), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2650), + [anon_sym_DASH_DOT] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_AMP_AMP] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + }, + [2542] = { + [sym_xml_doc] = STATE(2542), + [sym_block_comment] = STATE(2542), + [sym_preproc_line] = STATE(2542), + [sym_identifier] = ACTIONS(2644), + [anon_sym_GT_RBRACK] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_LT_AT_AT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2646), + [aux_sym__identifier_or_op_token1] = ACTIONS(2646), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2646), + [anon_sym_DASH_DOT] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + }, + [2543] = { + [sym_xml_doc] = STATE(2543), + [sym_block_comment] = STATE(2543), + [sym_preproc_line] = STATE(2543), + [sym_identifier] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_as] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_LT_AT_AT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2646), + [aux_sym__identifier_or_op_token1] = ACTIONS(2646), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2646), + [anon_sym_DASH_DOT] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + }, + [2544] = { + [sym_xml_doc] = STATE(2544), + [sym_block_comment] = STATE(2544), + [sym_preproc_line] = STATE(2544), + [sym_identifier] = ACTIONS(2648), + [anon_sym_GT_RBRACK] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_LT_AT_AT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2650), + [aux_sym__identifier_or_op_token1] = ACTIONS(2650), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2650), + [anon_sym_DASH_DOT] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_AMP_AMP] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + [sym__newline] = ACTIONS(2650), + }, + [2545] = { + [sym_xml_doc] = STATE(2545), + [sym_block_comment] = STATE(2545), + [sym_preproc_line] = STATE(2545), + [sym_identifier] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(4562), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + }, + [2546] = { + [sym_type_arguments] = STATE(2590), + [sym_long_identifier] = STATE(2589), + [sym_xml_doc] = STATE(2546), + [sym_block_comment] = STATE(2546), + [sym_preproc_line] = STATE(2546), + [aux_sym__compound_type_repeat1] = STATE(2579), + [sym_identifier] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_BANG] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_LBRACK_PIPE] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_return_BANG] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_yield_BANG] = ACTIONS(2361), + [anon_sym_lazy] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_upcast] = ACTIONS(2363), + [anon_sym_downcast] = ACTIONS(2363), + [anon_sym_LT_AT] = ACTIONS(2363), + [anon_sym_LT_AT_AT] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_fun] = ACTIONS(2363), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_match_BANG] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_use_BANG] = ACTIONS(2361), + [anon_sym_do_BANG] = ACTIONS(2361), + [anon_sym_begin] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_AT_DQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2361), + [sym_bool] = ACTIONS(2363), + [sym_unit] = ACTIONS(2361), + [aux_sym__identifier_or_op_token1] = ACTIONS(2361), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS_DOT] = ACTIONS(2361), + [anon_sym_DASH_DOT] = ACTIONS(2361), + [anon_sym_PERCENT] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [aux_sym_prefix_op_token1] = ACTIONS(2361), + [sym_int] = ACTIONS(2363), + [sym_xint] = ACTIONS(2361), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2573), + [anon_sym_POUNDif] = ACTIONS(2361), }, - [2530] = { - [sym_xml_doc] = STATE(2530), - [sym_block_comment] = STATE(2530), - [sym_preproc_line] = STATE(2530), - [sym_identifier] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_let_BANG] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_LBRACK_PIPE] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_LBRACE_PIPE] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_return_BANG] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_yield_BANG] = ACTIONS(2585), - [anon_sym_lazy] = ACTIONS(2583), - [anon_sym_assert] = ACTIONS(2583), - [anon_sym_upcast] = ACTIONS(2583), - [anon_sym_downcast] = ACTIONS(2583), - [anon_sym_LT_AT] = ACTIONS(2583), - [anon_sym_LT_AT_AT] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_fun] = ACTIONS(2583), - [anon_sym_DASH_GT] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_match_BANG] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_use_BANG] = ACTIONS(2585), - [anon_sym_do_BANG] = ACTIONS(2585), - [anon_sym_begin] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_AT_DQUOTE] = ACTIONS(2585), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2585), - [sym_bool] = ACTIONS(2583), - [sym_unit] = ACTIONS(2585), - [aux_sym__identifier_or_op_token1] = ACTIONS(2585), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS_DOT] = ACTIONS(2585), - [anon_sym_DASH_DOT] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [aux_sym_prefix_op_token1] = ACTIONS(2585), - [sym_int] = ACTIONS(2583), - [sym_xint] = ACTIONS(2585), + [2547] = { + [sym_xml_doc] = STATE(2547), + [sym_block_comment] = STATE(2547), + [sym_preproc_line] = STATE(2547), + [sym_identifier] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_as] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2585), + [anon_sym_POUNDif] = ACTIONS(2605), }, - [2531] = { - [sym_xml_doc] = STATE(2531), - [sym_block_comment] = STATE(2531), - [sym_preproc_line] = STATE(2531), - [sym_identifier] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_let_BANG] = ACTIONS(2628), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LBRACE_PIPE] = ACTIONS(2628), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_return_BANG] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_yield_BANG] = ACTIONS(2628), - [anon_sym_lazy] = ACTIONS(2626), - [anon_sym_assert] = ACTIONS(2626), - [anon_sym_upcast] = ACTIONS(2626), - [anon_sym_downcast] = ACTIONS(2626), - [anon_sym_LT_AT] = ACTIONS(2626), - [anon_sym_LT_AT_AT] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_fun] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_match_BANG] = ACTIONS(2628), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_use_BANG] = ACTIONS(2628), - [anon_sym_do_BANG] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LT2] = ACTIONS(2626), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2626), - [anon_sym_AT_DQUOTE] = ACTIONS(2628), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2628), - [sym_bool] = ACTIONS(2626), - [sym_unit] = ACTIONS(2628), - [aux_sym__identifier_or_op_token1] = ACTIONS(2628), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_PLUS_DOT] = ACTIONS(2628), - [anon_sym_DASH_DOT] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_AMP_AMP] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [aux_sym_prefix_op_token1] = ACTIONS(2628), - [sym_int] = ACTIONS(2626), - [sym_xint] = ACTIONS(2628), + [2548] = { + [sym_xml_doc] = STATE(2548), + [sym_block_comment] = STATE(2548), + [sym_preproc_line] = STATE(2548), + [aux_sym__compound_type_repeat1] = STATE(2535), + [sym_identifier] = ACTIONS(2587), + [anon_sym_GT_RBRACK] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_LT_AT_AT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2589), + [aux_sym__identifier_or_op_token1] = ACTIONS(2589), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2589), + [anon_sym_DASH_DOT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2628), + [anon_sym_POUNDif] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), }, - [2532] = { - [sym_xml_doc] = STATE(2532), - [sym_block_comment] = STATE(2532), - [sym_preproc_line] = STATE(2532), - [sym_identifier] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_let_BANG] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2567), - [anon_sym_LBRACK] = ACTIONS(2567), - [anon_sym_LBRACK_PIPE] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_LBRACE_PIPE] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2567), - [anon_sym_return_BANG] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_yield_BANG] = ACTIONS(2569), - [anon_sym_lazy] = ACTIONS(2567), - [anon_sym_assert] = ACTIONS(2567), - [anon_sym_upcast] = ACTIONS(2567), - [anon_sym_downcast] = ACTIONS(2567), - [anon_sym_LT_AT] = ACTIONS(2567), - [anon_sym_LT_AT_AT] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_fun] = ACTIONS(2567), - [anon_sym_DASH_GT] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_match_BANG] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_use_BANG] = ACTIONS(2569), - [anon_sym_do_BANG] = ACTIONS(2569), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_LT2] = ACTIONS(2567), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_AT_DQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2569), - [sym_bool] = ACTIONS(2567), - [sym_unit] = ACTIONS(2569), - [aux_sym__identifier_or_op_token1] = ACTIONS(2569), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2567), - [anon_sym_PLUS_DOT] = ACTIONS(2569), - [anon_sym_DASH_DOT] = ACTIONS(2569), - [anon_sym_PERCENT] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [aux_sym_prefix_op_token1] = ACTIONS(2569), - [sym_int] = ACTIONS(2567), - [sym_xint] = ACTIONS(2569), + [2549] = { + [sym_type_arguments] = STATE(2590), + [sym_long_identifier] = STATE(2589), + [sym_xml_doc] = STATE(2549), + [sym_block_comment] = STATE(2549), + [sym_preproc_line] = STATE(2549), + [aux_sym__compound_type_repeat1] = STATE(2579), + [sym_identifier] = ACTIONS(4560), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_BANG] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_LBRACK_PIPE] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LBRACE_PIPE] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_return_BANG] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_yield_BANG] = ACTIONS(2409), + [anon_sym_lazy] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_upcast] = ACTIONS(2411), + [anon_sym_downcast] = ACTIONS(2411), + [anon_sym_LT_AT] = ACTIONS(2411), + [anon_sym_LT_AT_AT] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_fun] = ACTIONS(2411), + [anon_sym_DASH_GT] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_match_BANG] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_use_BANG] = ACTIONS(2409), + [anon_sym_do_BANG] = ACTIONS(2409), + [anon_sym_begin] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [anon_sym_AT_DQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2409), + [sym_bool] = ACTIONS(2411), + [sym_unit] = ACTIONS(2409), + [aux_sym__identifier_or_op_token1] = ACTIONS(2409), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS_DOT] = ACTIONS(2409), + [anon_sym_DASH_DOT] = ACTIONS(2409), + [anon_sym_PERCENT] = ACTIONS(2409), + [anon_sym_AMP_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [aux_sym_prefix_op_token1] = ACTIONS(2409), + [sym_int] = ACTIONS(2411), + [sym_xint] = ACTIONS(2409), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2409), + }, + [2550] = { + [sym_xml_doc] = STATE(2550), + [sym_block_comment] = STATE(2550), + [sym_preproc_line] = STATE(2550), + [sym_identifier] = ACTIONS(2685), + [anon_sym_GT_RBRACK] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_LT_AT_AT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2687), + [aux_sym__identifier_or_op_token1] = ACTIONS(2687), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2687), + [anon_sym_DASH_DOT] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + }, + [2551] = { + [sym_xml_doc] = STATE(2551), + [sym_block_comment] = STATE(2551), + [sym_preproc_line] = STATE(2551), + [sym_identifier] = ACTIONS(2662), + [anon_sym_GT_RBRACK] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_LT_AT_AT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2664), + [aux_sym__identifier_or_op_token1] = ACTIONS(2664), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2664), + [anon_sym_DASH_DOT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2569), + [anon_sym_POUNDif] = ACTIONS(2664), + [sym__newline] = ACTIONS(2664), }, - [2533] = { - [sym_xml_doc] = STATE(2533), - [sym_block_comment] = STATE(2533), - [sym_preproc_line] = STATE(2533), - [sym_identifier] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_let_BANG] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_LBRACK_PIPE] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACE_PIPE] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_return_BANG] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_yield_BANG] = ACTIONS(2593), - [anon_sym_lazy] = ACTIONS(2591), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_upcast] = ACTIONS(2591), - [anon_sym_downcast] = ACTIONS(2591), - [anon_sym_LT_AT] = ACTIONS(2591), - [anon_sym_LT_AT_AT] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_fun] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_match_BANG] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_use_BANG] = ACTIONS(2593), - [anon_sym_do_BANG] = ACTIONS(2593), - [anon_sym_begin] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_AT_DQUOTE] = ACTIONS(2593), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2593), - [sym_bool] = ACTIONS(2591), - [sym_unit] = ACTIONS(2593), - [aux_sym__identifier_or_op_token1] = ACTIONS(2593), - [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS_DOT] = ACTIONS(2593), - [anon_sym_DASH_DOT] = ACTIONS(2593), - [anon_sym_PERCENT] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [aux_sym_prefix_op_token1] = ACTIONS(2593), - [sym_int] = ACTIONS(2591), - [sym_xint] = ACTIONS(2593), + [2552] = { + [sym_xml_doc] = STATE(2552), + [sym_block_comment] = STATE(2552), + [sym_preproc_line] = STATE(2552), + [sym_identifier] = ACTIONS(2675), + [anon_sym_GT_RBRACK] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_LT_AT_AT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2677), + [aux_sym__identifier_or_op_token1] = ACTIONS(2677), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2677), + [anon_sym_DASH_DOT] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + [sym__newline] = ACTIONS(2677), + }, + [2553] = { + [sym_xml_doc] = STATE(2553), + [sym_block_comment] = STATE(2553), + [sym_preproc_line] = STATE(2553), + [sym_identifier] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_as] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + }, + [2554] = { + [sym_xml_doc] = STATE(2554), + [sym_block_comment] = STATE(2554), + [sym_preproc_line] = STATE(2554), + [sym_identifier] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_as] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_LT_AT_AT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2664), + [aux_sym__identifier_or_op_token1] = ACTIONS(2664), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2664), + [anon_sym_DASH_DOT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + }, + [2555] = { + [sym_xml_doc] = STATE(2555), + [sym_block_comment] = STATE(2555), + [sym_preproc_line] = STATE(2555), + [sym_identifier] = ACTIONS(2658), + [anon_sym_GT_RBRACK] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + [sym__newline] = ACTIONS(2660), + }, + [2556] = { + [sym_xml_doc] = STATE(2556), + [sym_block_comment] = STATE(2556), + [sym_preproc_line] = STATE(2556), + [sym_identifier] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_as] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_LT_AT_AT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(4564), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2654), + [aux_sym__identifier_or_op_token1] = ACTIONS(2654), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2654), + [anon_sym_DASH_DOT] = ACTIONS(2654), + [anon_sym_PERCENT] = ACTIONS(2654), + [anon_sym_AMP_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + }, + [2557] = { + [sym_xml_doc] = STATE(2557), + [sym_block_comment] = STATE(2557), + [sym_preproc_line] = STATE(2557), + [sym_identifier] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_as] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_LT_AT_AT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2634), + [aux_sym__identifier_or_op_token1] = ACTIONS(2634), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2634), + [anon_sym_DASH_DOT] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + }, + [2558] = { + [sym_xml_doc] = STATE(2558), + [sym_block_comment] = STATE(2558), + [sym_preproc_line] = STATE(2558), + [sym_identifier] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_as] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2679), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_LT_AT_AT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2681), + [aux_sym__identifier_or_op_token1] = ACTIONS(2681), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2681), + [anon_sym_DASH_DOT] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + }, + [2559] = { + [sym_xml_doc] = STATE(2559), + [sym_block_comment] = STATE(2559), + [sym_preproc_line] = STATE(2559), + [sym_identifier] = ACTIONS(2628), + [anon_sym_GT_RBRACK] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_LT_AT_AT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2630), + [aux_sym__identifier_or_op_token1] = ACTIONS(2630), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2630), + [anon_sym_DASH_DOT] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + [sym__newline] = ACTIONS(2630), + }, + [2560] = { + [sym_xml_doc] = STATE(2560), + [sym_block_comment] = STATE(2560), + [sym_preproc_line] = STATE(2560), + [sym_identifier] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_LT_AT_AT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2687), + [aux_sym__identifier_or_op_token1] = ACTIONS(2687), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2687), + [anon_sym_DASH_DOT] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + }, + [2561] = { + [sym_xml_doc] = STATE(2561), + [sym_block_comment] = STATE(2561), + [sym_preproc_line] = STATE(2561), + [sym_identifier] = ACTIONS(2632), + [anon_sym_GT_RBRACK] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_LT_AT_AT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2634), + [aux_sym__identifier_or_op_token1] = ACTIONS(2634), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2634), + [anon_sym_DASH_DOT] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + [sym__newline] = ACTIONS(2634), + }, + [2562] = { + [sym_xml_doc] = STATE(2562), + [sym_block_comment] = STATE(2562), + [sym_preproc_line] = STATE(2562), + [aux_sym_long_identifier_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + }, + [2563] = { + [sym_xml_doc] = STATE(2563), + [sym_block_comment] = STATE(2563), + [sym_preproc_line] = STATE(2563), + [sym_identifier] = ACTIONS(2679), + [anon_sym_GT_RBRACK] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_LT_AT_AT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2681), + [aux_sym__identifier_or_op_token1] = ACTIONS(2681), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2681), + [anon_sym_DASH_DOT] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + [sym__newline] = ACTIONS(2681), + }, + [2564] = { + [sym_xml_doc] = STATE(2564), + [sym_block_comment] = STATE(2564), + [sym_preproc_line] = STATE(2564), + [sym_identifier] = ACTIONS(2636), + [anon_sym_GT_RBRACK] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_LT_AT_AT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2638), + [aux_sym__identifier_or_op_token1] = ACTIONS(2638), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2638), + [anon_sym_DASH_DOT] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + [sym__newline] = ACTIONS(2638), + }, + [2565] = { + [sym_xml_doc] = STATE(2565), + [sym_block_comment] = STATE(2565), + [sym_preproc_line] = STATE(2565), + [sym_identifier] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_LT_AT_AT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2621), + [aux_sym__identifier_or_op_token1] = ACTIONS(2621), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2621), + [anon_sym_DASH_DOT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + }, + [2566] = { + [sym_xml_doc] = STATE(2566), + [sym_block_comment] = STATE(2566), + [sym_preproc_line] = STATE(2566), + [sym_identifier] = ACTIONS(2640), + [anon_sym_GT_RBRACK] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_LT_AT_AT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2642), + [aux_sym__identifier_or_op_token1] = ACTIONS(2642), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2642), + [anon_sym_DASH_DOT] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + [sym__newline] = ACTIONS(2642), + }, + [2567] = { + [sym_xml_doc] = STATE(2567), + [sym_block_comment] = STATE(2567), + [sym_preproc_line] = STATE(2567), + [aux_sym_long_identifier_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_let_BANG] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACK_PIPE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_LBRACE_PIPE] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_return_BANG] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_yield_BANG] = ACTIONS(2596), + [anon_sym_lazy] = ACTIONS(2594), + [anon_sym_assert] = ACTIONS(2594), + [anon_sym_upcast] = ACTIONS(2594), + [anon_sym_downcast] = ACTIONS(2594), + [anon_sym_LT_AT] = ACTIONS(2594), + [anon_sym_LT_AT_AT] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_match_BANG] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_use_BANG] = ACTIONS(2596), + [anon_sym_do_BANG] = ACTIONS(2596), + [anon_sym_begin] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_AT_DQUOTE] = ACTIONS(2596), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [sym_bool] = ACTIONS(2594), + [sym_unit] = ACTIONS(2596), + [aux_sym__identifier_or_op_token1] = ACTIONS(2596), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_PLUS_DOT] = ACTIONS(2596), + [anon_sym_DASH_DOT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_prefix_op_token1] = ACTIONS(2596), + [sym_int] = ACTIONS(2594), + [sym_xint] = ACTIONS(2596), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2596), + }, + [2568] = { + [sym_xml_doc] = STATE(2568), + [sym_block_comment] = STATE(2568), + [sym_preproc_line] = STATE(2568), + [sym_identifier] = ACTIONS(2652), + [anon_sym_GT_RBRACK] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_LT_AT_AT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(4571), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2654), + [aux_sym__identifier_or_op_token1] = ACTIONS(2654), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2654), + [anon_sym_DASH_DOT] = ACTIONS(2654), + [anon_sym_PERCENT] = ACTIONS(2654), + [anon_sym_AMP_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + }, + [2569] = { + [sym_xml_doc] = STATE(2569), + [sym_block_comment] = STATE(2569), + [sym_preproc_line] = STATE(2569), + [sym_identifier] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_as] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_LT_AT_AT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2630), + [aux_sym__identifier_or_op_token1] = ACTIONS(2630), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2630), + [anon_sym_DASH_DOT] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + }, + [2570] = { + [sym_xml_doc] = STATE(2570), + [sym_block_comment] = STATE(2570), + [sym_preproc_line] = STATE(2570), + [sym_identifier] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_as] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_LT_AT_AT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2638), + [aux_sym__identifier_or_op_token1] = ACTIONS(2638), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2638), + [anon_sym_DASH_DOT] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + }, + [2571] = { + [sym_xml_doc] = STATE(2571), + [sym_block_comment] = STATE(2571), + [sym_preproc_line] = STATE(2571), + [sym_identifier] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_as] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_LT_AT_AT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2677), + [aux_sym__identifier_or_op_token1] = ACTIONS(2677), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2677), + [anon_sym_DASH_DOT] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + }, + [2572] = { + [sym_xml_doc] = STATE(2572), + [sym_block_comment] = STATE(2572), + [sym_preproc_line] = STATE(2572), + [sym_identifier] = ACTIONS(2615), + [anon_sym_GT_RBRACK] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_LT_AT_AT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2621), + [aux_sym__identifier_or_op_token1] = ACTIONS(2621), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2621), + [anon_sym_DASH_DOT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + [sym__newline] = ACTIONS(2621), + }, + [2573] = { + [sym_xml_doc] = STATE(2573), + [sym_block_comment] = STATE(2573), + [sym_preproc_line] = STATE(2573), + [aux_sym_long_identifier_repeat1] = STATE(2567), + [sym_identifier] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_let_BANG] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LBRACK_PIPE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_LBRACE_PIPE] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_return_BANG] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_yield_BANG] = ACTIONS(2523), + [anon_sym_lazy] = ACTIONS(2517), + [anon_sym_assert] = ACTIONS(2517), + [anon_sym_upcast] = ACTIONS(2517), + [anon_sym_downcast] = ACTIONS(2517), + [anon_sym_LT_AT] = ACTIONS(2517), + [anon_sym_LT_AT_AT] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_fun] = ACTIONS(2517), + [anon_sym_DASH_GT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_match_BANG] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_use_BANG] = ACTIONS(2523), + [anon_sym_do_BANG] = ACTIONS(2523), + [anon_sym_begin] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_LT2] = ACTIONS(2517), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_AT_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2523), + [sym_bool] = ACTIONS(2517), + [sym_unit] = ACTIONS(2523), + [aux_sym__identifier_or_op_token1] = ACTIONS(2523), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS_DOT] = ACTIONS(2523), + [anon_sym_DASH_DOT] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [aux_sym_prefix_op_token1] = ACTIONS(2523), + [sym_int] = ACTIONS(2517), + [sym_xint] = ACTIONS(2523), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [sym_line_comment] = ACTIONS(7), [aux_sym_preproc_line_token1] = ACTIONS(9), - [anon_sym_POUNDif] = ACTIONS(2593), + [anon_sym_POUNDif] = ACTIONS(2523), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 8, + [2574] = { + [sym_xml_doc] = STATE(2574), + [sym_block_comment] = STATE(2574), + [sym_preproc_line] = STATE(2574), + [sym_identifier] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_as] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_LT_AT_AT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2642), + [aux_sym__identifier_or_op_token1] = ACTIONS(2642), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2642), + [anon_sym_DASH_DOT] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + }, + [2575] = { + [sym_xml_doc] = STATE(2575), + [sym_block_comment] = STATE(2575), + [sym_preproc_line] = STATE(2575), + [sym_identifier] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_let_BANG] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACK_PIPE] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LBRACE_PIPE] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_return_BANG] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_yield_BANG] = ACTIONS(2646), + [anon_sym_lazy] = ACTIONS(2644), + [anon_sym_assert] = ACTIONS(2644), + [anon_sym_upcast] = ACTIONS(2644), + [anon_sym_downcast] = ACTIONS(2644), + [anon_sym_LT_AT] = ACTIONS(2644), + [anon_sym_LT_AT_AT] = ACTIONS(2646), + [anon_sym_COLON_GT] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_fun] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_match] = ACTIONS(2644), + [anon_sym_match_BANG] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_use] = ACTIONS(2644), + [anon_sym_use_BANG] = ACTIONS(2646), + [anon_sym_do_BANG] = ACTIONS(2646), + [anon_sym_begin] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_LT2] = ACTIONS(2644), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_AT_DQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2646), + [sym_bool] = ACTIONS(2644), + [sym_unit] = ACTIONS(2646), + [aux_sym__identifier_or_op_token1] = ACTIONS(2646), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_PLUS_DOT] = ACTIONS(2646), + [anon_sym_DASH_DOT] = ACTIONS(2646), + [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_AMP_AMP] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_prefix_op_token1] = ACTIONS(2646), + [sym_int] = ACTIONS(2644), + [sym_xint] = ACTIONS(2646), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2646), + }, + [2576] = { + [sym_xml_doc] = STATE(2576), + [sym_block_comment] = STATE(2576), + [sym_preproc_line] = STATE(2576), + [sym_identifier] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_let_BANG] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACK_PIPE] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_LBRACE_PIPE] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_return_BANG] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_yield_BANG] = ACTIONS(2650), + [anon_sym_lazy] = ACTIONS(2648), + [anon_sym_assert] = ACTIONS(2648), + [anon_sym_upcast] = ACTIONS(2648), + [anon_sym_downcast] = ACTIONS(2648), + [anon_sym_LT_AT] = ACTIONS(2648), + [anon_sym_LT_AT_AT] = ACTIONS(2650), + [anon_sym_COLON_GT] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_fun] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2648), + [anon_sym_match_BANG] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_use] = ACTIONS(2648), + [anon_sym_use_BANG] = ACTIONS(2650), + [anon_sym_do_BANG] = ACTIONS(2650), + [anon_sym_begin] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2650), + [anon_sym_LT2] = ACTIONS(2648), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_AT_DQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2650), + [sym_bool] = ACTIONS(2648), + [sym_unit] = ACTIONS(2650), + [aux_sym__identifier_or_op_token1] = ACTIONS(2650), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_PLUS_DOT] = ACTIONS(2650), + [anon_sym_DASH_DOT] = ACTIONS(2650), + [anon_sym_PERCENT] = ACTIONS(2650), + [anon_sym_AMP_AMP] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [aux_sym_prefix_op_token1] = ACTIONS(2650), + [sym_int] = ACTIONS(2648), + [sym_xint] = ACTIONS(2650), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2650), + }, + [2577] = { + [sym_xml_doc] = STATE(2577), + [sym_block_comment] = STATE(2577), + [sym_preproc_line] = STATE(2577), + [sym_identifier] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_COLON_GT] = ACTIONS(4573), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + }, + [2578] = { + [sym_xml_doc] = STATE(2578), + [sym_block_comment] = STATE(2578), + [sym_preproc_line] = STATE(2578), + [sym_identifier] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_let_BANG] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACK_PIPE] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_LBRACE_PIPE] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_return_BANG] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_yield_BANG] = ACTIONS(2605), + [anon_sym_lazy] = ACTIONS(2603), + [anon_sym_assert] = ACTIONS(2603), + [anon_sym_upcast] = ACTIONS(2603), + [anon_sym_downcast] = ACTIONS(2603), + [anon_sym_LT_AT] = ACTIONS(2603), + [anon_sym_LT_AT_AT] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_fun] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_match] = ACTIONS(2603), + [anon_sym_match_BANG] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_DOT] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2603), + [anon_sym_use_BANG] = ACTIONS(2605), + [anon_sym_do_BANG] = ACTIONS(2605), + [anon_sym_begin] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_LT2] = ACTIONS(2603), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_AT_DQUOTE] = ACTIONS(2605), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2605), + [sym_bool] = ACTIONS(2603), + [sym_unit] = ACTIONS(2605), + [aux_sym__identifier_or_op_token1] = ACTIONS(2605), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS_DOT] = ACTIONS(2605), + [anon_sym_DASH_DOT] = ACTIONS(2605), + [anon_sym_PERCENT] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [aux_sym_prefix_op_token1] = ACTIONS(2605), + [sym_int] = ACTIONS(2603), + [sym_xint] = ACTIONS(2605), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2605), + }, + [2579] = { + [sym_xml_doc] = STATE(2579), + [sym_block_comment] = STATE(2579), + [sym_preproc_line] = STATE(2579), + [aux_sym__compound_type_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_BANG] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACK_PIPE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_LBRACE_PIPE] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_return_BANG] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_yield_BANG] = ACTIONS(2589), + [anon_sym_lazy] = ACTIONS(2587), + [anon_sym_assert] = ACTIONS(2587), + [anon_sym_upcast] = ACTIONS(2587), + [anon_sym_downcast] = ACTIONS(2587), + [anon_sym_LT_AT] = ACTIONS(2587), + [anon_sym_LT_AT_AT] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_fun] = ACTIONS(2587), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_match_BANG] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_use_BANG] = ACTIONS(2589), + [anon_sym_do_BANG] = ACTIONS(2589), + [anon_sym_begin] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(2587), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_AT_DQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [sym_bool] = ACTIONS(2587), + [sym_unit] = ACTIONS(2589), + [aux_sym__identifier_or_op_token1] = ACTIONS(2589), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS_DOT] = ACTIONS(2589), + [anon_sym_DASH_DOT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [aux_sym_prefix_op_token1] = ACTIONS(2589), + [sym_int] = ACTIONS(2587), + [sym_xint] = ACTIONS(2589), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2589), + }, + [2580] = { + [sym_xml_doc] = STATE(2580), + [sym_block_comment] = STATE(2580), + [sym_preproc_line] = STATE(2580), + [aux_sym__compound_type_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_do] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_let_BANG] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_LBRACK_PIPE] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_LBRACE_PIPE] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_return_BANG] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_yield_BANG] = ACTIONS(2321), + [anon_sym_lazy] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_upcast] = ACTIONS(2319), + [anon_sym_downcast] = ACTIONS(2319), + [anon_sym_LT_AT] = ACTIONS(2319), + [anon_sym_LT_AT_AT] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_fun] = ACTIONS(2319), + [anon_sym_DASH_GT] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_match_BANG] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_use_BANG] = ACTIONS(2321), + [anon_sym_do_BANG] = ACTIONS(2321), + [anon_sym_begin] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(4575), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_AT_DQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), + [sym_bool] = ACTIONS(2319), + [sym_unit] = ACTIONS(2321), + [aux_sym__identifier_or_op_token1] = ACTIONS(2321), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2319), + [anon_sym_PLUS_DOT] = ACTIONS(2321), + [anon_sym_DASH_DOT] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [aux_sym_prefix_op_token1] = ACTIONS(2321), + [sym_int] = ACTIONS(2319), + [sym_xint] = ACTIONS(2321), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2321), + }, + [2581] = { + [sym_xml_doc] = STATE(2581), + [sym_block_comment] = STATE(2581), + [sym_preproc_line] = STATE(2581), + [sym_identifier] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_let_BANG] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACK_PIPE] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACE_PIPE] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2679), + [anon_sym_return_BANG] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_yield_BANG] = ACTIONS(2681), + [anon_sym_lazy] = ACTIONS(2679), + [anon_sym_assert] = ACTIONS(2679), + [anon_sym_upcast] = ACTIONS(2679), + [anon_sym_downcast] = ACTIONS(2679), + [anon_sym_LT_AT] = ACTIONS(2679), + [anon_sym_LT_AT_AT] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_fun] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_match_BANG] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_use_BANG] = ACTIONS(2681), + [anon_sym_do_BANG] = ACTIONS(2681), + [anon_sym_begin] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_LT2] = ACTIONS(2679), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_AT_DQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2681), + [sym_bool] = ACTIONS(2679), + [sym_unit] = ACTIONS(2681), + [aux_sym__identifier_or_op_token1] = ACTIONS(2681), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_PLUS_DOT] = ACTIONS(2681), + [anon_sym_DASH_DOT] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_TILDE] = ACTIONS(2681), + [aux_sym_prefix_op_token1] = ACTIONS(2681), + [sym_int] = ACTIONS(2679), + [sym_xint] = ACTIONS(2681), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2681), + }, + [2582] = { + [sym_xml_doc] = STATE(2582), + [sym_block_comment] = STATE(2582), + [sym_preproc_line] = STATE(2582), + [sym_identifier] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_let_BANG] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK_PIPE] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LBRACE_PIPE] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_return_BANG] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_yield_BANG] = ACTIONS(2642), + [anon_sym_lazy] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2640), + [anon_sym_upcast] = ACTIONS(2640), + [anon_sym_downcast] = ACTIONS(2640), + [anon_sym_LT_AT] = ACTIONS(2640), + [anon_sym_LT_AT_AT] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_fun] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_match_BANG] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_use_BANG] = ACTIONS(2642), + [anon_sym_do_BANG] = ACTIONS(2642), + [anon_sym_begin] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_LT2] = ACTIONS(2640), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_AT_DQUOTE] = ACTIONS(2642), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2642), + [sym_bool] = ACTIONS(2640), + [sym_unit] = ACTIONS(2642), + [aux_sym__identifier_or_op_token1] = ACTIONS(2642), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_PLUS_DOT] = ACTIONS(2642), + [anon_sym_DASH_DOT] = ACTIONS(2642), + [anon_sym_PERCENT] = ACTIONS(2642), + [anon_sym_AMP_AMP] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [aux_sym_prefix_op_token1] = ACTIONS(2642), + [sym_int] = ACTIONS(2640), + [sym_xint] = ACTIONS(2642), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2642), + }, + [2583] = { + [sym_xml_doc] = STATE(2583), + [sym_block_comment] = STATE(2583), + [sym_preproc_line] = STATE(2583), + [sym_identifier] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_let_BANG] = ACTIONS(2634), + [anon_sym_null] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACK_PIPE] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_LBRACE_PIPE] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_return_BANG] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_yield_BANG] = ACTIONS(2634), + [anon_sym_lazy] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_upcast] = ACTIONS(2632), + [anon_sym_downcast] = ACTIONS(2632), + [anon_sym_LT_AT] = ACTIONS(2632), + [anon_sym_LT_AT_AT] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_fun] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2632), + [anon_sym_match_BANG] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_use] = ACTIONS(2632), + [anon_sym_use_BANG] = ACTIONS(2634), + [anon_sym_do_BANG] = ACTIONS(2634), + [anon_sym_begin] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2634), + [anon_sym_LT2] = ACTIONS(2632), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_AT_DQUOTE] = ACTIONS(2634), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2634), + [sym_bool] = ACTIONS(2632), + [sym_unit] = ACTIONS(2634), + [aux_sym__identifier_or_op_token1] = ACTIONS(2634), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_PLUS_DOT] = ACTIONS(2634), + [anon_sym_DASH_DOT] = ACTIONS(2634), + [anon_sym_PERCENT] = ACTIONS(2634), + [anon_sym_AMP_AMP] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_prefix_op_token1] = ACTIONS(2634), + [sym_int] = ACTIONS(2632), + [sym_xint] = ACTIONS(2634), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2634), + }, + [2584] = { + [sym_xml_doc] = STATE(2584), + [sym_block_comment] = STATE(2584), + [sym_preproc_line] = STATE(2584), + [sym_identifier] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_let_BANG] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACK_PIPE] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACE_PIPE] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_return_BANG] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_yield_BANG] = ACTIONS(2630), + [anon_sym_lazy] = ACTIONS(2628), + [anon_sym_assert] = ACTIONS(2628), + [anon_sym_upcast] = ACTIONS(2628), + [anon_sym_downcast] = ACTIONS(2628), + [anon_sym_LT_AT] = ACTIONS(2628), + [anon_sym_LT_AT_AT] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_fun] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_match] = ACTIONS(2628), + [anon_sym_match_BANG] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_use_BANG] = ACTIONS(2630), + [anon_sym_do_BANG] = ACTIONS(2630), + [anon_sym_begin] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2630), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_AT_DQUOTE] = ACTIONS(2630), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2630), + [sym_bool] = ACTIONS(2628), + [sym_unit] = ACTIONS(2630), + [aux_sym__identifier_or_op_token1] = ACTIONS(2630), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_PLUS_DOT] = ACTIONS(2630), + [anon_sym_DASH_DOT] = ACTIONS(2630), + [anon_sym_PERCENT] = ACTIONS(2630), + [anon_sym_AMP_AMP] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [aux_sym_prefix_op_token1] = ACTIONS(2630), + [sym_int] = ACTIONS(2628), + [sym_xint] = ACTIONS(2630), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2630), + }, + [2585] = { + [sym_xml_doc] = STATE(2585), + [sym_block_comment] = STATE(2585), + [sym_preproc_line] = STATE(2585), + [sym_identifier] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_let_BANG] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACK_PIPE] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_LBRACE_PIPE] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_return_BANG] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_yield_BANG] = ACTIONS(2654), + [anon_sym_lazy] = ACTIONS(2652), + [anon_sym_assert] = ACTIONS(2652), + [anon_sym_upcast] = ACTIONS(2652), + [anon_sym_downcast] = ACTIONS(2652), + [anon_sym_LT_AT] = ACTIONS(2652), + [anon_sym_LT_AT_AT] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_fun] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_match] = ACTIONS(2652), + [anon_sym_match_BANG] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_use] = ACTIONS(2652), + [anon_sym_use_BANG] = ACTIONS(2654), + [anon_sym_do_BANG] = ACTIONS(2654), + [anon_sym_begin] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(4578), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_AT_DQUOTE] = ACTIONS(2654), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2654), + [sym_bool] = ACTIONS(2652), + [sym_unit] = ACTIONS(2654), + [aux_sym__identifier_or_op_token1] = ACTIONS(2654), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_PLUS_DOT] = ACTIONS(2654), + [anon_sym_DASH_DOT] = ACTIONS(2654), + [anon_sym_PERCENT] = ACTIONS(2654), + [anon_sym_AMP_AMP] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [aux_sym_prefix_op_token1] = ACTIONS(2654), + [sym_int] = ACTIONS(2652), + [sym_xint] = ACTIONS(2654), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2654), + }, + [2586] = { + [sym_xml_doc] = STATE(2586), + [sym_block_comment] = STATE(2586), + [sym_preproc_line] = STATE(2586), + [sym_identifier] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_let_BANG] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACK_PIPE] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_LBRACE_PIPE] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_return_BANG] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_yield_BANG] = ACTIONS(2660), + [anon_sym_lazy] = ACTIONS(2658), + [anon_sym_assert] = ACTIONS(2658), + [anon_sym_upcast] = ACTIONS(2658), + [anon_sym_downcast] = ACTIONS(2658), + [anon_sym_LT_AT] = ACTIONS(2658), + [anon_sym_LT_AT_AT] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_fun] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_match_BANG] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_use_BANG] = ACTIONS(2660), + [anon_sym_do_BANG] = ACTIONS(2660), + [anon_sym_begin] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_AT_DQUOTE] = ACTIONS(2660), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2660), + [sym_bool] = ACTIONS(2658), + [sym_unit] = ACTIONS(2660), + [aux_sym__identifier_or_op_token1] = ACTIONS(2660), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_PLUS_DOT] = ACTIONS(2660), + [anon_sym_DASH_DOT] = ACTIONS(2660), + [anon_sym_PERCENT] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [aux_sym_prefix_op_token1] = ACTIONS(2660), + [sym_int] = ACTIONS(2658), + [sym_xint] = ACTIONS(2660), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2660), + }, + [2587] = { + [sym_xml_doc] = STATE(2587), + [sym_block_comment] = STATE(2587), + [sym_preproc_line] = STATE(2587), + [sym_identifier] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_let_BANG] = ACTIONS(2638), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACK_PIPE] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_LBRACE_PIPE] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_return_BANG] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_yield_BANG] = ACTIONS(2638), + [anon_sym_lazy] = ACTIONS(2636), + [anon_sym_assert] = ACTIONS(2636), + [anon_sym_upcast] = ACTIONS(2636), + [anon_sym_downcast] = ACTIONS(2636), + [anon_sym_LT_AT] = ACTIONS(2636), + [anon_sym_LT_AT_AT] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_fun] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_match] = ACTIONS(2636), + [anon_sym_match_BANG] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_use] = ACTIONS(2636), + [anon_sym_use_BANG] = ACTIONS(2638), + [anon_sym_do_BANG] = ACTIONS(2638), + [anon_sym_begin] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_LT2] = ACTIONS(2636), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_AT_DQUOTE] = ACTIONS(2638), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2638), + [sym_bool] = ACTIONS(2636), + [sym_unit] = ACTIONS(2638), + [aux_sym__identifier_or_op_token1] = ACTIONS(2638), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_PLUS_DOT] = ACTIONS(2638), + [anon_sym_DASH_DOT] = ACTIONS(2638), + [anon_sym_PERCENT] = ACTIONS(2638), + [anon_sym_AMP_AMP] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [aux_sym_prefix_op_token1] = ACTIONS(2638), + [sym_int] = ACTIONS(2636), + [sym_xint] = ACTIONS(2638), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2638), + }, + [2588] = { + [sym_xml_doc] = STATE(2588), + [sym_block_comment] = STATE(2588), + [sym_preproc_line] = STATE(2588), + [sym_identifier] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_let_BANG] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACK_PIPE] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LBRACE_PIPE] = ACTIONS(2687), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_return_BANG] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_yield_BANG] = ACTIONS(2687), + [anon_sym_lazy] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_upcast] = ACTIONS(2685), + [anon_sym_downcast] = ACTIONS(2685), + [anon_sym_LT_AT] = ACTIONS(2685), + [anon_sym_LT_AT_AT] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_fun] = ACTIONS(2685), + [anon_sym_DASH_GT] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_match_BANG] = ACTIONS(2687), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_use_BANG] = ACTIONS(2687), + [anon_sym_do_BANG] = ACTIONS(2687), + [anon_sym_begin] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_LT2] = ACTIONS(2685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2685), + [anon_sym_AT_DQUOTE] = ACTIONS(2687), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2687), + [sym_bool] = ACTIONS(2685), + [sym_unit] = ACTIONS(2687), + [aux_sym__identifier_or_op_token1] = ACTIONS(2687), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_DOT] = ACTIONS(2687), + [anon_sym_DASH_DOT] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [aux_sym_prefix_op_token1] = ACTIONS(2687), + [sym_int] = ACTIONS(2685), + [sym_xint] = ACTIONS(2687), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2687), + }, + [2589] = { + [sym_xml_doc] = STATE(2589), + [sym_block_comment] = STATE(2589), + [sym_preproc_line] = STATE(2589), + [sym_identifier] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_BANG] = ACTIONS(2621), + [anon_sym_null] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACK_PIPE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACE_PIPE] = ACTIONS(2621), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_return_BANG] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_yield_BANG] = ACTIONS(2621), + [anon_sym_lazy] = ACTIONS(2615), + [anon_sym_assert] = ACTIONS(2615), + [anon_sym_upcast] = ACTIONS(2615), + [anon_sym_downcast] = ACTIONS(2615), + [anon_sym_LT_AT] = ACTIONS(2615), + [anon_sym_LT_AT_AT] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_fun] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_match_BANG] = ACTIONS(2621), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_use_BANG] = ACTIONS(2621), + [anon_sym_do_BANG] = ACTIONS(2621), + [anon_sym_begin] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_LT2] = ACTIONS(2615), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_AT_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [sym_bool] = ACTIONS(2615), + [sym_unit] = ACTIONS(2621), + [aux_sym__identifier_or_op_token1] = ACTIONS(2621), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS_DOT] = ACTIONS(2621), + [anon_sym_DASH_DOT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [aux_sym_prefix_op_token1] = ACTIONS(2621), + [sym_int] = ACTIONS(2615), + [sym_xint] = ACTIONS(2621), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2621), + }, + [2590] = { + [sym_xml_doc] = STATE(2590), + [sym_block_comment] = STATE(2590), + [sym_preproc_line] = STATE(2590), + [sym_identifier] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_let_BANG] = ACTIONS(2677), + [anon_sym_null] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACK_PIPE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACE_PIPE] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_return_BANG] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_yield_BANG] = ACTIONS(2677), + [anon_sym_lazy] = ACTIONS(2675), + [anon_sym_assert] = ACTIONS(2675), + [anon_sym_upcast] = ACTIONS(2675), + [anon_sym_downcast] = ACTIONS(2675), + [anon_sym_LT_AT] = ACTIONS(2675), + [anon_sym_LT_AT_AT] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_fun] = ACTIONS(2675), + [anon_sym_DASH_GT] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_match_BANG] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_use_BANG] = ACTIONS(2677), + [anon_sym_do_BANG] = ACTIONS(2677), + [anon_sym_begin] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_LT2] = ACTIONS(2675), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_AT_DQUOTE] = ACTIONS(2677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2677), + [sym_bool] = ACTIONS(2675), + [sym_unit] = ACTIONS(2677), + [aux_sym__identifier_or_op_token1] = ACTIONS(2677), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_PLUS_DOT] = ACTIONS(2677), + [anon_sym_DASH_DOT] = ACTIONS(2677), + [anon_sym_PERCENT] = ACTIONS(2677), + [anon_sym_AMP_AMP] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2677), + [aux_sym_prefix_op_token1] = ACTIONS(2677), + [sym_int] = ACTIONS(2675), + [sym_xint] = ACTIONS(2677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2677), + }, + [2591] = { + [sym_xml_doc] = STATE(2591), + [sym_block_comment] = STATE(2591), + [sym_preproc_line] = STATE(2591), + [sym_identifier] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_let_BANG] = ACTIONS(2664), + [anon_sym_null] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACK_PIPE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_LBRACE_PIPE] = ACTIONS(2664), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_return_BANG] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_yield_BANG] = ACTIONS(2664), + [anon_sym_lazy] = ACTIONS(2662), + [anon_sym_assert] = ACTIONS(2662), + [anon_sym_upcast] = ACTIONS(2662), + [anon_sym_downcast] = ACTIONS(2662), + [anon_sym_LT_AT] = ACTIONS(2662), + [anon_sym_LT_AT_AT] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_fun] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_match_BANG] = ACTIONS(2664), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_use_BANG] = ACTIONS(2664), + [anon_sym_do_BANG] = ACTIONS(2664), + [anon_sym_begin] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_LT2] = ACTIONS(2662), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2662), + [anon_sym_AT_DQUOTE] = ACTIONS(2664), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [sym_bool] = ACTIONS(2662), + [sym_unit] = ACTIONS(2664), + [aux_sym__identifier_or_op_token1] = ACTIONS(2664), + [anon_sym_LPAREN_STAR_RPAREN] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_PLUS_DOT] = ACTIONS(2664), + [anon_sym_DASH_DOT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_prefix_op_token1] = ACTIONS(2664), + [sym_int] = ACTIONS(2662), + [sym_xint] = ACTIONS(2664), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [sym_line_comment] = ACTIONS(7), + [aux_sym_preproc_line_token1] = ACTIONS(9), + [anon_sym_POUNDif] = ACTIONS(2664), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(4580), 1, + anon_sym_and, + STATE(2592), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4337), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4339), 32, + anon_sym_return, + anon_sym_do, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [81] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(4583), 1, + anon_sym_and, + STATE(2594), 1, + aux_sym__function_or_value_defns_repeat1, + STATE(2593), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4348), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4350), 32, + anon_sym_return, + anon_sym_do, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [164] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(4583), 1, + anon_sym_and, + STATE(2592), 1, + aux_sym__function_or_value_defns_repeat1, + STATE(2594), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4291), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4293), 32, + anon_sym_return, + anon_sym_do, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [247] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(4589), 1, + anon_sym_TILDE, + STATE(2595), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_prefix_op_repeat1, + ACTIONS(4587), 22, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4585), 32, + anon_sym_return, + anon_sym_do, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [327] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + STATE(2595), 1, + aux_sym_prefix_op_repeat1, + STATE(2596), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4594), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4592), 32, + anon_sym_return, + anon_sym_do, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [407] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + STATE(2597), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4408), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4410), 33, + anon_sym_return, + anon_sym_do, + anon_sym_and, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [485] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + STATE(2598), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4481), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(4483), 33, + anon_sym_return, + anon_sym_do, + anon_sym_and, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [563] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + STATE(2599), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2734), 23, + anon_sym_let_BANG, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE_PIPE, + anon_sym_return_BANG, + anon_sym_yield_BANG, + anon_sym_LT_AT_AT, + anon_sym_match_BANG, + anon_sym_use_BANG, + anon_sym_do_BANG, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_PERCENT, + anon_sym_AMP_AMP, + anon_sym_TILDE, + aux_sym_prefix_op_token1, + sym_xint, + anon_sym_POUNDif, + ACTIONS(2732), 33, + anon_sym_return, + anon_sym_do, + anon_sym_and, + anon_sym_let, + anon_sym_null, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_new, + anon_sym_yield, + anon_sym_lazy, + anon_sym_assert, + anon_sym_upcast, + anon_sym_downcast, + anon_sym_LT_AT, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_fun, + anon_sym_try, + anon_sym_match, + anon_sym_function, + anon_sym_use, + anon_sym_begin, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_int, + sym_identifier, + [641] = 48, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4596), 1, + sym_identifier, + ACTIONS(4598), 1, + anon_sym_LBRACK_LT, + ACTIONS(4600), 1, + anon_sym_do, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(4606), 1, + anon_sym__, + ACTIONS(4608), 1, + anon_sym_LPAREN, + ACTIONS(4610), 1, + anon_sym_PIPE, + ACTIONS(4612), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, + anon_sym_new, + ACTIONS(4616), 1, + anon_sym_POUND, + ACTIONS(4618), 1, + anon_sym_delegate, + ACTIONS(4622), 1, + anon_sym_static, + ACTIONS(4624), 1, + anon_sym_member, + ACTIONS(4626), 1, + anon_sym_interface, + ACTIONS(4628), 1, + anon_sym_abstract, + ACTIONS(4632), 1, + anon_sym_val, + ACTIONS(4634), 1, + anon_sym_inherit, + STATE(3001), 1, + sym_union_type_cases, + STATE(3351), 1, + sym_type_argument, + STATE(3353), 1, + sym_member_defn, + STATE(3358), 1, + sym_long_identifier, + STATE(3423), 1, + aux_sym_attributes_repeat1, + STATE(3437), 1, + sym_attributes, + STATE(3503), 1, + sym_union_type_case, + STATE(3521), 1, + sym_attribute_set, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(3808), 1, + sym_type, + STATE(4061), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4299), 1, + sym__class_type_body_inner, + STATE(4332), 1, + sym_interface_implementation, + STATE(4464), 1, + sym__member_defns, + STATE(4701), 1, + sym_function_or_value_defn, + STATE(4714), 1, + sym_access_modifier, + STATE(4774), 1, + sym_enum_type_case, + STATE(4775), 1, + sym_enum_type_cases, + STATE(4776), 1, + sym__class_type_body, + STATE(4778), 1, + sym_delegate_signature, + ACTIONS(4620), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + ACTIONS(4630), 2, + anon_sym_override, + anon_sym_default, + STATE(2600), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(4715), 3, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + STATE(3354), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [801] = 48, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4596), 1, + sym_identifier, + ACTIONS(4598), 1, + anon_sym_LBRACK_LT, + ACTIONS(4600), 1, + anon_sym_do, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(4606), 1, + anon_sym__, + ACTIONS(4608), 1, + anon_sym_LPAREN, + ACTIONS(4610), 1, + anon_sym_PIPE, + ACTIONS(4614), 1, + anon_sym_new, + ACTIONS(4616), 1, + anon_sym_POUND, + ACTIONS(4618), 1, + anon_sym_delegate, + ACTIONS(4622), 1, + anon_sym_static, + ACTIONS(4624), 1, + anon_sym_member, + ACTIONS(4626), 1, + anon_sym_interface, + ACTIONS(4628), 1, + anon_sym_abstract, + ACTIONS(4632), 1, + anon_sym_val, + ACTIONS(4634), 1, + anon_sym_inherit, + ACTIONS(4636), 1, + anon_sym_LBRACE, + STATE(2992), 1, + sym_union_type_cases, + STATE(3351), 1, + sym_type_argument, + STATE(3353), 1, + sym_member_defn, + STATE(3358), 1, + sym_long_identifier, + STATE(3423), 1, + aux_sym_attributes_repeat1, + STATE(3437), 1, + sym_attributes, + STATE(3503), 1, + sym_union_type_case, + STATE(3521), 1, + sym_attribute_set, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(3831), 1, + sym_type, + STATE(4061), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4299), 1, + sym__class_type_body_inner, + STATE(4332), 1, + sym_interface_implementation, + STATE(4464), 1, + sym__member_defns, + STATE(4701), 1, + sym_function_or_value_defn, + STATE(4714), 1, + sym_access_modifier, + STATE(4774), 1, + sym_enum_type_case, + STATE(4856), 1, + sym_delegate_signature, + STATE(4862), 1, + sym__class_type_body, + STATE(4865), 1, + sym_enum_type_cases, + ACTIONS(4620), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + ACTIONS(4630), 2, + anon_sym_override, + anon_sym_default, + STATE(2601), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(4715), 3, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + STATE(3354), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [961] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286064,14 +289424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(4458), 1, - anon_sym_and, - STATE(2534), 4, + STATE(2602), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(4181), 23, + ACTIONS(4477), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286095,9 +289452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4183), 32, + ACTIONS(4479), 33, anon_sym_return, anon_sym_do, + anon_sym_and, anon_sym_let, anon_sym_null, anon_sym_LPAREN, @@ -286128,7 +289486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [81] = 9, + [1039] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286137,15 +289495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(4461), 1, - anon_sym_and, - STATE(2534), 1, - aux_sym__function_or_value_defns_repeat1, - STATE(2535), 3, + STATE(2603), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4226), 23, + ACTIONS(4640), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286169,7 +289523,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4228), 32, + ACTIONS(4638), 32, anon_sym_return, anon_sym_do, anon_sym_let, @@ -286202,7 +289556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [164] = 9, + [1116] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286211,15 +289565,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(4461), 1, - anon_sym_and, - STATE(2535), 1, - aux_sym__function_or_value_defns_repeat1, - STATE(2536), 3, + STATE(2604), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4211), 23, + ACTIONS(4594), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286243,7 +289593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4213), 32, + ACTIONS(4592), 32, anon_sym_return, anon_sym_do, anon_sym_let, @@ -286276,7 +289626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [247] = 7, + [1193] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286285,11 +289635,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2537), 3, + STATE(2605), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4346), 23, + ACTIONS(4644), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286313,10 +289663,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4348), 33, + ACTIONS(4642), 32, anon_sym_return, anon_sym_do, - anon_sym_and, anon_sym_let, anon_sym_null, anon_sym_LPAREN, @@ -286347,7 +289696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [325] = 8, + [1270] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286356,14 +289705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(4467), 1, - anon_sym_TILDE, - STATE(2538), 4, + STATE(2606), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_prefix_op_repeat1, - ACTIONS(4465), 22, + ACTIONS(4526), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286383,10 +289729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DOT, anon_sym_PERCENT, anon_sym_AMP_AMP, + anon_sym_TILDE, aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4463), 32, + ACTIONS(4528), 32, anon_sym_return, anon_sym_do, anon_sym_let, @@ -286419,119 +289766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [405] = 48, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4470), 1, - sym_identifier, - ACTIONS(4472), 1, - anon_sym_LBRACK_LT, - ACTIONS(4474), 1, - anon_sym_do, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4480), 1, - anon_sym__, - ACTIONS(4482), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_PIPE, - ACTIONS(4486), 1, - anon_sym_LBRACE, - ACTIONS(4488), 1, - anon_sym_new, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_delegate, - ACTIONS(4496), 1, - anon_sym_static, - ACTIONS(4498), 1, - anon_sym_member, - ACTIONS(4500), 1, - anon_sym_interface, - ACTIONS(4502), 1, - anon_sym_abstract, - ACTIONS(4506), 1, - anon_sym_val, - ACTIONS(4508), 1, - anon_sym_inherit, - STATE(2920), 1, - sym_union_type_cases, - STATE(3163), 1, - sym_type_argument, - STATE(3293), 1, - sym_member_defn, - STATE(3298), 1, - sym_long_identifier, - STATE(3333), 1, - aux_sym_attributes_repeat1, - STATE(3359), 1, - sym_attributes, - STATE(3408), 1, - sym_union_type_case, - STATE(3470), 1, - sym_attribute_set, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3772), 1, - sym_type, - STATE(3997), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4186), 1, - sym__class_type_body_inner, - STATE(4187), 1, - sym_interface_implementation, - STATE(4463), 1, - sym_access_modifier, - STATE(4484), 1, - sym__member_defns, - STATE(4509), 1, - sym_function_or_value_defn, - STATE(4769), 1, - sym_enum_type_case, - STATE(4773), 1, - sym_enum_type_cases, - STATE(4774), 1, - sym__class_type_body, - STATE(4780), 1, - sym_delegate_signature, - ACTIONS(4494), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - ACTIONS(4504), 2, - anon_sym_override, - anon_sym_default, - STATE(2539), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(4523), 3, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - STATE(3284), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [565] = 7, + [1347] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286540,11 +289775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2540), 3, + STATE(2607), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2649), 23, + ACTIONS(4644), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286568,10 +289803,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(2647), 33, + ACTIONS(4642), 32, anon_sym_return, anon_sym_do, - anon_sym_and, anon_sym_let, anon_sym_null, anon_sym_LPAREN, @@ -286602,7 +289836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [643] = 8, + [1424] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -286611,13 +289845,11 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2538), 1, - aux_sym_prefix_op_repeat1, - STATE(2541), 3, + STATE(2608), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4512), 23, + ACTIONS(4520), 23, anon_sym_let_BANG, anon_sym_LBRACK_PIPE, anon_sym_LBRACE_PIPE, @@ -286641,7 +289873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prefix_op_token1, sym_xint, anon_sym_POUNDif, - ACTIONS(4510), 32, + ACTIONS(4522), 32, anon_sym_return, anon_sym_do, anon_sym_let, @@ -286674,750 +289906,954 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, sym_int, sym_identifier, - [723] = 7, + [1501] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2542), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4294), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4128), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4656), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4296), 33, - anon_sym_return, - anon_sym_do, - anon_sym_and, - anon_sym_let, + STATE(2612), 1, + aux_sym_argument_patterns_repeat1, + STATE(2617), 1, + sym_type_arguments, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4484), 1, + sym_argument_patterns, + ACTIONS(4648), 2, anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [801] = 7, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2609), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1623] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2543), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4328), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4128), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4656), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4330), 33, - anon_sym_return, - anon_sym_do, - anon_sym_and, - anon_sym_let, + STATE(2612), 1, + aux_sym_argument_patterns_repeat1, + STATE(2621), 1, + sym_type_arguments, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4699), 1, + sym_argument_patterns, + ACTIONS(4648), 2, anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [879] = 48, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2610), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1745] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4470), 1, + ACTIONS(4128), 1, + anon_sym_LT2, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4472), 1, - anon_sym_LBRACK_LT, - ACTIONS(4474), 1, - anon_sym_do, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4480), 1, - anon_sym__, - ACTIONS(4482), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_PIPE, - ACTIONS(4488), 1, - anon_sym_new, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_delegate, - ACTIONS(4496), 1, - anon_sym_static, - ACTIONS(4498), 1, - anon_sym_member, - ACTIONS(4500), 1, - anon_sym_interface, - ACTIONS(4502), 1, - anon_sym_abstract, - ACTIONS(4506), 1, - anon_sym_val, - ACTIONS(4508), 1, - anon_sym_inherit, - ACTIONS(4514), 1, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(4656), 1, anon_sym_LBRACE, - STATE(2913), 1, - sym_union_type_cases, - STATE(3163), 1, - sym_type_argument, - STATE(3293), 1, - sym_member_defn, - STATE(3298), 1, - sym_long_identifier, - STATE(3333), 1, - aux_sym_attributes_repeat1, - STATE(3359), 1, - sym_attributes, - STATE(3408), 1, - sym_union_type_case, - STATE(3470), 1, - sym_attribute_set, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3699), 1, - sym_type, - STATE(3997), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4186), 1, - sym__class_type_body_inner, - STATE(4187), 1, - sym_interface_implementation, - STATE(4463), 1, - sym_access_modifier, - STATE(4484), 1, - sym__member_defns, - STATE(4509), 1, - sym_function_or_value_defn, - STATE(4769), 1, - sym_enum_type_case, - STATE(5345), 1, - sym_enum_type_cases, - STATE(5346), 1, - sym__class_type_body, - STATE(5347), 1, - sym_delegate_signature, - ACTIONS(4494), 2, + ACTIONS(4658), 1, anon_sym_SQUOTE, - anon_sym_CARET, - ACTIONS(4504), 2, - anon_sym_override, - anon_sym_default, - STATE(2544), 3, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, + anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, + sym_unit, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, + sym_xint, + STATE(2612), 1, + aux_sym_argument_patterns_repeat1, + STATE(2626), 1, + sym_type_arguments, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4548), 1, + sym_argument_patterns, + ACTIONS(4648), 2, + anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2611), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(4523), 3, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - STATE(3284), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [1039] = 7, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1867] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2545), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4512), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4656), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4510), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, + STATE(2613), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + ACTIONS(4648), 2, anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [1116] = 7, + anon_sym__, + ACTIONS(4678), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2612), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1984] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2546), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4384), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4680), 1, + sym_identifier, + ACTIONS(4688), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4694), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4697), 1, + anon_sym_LBRACE, + ACTIONS(4700), 1, anon_sym_SQUOTE, + ACTIONS(4703), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4706), 1, + anon_sym_DQUOTE, + ACTIONS(4709), 1, anon_sym_AT_DQUOTE, + ACTIONS(4712), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4715), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4718), 1, + sym_bool, + ACTIONS(4721), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4724), 1, + sym_int, + ACTIONS(4727), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4386), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + ACTIONS(4683), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4685), 2, anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [1193] = 7, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2613), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_argument_patterns_repeat1, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2099] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2547), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4518), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4516), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, - anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(4730), 1, anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [1270] = 7, + STATE(2616), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4972), 1, + sym_argument_patterns, + ACTIONS(4648), 2, + anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2614), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2215] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2548), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4522), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4520), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, - anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(4730), 1, anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [1347] = 7, + STATE(2616), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(5005), 1, + sym_argument_patterns, + ACTIONS(4648), 2, + anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2615), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2331] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2549), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4398), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4400), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, - anon_sym_null, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(4678), 1, + anon_sym_DASH_GT, + ACTIONS(4730), 1, anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - sym_int, - sym_identifier, - [1424] = 7, + STATE(2618), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + ACTIONS(4648), 2, + anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2616), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2447] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(2550), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4522), 23, - anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4646), 1, + sym_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_PIPE, - anon_sym_return_BANG, - anon_sym_yield_BANG, - anon_sym_LT_AT_AT, - anon_sym_match_BANG, - anon_sym_use_BANG, - anon_sym_do_BANG, + ACTIONS(4656), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4662), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4670), 1, + sym_bool, + ACTIONS(4672), 1, sym_unit, - aux_sym__identifier_or_op_token1, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_PERCENT, - anon_sym_AMP_AMP, - anon_sym_TILDE, - aux_sym_prefix_op_token1, + ACTIONS(4674), 1, + sym_int, + ACTIONS(4676), 1, sym_xint, - anon_sym_POUNDif, - ACTIONS(4520), 32, - anon_sym_return, - anon_sym_do, - anon_sym_let, + STATE(2612), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4548), 1, + sym_argument_patterns, + ACTIONS(4648), 2, anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2617), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2563] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4680), 1, + sym_identifier, + ACTIONS(4683), 1, + anon_sym_DASH_GT, + ACTIONS(4688), 1, anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(4691), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_new, - anon_sym_yield, - anon_sym_lazy, - anon_sym_assert, - anon_sym_upcast, - anon_sym_downcast, - anon_sym_LT_AT, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_fun, - anon_sym_try, - anon_sym_match, - anon_sym_function, - anon_sym_use, - anon_sym_begin, + ACTIONS(4694), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(4700), 1, + anon_sym_SQUOTE, + ACTIONS(4703), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(4706), 1, anon_sym_DQUOTE, + ACTIONS(4709), 1, + anon_sym_AT_DQUOTE, + ACTIONS(4712), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4718), 1, sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4721), 1, + sym_unit, + ACTIONS(4724), 1, sym_int, - sym_identifier, - [1501] = 31, + ACTIONS(4727), 1, + sym_xint, + ACTIONS(4732), 1, + anon_sym_LBRACE, + STATE(3029), 1, + sym_float, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + ACTIONS(4685), 2, + anon_sym_null, + anon_sym__, + STATE(3094), 2, + sym_format_string, + sym__string_literal, + STATE(2618), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_argument_patterns_repeat1, + STATE(3117), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3140), 21, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytechar, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2677] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4006), 1, - anon_sym_LT2, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, - anon_sym_LBRACE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - STATE(2555), 1, + ACTIONS(4730), 1, + anon_sym_LBRACE, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(2563), 1, - sym_type_arguments, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4602), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(5369), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2551), 3, + STATE(2619), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287439,76 +290875,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [1623] = 31, + [2793] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4006), 1, - anon_sym_LT2, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, - anon_sym_LBRACE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - STATE(2555), 1, + ACTIONS(4730), 1, + anon_sym_LBRACE, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(2565), 1, - sym_type_arguments, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4668), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4886), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2552), 3, + STATE(2620), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287530,76 +290962,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [1745] = 31, + [2909] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4006), 1, - anon_sym_LT2, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_LBRACE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - STATE(2555), 1, + STATE(2612), 1, aux_sym_argument_patterns_repeat1, - STATE(2569), 1, - sym_type_arguments, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, + STATE(3029), 1, + sym_float, + STATE(3114), 1, sym__atomic_pattern, - STATE(4351), 1, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4628), 1, sym_argument_patterns, - STATE(4556), 1, - sym_float, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2553), 3, + STATE(2621), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287621,72 +291049,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [1867] = 28, + [3025] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4556), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4564), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4567), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4570), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4573), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4579), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4582), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4585), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4591), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4594), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4597), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4600), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4603), 1, + ACTIONS(4676), 1, sym_xint, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + ACTIONS(4730), 1, + anon_sym_LBRACE, + STATE(2616), 1, + aux_sym_argument_patterns_repeat1, + STATE(3029), 1, sym_float, - ACTIONS(4559), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4561), 2, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4823), 1, + sym_argument_patterns, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2554), 4, + STATE(2622), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_argument_patterns_repeat1, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287708,73 +291136,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [1982] = 29, + [3141] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, - anon_sym_LBRACE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - STATE(2554), 1, + ACTIONS(4730), 1, + anon_sym_LBRACE, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - ACTIONS(4526), 2, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(5034), 1, + sym_argument_patterns, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - ACTIONS(4606), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2555), 3, + STATE(2623), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287796,72 +291223,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2099] = 29, + [3257] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - ACTIONS(4608), 1, + ACTIONS(4730), 1, anon_sym_LBRACE, - STATE(2568), 1, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4817), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4938), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2556), 3, + STATE(2624), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287883,72 +291310,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2215] = 29, + [3373] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - ACTIONS(4608), 1, + ACTIONS(4730), 1, anon_sym_LBRACE, - STATE(2568), 1, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4943), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(5067), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2557), 3, + STATE(2625), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -287970,72 +291397,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2331] = 29, + [3489] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4656), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, + STATE(2612), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4783), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4699), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2558), 3, + STATE(2626), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -288057,72 +291484,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2447] = 29, + [3605] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - ACTIONS(4608), 1, + ACTIONS(4730), 1, anon_sym_LBRACE, - STATE(2568), 1, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(4881), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(4779), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2559), 3, + STATE(2627), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -288144,72 +291571,72 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2563] = 29, + [3721] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4646), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4658), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4660), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4664), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4666), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, + ACTIONS(4670), 1, sym_bool, - ACTIONS(4550), 1, + ACTIONS(4672), 1, sym_unit, - ACTIONS(4552), 1, + ACTIONS(4674), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4676), 1, sym_xint, - ACTIONS(4608), 1, + ACTIONS(4730), 1, anon_sym_LBRACE, - STATE(2568), 1, + STATE(2616), 1, aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(3029), 1, sym_float, - STATE(5309), 1, + STATE(3114), 1, + sym__atomic_pattern, + STATE(3139), 1, + sym_format_triple_quoted_string, + STATE(5098), 1, sym_argument_patterns, - ACTIONS(4526), 2, + ACTIONS(4648), 2, anon_sym_null, anon_sym__, - STATE(3009), 2, + STATE(3094), 2, sym_format_string, sym__string_literal, - STATE(2560), 3, + STATE(2628), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, + STATE(3117), 5, sym_list_pattern, sym_array_pattern, sym_record_pattern, sym_const, sym_long_identifier, - STATE(3028), 21, + STATE(3140), 21, sym_char, sym_string, sym_verbatim_string, @@ -288231,72 +291658,388 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2679] = 29, + [3837] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4735), 1, + anon_sym_y, + ACTIONS(4737), 1, + anon_sym_uy, + ACTIONS(4739), 1, + anon_sym_s, + ACTIONS(4741), 1, + anon_sym_us, + ACTIONS(4743), 1, + anon_sym_l, + ACTIONS(4745), 1, + aux_sym_uint32_token1, + ACTIONS(4747), 1, + anon_sym_n, + ACTIONS(4749), 1, + anon_sym_un, + ACTIONS(4751), 1, + anon_sym_L, + ACTIONS(4753), 1, + aux_sym_uint64_token1, + ACTIONS(4755), 1, + aux_sym_bignum_token1, + ACTIONS(4757), 1, + aux_sym_decimal_token1, + ACTIONS(4759), 1, + anon_sym_DOT2, + ACTIONS(4761), 1, + aux_sym_float_token1, + STATE(2629), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2231), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2229), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [3934] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4763), 1, + anon_sym_y, + ACTIONS(4765), 1, + anon_sym_uy, + ACTIONS(4767), 1, + anon_sym_s, + ACTIONS(4769), 1, + anon_sym_us, + ACTIONS(4771), 1, + anon_sym_l, + ACTIONS(4773), 1, + aux_sym_uint32_token1, + ACTIONS(4775), 1, + anon_sym_n, + ACTIONS(4777), 1, + anon_sym_un, + ACTIONS(4779), 1, + anon_sym_L, + ACTIONS(4781), 1, + aux_sym_uint64_token1, + ACTIONS(4783), 1, + aux_sym_bignum_token1, + ACTIONS(4785), 1, + aux_sym_decimal_token1, + ACTIONS(4787), 1, + anon_sym_DOT2, + ACTIONS(4789), 1, + aux_sym_float_token1, + STATE(2630), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2231), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2229), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4027] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4791), 1, + anon_sym_y, + ACTIONS(4793), 1, + anon_sym_uy, + ACTIONS(4795), 1, + anon_sym_s, + ACTIONS(4797), 1, + anon_sym_us, + ACTIONS(4799), 1, + anon_sym_l, + ACTIONS(4801), 1, + aux_sym_uint32_token1, + ACTIONS(4803), 1, + anon_sym_n, + ACTIONS(4805), 1, + anon_sym_un, + ACTIONS(4807), 1, + anon_sym_L, + ACTIONS(4809), 1, + aux_sym_uint64_token1, + ACTIONS(4811), 1, + aux_sym_bignum_token1, + ACTIONS(4813), 1, + aux_sym_decimal_token1, + ACTIONS(4815), 1, + anon_sym_DOT2, + ACTIONS(4817), 1, + aux_sym_float_token1, + STATE(2631), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2231), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2229), 16, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4119] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4819), 1, + anon_sym_y, + ACTIONS(4821), 1, + anon_sym_uy, + ACTIONS(4823), 1, + anon_sym_s, + ACTIONS(4825), 1, + anon_sym_us, + ACTIONS(4827), 1, + anon_sym_l, + ACTIONS(4829), 1, + aux_sym_uint32_token1, + ACTIONS(4831), 1, + anon_sym_n, + ACTIONS(4833), 1, + anon_sym_un, + ACTIONS(4835), 1, + anon_sym_L, + ACTIONS(4837), 1, + aux_sym_uint64_token1, + ACTIONS(4839), 1, + aux_sym_bignum_token1, + ACTIONS(4841), 1, + aux_sym_decimal_token1, + ACTIONS(4843), 1, + anon_sym_DOT2, + ACTIONS(4845), 1, + aux_sym_float_token1, + STATE(2632), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2231), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2229), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4209] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4847), 1, + aux_sym_float_token1, + STATE(2633), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2693), 14, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2695), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4269] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, - sym_identifier, - ACTIONS(4528), 1, - anon_sym_LPAREN, - ACTIONS(4530), 1, - anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, + ACTIONS(4849), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, + ACTIONS(4851), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4853), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + ACTIONS(4855), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4857), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4859), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, - sym_unit, - ACTIONS(4552), 1, + ACTIONS(4863), 1, sym_int, - ACTIONS(4554), 1, + ACTIONS(4865), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, + STATE(4175), 1, sym_float, - STATE(4731), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, + STATE(4657), 1, + sym_format_triple_quoted_string, + STATE(4737), 1, + sym_const, + ACTIONS(4861), 2, + sym_bool, + sym_unit, + STATE(4618), 2, sym_format_string, sym__string_literal, - STATE(2561), 3, + STATE(2634), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, + STATE(4655), 21, sym_char, sym_string, sym_verbatim_string, @@ -288318,830 +292061,537 @@ static const uint16_t ts_small_parse_table[] = { sym_ieee64, sym_bignum, sym_decimal, - [2795] = 29, + [4351] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, - sym_identifier, - ACTIONS(4528), 1, + STATE(2635), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2752), 14, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + sym_bool, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2754), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - STATE(4741), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2562), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2911] = 29, + [4408] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4873), 1, + anon_sym_DASH_GT, + ACTIONS(4875), 1, + anon_sym_STAR, + ACTIONS(4877), 1, + anon_sym_LT2, + ACTIONS(4879), 1, + anon_sym_LBRACK_RBRACK, + STATE(2686), 1, + aux_sym__compound_type_repeat1, + STATE(2707), 1, + sym_long_identifier, + STATE(2728), 1, + sym_type_arguments, + STATE(2636), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4871), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4532), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(4869), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - ACTIONS(4536), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, - anon_sym_DQUOTE, - ACTIONS(4542), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - STATE(2555), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4351), 1, - sym_argument_patterns, - STATE(4556), 1, - sym_float, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2563), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3027] = 29, + [4481] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4883), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_STAR, + ACTIONS(4887), 1, + anon_sym_LT2, + ACTIONS(4889), 1, + anon_sym_LBRACK_RBRACK, + STATE(2684), 1, + aux_sym__compound_type_repeat1, + STATE(2712), 1, + sym_long_identifier, + STATE(2716), 1, + sym_type_arguments, + STATE(2637), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4871), 10, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + sym_bool, + sym_int, + ACTIONS(4869), 17, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - STATE(4912), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2564), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3143] = 29, + [4554] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, - sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4891), 1, + sym_int, + STATE(2638), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2758), 13, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4532), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2760), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - ACTIONS(4536), 1, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, - ACTIONS(4538), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, - anon_sym_DQUOTE, - ACTIONS(4542), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - STATE(2555), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4536), 1, - sym_argument_patterns, - STATE(4556), 1, - sym_float, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2565), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3259] = 29, + [4613] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4883), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_STAR, + ACTIONS(4887), 1, + anon_sym_LT2, + ACTIONS(4889), 1, + anon_sym_LBRACK_RBRACK, + STATE(2684), 1, + aux_sym__compound_type_repeat1, + STATE(2712), 1, + sym_long_identifier, + STATE(2716), 1, + sym_type_arguments, + STATE(2639), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2319), 10, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + sym_bool, + sym_int, + ACTIONS(2321), 17, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - STATE(4850), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2566), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3375] = 28, + [4686] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4556), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(4559), 1, + ACTIONS(4873), 1, anon_sym_DASH_GT, - ACTIONS(4564), 1, + ACTIONS(4875), 1, + anon_sym_STAR, + ACTIONS(4877), 1, + anon_sym_LT2, + ACTIONS(4879), 1, + anon_sym_LBRACK_RBRACK, + STATE(2686), 1, + aux_sym__compound_type_repeat1, + STATE(2707), 1, + sym_long_identifier, + STATE(2728), 1, + sym_type_arguments, + STATE(2640), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2363), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4567), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4570), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4576), 1, - anon_sym_SQUOTE, - ACTIONS(4579), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4585), 1, - anon_sym_AT_DQUOTE, - ACTIONS(4588), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4591), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4594), 1, sym_bool, - ACTIONS(4597), 1, - sym_unit, - ACTIONS(4600), 1, sym_int, - ACTIONS(4603), 1, - sym_xint, - ACTIONS(4610), 1, - anon_sym_LBRACE, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - ACTIONS(4561), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2567), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_argument_patterns_repeat1, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3489] = 29, + ACTIONS(2361), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4759] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4883), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_STAR, + ACTIONS(4887), 1, + anon_sym_LT2, + ACTIONS(4889), 1, + anon_sym_LBRACK_RBRACK, + STATE(2684), 1, + aux_sym__compound_type_repeat1, + STATE(2712), 1, + sym_long_identifier, + STATE(2716), 1, + sym_type_arguments, + STATE(2641), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4895), 10, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + sym_bool, + sym_int, + ACTIONS(4893), 17, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - ACTIONS(4606), 1, - anon_sym_DASH_GT, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2567), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2568), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3605] = 29, + [4832] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4873), 1, + anon_sym_DASH_GT, + ACTIONS(4875), 1, + anon_sym_STAR, + ACTIONS(4877), 1, + anon_sym_LT2, + ACTIONS(4879), 1, + anon_sym_LBRACK_RBRACK, + STATE(2686), 1, + aux_sym__compound_type_repeat1, + STATE(2707), 1, + sym_long_identifier, + STATE(2728), 1, + sym_type_arguments, + STATE(2642), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2373), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4532), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(2375), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(4534), 1, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - ACTIONS(4536), 1, anon_sym_SQUOTE, - ACTIONS(4538), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, - anon_sym_DQUOTE, - ACTIONS(4542), 1, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - STATE(2555), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - STATE(4668), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2569), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3721] = 29, + [4905] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4524), 1, - sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4897), 1, + anon_sym_DOT, + STATE(2646), 1, + aux_sym_long_identifier_repeat1, + STATE(2643), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4530), 1, + anon_sym_PIPE, anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4540), 1, anon_sym_DQUOTE, - ACTIONS(4542), 1, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2523), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4544), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4548), 1, - sym_bool, - ACTIONS(4550), 1, sym_unit, - ACTIONS(4552), 1, - sym_int, - ACTIONS(4554), 1, sym_xint, - ACTIONS(4608), 1, - anon_sym_LBRACE, - STATE(2568), 1, - aux_sym_argument_patterns_repeat1, - STATE(3031), 1, - sym_format_triple_quoted_string, - STATE(3036), 1, - sym__atomic_pattern, - STATE(4556), 1, - sym_float, - STATE(4690), 1, - sym_argument_patterns, - ACTIONS(4526), 2, - anon_sym_null, - anon_sym__, - STATE(3009), 2, - sym_format_string, - sym__string_literal, - STATE(2570), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3051), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3028), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [3837] = 21, + [4966] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2253), 1, - aux_sym_float_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4613), 1, - anon_sym_y, - ACTIONS(4615), 1, - anon_sym_uy, - ACTIONS(4617), 1, - anon_sym_s, - ACTIONS(4619), 1, - anon_sym_us, - ACTIONS(4621), 1, - anon_sym_l, - ACTIONS(4623), 1, - aux_sym_uint32_token1, - ACTIONS(4625), 1, - anon_sym_n, - ACTIONS(4627), 1, - anon_sym_un, - ACTIONS(4629), 1, - anon_sym_L, - ACTIONS(4631), 1, - aux_sym_uint64_token1, - ACTIONS(4633), 1, - aux_sym_bignum_token1, - ACTIONS(4635), 1, - aux_sym_decimal_token1, - ACTIONS(4637), 1, - anon_sym_DOT2, - STATE(2571), 3, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(4873), 1, + anon_sym_DASH_GT, + ACTIONS(4875), 1, + anon_sym_STAR, + ACTIONS(4877), 1, + anon_sym_LT2, + ACTIONS(4879), 1, + anon_sym_LBRACK_RBRACK, + STATE(2686), 1, + aux_sym__compound_type_repeat1, + STATE(2707), 1, + sym_long_identifier, + STATE(2728), 1, + sym_type_arguments, + STATE(2644), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + ACTIONS(2319), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289153,12 +292603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - sym_identifier, - ACTIONS(2225), 21, + ACTIONS(2321), 16, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -289168,69 +292614,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [3934] = 21, + [5039] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2253), 1, - aux_sym_float_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(4639), 1, - anon_sym_y, - ACTIONS(4641), 1, - anon_sym_uy, - ACTIONS(4643), 1, - anon_sym_s, - ACTIONS(4645), 1, - anon_sym_us, - ACTIONS(4647), 1, - anon_sym_l, - ACTIONS(4649), 1, - aux_sym_uint32_token1, - ACTIONS(4651), 1, - anon_sym_n, - ACTIONS(4653), 1, - anon_sym_un, - ACTIONS(4655), 1, - anon_sym_L, - ACTIONS(4657), 1, - aux_sym_uint64_token1, - ACTIONS(4659), 1, - aux_sym_bignum_token1, - ACTIONS(4661), 1, - aux_sym_decimal_token1, - STATE(2572), 3, + ACTIONS(4881), 1, + sym_identifier, + ACTIONS(4883), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_STAR, + ACTIONS(4887), 1, + anon_sym_LT2, + ACTIONS(4889), 1, + anon_sym_LBRACK_RBRACK, + STATE(2684), 1, + aux_sym__compound_type_repeat1, + STATE(2712), 1, + sym_long_identifier, + STATE(2716), 1, + sym_type_arguments, + STATE(2645), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + ACTIONS(2411), 10, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - sym_identifier, - ACTIONS(2225), 17, + ACTIONS(2409), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -289241,126 +292672,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4027] = 21, + [5112] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2253), 1, - aux_sym_float_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(4663), 1, - anon_sym_y, - ACTIONS(4665), 1, - anon_sym_uy, - ACTIONS(4667), 1, - anon_sym_s, - ACTIONS(4669), 1, - anon_sym_us, - ACTIONS(4671), 1, - anon_sym_l, - ACTIONS(4673), 1, - aux_sym_uint32_token1, - ACTIONS(4675), 1, - anon_sym_n, - ACTIONS(4677), 1, - anon_sym_un, - ACTIONS(4679), 1, - anon_sym_L, - ACTIONS(4681), 1, - aux_sym_uint64_token1, - ACTIONS(4683), 1, - aux_sym_bignum_token1, - ACTIONS(4685), 1, - aux_sym_decimal_token1, - STATE(2573), 3, + ACTIONS(4897), 1, + anon_sym_DOT, + STATE(2653), 1, + aux_sym_long_identifier_repeat1, + STATE(2646), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + ACTIONS(2594), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 16, + ACTIONS(2596), 21, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4119] = 21, + [5173] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2253), 1, - aux_sym_float_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(4687), 1, - anon_sym_y, - ACTIONS(4689), 1, - anon_sym_uy, - ACTIONS(4691), 1, - anon_sym_s, - ACTIONS(4693), 1, - anon_sym_us, - ACTIONS(4695), 1, - anon_sym_l, - ACTIONS(4697), 1, - aux_sym_uint32_token1, - ACTIONS(4699), 1, - anon_sym_n, - ACTIONS(4701), 1, - anon_sym_un, - ACTIONS(4703), 1, - anon_sym_L, - ACTIONS(4705), 1, - aux_sym_uint64_token1, - ACTIONS(4707), 1, - aux_sym_bignum_token1, - ACTIONS(4709), 1, - aux_sym_decimal_token1, - STATE(2574), 3, + ACTIONS(4881), 1, + sym_identifier, + ACTIONS(4883), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_STAR, + ACTIONS(4887), 1, + anon_sym_LT2, + ACTIONS(4889), 1, + anon_sym_LBRACK_RBRACK, + STATE(2684), 1, + aux_sym__compound_type_repeat1, + STATE(2712), 1, + sym_long_identifier, + STATE(2716), 1, + sym_type_arguments, + STATE(2647), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 11, + ACTIONS(2373), 10, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289371,9 +292770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - sym_identifier, - ACTIONS(2225), 15, + ACTIONS(2375), 17, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -289381,127 +292782,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4209] = 19, + [5246] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4711), 1, - anon_sym_SQUOTE, - ACTIONS(4713), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(4873), 1, + anon_sym_DASH_GT, + ACTIONS(4875), 1, + anon_sym_STAR, + ACTIONS(4877), 1, + anon_sym_LT2, + ACTIONS(4879), 1, + anon_sym_LBRACK_RBRACK, + STATE(2686), 1, + aux_sym__compound_type_repeat1, + STATE(2707), 1, + sym_long_identifier, + STATE(2728), 1, + sym_type_arguments, + STATE(2648), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4895), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4715), 1, anon_sym_DQUOTE, - ACTIONS(4717), 1, + sym_bool, + sym_int, + ACTIONS(4893), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, - ACTIONS(4719), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4721), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4725), 1, - sym_int, - ACTIONS(4727), 1, - sym_xint, - STATE(4323), 1, - sym_const, - STATE(4390), 1, - sym_float, - STATE(4600), 1, - sym_format_triple_quoted_string, - ACTIONS(4723), 2, - sym_bool, sym_unit, - STATE(4664), 2, - sym_format_string, - sym__string_literal, - STATE(2575), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(4598), 21, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytechar, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [4291] = 15, + sym_xint, + [5319] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(4735), 1, + ACTIONS(4873), 1, anon_sym_DASH_GT, - ACTIONS(4737), 1, + ACTIONS(4875), 1, anon_sym_STAR, - ACTIONS(4739), 1, + ACTIONS(4877), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4879), 1, anon_sym_LBRACK_RBRACK, - STATE(2623), 1, + STATE(2686), 1, aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, + STATE(2707), 1, sym_long_identifier, - STATE(2576), 3, + STATE(2728), 1, + sym_type_arguments, + STATE(2649), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4733), 10, + ACTIONS(2411), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(4731), 17, + ACTIONS(2409), 16, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -289509,36 +292904,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4364] = 15, + [5392] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(4735), 1, + ACTIONS(4883), 1, anon_sym_DASH_GT, - ACTIONS(4737), 1, + ACTIONS(4885), 1, anon_sym_STAR, - ACTIONS(4739), 1, + ACTIONS(4887), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4889), 1, anon_sym_LBRACK_RBRACK, - STATE(2623), 1, + STATE(2684), 1, aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, + STATE(2712), 1, sym_long_identifier, - STATE(2577), 3, + STATE(2716), 1, + sym_type_arguments, + STATE(2650), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2343), 10, + ACTIONS(2363), 10, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289549,7 +292944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2345), 17, + ACTIONS(2361), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -289567,36 +292962,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4437] = 15, + [5465] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2578), 3, + ACTIONS(4757), 1, + aux_sym_decimal_token1, + ACTIONS(4899), 1, + anon_sym_f, + STATE(2651), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4733), 11, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289608,8 +292991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(4731), 16, + sym_identifier, + ACTIONS(2229), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -289619,42 +293006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4510] = 15, + [5526] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2579), 3, + STATE(2652), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4755), 11, + ACTIONS(2693), 14, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289666,8 +293039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(4753), 16, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2695), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -289677,42 +293056,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4583] = 15, + [5583] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2580), 3, + ACTIONS(4901), 1, + anon_sym_DOT, + STATE(2653), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2307), 11, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289724,8 +293092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2305), 16, + sym_identifier, + ACTIONS(2605), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -289735,204 +293107,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4656] = 15, + [5642] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(4735), 1, - anon_sym_DASH_GT, - ACTIONS(4737), 1, - anon_sym_STAR, - ACTIONS(4739), 1, - anon_sym_LT2, - ACTIONS(4741), 1, - anon_sym_LBRACK_RBRACK, - STATE(2623), 1, - aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, - sym_long_identifier, - STATE(2581), 3, + STATE(2654), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2307), 10, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2305), 17, + sym_identifier, + ACTIONS(2605), 22, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4729] = 15, + [5698] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2582), 3, + ACTIONS(4904), 1, + anon_sym_y, + ACTIONS(4906), 1, + anon_sym_uy, + ACTIONS(4908), 1, + anon_sym_s, + ACTIONS(4910), 1, + anon_sym_us, + ACTIONS(4912), 1, + anon_sym_l, + ACTIONS(4914), 1, + aux_sym_uint32_token1, + ACTIONS(4916), 1, + anon_sym_n, + ACTIONS(4918), 1, + anon_sym_un, + ACTIONS(4920), 1, + anon_sym_L, + ACTIONS(4922), 1, + aux_sym_uint64_token1, + ACTIONS(4924), 1, + aux_sym_bignum_token1, + ACTIONS(4926), 1, + aux_sym_decimal_token1, + ACTIONS(4928), 1, + anon_sym_DOT2, + ACTIONS(4930), 1, + aux_sym_float_token1, + STATE(2655), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2343), 11, - anon_sym_COLON, + ACTIONS(2231), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2345), 16, + sym_identifier, + ACTIONS(2229), 11, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4802] = 15, + [5782] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(4735), 1, - anon_sym_DASH_GT, - ACTIONS(4737), 1, - anon_sym_STAR, - ACTIONS(4739), 1, - anon_sym_LT2, - ACTIONS(4741), 1, - anon_sym_LBRACK_RBRACK, - STATE(2623), 1, - aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, - sym_long_identifier, - STATE(2583), 3, + ACTIONS(4932), 1, + anon_sym_DOT, + STATE(2657), 1, + aux_sym_long_identifier_repeat1, + STATE(2656), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2359), 10, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2361), 17, + sym_identifier, + ACTIONS(2523), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4875] = 9, + [5842] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4757), 1, + ACTIONS(4932), 1, anon_sym_DOT, - STATE(2587), 1, + STATE(2661), 1, aux_sym_long_identifier_repeat1, - STATE(2584), 3, + STATE(2657), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 12, + ACTIONS(2594), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -289945,11 +293308,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2494), 21, + ACTIONS(2596), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -289960,204 +293320,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4936] = 9, + [5902] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4757), 1, + ACTIONS(4934), 1, anon_sym_DOT, - STATE(2584), 1, + STATE(2659), 1, aux_sym_long_identifier_repeat1, - STATE(2585), 3, + STATE(2658), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2594), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 21, + ACTIONS(2596), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [4997] = 15, + [5962] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2586), 3, + ACTIONS(4936), 1, + anon_sym_DOT, + STATE(2659), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2365), 11, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2363), 16, + sym_identifier, + ACTIONS(2605), 21, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5070] = 8, + [6020] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4759), 1, + ACTIONS(4934), 1, anon_sym_DOT, - STATE(2587), 4, + STATE(2658), 1, + aux_sym_long_identifier_repeat1, + STATE(2660), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 12, + ACTIONS(2517), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 21, + ACTIONS(2523), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5129] = 15, + [6080] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - anon_sym_DASH_GT, - ACTIONS(4747), 1, - anon_sym_STAR, - ACTIONS(4749), 1, - anon_sym_LT2, - ACTIONS(4751), 1, - anon_sym_LBRACK_RBRACK, - STATE(2600), 1, - aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, - sym_long_identifier, - STATE(2588), 3, + ACTIONS(4939), 1, + anon_sym_DOT, + STATE(2661), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2359), 11, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290169,7 +293509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2361), 16, + sym_identifier, + ACTIONS(2605), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -290180,146 +293521,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5202] = 15, + [6138] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(4735), 1, - anon_sym_DASH_GT, - ACTIONS(4737), 1, - anon_sym_STAR, - ACTIONS(4739), 1, - anon_sym_LT2, - ACTIONS(4741), 1, - anon_sym_LBRACK_RBRACK, - STATE(2623), 1, - aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, - sym_long_identifier, - STATE(2589), 3, + STATE(2662), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4755), 10, + ACTIONS(2884), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(4753), 17, + sym_identifier, + ACTIONS(2886), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5275] = 15, + [6193] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(4735), 1, - anon_sym_DASH_GT, - ACTIONS(4737), 1, - anon_sym_STAR, - ACTIONS(4739), 1, - anon_sym_LT2, - ACTIONS(4741), 1, - anon_sym_LBRACK_RBRACK, - STATE(2623), 1, - aux_sym__compound_type_repeat1, - STATE(2644), 1, - sym_type_arguments, - STATE(2649), 1, - sym_long_identifier, - STATE(2590), 3, + STATE(2663), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2365), 10, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2363), 17, + sym_identifier, + ACTIONS(3822), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5348] = 9, + [6248] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4762), 1, - anon_sym_DOT, - STATE(2595), 1, - aux_sym_long_identifier_repeat1, - STATE(2591), 3, + STATE(2664), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2962), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290332,8 +293653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 20, + ACTIONS(2964), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -290344,197 +293668,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5408] = 8, + [6303] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4764), 1, - anon_sym_DOT, - STATE(2592), 4, + STATE(2665), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 11, + ACTIONS(2930), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 21, + ACTIONS(2932), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5466] = 9, + [6358] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4767), 1, - anon_sym_DOT, - STATE(2592), 1, - aux_sym_long_identifier_repeat1, - STATE(2593), 3, + STATE(2666), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 11, + ACTIONS(3105), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2494), 21, + ACTIONS(3107), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5526] = 21, + [6413] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2253), 1, - aux_sym_float_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(4769), 1, - anon_sym_y, - ACTIONS(4771), 1, - anon_sym_uy, - ACTIONS(4773), 1, - anon_sym_s, - ACTIONS(4775), 1, - anon_sym_us, - ACTIONS(4777), 1, - anon_sym_l, - ACTIONS(4779), 1, - aux_sym_uint32_token1, - ACTIONS(4781), 1, - anon_sym_n, - ACTIONS(4783), 1, - anon_sym_un, - ACTIONS(4785), 1, - anon_sym_L, - ACTIONS(4787), 1, - aux_sym_uint64_token1, - ACTIONS(4789), 1, - aux_sym_bignum_token1, - ACTIONS(4791), 1, - aux_sym_decimal_token1, - STATE(2594), 3, + STATE(2667), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 9, + ACTIONS(2856), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 11, + ACTIONS(2858), 21, anon_sym_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5610] = 9, + [6468] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4762), 1, - anon_sym_DOT, - STATE(2596), 1, - aux_sym_long_identifier_repeat1, - STATE(2595), 3, + STATE(2668), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 12, + ACTIONS(2860), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290547,8 +293845,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2494), 20, + ACTIONS(2862), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -290559,32 +293860,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5670] = 8, + [6523] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4793), 1, - anon_sym_DOT, - STATE(2596), 4, + STATE(2669), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 12, + ACTIONS(2872), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290597,8 +293893,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 20, + ACTIONS(2874), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -290609,29 +293908,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5728] = 7, + [6578] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2597), 3, + STATE(2670), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 12, + ACTIONS(2876), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290644,7 +293941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 22, + ACTIONS(2878), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -290659,7 +293956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -290667,71 +293963,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5784] = 9, + [6633] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4767), 1, - anon_sym_DOT, - STATE(2593), 1, - aux_sym_long_identifier_repeat1, - STATE(2598), 3, + STATE(2671), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 11, + ACTIONS(2880), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 21, + ACTIONS(2882), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5844] = 7, + [6688] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2599), 3, + STATE(2672), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3068), 12, + ACTIONS(2888), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290744,7 +294037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3070), 21, + ACTIONS(2890), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -290766,24 +294059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5899] = 9, + [6743] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4747), 1, - anon_sym_STAR, - STATE(2602), 1, - aux_sym__compound_type_repeat1, - STATE(2600), 3, + STATE(2673), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2479), 12, + ACTIONS(2648), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290796,7 +294085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2481), 19, + ACTIONS(2650), 21, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -290807,7 +294096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, @@ -290816,20 +294107,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [5958] = 7, + [6798] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2601), 3, + STATE(2674), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2776), 12, + ACTIONS(2864), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290842,7 +294133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2778), 21, + ACTIONS(2866), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -290864,69 +294155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6013] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4796), 1, - anon_sym_STAR, - STATE(2602), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2343), 12, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2345), 19, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [6070] = 7, + [6853] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2603), 3, + STATE(2675), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2784), 12, + ACTIONS(3035), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -290939,7 +294181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2786), 21, + ACTIONS(3037), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -290961,68 +294203,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6125] = 7, + [6908] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2604), 3, + STATE(2676), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2874), 12, + ACTIONS(2603), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2876), 21, + ACTIONS(2605), 22, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6180] = 7, + [6963] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2605), 3, + STATE(2677), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2798), 12, + ACTIONS(2908), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291035,7 +294277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2800), 21, + ACTIONS(2910), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291057,20 +294299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6235] = 7, + [7018] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2606), 3, + STATE(2678), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2878), 12, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291083,7 +294325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2880), 21, + ACTIONS(2229), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291105,20 +294347,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6290] = 7, + [7073] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2607), 3, + STATE(2679), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2870), 12, + ACTIONS(2997), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291131,7 +294373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2872), 21, + ACTIONS(2999), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291153,20 +294395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6345] = 7, + [7128] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2608), 3, + ACTIONS(4942), 1, + anon_sym_COLON_GT, + STATE(2680), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 11, + ACTIONS(2658), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291178,7 +294422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 22, + ACTIONS(2660), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291191,7 +294435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, @@ -291201,20 +294444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6400] = 7, + [7185] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2609), 3, + STATE(2681), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2866), 12, + ACTIONS(2934), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291227,7 +294470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2868), 21, + ACTIONS(2936), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291249,68 +294492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6455] = 7, + [7240] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2610), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2601), 12, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2603), 21, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, + ACTIONS(4944), 1, anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [6510] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(2611), 3, + STATE(2682), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2862), 12, + aux_sym__compound_type_repeat1, + ACTIONS(2319), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291323,59 +294521,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2864), 21, + ACTIONS(2321), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [6565] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(2612), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2858), 12, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2860), 21, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -291387,26 +294534,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6620] = 7, + [7297] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2613), 3, + STATE(2683), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2802), 12, + ACTIONS(2948), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291419,7 +294567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2804), 21, + ACTIONS(2950), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291441,95 +294589,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6675] = 7, + [7352] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2614), 3, + ACTIONS(4885), 1, + anon_sym_STAR, + STATE(2690), 1, + aux_sym__compound_type_repeat1, + STATE(2684), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2882), 12, + ACTIONS(2587), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2884), 21, + ACTIONS(2589), 20, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [6730] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4799), 1, - anon_sym_COLON_GT, - STATE(2615), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2605), 12, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2607), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, @@ -291538,20 +294639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6787] = 7, + [7411] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2616), 3, + STATE(2685), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 12, + ACTIONS(2644), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291564,7 +294665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 21, + ACTIONS(2646), 21, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -291575,8 +294676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, @@ -291586,20 +294687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6842] = 7, + [7466] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2617), 3, + ACTIONS(4875), 1, + anon_sym_STAR, + STATE(2682), 1, + aux_sym__compound_type_repeat1, + STATE(2686), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, + ACTIONS(2587), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291612,11 +294717,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 21, + ACTIONS(2589), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -291628,26 +294730,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6897] = 7, + [7525] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2618), 3, + STATE(2687), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2998), 12, + ACTIONS(3139), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291660,7 +294763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3000), 21, + ACTIONS(3141), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291682,68 +294785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6952] = 7, + [7580] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(2619), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2601), 11, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2603), 22, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [7007] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2620), 3, + STATE(2688), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 12, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291756,7 +294811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2611), 21, + ACTIONS(2605), 21, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -291767,8 +294822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, @@ -291778,20 +294833,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7062] = 7, + [7635] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2621), 3, + STATE(2689), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2806), 12, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291804,7 +294859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2808), 21, + ACTIONS(3822), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291826,118 +294881,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7117] = 7, + [7690] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2622), 3, + ACTIONS(4947), 1, + anon_sym_STAR, + STATE(2690), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + aux_sym__compound_type_repeat1, + ACTIONS(2319), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 21, + ACTIONS(2321), 20, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7172] = 9, + [7747] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4737), 1, - anon_sym_STAR, - STATE(2634), 1, - aux_sym__compound_type_repeat1, - STATE(2623), 3, + STATE(2691), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2479), 11, + ACTIONS(2900), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2481), 20, + ACTIONS(2902), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7231] = 7, + [7802] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2624), 3, + STATE(2692), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2810), 12, + ACTIONS(3027), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291950,7 +295004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2812), 21, + ACTIONS(3029), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -291972,22 +295026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7286] = 8, + [7857] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4801), 1, - anon_sym_COLON_GT, - STATE(2625), 3, + STATE(2693), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 11, + ACTIONS(2648), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -291999,7 +295051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2607), 21, + ACTIONS(2650), 22, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292011,6 +295063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -292021,20 +295074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7343] = 7, + [7912] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2626), 3, + ACTIONS(4950), 1, + anon_sym_COLON_GT, + STATE(2694), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2842), 12, + ACTIONS(2658), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292047,11 +295102,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2844), 21, + ACTIONS(2660), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -292062,27 +295114,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7398] = 7, + [7969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2627), 3, + STATE(2695), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2826), 12, + ACTIONS(2892), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292095,7 +295149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2828), 21, + ACTIONS(2894), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292117,20 +295171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7453] = 7, + [8024] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2628), 3, + STATE(2696), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2830), 12, + ACTIONS(2966), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292143,7 +295197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2832), 21, + ACTIONS(2968), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292165,20 +295219,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7508] = 7, + [8079] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2629), 3, + STATE(2697), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2854), 12, + ACTIONS(2970), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292191,7 +295245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2856), 21, + ACTIONS(2972), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292213,20 +295267,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7563] = 7, + [8134] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2630), 3, + STATE(2698), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2894), 12, + ACTIONS(3031), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292239,7 +295293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2896), 21, + ACTIONS(3033), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292261,20 +295315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7618] = 7, + [8189] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2631), 3, + STATE(2699), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2850), 12, + ACTIONS(3077), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292287,7 +295341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2852), 21, + ACTIONS(3079), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292309,20 +295363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7673] = 7, + [8244] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2632), 3, + STATE(2700), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2834), 12, + ACTIONS(2868), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292335,7 +295389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2836), 21, + ACTIONS(2870), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292357,117 +295411,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7728] = 7, + [8299] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2633), 3, + STATE(2701), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2838), 12, + ACTIONS(2644), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2840), 21, + ACTIONS(2646), 22, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7783] = 8, + [8354] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4803), 1, - anon_sym_STAR, - STATE(2634), 4, + STATE(2702), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2343), 11, + ACTIONS(3039), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2345), 20, + ACTIONS(3041), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7840] = 7, + [8409] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2635), 3, + STATE(2703), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2822), 12, + ACTIONS(3054), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292480,7 +295533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2824), 21, + ACTIONS(3056), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292502,20 +295555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7895] = 7, + [8464] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2636), 3, + STATE(2704), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2952), 12, + ACTIONS(3115), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292528,7 +295581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2954), 21, + ACTIONS(3117), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292550,20 +295603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7950] = 7, + [8519] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2637), 3, + STATE(2705), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2846), 12, + ACTIONS(2916), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292576,7 +295629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2848), 21, + ACTIONS(2918), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292598,20 +295651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8005] = 7, + [8574] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2638), 3, + STATE(2706), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2814), 12, + ACTIONS(2938), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292624,7 +295677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2816), 21, + ACTIONS(2940), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292646,20 +295699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8060] = 7, + [8629] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2639), 3, + STATE(2707), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3032), 12, + ACTIONS(2615), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292672,11 +295725,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3034), 21, + ACTIONS(2621), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -292687,195 +295737,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8115] = 7, + [8683] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2640), 3, + STATE(2708), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2890), 12, + ACTIONS(2685), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2892), 21, + ACTIONS(2687), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8170] = 7, + [8737] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2641), 3, + ACTIONS(4952), 1, + aux_sym_float_token1, + STATE(2709), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, + ACTIONS(2693), 14, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3653), 21, - anon_sym_EQ, + ACTIONS(2695), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8225] = 7, + [8793] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2642), 3, + STATE(2710), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2886), 12, + ACTIONS(2640), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2888), 21, + ACTIONS(2642), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8280] = 7, + [8847] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2643), 3, + STATE(2711), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 11, + ACTIONS(2628), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2611), 22, + ACTIONS(2630), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -292886,20 +295935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8335] = 7, + [8901] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2644), 3, + STATE(2712), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2626), 11, + ACTIONS(2615), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292911,7 +295960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2628), 21, + ACTIONS(2621), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292933,20 +295982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8389] = 7, + [8955] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2645), 3, + STATE(2713), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2597), 11, + ACTIONS(2679), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -292958,7 +296007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2599), 21, + ACTIONS(2681), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -292980,20 +296029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8443] = 7, + [9009] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2646), 3, + STATE(2714), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2626), 12, + ACTIONS(2685), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293006,7 +296055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2628), 20, + ACTIONS(2687), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293027,20 +296076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8497] = 7, + [9063] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2647), 3, + STATE(2715), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2597), 12, + ACTIONS(2632), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293053,7 +296102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2599), 20, + ACTIONS(2634), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293074,42 +296123,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8551] = 7, + [9117] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2648), 3, + STATE(2716), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2567), 12, + ACTIONS(2675), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2569), 20, + ACTIONS(2677), 21, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, @@ -293121,20 +296170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8605] = 7, + [9171] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2649), 3, + STATE(2717), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2591), 11, + ACTIONS(2662), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293146,7 +296195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2593), 21, + ACTIONS(2664), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -293168,42 +296217,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8659] = 7, + [9225] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2650), 3, + STATE(2718), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2571), 11, + ACTIONS(2679), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2573), 21, + ACTIONS(2681), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, @@ -293215,46 +296264,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8713] = 7, + [9279] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2651), 3, + ACTIONS(4954), 1, + anon_sym_LT2, + STATE(2719), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2575), 12, + ACTIONS(2652), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2577), 20, + ACTIONS(2654), 20, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -293262,20 +296312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8767] = 7, + [9335] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2652), 3, + STATE(2720), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 12, + ACTIONS(2662), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293288,7 +296338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2607), 20, + ACTIONS(2664), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293309,47 +296359,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8821] = 8, + [9389] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4806), 1, - anon_sym_LT2, - STATE(2653), 3, + STATE(2721), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2620), 11, + ACTIONS(2658), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2622), 20, + ACTIONS(2660), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, + anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -293357,20 +296406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8877] = 7, + [9443] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2654), 3, + ACTIONS(4956), 1, + anon_sym_LT2, + STATE(2722), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2587), 12, + ACTIONS(2652), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293383,7 +296434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2589), 20, + ACTIONS(2654), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293396,7 +296447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -293404,20 +296454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8931] = 7, + [9499] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2655), 3, + STATE(2723), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2587), 11, + ACTIONS(2658), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293429,7 +296479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2589), 21, + ACTIONS(2660), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -293451,42 +296501,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8985] = 7, + [9553] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2656), 3, + STATE(2724), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2579), 12, + ACTIONS(2632), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2581), 20, + ACTIONS(2634), 21, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, @@ -293498,20 +296548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9039] = 7, + [9607] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2657), 3, + STATE(2725), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2567), 11, + ACTIONS(2628), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293523,7 +296573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2569), 21, + ACTIONS(2630), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -293545,22 +296595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9093] = 8, + [9661] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4808), 1, - anon_sym_LT2, - STATE(2658), 3, + STATE(2726), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2620), 12, + ACTIONS(2640), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293573,7 +296621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2622), 19, + ACTIONS(2642), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293586,6 +296634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -293593,20 +296642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9149] = 7, + [9715] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2659), 3, + STATE(2727), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2583), 12, + ACTIONS(2636), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293619,7 +296668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2585), 20, + ACTIONS(2638), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293640,20 +296689,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9203] = 7, + [9769] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2660), 3, + STATE(2728), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2591), 12, + ACTIONS(2675), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293666,7 +296715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2593), 20, + ACTIONS(2677), 20, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -293687,20 +296736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9257] = 7, + [9823] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2661), 3, + STATE(2729), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2575), 11, + ACTIONS(2636), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293712,7 +296761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2577), 21, + ACTIONS(2638), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -293734,33 +296783,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9311] = 7, + [9877] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2662), 3, + STATE(2730), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 11, + ACTIONS(2752), 14, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2607), 21, - anon_sym_EQ, + ACTIONS(2754), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -293772,89 +296823,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9365] = 7, + [9930] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2663), 3, + ACTIONS(4785), 1, + aux_sym_decimal_token1, + ACTIONS(4958), 1, + anon_sym_f, + STATE(2731), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2571), 12, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2573), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2229), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9419] = 7, + [9987] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2664), 3, + ACTIONS(4960), 1, + anon_sym_DOT, + STATE(2741), 1, + aux_sym_long_identifier_repeat1, + STATE(2732), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2579), 11, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2581), 21, - anon_sym_EQ, + ACTIONS(2523), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -293866,42 +296919,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9473] = 7, + [10044] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2665), 3, + STATE(2733), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2583), 11, + ACTIONS(2693), 14, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2585), 21, - anon_sym_EQ, + ACTIONS(2695), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -293913,33 +296965,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9527] = 9, + [10097] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4964), 1, + anon_sym__, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + anon_sym_POUND, + STATE(356), 1, + sym_type, + STATE(2534), 1, + sym_type_argument, + STATE(2568), 1, + sym_long_identifier, + STATE(4305), 1, + sym_attribute, + STATE(4466), 1, + sym_object_construction, + STATE(5432), 1, + sym_attribute_target, + ACTIONS(4970), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2734), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4962), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(2555), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [10172] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4964), 1, + anon_sym__, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + anon_sym_POUND, + STATE(356), 1, + sym_type, + STATE(2534), 1, + sym_type_argument, + STATE(2568), 1, + sym_long_identifier, + STATE(4417), 1, + sym_attribute, + STATE(4466), 1, + sym_object_construction, + STATE(5432), 1, + sym_attribute_target, + ACTIONS(4970), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2735), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4962), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(2555), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [10247] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4810), 1, + ACTIONS(4972), 1, anon_sym_DOT, - STATE(2675), 1, - aux_sym_long_identifier_repeat1, - STATE(2666), 3, + STATE(2736), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -293952,7 +297114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 17, + ACTIONS(2605), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -293970,43 +297132,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9584] = 18, + [10302] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(4968), 1, anon_sym_POUND, - STATE(353), 1, + STATE(356), 1, sym_type, - STATE(2485), 1, + STATE(2534), 1, sym_type_argument, - STATE(2508), 1, + STATE(2568), 1, sym_long_identifier, - STATE(4185), 1, + STATE(4373), 1, sym_attribute, - STATE(4396), 1, + STATE(4466), 1, sym_object_construction, - STATE(5331), 1, + STATE(5432), 1, sym_attribute_target, - ACTIONS(4820), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2667), 3, + STATE(2737), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4812), 9, + ACTIONS(4962), 9, anon_sym_module, anon_sym_assembly, anon_sym_return, @@ -294016,7 +297178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_constructor, anon_sym_event, - STATE(2506), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -294027,23 +297189,22 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [9659] = 8, + [10377] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4822), 1, - anon_sym_DOT, - STATE(2668), 4, + ACTIONS(4975), 1, + aux_sym_float_token1, + STATE(2738), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 12, + ACTIONS(2693), 14, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294055,8 +297216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2485), 17, + ACTIONS(2695), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294068,40 +297231,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_EQ2, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9714] = 14, + [10432] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(4977), 1, + sym_int, + STATE(2739), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2758), 13, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(4747), 1, + ACTIONS(2760), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10487] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(4875), 1, anon_sym_STAR, - ACTIONS(4749), 1, + ACTIONS(4877), 1, anon_sym_LT2, - ACTIONS(4751), 1, + ACTIONS(4879), 1, anon_sym_LBRACK_RBRACK, - STATE(2600), 1, + STATE(2686), 1, aux_sym__compound_type_repeat1, - STATE(2646), 1, - sym_type_arguments, - STATE(2660), 1, + STATE(2707), 1, sym_long_identifier, - STATE(2669), 3, + STATE(2728), 1, + sym_type_arguments, + STATE(2740), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4733), 10, + ACTIONS(4871), 10, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294112,7 +297321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(4731), 14, + ACTIONS(4869), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -294127,23 +297336,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9781] = 8, + [10554] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4825), 1, + ACTIONS(4960), 1, anon_sym_DOT, - STATE(2670), 4, + STATE(2736), 1, + aux_sym_long_identifier_repeat1, + STATE(2741), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 12, + ACTIONS(2594), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294156,7 +297366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 17, + ACTIONS(2596), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294174,43 +297384,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9836] = 18, + [10611] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(4968), 1, anon_sym_POUND, - STATE(353), 1, + STATE(356), 1, sym_type, - STATE(2485), 1, + STATE(2534), 1, sym_type_argument, - STATE(2508), 1, + STATE(2568), 1, sym_long_identifier, - STATE(4291), 1, + STATE(4298), 1, sym_attribute, - STATE(4396), 1, + STATE(4466), 1, sym_object_construction, - STATE(5331), 1, + STATE(5432), 1, sym_attribute_target, - ACTIONS(4820), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2671), 3, + STATE(2742), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4812), 9, + ACTIONS(4962), 9, anon_sym_module, anon_sym_assembly, anon_sym_return, @@ -294220,7 +297430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_constructor, anon_sym_event, - STATE(2506), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -294231,100 +297441,138 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [9911] = 18, + [10686] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4814), 1, + ACTIONS(4979), 1, + anon_sym_DOT, + STATE(2743), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 12, + anon_sym_COLON, + anon_sym_null, anon_sym__, - ACTIONS(4816), 1, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4818), 1, - anon_sym_POUND, - STATE(353), 1, - sym_type, - STATE(2485), 1, - sym_type_argument, - STATE(2508), 1, - sym_long_identifier, - STATE(4243), 1, - sym_attribute, - STATE(4396), 1, - sym_object_construction, - STATE(5331), 1, - sym_attribute_target, - ACTIONS(4820), 2, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2605), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2672), 3, + anon_sym_EQ2, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10741] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4982), 1, + anon_sym_DOT, + STATE(2743), 1, + aux_sym_long_identifier_repeat1, + STATE(2744), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4812), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(2506), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [9986] = 18, + ACTIONS(2594), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2596), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_EQ2, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10798] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(4968), 1, anon_sym_POUND, - STATE(353), 1, + STATE(356), 1, sym_type, - STATE(2485), 1, + STATE(2534), 1, sym_type_argument, - STATE(2508), 1, + STATE(2568), 1, sym_long_identifier, - STATE(4196), 1, + STATE(4303), 1, sym_attribute, - STATE(4396), 1, + STATE(4466), 1, sym_object_construction, - STATE(5331), 1, + STATE(5432), 1, sym_attribute_target, - ACTIONS(4820), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2673), 3, + STATE(2745), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4812), 9, + ACTIONS(4962), 9, anon_sym_module, anon_sym_assembly, anon_sym_return, @@ -294334,7 +297582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_constructor, anon_sym_event, - STATE(2506), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -294345,24 +297593,122 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [10061] = 9, + [10873] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - STATE(2668), 1, + ACTIONS(4984), 1, + anon_sym_EQ, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2674), 3, + STATE(2746), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2523), 15, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10931] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4982), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_EQ, + STATE(2744), 1, + aux_sym_long_identifier_repeat1, + STATE(2747), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2523), 15, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10989] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4982), 1, + anon_sym_DOT, + ACTIONS(4988), 1, + anon_sym_EQ, + STATE(2744), 1, + aux_sym_long_identifier_repeat1, + STATE(2748), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294375,7 +297721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2494), 17, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294383,47 +297729,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_EQ2, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10118] = 9, + [11047] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4810), 1, - anon_sym_DOT, - STATE(2670), 1, - aux_sym_long_identifier_repeat1, - STATE(2675), 3, + ACTIONS(4813), 1, + aux_sym_decimal_token1, + ACTIONS(4990), 1, + anon_sym_f, + STATE(2749), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 12, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2494), 17, + ACTIONS(2229), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294434,90 +297778,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10175] = 18, + [11103] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4814), 1, - anon_sym__, - ACTIONS(4816), 1, - anon_sym_LPAREN, - ACTIONS(4818), 1, - anon_sym_POUND, - STATE(353), 1, - sym_type, - STATE(2485), 1, - sym_type_argument, - STATE(2508), 1, - sym_long_identifier, - STATE(4396), 1, - sym_object_construction, - STATE(4512), 1, - sym_attribute, - STATE(5331), 1, - sym_attribute_target, - ACTIONS(4820), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2676), 3, + ACTIONS(4897), 1, + anon_sym_DOT, + STATE(2646), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2517), 2, + anon_sym_COLON, + anon_sym_as, + STATE(2750), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4812), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(2506), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [10250] = 10, + ACTIONS(2523), 8, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2511), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2514), 9, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11163] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4830), 1, - anon_sym_EQ, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(2677), 3, + STATE(2751), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294530,7 +297859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2605), 18, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294538,34 +297867,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_SQUOTE, + anon_sym_EQ2, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10308] = 10, + [11215] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4832), 1, + ACTIONS(4992), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2678), 3, + STATE(2752), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294578,7 +297910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294594,28 +297926,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10366] = 11, + [11273] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4757), 1, - anon_sym_DOT, - STATE(2584), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2473), 2, - anon_sym_COLON, - anon_sym_as, - STATE(2679), 3, + STATE(2753), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 8, - anon_sym_EQ, + ACTIONS(2693), 14, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2695), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294623,46 +297962,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2520), 9, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11325] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4982), 1, + anon_sym_DOT, + ACTIONS(4994), 1, + anon_sym_EQ, + STATE(2744), 1, + aux_sym_long_identifier_repeat1, + STATE(2754), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2523), 9, + ACTIONS(2523), 15, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10426] = 10, + [11383] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4834), 1, + ACTIONS(4996), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2680), 3, + STATE(2755), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294675,7 +298051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294691,26 +298067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10484] = 10, + [11441] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4836), 1, - anon_sym_EQ, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(2681), 3, + ACTIONS(4998), 1, + sym_int, + STATE(2756), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2758), 13, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294721,9 +298093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2760), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294731,6 +298104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -294739,20 +298113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10542] = 7, + [11495] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2682), 3, + ACTIONS(4982), 1, + anon_sym_DOT, + STATE(2744), 1, + aux_sym_long_identifier_repeat1, + STATE(2757), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294765,7 +298143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 18, + ACTIONS(2523), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294776,34 +298154,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_SQUOTE, - anon_sym_EQ2, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10594] = 10, + [11551] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4838), 1, + ACTIONS(5000), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2683), 3, + STATE(2758), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294816,7 +298192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294832,26 +298208,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10652] = 10, + [11609] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4840), 1, + ACTIONS(5002), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2684), 3, + STATE(2759), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294864,7 +298240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294880,26 +298256,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10710] = 10, + [11667] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(5004), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2685), 3, + STATE(2760), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294912,7 +298288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294928,26 +298304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10768] = 10, + [11725] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4844), 1, - anon_sym_EQ, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(2686), 3, + STATE(2761), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2752), 14, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -294959,8 +298329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2754), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -294968,6 +298340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -294976,26 +298349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10826] = 10, + [11777] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, + ACTIONS(4982), 1, anon_sym_DOT, - ACTIONS(4846), 1, + ACTIONS(5006), 1, anon_sym_EQ, - STATE(2674), 1, + STATE(2744), 1, aux_sym_long_identifier_repeat1, - STATE(2687), 3, + STATE(2762), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2517), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295008,7 +298381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2523), 15, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295024,20 +298397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10884] = 7, + [11835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2688), 3, + STATE(2763), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 12, + ACTIONS(2603), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295050,7 +298423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 18, + ACTIONS(2605), 18, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295069,39 +298442,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10936] = 10, + [11887] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - ACTIONS(4848), 1, - anon_sym_EQ, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(2689), 3, + STATE(2764), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(2876), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 15, + ACTIONS(2878), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295109,45 +298476,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10994] = 9, + [11938] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(2690), 3, + STATE(2765), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 12, + ACTIONS(3054), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 16, + ACTIONS(3056), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11989] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5012), 1, + anon_sym_LT2, + STATE(2766), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5008), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5010), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295164,23 +298575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11050] = 8, + [12042] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4850), 1, - anon_sym_DOT, - STATE(2691), 4, + ACTIONS(5018), 1, + anon_sym_COMMA, + STATE(2774), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2767), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 11, + ACTIONS(5014), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295192,53 +298604,54 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 16, + ACTIONS(5016), 16, anon_sym_EQ, - anon_sym_COMMA, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11103] = 7, + [12097] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2692), 3, + ACTIONS(5020), 1, + anon_sym_DOT, + STATE(2816), 1, + aux_sym_long_identifier_repeat1, + STATE(2768), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2850), 12, + ACTIONS(2517), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2852), 17, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2523), 16, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -295247,40 +298660,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11154] = 14, + [12152] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, + ACTIONS(5018), 1, + anon_sym_COMMA, + ACTIONS(5022), 1, anon_sym_COLON, - ACTIONS(4859), 1, + ACTIONS(5024), 1, anon_sym_as, - ACTIONS(4861), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, + ACTIONS(5026), 1, anon_sym_COLON_COLON, - ACTIONS(4865), 1, + ACTIONS(5028), 1, anon_sym_PIPE, - ACTIONS(4867), 1, + ACTIONS(5030), 1, anon_sym_AMP, - STATE(2728), 1, + STATE(2767), 1, aux_sym_repeat_pattern_repeat1, - STATE(2693), 3, + STATE(2769), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4853), 9, + ACTIONS(3860), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -295290,7 +298704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4855), 13, + ACTIONS(3858), 13, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -295304,33 +298718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11219] = 7, + [12217] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2694), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2770), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2854), 12, - anon_sym_COLON, + ACTIONS(5032), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2856), 17, + ACTIONS(5034), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295341,101 +298758,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11270] = 24, + [12272] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4869), 1, - sym_identifier, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4873), 1, - anon_sym__, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_POUND, - STATE(1605), 1, - sym_type, - STATE(1924), 1, - sym_type_argument, - STATE(2018), 1, - sym_long_identifier, - STATE(2090), 1, - sym_curried_spec, - STATE(2808), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4881), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2695), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2020), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [11355] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2696), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2771), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2858), 12, - anon_sym_COLON, + ACTIONS(5036), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2860), 17, + ACTIONS(5038), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295446,27 +298804,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11406] = 7, + [12327] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2697), 3, + STATE(2772), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2862), 12, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295479,7 +298836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2864), 17, + ACTIONS(2229), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295497,33 +298854,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11457] = 7, + [12378] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2698), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2773), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2798), 12, - anon_sym_COLON, + ACTIONS(5040), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2800), 17, + ACTIONS(5042), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295534,122 +298894,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11508] = 7, + [12433] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2699), 3, + ACTIONS(5048), 1, + anon_sym_COMMA, + STATE(2774), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2866), 12, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5044), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2868), 17, + ACTIONS(5046), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11559] = 7, + [12486] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2700), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2870), 12, + ACTIONS(5018), 1, + anon_sym_COMMA, + ACTIONS(5022), 1, anon_sym_COLON, - anon_sym_null, - anon_sym__, + ACTIONS(5024), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2872), 17, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COMMA, + ACTIONS(5026), 1, anon_sym_COLON_COLON, + ACTIONS(5028), 1, anon_sym_PIPE, + ACTIONS(5030), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [11610] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2728), 1, + STATE(2767), 1, aux_sym_repeat_pattern_repeat1, - STATE(2701), 3, + STATE(2775), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4883), 10, + ACTIONS(5044), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -295657,15 +298982,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4885), 17, + ACTIONS(5046), 13, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -295675,125 +298996,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11665] = 7, + [12551] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2702), 3, + ACTIONS(5018), 1, + anon_sym_COMMA, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5026), 1, + anon_sym_COLON_COLON, + ACTIONS(5028), 1, + anon_sym_PIPE, + ACTIONS(5030), 1, + anon_sym_AMP, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2776), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2874), 12, - anon_sym_COLON, + ACTIONS(5051), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2876), 17, + ACTIONS(5053), 13, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11716] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym__, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_POUND, - STATE(1984), 1, - sym_type, - STATE(2005), 1, - sym_type_argument, - STATE(2034), 1, - sym_long_identifier, - STATE(2103), 1, - sym_curried_spec, - STATE(2806), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4895), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2703), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2033), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [11801] = 7, + [12616] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2704), 3, + STATE(2777), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2826), 12, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295806,7 +299073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2828), 17, + ACTIONS(3822), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295824,33 +299091,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11852] = 7, + [12667] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2705), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2778), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2878), 12, - anon_sym_COLON, + ACTIONS(5055), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2880), 17, + ACTIONS(5057), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295861,27 +299131,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11903] = 7, + [12722] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2706), 3, + STATE(2779), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2882), 12, + ACTIONS(2997), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295894,7 +299163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2884), 17, + ACTIONS(2999), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295912,20 +299181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [11954] = 7, + [12773] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2707), 3, + STATE(2780), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2890), 12, + ACTIONS(2864), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -295938,7 +299207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2892), 17, + ACTIONS(2866), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295956,33 +299225,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12005] = 7, + [12824] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2708), 3, + ACTIONS(5063), 1, + anon_sym_SEMI, + STATE(2802), 1, + aux_sym_record_pattern_repeat1, + STATE(2781), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2830), 12, + ACTIONS(5059), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2832), 17, + ACTIONS(5061), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -295990,47 +299263,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12056] = 9, + [12879] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4897), 1, - anon_sym_DOT, - STATE(2717), 1, - aux_sym_long_identifier_repeat1, - STATE(2709), 3, + STATE(2782), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 11, + ACTIONS(2948), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 16, - anon_sym_EQ, + ACTIONS(2950), 17, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -296039,27 +299309,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12111] = 7, + [12930] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2710), 3, + STATE(2783), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2802), 12, + ACTIONS(2892), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296072,7 +299341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2804), 17, + ACTIONS(2894), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296090,20 +299359,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12162] = 7, + [12981] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2711), 3, + STATE(2784), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2834), 12, + ACTIONS(2888), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296116,7 +299385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2836), 17, + ACTIONS(2890), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296134,20 +299403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12213] = 7, + [13032] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2712), 3, + STATE(2785), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2806), 12, + ACTIONS(2884), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296160,7 +299429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2808), 17, + ACTIONS(2886), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296178,20 +299447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12264] = 7, + [13083] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2713), 3, + STATE(2786), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2838), 12, + ACTIONS(2880), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296204,7 +299473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2840), 17, + ACTIONS(2882), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296222,20 +299491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12315] = 7, + [13134] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2714), 3, + STATE(2787), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2810), 12, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296248,7 +299517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2812), 17, + ACTIONS(3822), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296266,20 +299535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12366] = 7, + [13185] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2715), 3, + STATE(2788), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2822), 12, + ACTIONS(2872), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296292,7 +299561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2824), 17, + ACTIONS(2874), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296310,37 +299579,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12417] = 9, + [13236] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4903), 1, - anon_sym_SEMI, - STATE(2733), 1, - aux_sym_record_pattern_repeat1, - STATE(2716), 3, + STATE(2789), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4899), 11, + ACTIONS(2860), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4901), 16, - anon_sym_EQ, + ACTIONS(2862), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296348,74 +299613,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [12472] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4897), 1, - anon_sym_DOT, - STATE(2691), 1, - aux_sym_long_identifier_repeat1, - STATE(2717), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2492), 11, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2494), 16, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12527] = 7, + [13287] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2718), 3, + STATE(2790), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2842), 12, + ACTIONS(2856), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296428,7 +299649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2844), 17, + ACTIONS(2858), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296446,20 +299667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12578] = 7, + [13338] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2719), 3, + STATE(2791), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2846), 12, + ACTIONS(3105), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296472,7 +299693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2848), 17, + ACTIONS(3107), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296490,20 +299711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12629] = 7, + [13389] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2720), 3, + STATE(2792), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2784), 12, + ACTIONS(2930), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296516,7 +299737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2786), 17, + ACTIONS(2932), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296534,20 +299755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12680] = 7, + [13440] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2721), 3, + STATE(2793), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2894), 12, + ACTIONS(2962), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296560,7 +299781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2896), 17, + ACTIONS(2964), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296578,36 +299799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12731] = 9, + [13491] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2722), 3, + STATE(2794), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4905), 10, + ACTIONS(3035), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4907), 17, - anon_sym_EQ, + ACTIONS(3037), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296618,41 +299836,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12786] = 8, + [13542] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2744), 1, - aux_sym_record_pattern_repeat1, - STATE(2723), 3, + STATE(2795), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4909), 11, + ACTIONS(3039), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4911), 17, - anon_sym_EQ, + ACTIONS(3041), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296663,26 +299880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12839] = 7, + [13593] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2724), 3, + STATE(2796), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, + ACTIONS(3027), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296695,7 +299913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 17, + ACTIONS(3029), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296713,94 +299931,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [12890] = 24, + [13644] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, - anon_sym__, - ACTIONS(4482), 1, - anon_sym_LPAREN, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4913), 1, - sym_identifier, - STATE(2758), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3163), 1, - sym_type_argument, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3229), 1, - sym_type, - STATE(3298), 1, - sym_long_identifier, - STATE(3570), 1, - sym_curried_spec, - STATE(3680), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(5065), 1, + anon_sym_do, + ACTIONS(5067), 1, + anon_sym_new, + ACTIONS(5069), 1, + anon_sym_static, + ACTIONS(5071), 1, + anon_sym_member, + ACTIONS(5073), 1, + anon_sym_interface, + ACTIONS(5075), 1, + anon_sym_abstract, + ACTIONS(5079), 1, + anon_sym_val, + ACTIONS(5081), 1, + anon_sym_inherit, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3866), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4494), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2725), 3, + STATE(3353), 1, + sym_member_defn, + STATE(3506), 1, + sym_attributes, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(4061), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4299), 1, + sym__class_type_body_inner, + STATE(4332), 1, + sym_interface_implementation, + STATE(4464), 1, + sym__member_defns, + STATE(4701), 1, + sym_function_or_value_defn, + STATE(4714), 1, + sym_access_modifier, + STATE(4929), 1, + sym__class_type_body, + ACTIONS(5077), 2, + anon_sym_override, + anon_sym_default, + STATE(2797), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [12975] = 7, + STATE(4715), 3, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + [13743] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2726), 3, + ACTIONS(5063), 1, + anon_sym_SEMI, + STATE(2781), 1, + aux_sym_record_pattern_repeat1, + STATE(2798), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, + ACTIONS(5083), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 17, + ACTIONS(5085), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296808,30 +300037,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13026] = 7, + [13798] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2727), 3, + STATE(2799), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + ACTIONS(3115), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -296844,7 +300071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 17, + ACTIONS(3117), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -296862,172 +300089,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13077] = 9, + [13849] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4861), 1, - anon_sym_COMMA, - STATE(2740), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2728), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4915), 11, - anon_sym_COLON, - anon_sym_null, - anon_sym__, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5087), 1, sym_identifier, - ACTIONS(4917), 16, - anon_sym_EQ, + ACTIONS(5089), 1, anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [13132] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(4861), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_PIPE, - ACTIONS(4867), 1, - anon_sym_AMP, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2729), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3738), 9, - anon_sym_null, + ACTIONS(5091), 1, anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3736), 13, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(5093), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(5095), 1, + anon_sym_LPAREN, + ACTIONS(5097), 1, + anon_sym_POUND, + STATE(2840), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3077), 1, + sym_type, + STATE(3189), 1, + sym_type_argument, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3356), 1, + sym_long_identifier, + STATE(3588), 1, + sym_curried_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5099), 2, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [13197] = 14, + anon_sym_CARET, + STATE(2800), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3369), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [13934] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(4861), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_PIPE, - ACTIONS(4867), 1, - anon_sym_AMP, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2730), 3, + STATE(2801), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4919), 9, + ACTIONS(2900), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 13, - anon_sym_EQ, + ACTIONS(2902), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13262] = 9, + [13985] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2731), 3, + ACTIONS(5105), 1, + anon_sym_SEMI, + STATE(2802), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4923), 10, + aux_sym_record_pattern_repeat1, + ACTIONS(5101), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -297038,7 +300222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4925), 17, + ACTIONS(5103), 16, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -297047,7 +300231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -297056,36 +300239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13317] = 9, + [14038] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2732), 3, + STATE(2803), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4927), 10, + ACTIONS(2938), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4929), 17, - anon_sym_EQ, + ACTIONS(2940), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297096,42 +300276,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13372] = 8, + [14089] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4935), 1, - anon_sym_SEMI, - STATE(2733), 4, + STATE(2804), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4931), 11, + ACTIONS(2916), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 16, - anon_sym_EQ, + ACTIONS(2918), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297139,32 +300317,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13425] = 9, + [14140] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2734), 3, + ACTIONS(5108), 1, + anon_sym_DOT, + STATE(2805), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4938), 10, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -297175,11 +300355,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4940), 17, + ACTIONS(2605), 16, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -297187,87 +300364,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13480] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4942), 1, - sym_identifier, - ACTIONS(4944), 1, - anon_sym__, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4948), 1, - anon_sym_POUND, - STATE(2809), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3002), 1, - sym_type, - STATE(3142), 1, - sym_type_argument, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3289), 1, - sym_long_identifier, - STATE(3481), 1, - sym_curried_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4950), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2735), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3274), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [13565] = 7, + [14193] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2736), 3, + STATE(2806), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2776), 12, + ACTIONS(2868), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -297280,7 +300398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2778), 17, + ACTIONS(2870), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297298,118 +300416,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13616] = 24, + [14244] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4869), 1, - sym_identifier, - ACTIONS(4871), 1, + ACTIONS(5089), 1, anon_sym_LBRACK_LT, - ACTIONS(4873), 1, - anon_sym__, - ACTIONS(4875), 1, + ACTIONS(5093), 1, anon_sym_QMARK, - ACTIONS(4877), 1, + ACTIONS(5111), 1, + sym_identifier, + ACTIONS(5113), 1, + anon_sym__, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(1605), 1, + STATE(1822), 1, sym_type, - STATE(1924), 1, + STATE(1893), 1, sym_type_argument, - STATE(2018), 1, + STATE(2080), 1, sym_long_identifier, - STATE(2093), 1, + STATE(2149), 1, sym_curried_spec, - STATE(2808), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4881), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2737), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2020), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [13701] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, - anon_sym__, - ACTIONS(4482), 1, - anon_sym_LPAREN, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4913), 1, - sym_identifier, - STATE(2758), 1, + STATE(2861), 1, aux_sym_curried_spec_repeat1, - STATE(2967), 1, + STATE(3069), 1, sym_attributes, - STATE(3163), 1, - sym_type_argument, - STATE(3216), 1, + STATE(3243), 1, sym_argument_name_spec, - STATE(3229), 1, - sym_type, - STATE(3298), 1, - sym_long_identifier, - STATE(3585), 1, - sym_curried_spec, - STATE(3680), 1, + STATE(3745), 1, aux_sym_attributes_repeat1, - STATE(3866), 1, + STATE(3960), 1, sym_attribute_set, - STATE(4239), 1, + STATE(4308), 1, sym_argument_spec, - STATE(4727), 1, + STATE(5188), 1, sym_arguments_spec, - ACTIONS(4494), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2738), 3, + STATE(2807), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -297420,184 +300477,108 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [13786] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4952), 1, - anon_sym_do, - ACTIONS(4954), 1, - anon_sym_new, - ACTIONS(4956), 1, - anon_sym_static, - ACTIONS(4958), 1, - anon_sym_member, - ACTIONS(4960), 1, - anon_sym_interface, - ACTIONS(4962), 1, - anon_sym_abstract, - ACTIONS(4966), 1, - anon_sym_val, - ACTIONS(4968), 1, - anon_sym_inherit, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3293), 1, - sym_member_defn, - STATE(3396), 1, - sym_attributes, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3997), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4186), 1, - sym__class_type_body_inner, - STATE(4187), 1, - sym_interface_implementation, - STATE(4463), 1, - sym_access_modifier, - STATE(4484), 1, - sym__member_defns, - STATE(4509), 1, - sym_function_or_value_defn, - STATE(5334), 1, - sym__class_type_body, - ACTIONS(4964), 2, - anon_sym_override, - anon_sym_default, - STATE(2739), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(4523), 3, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - [13885] = 8, + [14329] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4970), 1, - anon_sym_COMMA, - STATE(2740), 4, + STATE(2808), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4919), 11, + ACTIONS(3077), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 16, - anon_sym_EQ, + ACTIONS(3079), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [13938] = 14, + [14380] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(4861), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_PIPE, - ACTIONS(4867), 1, - anon_sym_AMP, - STATE(2728), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2741), 3, + STATE(2809), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4973), 9, + ACTIONS(3031), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4975), 13, - anon_sym_EQ, + ACTIONS(3033), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14003] = 7, + [14431] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2742), 3, + STATE(2810), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3032), 12, + ACTIONS(2970), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -297610,7 +300591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3034), 17, + ACTIONS(2972), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297628,66 +300609,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14054] = 7, + [14482] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2743), 3, + ACTIONS(5018), 1, + anon_sym_COMMA, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5026), 1, + anon_sym_COLON_COLON, + ACTIONS(5028), 1, + anon_sym_PIPE, + ACTIONS(5030), 1, + anon_sym_AMP, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2811), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2886), 12, - anon_sym_COLON, + ACTIONS(5121), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2888), 17, + ACTIONS(5123), 13, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14105] = 8, + [14547] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2733), 1, - aux_sym_record_pattern_repeat1, - STATE(2744), 3, + ACTIONS(5125), 1, + aux_sym_float_token1, + STATE(2812), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4899), 11, + ACTIONS(2693), 13, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -297698,12 +300686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(4901), 17, + ACTIONS(2695), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -297711,94 +300698,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14158] = 31, + [14600] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4952), 1, - anon_sym_do, - ACTIONS(4954), 1, - anon_sym_new, - ACTIONS(4956), 1, - anon_sym_static, - ACTIONS(4958), 1, - anon_sym_member, - ACTIONS(4960), 1, - anon_sym_interface, - ACTIONS(4962), 1, - anon_sym_abstract, - ACTIONS(4966), 1, - anon_sym_val, - ACTIONS(4968), 1, - anon_sym_inherit, - STATE(2968), 1, + ACTIONS(5087), 1, + sym_identifier, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5091), 1, + anon_sym__, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5095), 1, + anon_sym_LPAREN, + ACTIONS(5097), 1, + anon_sym_POUND, + STATE(2840), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3077), 1, + sym_type, + STATE(3189), 1, + sym_type_argument, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3356), 1, + sym_long_identifier, + STATE(3572), 1, + sym_curried_spec, + STATE(3745), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3960), 1, sym_attribute_set, - STATE(3293), 1, - sym_member_defn, - STATE(3396), 1, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5099), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2813), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3369), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [14685] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5111), 1, + sym_identifier, + ACTIONS(5113), 1, + anon_sym__, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_POUND, + STATE(1822), 1, + sym_type, + STATE(1893), 1, + sym_type_argument, + STATE(2080), 1, + sym_long_identifier, + STATE(2142), 1, + sym_curried_spec, + STATE(2861), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, sym_attributes, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3997), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4186), 1, - sym__class_type_body_inner, - STATE(4187), 1, - sym_interface_implementation, - STATE(4463), 1, - sym_access_modifier, - STATE(4484), 1, - sym__member_defns, - STATE(4509), 1, - sym_function_or_value_defn, - STATE(4746), 1, - sym__class_type_body, - ACTIONS(4964), 2, - anon_sym_override, - anon_sym_default, - STATE(2745), 3, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5119), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2814), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(4523), 3, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - [14257] = 7, + STATE(2084), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [14770] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2746), 3, + STATE(2815), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2952), 12, + ACTIONS(2966), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -297811,7 +300853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2954), 17, + ACTIONS(2968), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297829,36 +300871,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14308] = 7, + [14821] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2747), 3, + ACTIONS(5020), 1, + anon_sym_DOT, + STATE(2805), 1, + aux_sym_long_identifier_repeat1, + STATE(2816), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3068), 12, + ACTIONS(2594), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3070), 17, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2596), 16, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -297867,57 +300910,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14359] = 21, + [14876] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(4977), 1, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(5065), 1, + anon_sym_do, + ACTIONS(5067), 1, + anon_sym_new, + ACTIONS(5069), 1, + anon_sym_static, + ACTIONS(5071), 1, + anon_sym_member, + ACTIONS(5073), 1, + anon_sym_interface, + ACTIONS(5075), 1, + anon_sym_abstract, + ACTIONS(5079), 1, + anon_sym_val, + ACTIONS(5081), 1, + anon_sym_inherit, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3353), 1, + sym_member_defn, + STATE(3506), 1, + sym_attributes, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(4061), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4299), 1, + sym__class_type_body_inner, + STATE(4332), 1, + sym_interface_implementation, + STATE(4464), 1, + sym__member_defns, + STATE(4701), 1, + sym_function_or_value_defn, + STATE(4714), 1, + sym_access_modifier, + STATE(5199), 1, + sym__class_type_body, + ACTIONS(5077), 2, + anon_sym_override, + anon_sym_default, + STATE(2817), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(4715), 3, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + [14975] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5127), 1, anon_sym_y, - ACTIONS(4979), 1, + ACTIONS(5129), 1, anon_sym_uy, - ACTIONS(4981), 1, + ACTIONS(5131), 1, anon_sym_s, - ACTIONS(4983), 1, + ACTIONS(5133), 1, anon_sym_us, - ACTIONS(4985), 1, + ACTIONS(5135), 1, anon_sym_l, - ACTIONS(4987), 1, + ACTIONS(5137), 1, aux_sym_uint32_token1, - ACTIONS(4989), 1, + ACTIONS(5139), 1, anon_sym_n, - ACTIONS(4991), 1, + ACTIONS(5141), 1, anon_sym_un, - ACTIONS(4993), 1, + ACTIONS(5143), 1, anon_sym_L, - ACTIONS(4995), 1, + ACTIONS(5145), 1, aux_sym_uint64_token1, - ACTIONS(4997), 1, + ACTIONS(5147), 1, aux_sym_bignum_token1, - ACTIONS(4999), 1, + ACTIONS(5149), 1, aux_sym_decimal_token1, - ACTIONS(5001), 1, + ACTIONS(5151), 1, + anon_sym_DOT2, + ACTIONS(5153), 1, aux_sym_float_token1, - ACTIONS(2223), 2, + ACTIONS(2231), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2748), 3, + STATE(2818), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2225), 13, + ACTIONS(2229), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -297931,20 +301043,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [14438] = 7, + [15054] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2749), 3, + ACTIONS(4606), 1, + anon_sym__, + ACTIONS(4608), 1, + anon_sym_LPAREN, + ACTIONS(4616), 1, + anon_sym_POUND, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5155), 1, + sym_identifier, + STATE(2848), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3200), 1, + sym_type, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3351), 1, + sym_type_argument, + STATE(3358), 1, + sym_long_identifier, + STATE(3632), 1, + sym_curried_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(4620), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2819), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2814), 12, + STATE(3354), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [15139] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2820), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2934), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -297957,7 +301130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2816), 17, + ACTIONS(2936), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -297975,57 +301148,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14489] = 24, + [15190] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, + ACTIONS(5089), 1, anon_sym_LBRACK_LT, - ACTIONS(4875), 1, + ACTIONS(5093), 1, anon_sym_QMARK, - ACTIONS(4942), 1, + ACTIONS(5157), 1, sym_identifier, - ACTIONS(4944), 1, + ACTIONS(5159), 1, + anon_sym__, + ACTIONS(5161), 1, + anon_sym_LPAREN, + ACTIONS(5163), 1, + anon_sym_POUND, + STATE(1983), 1, + sym_type, + STATE(2081), 1, + sym_type_argument, + STATE(2090), 1, + sym_long_identifier, + STATE(2178), 1, + sym_curried_spec, + STATE(2862), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5165), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2821), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2096), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [15275] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(2809), 1, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5155), 1, + sym_identifier, + STATE(2848), 1, aux_sym_curried_spec_repeat1, - STATE(2967), 1, + STATE(3069), 1, sym_attributes, - STATE(3002), 1, + STATE(3200), 1, sym_type, - STATE(3142), 1, - sym_type_argument, - STATE(3216), 1, + STATE(3243), 1, sym_argument_name_spec, - STATE(3289), 1, + STATE(3351), 1, + sym_type_argument, + STATE(3358), 1, sym_long_identifier, - STATE(3480), 1, + STATE(3636), 1, sym_curried_spec, - STATE(3680), 1, + STATE(3745), 1, aux_sym_attributes_repeat1, - STATE(3866), 1, + STATE(3960), 1, sym_attribute_set, - STATE(4239), 1, + STATE(4308), 1, sym_argument_spec, - STATE(4727), 1, + STATE(5188), 1, sym_arguments_spec, - ACTIONS(4950), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2750), 3, + STATE(2822), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -298036,35 +301270,33 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [14574] = 8, + [15360] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5007), 1, - anon_sym_LT2, - STATE(2751), 3, + STATE(2823), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5003), 11, + ACTIONS(3139), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5005), 17, - anon_sym_EQ, + ACTIONS(3141), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298075,63 +301307,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14627] = 24, + [15411] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, + ACTIONS(5089), 1, anon_sym_LBRACK_LT, - ACTIONS(4875), 1, + ACTIONS(5093), 1, anon_sym_QMARK, - ACTIONS(4887), 1, + ACTIONS(5157), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(1984), 1, + STATE(1983), 1, sym_type, - STATE(2005), 1, + STATE(2081), 1, sym_type_argument, - STATE(2034), 1, + STATE(2090), 1, sym_long_identifier, - STATE(2105), 1, + STATE(2163), 1, sym_curried_spec, - STATE(2806), 1, + STATE(2862), 1, aux_sym_curried_spec_repeat1, - STATE(2967), 1, + STATE(3069), 1, sym_attributes, - STATE(3216), 1, + STATE(3243), 1, sym_argument_name_spec, - STATE(3680), 1, + STATE(3745), 1, aux_sym_attributes_repeat1, - STATE(3866), 1, + STATE(3960), 1, sym_attribute_set, - STATE(4239), 1, + STATE(4308), 1, sym_argument_spec, - STATE(4727), 1, + STATE(5188), 1, sym_arguments_spec, - ACTIONS(4895), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2752), 3, + STATE(2824), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -298142,24 +301375,22 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [14712] = 9, + [15496] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4903), 1, - anon_sym_SEMI, - STATE(2716), 1, + STATE(2826), 1, aux_sym_record_pattern_repeat1, - STATE(2753), 3, + STATE(2825), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4909), 11, + ACTIONS(5083), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -298171,7 +301402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4911), 16, + ACTIONS(5085), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -298180,6 +301411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298188,33 +301420,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14767] = 7, + [15549] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2754), 3, + STATE(2802), 1, + aux_sym_record_pattern_repeat1, + STATE(2826), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2998), 12, + ACTIONS(5059), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3000), 17, + ACTIONS(5061), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298225,28 +301459,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14818] = 7, + [15602] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2755), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2827), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5009), 11, - anon_sym_COLON, + ACTIONS(5167), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -298257,7 +301493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5011), 17, + ACTIONS(5169), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -298275,33 +301511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14868] = 7, + [15657] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2756), 3, + STATE(2828), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2890), 12, + ACTIONS(2908), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2892), 16, + ACTIONS(2910), 17, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298312,42 +301548,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14918] = 9, + [15708] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2757), 3, + STATE(2829), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4905), 10, + ACTIONS(2856), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4907), 16, - anon_sym_EQ, + ACTIONS(2858), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298355,6 +301589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298363,79 +301598,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14972] = 23, + [15758] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + STATE(2830), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5101), 11, + anon_sym_COLON, + anon_sym_null, anon_sym__, - ACTIONS(4482), 1, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(4871), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5103), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, - ACTIONS(4875), 1, anon_sym_QMARK, - ACTIONS(4913), 1, - sym_identifier, - STATE(2825), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3163), 1, - sym_type_argument, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3234), 1, - sym_type, - STATE(3298), 1, - sym_long_identifier, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4494), 2, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2758), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3284), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [15054] = 7, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [15808] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2759), 3, + STATE(2831), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5013), 11, + ACTIONS(5171), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -298447,7 +301666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5015), 17, + ACTIONS(5173), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -298465,33 +301684,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15104] = 7, + [15858] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2760), 3, + STATE(2832), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2826), 12, + ACTIONS(5175), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2828), 16, + ACTIONS(5177), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298508,33 +301727,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15154] = 7, + [15908] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2761), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2833), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2802), 12, - anon_sym_COLON, + ACTIONS(5036), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2804), 16, + ACTIONS(5038), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298542,7 +301764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298551,24 +301772,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15204] = 9, + [15962] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5017), 1, + ACTIONS(5179), 1, + sym_int, + STATE(2834), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2758), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2760), 15, + anon_sym_EQ, anon_sym_COMMA, - STATE(2812), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2762), 3, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [16014] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2835), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4915), 11, + ACTIONS(5181), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -298580,14 +301841,16 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4917), 15, + ACTIONS(5183), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298596,20 +301859,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15258] = 7, + [16064] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2763), 3, + STATE(2836), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5003), 11, + ACTIONS(5185), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -298621,7 +301884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5005), 17, + ACTIONS(5187), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -298639,25 +301902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15308] = 8, + [16114] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5023), 1, - anon_sym_as, - STATE(2764), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2837), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5019), 10, - anon_sym_COLON, + ACTIONS(5040), 10, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -298665,7 +301930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5021), 17, + ACTIONS(5042), 16, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -298674,7 +301939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298683,36 +301947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15360] = 14, + [16168] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(5017), 1, + ACTIONS(5189), 1, anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_COLON_COLON, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5029), 1, - anon_sym_AMP, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2765), 3, + STATE(2838), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4853), 9, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5044), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -298720,11 +301975,14 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4855), 12, + ACTIONS(5046), 15, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298733,91 +301991,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15424] = 14, + [16220] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(5017), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_COLON_COLON, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5029), 1, - anon_sym_AMP, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2766), 3, + STATE(2839), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3738), 9, + ACTIONS(2752), 13, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3736), 12, + ACTIONS(2754), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15488] = 7, + [16270] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2767), 3, + ACTIONS(5087), 1, + sym_identifier, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5091), 1, + anon_sym__, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5095), 1, + anon_sym_LPAREN, + ACTIONS(5097), 1, + anon_sym_POUND, + STATE(2863), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3099), 1, + sym_type, + STATE(3189), 1, + sym_type_argument, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3356), 1, + sym_long_identifier, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5099), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2840), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2806), 12, + STATE(3369), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [16352] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5022), 1, anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_COLON_COLON, + ACTIONS(5196), 1, + anon_sym_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2841), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5051), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2808), 16, + ACTIONS(5053), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298826,36 +302143,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15538] = 7, + [16416] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2768), 3, + STATE(2842), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3068), 12, + ACTIONS(2693), 13, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3070), 16, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2695), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -298863,47 +302179,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15588] = 7, + [16466] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2769), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_COLON_COLON, + ACTIONS(5196), 1, + anon_sym_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2843), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, - anon_sym_COLON, + ACTIONS(5044), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 16, + ACTIONS(5046), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -298912,33 +302236,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15638] = 7, + [16530] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2770), 3, + STATE(2844), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2814), 12, + ACTIONS(5200), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2816), 16, + ACTIONS(5202), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298955,33 +302279,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15688] = 7, + [16580] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2771), 3, + STATE(2845), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2830), 12, + ACTIONS(2648), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2832), 16, + ACTIONS(2650), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -298998,33 +302322,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15738] = 7, + [16630] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2772), 3, + STATE(2846), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3651), 12, + ACTIONS(5204), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3653), 16, + ACTIONS(5206), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299041,33 +302365,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15788] = 7, + [16680] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2773), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2847), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2838), 12, - anon_sym_COLON, + ACTIONS(5032), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2840), 16, + ACTIONS(5034), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299075,7 +302402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -299084,63 +302410,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15838] = 7, + [16734] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2774), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2842), 12, - anon_sym_COLON, - anon_sym_null, + ACTIONS(4606), 1, anon_sym__, - anon_sym_as, + ACTIONS(4608), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2844), 16, + ACTIONS(4616), 1, + anon_sym_POUND, + ACTIONS(5089), 1, anon_sym_LBRACK_LT, + ACTIONS(5093), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(5155), 1, + sym_identifier, + STATE(2863), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3193), 1, + sym_type, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3351), 1, + sym_type_argument, + STATE(3358), 1, + sym_long_identifier, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(4620), 2, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [15888] = 7, + anon_sym_CARET, + STATE(2848), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3354), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [16816] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2775), 3, + STATE(2849), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2846), 12, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -299153,7 +302495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2848), 16, + ACTIONS(3822), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299170,41 +302512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15938] = 7, + [16866] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2776), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_COLON_COLON, + ACTIONS(5196), 1, + anon_sym_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2850), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2850), 12, - anon_sym_COLON, + ACTIONS(3860), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2852), 16, + ACTIONS(3858), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -299213,20 +302562,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15988] = 7, + [16930] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2777), 3, + STATE(2851), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2854), 12, + ACTIONS(3820), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -299239,7 +302588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2856), 16, + ACTIONS(3822), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299256,41 +302605,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16038] = 7, + [16980] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2778), 3, + ACTIONS(5192), 1, + anon_sym_COMMA, + STATE(2838), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2852), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2858), 12, + ACTIONS(5014), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2860), 16, + ACTIONS(5016), 15, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -299299,33 +302650,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16088] = 7, + [17034] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2779), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2853), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2810), 12, - anon_sym_COLON, + ACTIONS(5167), 10, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2812), 16, + ACTIONS(5169), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299333,7 +302687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -299342,33 +302695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16138] = 7, + [17088] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2780), 3, + STATE(2854), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2822), 12, + ACTIONS(5008), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2824), 16, + ACTIONS(5010), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299385,33 +302738,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16188] = 7, + [17138] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2781), 3, + ACTIONS(5212), 1, + anon_sym_as, + STATE(2855), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2862), 12, + ACTIONS(5208), 10, anon_sym_COLON, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2864), 16, + ACTIONS(5210), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299428,41 +302782,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16238] = 7, + [17190] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2782), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_COLON_COLON, + ACTIONS(5196), 1, + anon_sym_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2856), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2784), 12, - anon_sym_COLON, + ACTIONS(5121), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2786), 16, + ACTIONS(5123), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -299471,33 +302832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16288] = 7, + [17254] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2783), 3, + STATE(2857), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2866), 12, + ACTIONS(2644), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2868), 16, + ACTIONS(2646), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299514,33 +302875,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16338] = 7, + [17304] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2784), 3, + STATE(2858), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2870), 12, + ACTIONS(5214), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2872), 16, + ACTIONS(5216), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299557,33 +302918,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16388] = 7, + [17354] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2785), 3, + STATE(2859), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2834), 12, + ACTIONS(5218), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2836), 16, + ACTIONS(5220), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299600,33 +302961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16438] = 7, + [17404] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2786), 3, + STATE(2860), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2878), 12, + ACTIONS(5222), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2880), 16, + ACTIONS(5224), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299643,33 +303004,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16488] = 7, + [17454] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2787), 3, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5111), 1, + sym_identifier, + ACTIONS(5113), 1, + anon_sym__, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_POUND, + STATE(1756), 1, + sym_type, + STATE(1893), 1, + sym_type_argument, + STATE(2080), 1, + sym_long_identifier, + STATE(2863), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5119), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2861), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2084), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [17536] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5157), 1, + sym_identifier, + ACTIONS(5159), 1, + anon_sym__, + ACTIONS(5161), 1, + anon_sym_LPAREN, + ACTIONS(5163), 1, + anon_sym_POUND, + STATE(1975), 1, + sym_type, + STATE(2081), 1, + sym_type_argument, + STATE(2090), 1, + sym_long_identifier, + STATE(2863), 1, + aux_sym_curried_spec_repeat1, + STATE(3069), 1, + sym_attributes, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5165), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2862), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2096), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [17618] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5226), 1, + sym_identifier, + ACTIONS(5229), 1, + anon_sym_LBRACK_LT, + ACTIONS(5232), 1, + anon_sym__, + ACTIONS(5235), 1, + anon_sym_QMARK, + ACTIONS(5238), 1, + anon_sym_LPAREN, + ACTIONS(5241), 1, + anon_sym_POUND, + STATE(3069), 1, + sym_attributes, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3917), 1, + sym_type, + STATE(3960), 1, + sym_attribute_set, + STATE(4308), 1, + sym_argument_spec, + STATE(5188), 1, + sym_arguments_spec, + ACTIONS(5244), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2863), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5031), 11, + aux_sym_curried_spec_repeat1, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [17698] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2864), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2900), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5033), 17, - anon_sym_EQ, + ACTIONS(2902), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299686,86 +303223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16538] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4952), 1, - anon_sym_do, - ACTIONS(4954), 1, - anon_sym_new, - ACTIONS(4956), 1, - anon_sym_static, - ACTIONS(4958), 1, - anon_sym_member, - ACTIONS(4960), 1, - anon_sym_interface, - ACTIONS(4962), 1, - anon_sym_abstract, - ACTIONS(4966), 1, - anon_sym_val, - ACTIONS(4968), 1, - anon_sym_inherit, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3293), 1, - sym_member_defn, - STATE(3396), 1, - sym_attributes, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3997), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4187), 1, - sym_interface_implementation, - STATE(4346), 1, - sym__class_type_body_inner, - STATE(4463), 1, - sym_access_modifier, - STATE(4484), 1, - sym__member_defns, - STATE(4509), 1, - sym_function_or_value_defn, - ACTIONS(4964), 2, - anon_sym_override, - anon_sym_default, - STATE(2788), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(4523), 3, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - [16634] = 7, + [17748] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2789), 3, + STATE(2865), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2882), 12, + ACTIONS(2231), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -299778,7 +303249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2884), 16, + ACTIONS(2229), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299795,24 +303266,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16684] = 9, + [17798] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2790), 3, + ACTIONS(4841), 1, + aux_sym_decimal_token1, + ACTIONS(5247), 1, + anon_sym_f, + STATE(2866), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4927), 10, + ACTIONS(2231), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -299823,37 +303295,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4929), 16, + ACTIONS(2229), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16738] = 7, + [17852] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2791), 3, + STATE(2867), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2601), 11, + ACTIONS(5249), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -299865,7 +303336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2603), 17, + ACTIONS(5251), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, @@ -299883,33 +303354,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16788] = 7, + [17902] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2792), 3, + STATE(2868), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2886), 12, + ACTIONS(5253), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2888), 16, + ACTIONS(5255), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299926,20 +303397,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16838] = 7, + [17952] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2793), 3, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(5065), 1, + anon_sym_do, + ACTIONS(5067), 1, + anon_sym_new, + ACTIONS(5069), 1, + anon_sym_static, + ACTIONS(5071), 1, + anon_sym_member, + ACTIONS(5073), 1, + anon_sym_interface, + ACTIONS(5075), 1, + anon_sym_abstract, + ACTIONS(5079), 1, + anon_sym_val, + ACTIONS(5081), 1, + anon_sym_inherit, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3353), 1, + sym_member_defn, + STATE(3506), 1, + sym_attributes, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(4061), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4332), 1, + sym_interface_implementation, + STATE(4464), 1, + sym__member_defns, + STATE(4656), 1, + sym__class_type_body_inner, + STATE(4701), 1, + sym_function_or_value_defn, + STATE(4714), 1, + sym_access_modifier, + ACTIONS(5077), 2, + anon_sym_override, + anon_sym_default, + STATE(2869), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3032), 12, + STATE(4715), 3, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + [18048] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2870), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2908), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -299952,7 +303489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3034), 16, + ACTIONS(2910), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -299969,33 +303506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16888] = 7, + [18098] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2794), 3, + STATE(2871), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5035), 11, + ACTIONS(2864), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5037), 17, - anon_sym_EQ, + ACTIONS(2866), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300012,33 +303549,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16938] = 7, + [18148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2795), 3, + STATE(2872), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5039), 11, + ACTIONS(2892), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5041), 17, - anon_sym_EQ, + ACTIONS(2894), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300055,48 +303592,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [16988] = 14, + [18198] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(5017), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_COLON_COLON, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5029), 1, - anon_sym_AMP, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2796), 3, + STATE(2873), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5043), 9, + ACTIONS(2888), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5045), 12, - anon_sym_EQ, + ACTIONS(2890), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -300105,33 +303635,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17052] = 7, + [18248] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2797), 3, + STATE(2874), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2894), 12, + ACTIONS(5257), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2896), 16, + ACTIONS(5259), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300148,33 +303678,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17102] = 7, + [18298] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2798), 3, + STATE(2875), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 11, + ACTIONS(2884), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2611), 17, - anon_sym_EQ, + ACTIONS(2886), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300191,20 +303721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17152] = 7, + [18348] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2799), 3, + STATE(2876), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 12, + ACTIONS(2880), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -300217,7 +303747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 16, + ACTIONS(2882), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300234,33 +303764,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17202] = 7, + [18398] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2800), 3, + STATE(2877), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2998), 12, + ACTIONS(5261), 11, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3000), 16, + ACTIONS(5263), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300277,33 +303807,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17252] = 7, + [18448] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2801), 3, + STATE(2878), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4931), 11, + ACTIONS(2876), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 17, - anon_sym_EQ, + ACTIONS(2878), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300320,20 +303850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17302] = 7, + [18498] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2802), 3, + STATE(2879), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2798), 12, + ACTIONS(2997), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -300346,7 +303876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2800), 16, + ACTIONS(2999), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300363,20 +303893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17352] = 7, + [18548] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2803), 3, + STATE(2880), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2952), 12, + ACTIONS(2872), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -300389,7 +303919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2954), 16, + ACTIONS(2874), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300406,20 +303936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17402] = 7, + [18598] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2804), 3, + STATE(2881), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2874), 12, + ACTIONS(2860), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -300432,7 +303962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2876), 16, + ACTIONS(2862), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300449,20 +303979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17452] = 7, + [18648] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2805), 3, + STATE(2882), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2776), 12, + ACTIONS(3105), 12, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -300475,7 +304005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2778), 16, + ACTIONS(3107), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300492,92 +304022,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17502] = 23, + [18698] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym__, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_POUND, - STATE(1976), 1, - sym_type, - STATE(2005), 1, - sym_type_argument, - STATE(2034), 1, - sym_long_identifier, - STATE(2825), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4895), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2806), 3, + STATE(2883), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [17584] = 7, + ACTIONS(5265), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5267), 17, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [18748] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2807), 3, + STATE(2884), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5047), 11, + ACTIONS(2930), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5049), 17, - anon_sym_EQ, + ACTIONS(2932), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300594,151 +304108,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17634] = 23, + [18798] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4869), 1, + STATE(2885), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5269), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - ACTIONS(4871), 1, + ACTIONS(5271), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, - ACTIONS(4873), 1, - anon_sym__, - ACTIONS(4875), 1, anon_sym_QMARK, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_POUND, - STATE(1807), 1, - sym_type, - STATE(1924), 1, - sym_type_argument, - STATE(2018), 1, - sym_long_identifier, - STATE(2825), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4881), 2, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2808), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2020), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [17716] = 23, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [18848] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(4942), 1, - sym_identifier, - ACTIONS(4944), 1, - anon_sym__, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4948), 1, - anon_sym_POUND, - STATE(2825), 1, - aux_sym_curried_spec_repeat1, - STATE(2967), 1, - sym_attributes, - STATE(2999), 1, - sym_type, - STATE(3142), 1, - sym_type_argument, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3289), 1, - sym_long_identifier, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(4950), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2809), 3, + STATE(2886), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [17798] = 7, + ACTIONS(2962), 12, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2964), 16, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [18898] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2810), 3, + STATE(2887), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5051), 11, + ACTIONS(3035), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5053), 17, - anon_sym_EQ, + ACTIONS(3037), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300755,36 +304237,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17848] = 9, + [18948] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2811), 3, + STATE(2888), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4883), 10, + ACTIONS(3039), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4885), 16, - anon_sym_EQ, + ACTIONS(3041), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300792,6 +304271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -300800,42 +304280,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17902] = 8, + [18998] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5055), 1, - anon_sym_COMMA, - STATE(2812), 4, + STATE(2889), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4919), 11, + ACTIONS(3054), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 15, - anon_sym_EQ, + ACTIONS(3056), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -300844,48 +304323,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [17954] = 14, + [19048] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_as, - ACTIONS(5017), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_COLON_COLON, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5029), 1, - anon_sym_AMP, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2813), 3, + STATE(2890), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4973), 9, + ACTIONS(3115), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4975), 12, - anon_sym_EQ, + ACTIONS(3117), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -300894,33 +304366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18018] = 7, + [19098] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2814), 3, + STATE(2891), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5058), 11, + ACTIONS(2938), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5060), 17, - anon_sym_EQ, + ACTIONS(2940), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -300937,33 +304409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18068] = 7, + [19148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2815), 3, + STATE(2892), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 11, + ACTIONS(2916), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 17, - anon_sym_EQ, + ACTIONS(2918), 16, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -300971,42 +304446,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18118] = 7, + [19198] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2816), 3, + STATE(2893), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5062), 11, + ACTIONS(2868), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5064), 17, - anon_sym_EQ, + ACTIONS(2870), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301023,33 +304495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18168] = 7, + [19248] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2817), 3, + STATE(2894), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5066), 11, + ACTIONS(3077), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5068), 17, - anon_sym_EQ, + ACTIONS(3079), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301066,33 +304538,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18218] = 7, + [19298] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2818), 3, + STATE(2895), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5070), 11, + ACTIONS(3031), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5072), 17, - anon_sym_EQ, + ACTIONS(3033), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301109,20 +304581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18268] = 7, + [19348] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2819), 3, + STATE(2896), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5074), 11, + ACTIONS(2603), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301134,11 +304606,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5076), 17, + ACTIONS(2605), 17, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -301146,39 +304615,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_LT2, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18318] = 7, + [19398] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2820), 3, + STATE(2897), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5078), 11, + ACTIONS(2970), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5080), 17, - anon_sym_EQ, + ACTIONS(2972), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301195,33 +304667,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18368] = 7, + [19448] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2821), 3, + ACTIONS(5022), 1, + anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_as, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_COLON_COLON, + ACTIONS(5196), 1, + anon_sym_PIPE, + ACTIONS(5198), 1, + anon_sym_AMP, + STATE(2852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2898), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5082), 11, + ACTIONS(5273), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5275), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [19512] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2899), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3027), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5084), 17, - anon_sym_EQ, + ACTIONS(3029), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301238,33 +304760,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18418] = 7, + [19562] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2822), 3, + STATE(2900), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5086), 11, + ACTIONS(3139), 12, anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5088), 17, - anon_sym_EQ, + ACTIONS(3141), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301281,48 +304803,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18468] = 14, + [19612] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, + STATE(2901), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2966), 12, anon_sym_COLON, - ACTIONS(4859), 1, + anon_sym_null, + anon_sym__, anon_sym_as, - ACTIONS(5017), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2968), 16, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COMMA, - ACTIONS(5025), 1, anon_sym_COLON_COLON, - ACTIONS(5027), 1, anon_sym_PIPE, - ACTIONS(5029), 1, anon_sym_AMP, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2823), 3, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [19662] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2902), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4919), 9, + ACTIONS(2934), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 12, - anon_sym_EQ, + ACTIONS(2936), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -301331,36 +304889,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18532] = 9, + [19712] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - STATE(2762), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2824), 3, + STATE(2903), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4923), 10, + ACTIONS(2948), 12, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(4925), 16, - anon_sym_EQ, + ACTIONS(2950), 16, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -301368,6 +304923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -301376,80 +304932,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18586] = 22, + [19762] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5090), 1, - sym_identifier, - ACTIONS(5093), 1, - anon_sym_LBRACK_LT, - ACTIONS(5096), 1, - anon_sym__, - ACTIONS(5099), 1, - anon_sym_QMARK, - ACTIONS(5102), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_POUND, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(3870), 1, - sym_type, - STATE(4239), 1, - sym_argument_spec, - STATE(4727), 1, - sym_arguments_spec, - ACTIONS(5108), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2825), 4, + ACTIONS(5277), 1, + anon_sym_LT2, + STATE(2904), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_curried_spec_repeat1, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [18666] = 8, + ACTIONS(5008), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5010), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [19813] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5111), 1, - anon_sym_LT2, - STATE(2826), 3, + STATE(2905), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5003), 11, + ACTIONS(3054), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301461,7 +305000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5005), 15, + ACTIONS(3056), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301477,20 +305016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18717] = 7, + [19861] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2827), 3, + STATE(2906), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2850), 11, + ACTIONS(3035), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301502,7 +305041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2852), 15, + ACTIONS(3037), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301518,36 +305057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18765] = 14, + [19909] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5117), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_PIPE, - ACTIONS(5123), 1, - anon_sym_AMP, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2828), 3, + STATE(2907), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4973), 9, + ACTIONS(5204), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -301555,7 +305082,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4975), 10, + ACTIONS(5206), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -301566,20 +305098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18827] = 7, + [19957] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2829), 3, + STATE(2908), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2866), 11, + ACTIONS(5265), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301591,7 +305123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2868), 15, + ACTIONS(5267), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301607,20 +305139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18875] = 7, + [20005] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2830), 3, + STATE(2909), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2870), 11, + ACTIONS(5257), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301632,7 +305164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2872), 15, + ACTIONS(5259), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301648,20 +305180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18923] = 7, + [20053] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2831), 3, + STATE(2910), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2874), 11, + ACTIONS(2644), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301673,7 +305205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2876), 15, + ACTIONS(2646), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301689,20 +305221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [18971] = 7, + [20101] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2832), 3, + STATE(2911), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2878), 11, + ACTIONS(2648), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301714,7 +305246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2880), 15, + ACTIONS(2650), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301730,20 +305262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19019] = 7, + [20149] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2833), 3, + STATE(2912), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2952), 11, + ACTIONS(5261), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301755,7 +305287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2954), 15, + ACTIONS(5263), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301771,20 +305303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19067] = 7, + [20197] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2834), 3, + STATE(2915), 1, + aux_sym_record_pattern_repeat1, + STATE(2913), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2882), 11, + ACTIONS(5059), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301796,7 +305330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2884), 15, + ACTIONS(5061), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301805,27 +305339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19115] = 7, + [20247] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2835), 3, + STATE(2914), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2890), 11, + ACTIONS(2966), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301837,7 +305370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2892), 15, + ACTIONS(2968), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301853,68 +305386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19163] = 14, + [20295] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5117), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_PIPE, - ACTIONS(5123), 1, - anon_sym_AMP, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2836), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4919), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(4921), 10, + ACTIONS(5279), 1, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [19225] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(2837), 3, + STATE(2915), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5009), 11, + aux_sym_record_pattern_repeat1, + ACTIONS(5101), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301926,36 +305414,34 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5011), 15, + ACTIONS(5103), 13, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19273] = 7, + [20345] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2838), 3, + STATE(2916), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2894), 11, + ACTIONS(5269), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -301967,7 +305453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2896), 15, + ACTIONS(5271), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -301983,36 +305469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19321] = 14, + [20393] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5125), 1, + ACTIONS(5282), 1, anon_sym_COLON, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(5129), 1, - anon_sym_COLON_COLON, - ACTIONS(5131), 1, - anon_sym_PIPE, - ACTIONS(5133), 1, - anon_sym_AMP, - STATE(2864), 1, + STATE(2980), 1, aux_sym_repeat_pattern_repeat1, - STATE(2839), 3, + STATE(2917), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4853), 9, + ACTIONS(5055), 10, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -302020,35 +305497,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4855), 10, - anon_sym_EQ, + ACTIONS(5057), 14, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19383] = 9, + [20445] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2840), 3, + STATE(2918), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4927), 10, + ACTIONS(5222), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -302059,7 +305537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4929), 14, + ACTIONS(5224), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302068,26 +305546,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19435] = 7, + [20493] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2841), 3, + ACTIONS(5284), 1, + anon_sym_COMMA, + STATE(2919), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 11, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5044), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302099,40 +305581,35 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 15, + ACTIONS(5046), 13, anon_sym_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19483] = 9, + [20543] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2842), 3, + STATE(2920), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4905), 10, + ACTIONS(5218), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -302143,7 +305620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4907), 14, + ACTIONS(5220), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302152,26 +305629,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19535] = 7, + [20591] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2843), 3, + ACTIONS(5287), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2921), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5086), 11, + ACTIONS(5014), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302183,36 +305665,34 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5088), 15, + ACTIONS(5016), 13, anon_sym_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19583] = 7, + [20643] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2844), 3, + STATE(2922), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5070), 11, + ACTIONS(5214), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302224,7 +305704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5072), 15, + ACTIONS(5216), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302240,24 +305720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19631] = 9, + [20691] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2845), 3, + STATE(2923), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4883), 10, + ACTIONS(5253), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -302268,7 +305745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4885), 14, + ACTIONS(5255), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302277,42 +305754,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19683] = 14, + [20739] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(5129), 1, - anon_sym_COLON_COLON, - ACTIONS(5131), 1, - anon_sym_PIPE, - ACTIONS(5133), 1, - anon_sym_AMP, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2846), 3, + STATE(2924), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4973), 9, + ACTIONS(5249), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -302320,88 +305786,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4975), 10, + ACTIONS(5251), 15, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19745] = 21, + [20787] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(5135), 1, - sym_identifier, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - STATE(2967), 1, - sym_attributes, - STATE(3216), 1, - sym_argument_name_spec, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3680), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - STATE(3870), 1, - sym_type, - STATE(4503), 1, - sym_argument_spec, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2847), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [19821] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2875), 1, - aux_sym_record_pattern_repeat1, - STATE(2848), 3, + STATE(2925), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4909), 11, + ACTIONS(2231), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302413,7 +305827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4911), 14, + ACTIONS(2229), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302422,26 +305836,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19871] = 7, + [20835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2849), 3, + STATE(2926), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2846), 11, + ACTIONS(2908), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302453,7 +305868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2848), 15, + ACTIONS(2910), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302469,21 +305884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19919] = 7, + [20883] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2850), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2927), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4931), 11, - anon_sym_COLON, + ACTIONS(5055), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -302494,7 +305912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 15, + ACTIONS(5057), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302503,41 +305921,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [19967] = 14, + [20935] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5127), 1, + ACTIONS(5287), 1, anon_sym_COMMA, - ACTIONS(5129), 1, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5293), 1, anon_sym_COLON_COLON, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_PIPE, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_AMP, - STATE(2864), 1, + STATE(2921), 1, aux_sym_repeat_pattern_repeat1, - STATE(2851), 3, + STATE(2928), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4938), 9, + ACTIONS(5051), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -302547,7 +305964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4940), 10, + ACTIONS(5053), 10, anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, @@ -302558,24 +305975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20029] = 8, + [20997] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5145), 1, - anon_sym_SEMI, - STATE(2852), 4, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2929), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4931), 11, - anon_sym_COLON, + ACTIONS(5040), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -302586,38 +306003,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 13, + ACTIONS(5042), 14, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20079] = 9, + [21049] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2853), 3, + STATE(2930), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4938), 10, + ACTIONS(2948), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -302628,7 +306043,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4940), 14, + ACTIONS(2950), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -302643,20 +306059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20131] = 7, + [21097] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2854), 3, + STATE(2931), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5035), 11, + ACTIONS(5101), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302668,7 +306084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5037), 15, + ACTIONS(5103), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302684,20 +306100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20179] = 7, + [21145] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2855), 3, + STATE(2939), 1, + aux_sym_record_pattern_repeat1, + STATE(2932), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2814), 11, + ACTIONS(5083), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302709,8 +306127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2816), 15, - anon_sym_EQ, + ACTIONS(5085), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -302725,21 +306142,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20227] = 7, + [21195] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2856), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2933), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5078), 11, - anon_sym_COLON, + ACTIONS(5036), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -302750,7 +306170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5080), 15, + ACTIONS(5038), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302759,6 +306179,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [21247] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5299), 1, + anon_sym_SEMI, + STATE(2934), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_record_pattern_repeat1, + ACTIONS(5101), 11, + anon_sym_COLON, + anon_sym_null, + anon_sym__, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5103), 13, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, @@ -302766,20 +306227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20275] = 7, + [21297] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2857), 3, + STATE(2935), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5074), 11, + ACTIONS(2864), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302791,7 +306252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5076), 15, + ACTIONS(2866), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302807,21 +306268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20323] = 7, + [21345] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2858), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2936), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2886), 11, - anon_sym_COLON, + ACTIONS(5032), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -302832,7 +306296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2888), 15, + ACTIONS(5034), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302841,27 +306305,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20371] = 7, + [21397] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2859), 3, + STATE(2937), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2862), 11, + ACTIONS(2892), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302873,7 +306336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2864), 15, + ACTIONS(2894), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -302889,34 +306352,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20419] = 14, + [21445] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, + ACTIONS(5287), 1, + anon_sym_COMMA, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5115), 1, + ACTIONS(5291), 1, anon_sym_as, - ACTIONS(5117), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, + ACTIONS(5293), 1, anon_sym_COLON_COLON, - ACTIONS(5121), 1, + ACTIONS(5295), 1, anon_sym_PIPE, - ACTIONS(5123), 1, + ACTIONS(5297), 1, anon_sym_AMP, - STATE(2895), 1, + STATE(2921), 1, aux_sym_repeat_pattern_repeat1, - STATE(2860), 3, + STATE(2938), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4938), 9, + ACTIONS(5044), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -302926,31 +306389,33 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4940), 10, + ACTIONS(5046), 10, + anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20481] = 7, + [21507] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2861), 3, + STATE(2934), 1, + aux_sym_record_pattern_repeat1, + STATE(2939), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3032), 11, + ACTIONS(5059), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -302962,8 +306427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3034), 15, - anon_sym_EQ, + ACTIONS(5061), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -302978,24 +306442,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20529] = 7, + [21557] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2862), 3, + ACTIONS(5287), 1, + anon_sym_COMMA, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5293), 1, + anon_sym_COLON_COLON, + ACTIONS(5295), 1, + anon_sym_PIPE, + ACTIONS(5297), 1, + anon_sym_AMP, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2940), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2776), 11, - anon_sym_COLON, + ACTIONS(3860), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -303003,37 +306479,35 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2778), 15, + ACTIONS(3858), 10, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20577] = 7, + [21619] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2863), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2941), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2858), 11, - anon_sym_COLON, + ACTIONS(5167), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -303044,7 +306518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2860), 15, + ACTIONS(5169), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303053,31 +306527,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20625] = 9, + [21671] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5127), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2864), 3, + STATE(2942), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4915), 11, + ACTIONS(2888), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303089,48 +306558,50 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4917), 13, + ACTIONS(2890), 15, anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20677] = 14, + [21719] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5127), 1, + ACTIONS(5287), 1, anon_sym_COMMA, - ACTIONS(5129), 1, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5293), 1, anon_sym_COLON_COLON, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_PIPE, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_AMP, - STATE(2864), 1, + STATE(2921), 1, aux_sym_repeat_pattern_repeat1, - STATE(2865), 3, + STATE(2943), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3738), 9, + ACTIONS(5121), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -303140,7 +306611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3736), 10, + ACTIONS(5123), 10, anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, @@ -303151,24 +306622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20739] = 7, + [21781] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2866), 3, + ACTIONS(5287), 1, + anon_sym_COMMA, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5293), 1, + anon_sym_COLON_COLON, + ACTIONS(5295), 1, + anon_sym_PIPE, + ACTIONS(5297), 1, + anon_sym_AMP, + STATE(2921), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2944), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2854), 11, - anon_sym_COLON, + ACTIONS(5055), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -303176,39 +306659,31 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2856), 15, + ACTIONS(5057), 10, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20787] = 8, + [21843] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5148), 1, - anon_sym_COMMA, - STATE(2867), 4, + STATE(2945), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4919), 11, + ACTIONS(2884), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303220,36 +306695,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 13, + ACTIONS(2886), 15, anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20837] = 8, + [21891] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2886), 1, - aux_sym_record_pattern_repeat1, - STATE(2868), 3, + STATE(2946), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4909), 11, + ACTIONS(2880), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303261,7 +306736,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4911), 14, + ACTIONS(2882), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -303276,24 +306752,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20887] = 9, + [21939] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2869), 3, + STATE(2947), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4923), 10, + ACTIONS(2876), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -303304,7 +306777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4925), 14, + ACTIONS(2878), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303313,26 +306786,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20939] = 7, + [21987] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2870), 3, + STATE(2948), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2601), 11, + ACTIONS(2900), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303344,7 +306818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2603), 15, + ACTIONS(2902), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303360,36 +306834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [20987] = 14, + [22035] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5117), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_PIPE, - ACTIONS(5123), 1, - anon_sym_AMP, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2871), 3, + STATE(2949), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3738), 9, + ACTIONS(2872), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -303397,7 +306859,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3736), 10, + ACTIONS(2874), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -303408,20 +306875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21049] = 7, + [22083] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2872), 3, + STATE(2950), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 11, + ACTIONS(5200), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303433,7 +306900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2611), 15, + ACTIONS(5202), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303449,23 +306916,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21097] = 8, + [22131] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5151), 1, - anon_sym_COMMA, - STATE(2873), 4, + STATE(2951), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4919), 11, + ACTIONS(5185), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303477,7 +306941,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 13, + ACTIONS(5187), 15, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -303491,23 +306957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21147] = 8, + [22179] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5154), 1, - anon_sym_SEMI, - STATE(2874), 4, + STATE(2952), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4931), 11, + ACTIONS(5181), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303519,36 +306982,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 13, + ACTIONS(5183), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21197] = 8, + [22227] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2874), 1, - aux_sym_record_pattern_repeat1, - STATE(2875), 3, + STATE(2953), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4899), 11, + ACTIONS(2860), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303560,7 +307023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4901), 14, + ACTIONS(2862), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303569,26 +307032,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21247] = 7, + [22275] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2876), 3, + STATE(2913), 1, + aux_sym_record_pattern_repeat1, + STATE(2954), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2802), 11, + ACTIONS(5083), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303600,7 +307066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2804), 15, + ACTIONS(5085), 14, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303609,31 +307075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21295] = 9, + [22325] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2877), 3, + STATE(2955), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4883), 10, + ACTIONS(2856), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -303644,7 +307106,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4885), 14, + ACTIONS(2858), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -303659,20 +307122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21347] = 7, + [22373] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2878), 3, + STATE(2956), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2806), 11, + ACTIONS(3105), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303684,7 +307147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2808), 15, + ACTIONS(3107), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303700,24 +307163,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21395] = 7, + [22421] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2879), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5308), 1, + anon_sym_AMP, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2957), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5047), 11, - anon_sym_COLON, + ACTIONS(5051), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -303725,12 +307200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5049), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5053), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -303741,20 +307211,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21443] = 7, + [22483] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2880), 3, + ACTIONS(5310), 1, + anon_sym_COMMA, + STATE(2958), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2810), 11, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5044), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303766,9 +307239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2812), 15, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5046), 13, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -303782,24 +307253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21491] = 9, + [22533] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2881), 3, + STATE(2959), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4927), 10, + ACTIONS(2930), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -303810,7 +307278,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4929), 14, + ACTIONS(2932), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -303825,24 +307294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21543] = 9, + [22581] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, + ACTIONS(5282), 1, anon_sym_COLON, - STATE(2895), 1, + STATE(2980), 1, aux_sym_repeat_pattern_repeat1, - STATE(2882), 3, + STATE(2960), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4923), 10, + ACTIONS(5040), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -303853,7 +307322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4925), 14, + ACTIONS(5042), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -303868,36 +307337,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21595] = 14, + [22633] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5127), 1, - anon_sym_COMMA, - ACTIONS(5129), 1, - anon_sym_COLON_COLON, - ACTIONS(5131), 1, - anon_sym_PIPE, - ACTIONS(5133), 1, - anon_sym_AMP, - STATE(2864), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2883), 3, + STATE(2961), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4919), 9, + ACTIONS(2962), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -303905,32 +307362,40 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4921), 10, + ACTIONS(2964), 15, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21657] = 7, + [22681] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2884), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2962), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5051), 11, - anon_sym_COLON, + ACTIONS(5036), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -303941,8 +307406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5053), 15, - anon_sym_EQ, + ACTIONS(5038), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -303957,20 +307421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21705] = 7, + [22733] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2885), 3, + STATE(2963), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5062), 11, + ACTIONS(3039), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -303982,7 +307446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5064), 15, + ACTIONS(3041), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -303998,22 +307462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21753] = 8, + [22781] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2852), 1, - aux_sym_record_pattern_repeat1, - STATE(2886), 3, + STATE(2964), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4899), 11, + ACTIONS(3115), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304025,7 +307487,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4901), 14, + ACTIONS(3117), 15, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -304040,21 +307503,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21803] = 7, + [22829] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2887), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2965), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2822), 11, - anon_sym_COLON, + ACTIONS(5032), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -304065,8 +307531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2824), 15, - anon_sym_EQ, + ACTIONS(5034), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -304081,24 +307546,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21851] = 7, + [22881] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2888), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5308), 1, + anon_sym_AMP, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2966), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5066), 11, - anon_sym_COLON, + ACTIONS(5044), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304106,12 +307583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5068), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5046), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -304122,20 +307594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21899] = 7, + [22943] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2889), 3, + STATE(2967), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5058), 11, + ACTIONS(2938), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304147,7 +307619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5060), 15, + ACTIONS(2940), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304163,20 +307635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21947] = 7, + [22991] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2890), 3, + STATE(2968), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2998), 11, + ACTIONS(5171), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304188,7 +307660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3000), 15, + ACTIONS(5173), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304204,20 +307676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [21995] = 7, + [23039] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2891), 3, + STATE(2969), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5013), 11, + ACTIONS(2916), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304229,7 +307701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5015), 15, + ACTIONS(2918), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304245,20 +307717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22043] = 7, + [23087] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2892), 3, + STATE(2970), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5039), 11, + ACTIONS(2868), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304270,7 +307742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5041), 15, + ACTIONS(2870), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304286,20 +307758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22091] = 7, + [23135] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2893), 3, + STATE(2971), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2784), 11, + ACTIONS(5175), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304311,7 +307783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2786), 15, + ACTIONS(5177), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304327,24 +307799,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22139] = 7, + [23183] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2894), 3, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5313), 1, + sym_identifier, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + STATE(3069), 1, + sym_attributes, + STATE(3243), 1, + sym_argument_name_spec, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3745), 1, + aux_sym_attributes_repeat1, + STATE(3917), 1, + sym_type, + STATE(3960), 1, + sym_attribute_set, + STATE(4723), 1, + sym_argument_spec, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(2972), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5082), 11, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [23259] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5282), 1, anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5308), 1, + anon_sym_AMP, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2973), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5055), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304352,12 +307891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5084), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5057), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -304368,24 +307902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22187] = 9, + [23321] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5117), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2895), 3, + STATE(2974), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4915), 11, + ACTIONS(2997), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304397,7 +307927,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4917), 13, + ACTIONS(2999), 15, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -304411,20 +307943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22239] = 7, + [23369] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2896), 3, + STATE(2975), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2842), 11, + ACTIONS(3077), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304436,7 +307968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2844), 15, + ACTIONS(3079), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304452,20 +307984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22287] = 7, + [23417] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2897), 3, + STATE(2976), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2798), 11, + ACTIONS(3031), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304477,7 +308009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2800), 15, + ACTIONS(3033), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304493,24 +308025,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22335] = 7, + [23465] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2898), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5308), 1, + anon_sym_AMP, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2977), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2838), 11, - anon_sym_COLON, + ACTIONS(3860), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304518,12 +308062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2840), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3858), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -304534,20 +308073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22383] = 7, + [23527] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2899), 3, + STATE(2978), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2834), 11, + ACTIONS(2970), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304559,7 +308098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2836), 15, + ACTIONS(2972), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304575,37 +308114,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22431] = 7, + [23575] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2900), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + ACTIONS(5291), 1, + anon_sym_as, + ACTIONS(5302), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5308), 1, + anon_sym_AMP, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2979), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3068), 11, - anon_sym_COLON, + ACTIONS(5121), 9, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - sym_identifier, - ACTIONS(3070), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + sym_identifier, + ACTIONS(5123), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -304616,24 +308162,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22479] = 9, + [23637] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(2864), 1, + ACTIONS(5302), 1, + anon_sym_COMMA, + STATE(2958), 1, aux_sym_repeat_pattern_repeat1, - STATE(2901), 3, + STATE(2980), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4938), 10, + ACTIONS(5014), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, anon_sym_as, @@ -304644,39 +308191,39 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4940), 14, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5016), 13, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22531] = 7, + [23689] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2902), 3, + ACTIONS(5323), 1, + anon_sym_as, + STATE(2981), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2830), 11, + ACTIONS(5208), 10, anon_sym_COLON, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304684,7 +308231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2832), 15, + ACTIONS(5210), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304700,36 +308247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22579] = 14, + [23739] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - ACTIONS(5115), 1, - anon_sym_as, - ACTIONS(5117), 1, - anon_sym_COMMA, - ACTIONS(5119), 1, - anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_PIPE, - ACTIONS(5123), 1, - anon_sym_AMP, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2903), 3, + STATE(2982), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4853), 9, + ACTIONS(5008), 11, + anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304737,7 +308272,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4855), 10, + ACTIONS(5010), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -304748,25 +308288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22641] = 8, + [23787] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5157), 1, - anon_sym_as, - STATE(2904), 3, + STATE(2983), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5019), 10, + ACTIONS(2934), 11, anon_sym_COLON, anon_sym_null, anon_sym__, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304774,7 +308313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5021), 15, + ACTIONS(2936), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304790,20 +308329,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22691] = 7, + [23835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2905), 3, + STATE(2984), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5003), 11, + ACTIONS(3139), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304815,7 +308354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5005), 15, + ACTIONS(3141), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304831,21 +308370,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22739] = 7, + [23883] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2906), 3, + ACTIONS(5282), 1, + anon_sym_COLON, + STATE(2980), 1, + aux_sym_repeat_pattern_repeat1, + STATE(2985), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2826), 11, - anon_sym_COLON, + ACTIONS(5167), 10, anon_sym_null, anon_sym__, anon_sym_as, @@ -304856,8 +308398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2828), 15, - anon_sym_EQ, + ACTIONS(5169), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -304872,20 +308413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22787] = 7, + [23935] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2907), 3, + STATE(2986), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5031), 11, + ACTIONS(3027), 11, anon_sym_COLON, anon_sym_null, anon_sym__, @@ -304897,7 +308438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5033), 15, + ACTIONS(3029), 15, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -304913,27 +308454,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22835] = 9, + [23983] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5113), 1, - anon_sym_COLON, - STATE(2895), 1, - aux_sym_repeat_pattern_repeat1, - STATE(2908), 3, + ACTIONS(5325), 1, + anon_sym_EQ, + ACTIONS(5327), 1, + anon_sym_LPAREN, + ACTIONS(5329), 1, + anon_sym_with, + ACTIONS(5331), 1, + anon_sym_new, + ACTIONS(5333), 1, + anon_sym_static, + ACTIONS(5335), 1, + anon_sym_member, + ACTIONS(5337), 1, + anon_sym_interface, + ACTIONS(5339), 1, + anon_sym_abstract, + ACTIONS(5343), 1, + anon_sym_val, + STATE(2077), 1, + sym_member_defn, + STATE(2191), 1, + sym_additional_constr_defn, + STATE(2267), 1, + aux_sym__object_expression_inner_repeat1, + STATE(2406), 1, + sym_interface_implementation, + STATE(2463), 1, + sym_type_extension_elements, + STATE(2482), 1, + sym__member_defns, + STATE(2505), 1, + sym__type_defn_elements, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3596), 1, + sym_attributes, + STATE(4314), 1, + sym_access_modifier, + STATE(5396), 1, + sym_primary_constr_args, + ACTIONS(5341), 2, + anon_sym_override, + anon_sym_default, + STATE(2987), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [24074] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5327), 1, + anon_sym_LPAREN, + ACTIONS(5345), 1, + anon_sym_EQ, + ACTIONS(5347), 1, + anon_sym_with, + ACTIONS(5349), 1, + anon_sym_new, + ACTIONS(5351), 1, + anon_sym_static, + ACTIONS(5353), 1, + anon_sym_member, + ACTIONS(5355), 1, + anon_sym_interface, + ACTIONS(5357), 1, + anon_sym_abstract, + ACTIONS(5361), 1, + anon_sym_val, + STATE(2006), 1, + sym_member_defn, + STATE(2164), 1, + sym_additional_constr_defn, + STATE(2226), 1, + aux_sym__object_expression_inner_repeat1, + STATE(2310), 1, + sym_interface_implementation, + STATE(2382), 1, + sym__member_defns, + STATE(2436), 1, + sym_type_extension_elements, + STATE(2437), 1, + sym__type_defn_elements, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3608), 1, + sym_attributes, + STATE(4344), 1, + sym_access_modifier, + STATE(5193), 1, + sym_primary_constr_args, + ACTIONS(5359), 2, + anon_sym_override, + anon_sym_default, + STATE(2988), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [24165] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5365), 1, + anon_sym_LBRACK_LT, + STATE(2994), 1, + sym_attribute_set, + STATE(2989), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4905), 10, + aux_sym_attributes_repeat1, + ACTIONS(5363), 10, + anon_sym_mutable, anon_sym_null, anon_sym__, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOLLAR_DQUOTE, @@ -304941,64 +308607,60 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4907), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(5368), 12, + aux_sym_access_modifier_token1, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, + anon_sym_CARET, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22887] = 9, + [24216] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5161), 1, - anon_sym_LBRACK_LT, - STATE(2921), 1, - sym_attribute_set, - STATE(2909), 4, + ACTIONS(5374), 1, + anon_sym_DOT, + STATE(2990), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(5159), 10, - anon_sym_mutable, + ACTIONS(5370), 10, anon_sym_null, anon_sym__, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5164), 12, - aux_sym_access_modifier_token1, + ACTIONS(5372), 13, + anon_sym_EQ, + anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, anon_sym_SQUOTE, - anon_sym_CARET, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [22938] = 29, + [24264] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -305007,60 +308669,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5170), 1, + ACTIONS(5376), 1, anon_sym_with, - ACTIONS(5172), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5174), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5176), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5178), 1, + ACTIONS(5384), 1, anon_sym_interface, - ACTIONS(5180), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5184), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2011), 1, + ACTIONS(5392), 1, + sym__dedent, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, sym_member_defn, - STATE(2137), 1, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, sym_additional_constr_defn, - STATE(2212), 1, + STATE(4184), 1, aux_sym__object_expression_inner_repeat1, - STATE(2297), 1, + STATE(4401), 1, sym_interface_implementation, - STATE(2408), 1, + STATE(4567), 1, + sym_access_modifier, + STATE(5002), 1, sym__type_defn_elements, - STATE(2430), 1, + STATE(5020), 1, sym_type_extension_elements, - STATE(2441), 1, + STATE(5095), 1, sym__member_defns, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3517), 1, - sym_attributes, - STATE(4133), 1, - sym_access_modifier, - STATE(5242), 1, - sym_primary_constr_args, - ACTIONS(5182), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(2910), 3, + STATE(2991), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23029] = 29, + [24349] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -305069,171 +308727,343 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5186), 1, - anon_sym_EQ, - ACTIONS(5188), 1, + ACTIONS(5376), 1, anon_sym_with, - ACTIONS(5190), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5192), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5194), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5196), 1, + ACTIONS(5384), 1, anon_sym_interface, - ACTIONS(5198), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5202), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(1955), 1, + ACTIONS(5394), 1, + sym__dedent, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, sym_member_defn, - STATE(2121), 1, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, sym_additional_constr_defn, - STATE(2192), 1, + STATE(4184), 1, aux_sym__object_expression_inner_repeat1, - STATE(2226), 1, + STATE(4401), 1, sym_interface_implementation, - STATE(2279), 1, + STATE(4567), 1, + sym_access_modifier, + STATE(4909), 1, sym_type_extension_elements, - STATE(2393), 1, + STATE(5002), 1, sym__type_defn_elements, - STATE(2396), 1, + STATE(5095), 1, sym__member_defns, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3520), 1, - sym_attributes, - STATE(4237), 1, - sym_access_modifier, - STATE(5181), 1, - sym_primary_constr_args, - ACTIONS(5200), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(2911), 3, + STATE(2992), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23120] = 8, + [24434] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5208), 1, - anon_sym_DOT, - STATE(2912), 3, + STATE(2993), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2687), 11, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COLON, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2685), 12, + anon_sym_and, + anon_sym_LPAREN, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [24479] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2994), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5204), 10, + ACTIONS(5396), 10, + anon_sym_mutable, anon_sym_null, anon_sym__, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(5206), 13, - anon_sym_EQ, + ACTIONS(5398), 13, anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, anon_sym_SQUOTE, + anon_sym_CARET, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [23168] = 27, + [24524] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2995), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5400), 10, + anon_sym_mutable, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5402), 13, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_CARET, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [24569] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(2517), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5210), 1, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5408), 1, + anon_sym_COLON, + ACTIONS(5412), 1, + anon_sym_DOT, + ACTIONS(5414), 1, + anon_sym_of, + STATE(3088), 1, + aux_sym_long_identifier_repeat1, + STATE(2996), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2523), 4, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(5406), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + ACTIONS(5410), 9, anon_sym_with, - ACTIONS(5212), 1, anon_sym_new, - ACTIONS(5214), 1, anon_sym_static, - ACTIONS(5216), 1, anon_sym_member, - ACTIONS(5218), 1, anon_sym_interface, - ACTIONS(5220), 1, anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - ACTIONS(5226), 1, - sym__dedent, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4122), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, - sym_access_modifier, - STATE(4361), 1, - sym_interface_implementation, - STATE(5193), 1, - sym__type_defn_elements, - STATE(5321), 1, - sym__member_defns, - STATE(5335), 1, - sym_type_extension_elements, - ACTIONS(5222), 2, anon_sym_override, anon_sym_default, - STATE(2913), 3, + anon_sym_val, + [24628] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5416), 1, + aux_sym_float_token1, + STATE(2997), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2693), 11, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2695), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [24675] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(2998), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23253] = 7, + ACTIONS(5418), 10, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_with, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5420), 13, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [24720] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2914), 3, + STATE(2999), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5422), 10, + anon_sym_mutable, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5424), 13, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_CARET, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [24765] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3000), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2589), 11, + ACTIONS(2630), 11, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COLON, @@ -305245,7 +309075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2587), 12, + ACTIONS(2628), 12, anon_sym_and, anon_sym_LPAREN, anon_sym_with, @@ -305258,7 +309088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [23298] = 27, + [24810] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -305267,69 +309097,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5210), 1, + ACTIONS(5376), 1, anon_sym_with, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5218), 1, + ACTIONS(5384), 1, anon_sym_interface, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - ACTIONS(5228), 1, + ACTIONS(5426), 1, sym__dedent, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3304), 1, + STATE(3394), 1, sym_member_defn, - STATE(3646), 1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(4122), 1, + STATE(4184), 1, aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4567), 1, sym_access_modifier, - STATE(4361), 1, + STATE(5002), 1, + sym__type_defn_elements, + STATE(5095), 1, + sym__member_defns, + STATE(5141), 1, + sym_type_extension_elements, + ACTIONS(5388), 2, + anon_sym_override, + anon_sym_default, + STATE(3001), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [24895] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5376), 1, + anon_sym_with, + ACTIONS(5378), 1, + anon_sym_new, + ACTIONS(5380), 1, + anon_sym_static, + ACTIONS(5382), 1, + anon_sym_member, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(5386), 1, + anon_sym_abstract, + ACTIONS(5390), 1, + anon_sym_val, + ACTIONS(5428), 1, + sym__dedent, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, + sym_member_defn, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(4184), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, sym_interface_implementation, - STATE(5193), 1, + STATE(4567), 1, + sym_access_modifier, + STATE(4961), 1, + sym_type_extension_elements, + STATE(5002), 1, sym__type_defn_elements, - STATE(5321), 1, + STATE(5095), 1, sym__member_defns, - STATE(5324), 1, - sym_type_extension_elements, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(2915), 3, + STATE(3002), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23383] = 7, + [24980] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2916), 3, + STATE(3003), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2577), 11, + ACTIONS(2634), 11, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COLON, @@ -305341,7 +309229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2575), 12, + ACTIONS(2632), 12, anon_sym_and, anon_sym_LPAREN, anon_sym_with, @@ -305354,21 +309242,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [23428] = 7, + [25025] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2917), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5432), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(4843), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3004), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5230), 10, - anon_sym_mutable, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25089] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5434), 1, + sym_int, + STATE(3005), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2758), 10, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -305376,178 +309312,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(5232), 13, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2760), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, - anon_sym_CARET, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [23473] = 14, + [25135] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2473), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5234), 1, - anon_sym_EQ, - ACTIONS(5238), 1, - anon_sym_COLON, - ACTIONS(5242), 1, + ACTIONS(5436), 1, anon_sym_DOT, - ACTIONS(5244), 1, - anon_sym_of, - STATE(3040), 1, + STATE(3009), 1, aux_sym_long_identifier_repeat1, - STATE(2918), 3, + STATE(3006), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 4, + ACTIONS(2594), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2596), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(5236), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - ACTIONS(5240), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [23532] = 7, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [25183] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2919), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(5365), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3007), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2599), 11, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COLON, - aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2597), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [23577] = 27, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25247] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5210), 1, - anon_sym_with, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - ACTIONS(5246), 1, - sym__dedent, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4122), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, - sym_access_modifier, - STATE(4361), 1, - sym_interface_implementation, - STATE(4706), 1, - sym_type_extension_elements, - STATE(5193), 1, - sym__type_defn_elements, - STATE(5321), 1, - sym__member_defns, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(2920), 3, + STATE(3008), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23662] = 7, + ACTIONS(2752), 11, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(2754), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [25291] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2921), 3, + ACTIONS(5440), 1, + anon_sym_DOT, + STATE(3009), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5248), 10, - anon_sym_mutable, + aux_sym_long_identifier_repeat1, + ACTIONS(2603), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -305557,191 +309476,421 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5250), 13, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2605), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, - anon_sym_CARET, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [23707] = 27, + [25337] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5210), 1, - anon_sym_with, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - ACTIONS(5252), 1, - sym__dedent, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4122), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, - sym_access_modifier, - STATE(4361), 1, - sym_interface_implementation, - STATE(5137), 1, - sym_type_extension_elements, - STATE(5193), 1, - sym__type_defn_elements, - STATE(5321), 1, - sym__member_defns, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(2922), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5443), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(5134), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3010), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [23792] = 7, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25401] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2923), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5445), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(5180), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3011), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5254), 10, - anon_sym_mutable, - anon_sym_null, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25465] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, anon_sym__, + ACTIONS(5317), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5256), 13, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(4832), 1, + sym_type_attributes, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [23837] = 7, + STATE(3012), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25529] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2924), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5449), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(4944), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3013), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25593] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3014), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5258), 10, + ACTIONS(2693), 11, anon_sym_null, anon_sym__, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(5260), 13, + ACTIONS(2695), 11, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [23882] = 17, + [25637] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5451), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(4919), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3015), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25701] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5453), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(4893), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3016), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25765] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5455), 1, + anon_sym_GT, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3709), 1, + sym_type, + STATE(4358), 1, + sym_type_attribute, + STATE(5004), 1, + sym_type_attributes, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3017), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [25829] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5264), 1, + ACTIONS(5457), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4902), 1, + STATE(4970), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2925), 3, + STATE(3018), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305752,43 +309901,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [23946] = 17, + [25893] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5266), 1, + ACTIONS(5459), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5129), 1, + STATE(4989), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2926), 3, + STATE(3019), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305799,43 +309948,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24010] = 17, + [25957] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5268), 1, + ACTIONS(5461), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5027), 1, + STATE(5008), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2927), 3, + STATE(3020), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305846,43 +309995,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24074] = 17, + [26021] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5270), 1, + ACTIONS(5463), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4879), 1, + STATE(4853), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2928), 3, + STATE(3021), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305893,43 +310042,82 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24138] = 17, + [26085] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5436), 1, + anon_sym_DOT, + STATE(3006), 1, + aux_sym_long_identifier_repeat1, + STATE(3022), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 9, + anon_sym_null, anon_sym__, - ACTIONS(5139), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2523), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [26133] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5272), 1, + ACTIONS(5465), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4827), 1, + STATE(5479), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2929), 3, + STATE(3023), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305940,43 +310128,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24202] = 17, + [26197] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5274), 1, + ACTIONS(5467), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4820), 1, + STATE(5027), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2930), 3, + STATE(3024), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -305987,43 +310175,80 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24266] = 17, + [26261] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + STATE(3025), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5469), 10, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_STAR_RPAREN, + sym_int, + sym_identifier, + ACTIONS(5471), 12, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + aux_sym__identifier_or_op_token1, + sym_xint, + [26305] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5276), 1, + ACTIONS(5473), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4924), 1, + STATE(4878), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2931), 3, + STATE(3026), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306034,43 +310259,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24330] = 17, + [26369] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5278), 1, + ACTIONS(5475), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4892), 1, + STATE(5240), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2932), 3, + STATE(3027), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306081,43 +310306,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24394] = 17, + [26433] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5280), 1, + ACTIONS(5477), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5010), 1, + STATE(4790), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2933), 3, + STATE(3028), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306128,43 +310353,82 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24458] = 17, + [26497] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4926), 1, + aux_sym_decimal_token1, + ACTIONS(5479), 1, + anon_sym_f, + STATE(3029), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2231), 9, + anon_sym_null, anon_sym__, - ACTIONS(5139), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2229), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [26545] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5282), 1, + ACTIONS(5481), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5300), 1, + STATE(5293), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2934), 3, + STATE(3030), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306175,24 +310439,24 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24522] = 9, + [26609] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2909), 1, + STATE(2989), 1, aux_sym_attributes_repeat1, - STATE(2921), 1, + STATE(2994), 1, sym_attribute_set, - STATE(2935), 3, + STATE(3031), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5284), 9, + ACTIONS(5483), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -306202,7 +310466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5286), 11, + ACTIONS(5485), 11, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -306214,43 +310478,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [24570] = 17, + [26657] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5288), 1, + ACTIONS(5487), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5358), 1, + STATE(5081), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2936), 3, + STATE(3032), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306261,43 +310525,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24634] = 17, + [26721] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5290), 1, + ACTIONS(5489), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5082), 1, + STATE(4872), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2937), 3, + STATE(3033), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306308,43 +310572,43 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24698] = 17, + [26785] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5292), 1, + ACTIONS(5491), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4811), 1, + STATE(5157), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2938), 3, + STATE(3034), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306355,82 +310619,168 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24762] = 9, + [26849] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5294), 1, - anon_sym_DOT, - STATE(2946), 1, - aux_sym_long_identifier_repeat1, - STATE(2939), 3, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + STATE(3035), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2492), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(2409), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + ACTIONS(2411), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [26908] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(2494), 11, - anon_sym_EQ, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + STATE(3036), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2409), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(2411), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [26967] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5412), 1, + anon_sym_DOT, + ACTIONS(5513), 1, anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + STATE(3088), 1, + aux_sym_long_identifier_repeat1, + STATE(3037), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2523), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [24810] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2517), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [27016] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5296), 1, + ACTIONS(5515), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4868), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(4795), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2940), 3, + STATE(3038), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306441,61 +310791,20 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [24874] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - STATE(2941), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5298), 10, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_STAR_RPAREN, - sym_int, - sym_identifier, - ACTIONS(5300), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - aux_sym__identifier_or_op_token1, - sym_xint, - [24918] = 9, + [27077] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5294), 1, - anon_sym_DOT, - STATE(2939), 1, - aux_sym_long_identifier_repeat1, - STATE(2942), 3, + STATE(3039), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 9, + ACTIONS(5101), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -306505,9 +310814,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2475), 11, + ACTIONS(5103), 12, anon_sym_EQ, anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -306517,90 +310827,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [24966] = 17, + [27120] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5302), 1, - anon_sym_GT, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, sym_long_identifier, - STATE(3688), 1, - sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4852), 1, - sym_type_attributes, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2943), 3, + STATE(3040), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [25030] = 17, + ACTIONS(5517), 5, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_STAR, + ACTIONS(5519), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [27177] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5521), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4804), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5481), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2944), 3, + STATE(3041), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306611,43 +310915,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25094] = 17, + [27238] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5306), 1, + ACTIONS(5523), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4946), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5146), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2945), 3, + STATE(3042), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306658,81 +310960,80 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25158] = 8, + [27299] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5308), 1, - anon_sym_DOT, - STATE(2946), 4, + STATE(3052), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + ACTIONS(5483), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3043), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2483), 9, - anon_sym_null, + ACTIONS(5485), 16, + anon_sym_module, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2485), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_new, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [25204] = 17, + anon_sym_CARET, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [27348] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5311), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(4993), 1, + STATE(4770), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2947), 3, + STATE(3044), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306743,90 +311044,129 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25268] = 17, + [27409] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5313), 1, - anon_sym_GT, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, sym_long_identifier, - STATE(3688), 1, - sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4842), 1, - sym_type_attributes, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2948), 3, + STATE(3045), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [25332] = 17, + ACTIONS(2361), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + ACTIONS(2363), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [27468] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + STATE(3046), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5525), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + ACTIONS(5527), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [27527] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5315), 1, + ACTIONS(5529), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(5174), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5301), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2949), 3, + STATE(3047), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306837,43 +311177,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25396] = 17, + [27588] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5317), 1, + ACTIONS(5531), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4911), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5051), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2950), 3, + STATE(3048), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306884,43 +311222,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25460] = 17, + [27649] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5319), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3709), 1, sym_type, - STATE(4147), 1, + STATE(4358), 1, sym_type_attribute, - STATE(5226), 1, + STATE(5266), 1, sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2951), 3, + STATE(3049), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306931,41 +311267,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25524] = 16, + [27710] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5533), 1, sym_identifier, - ACTIONS(5321), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(3040), 1, + sym_type, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(5049), 1, - sym_types, - ACTIONS(5143), 2, + STATE(3465), 1, + sym_union_type_field, + STATE(3549), 1, + sym_union_type_fields, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2952), 3, + STATE(3050), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -306976,41 +311312,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25585] = 16, + [27771] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5323), 1, + ACTIONS(5535), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, + STATE(3653), 1, sym_type, - STATE(5229), 1, + STATE(3662), 1, + sym_long_identifier, + STATE(5242), 1, sym_types, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2953), 3, + STATE(3051), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307021,248 +311357,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25646] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5325), 1, - anon_sym_SEMI, - STATE(2954), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4931), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(4933), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [25691] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5242), 1, - anon_sym_DOT, - ACTIONS(5328), 1, - anon_sym_COLON, - STATE(3040), 1, - aux_sym_long_identifier_repeat1, - STATE(2955), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2475), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2473), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [25740] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(2956), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5332), 5, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_STAR, - ACTIONS(5334), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [25797] = 15, + [27832] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(2957), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2305), 4, - sym__newline, - sym__dedent, + ACTIONS(5537), 1, anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - ACTIONS(2307), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [25856] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(2958), 3, + STATE(3174), 1, + sym_attribute_set, + ACTIONS(5363), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3052), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2345), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + aux_sym_attributes_repeat1, + ACTIONS(5368), 16, + anon_sym_module, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - ACTIONS(2343), 9, - anon_sym_with, + anon_sym__, anon_sym_new, + anon_sym_SQUOTE, + anon_sym_CARET, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [25915] = 16, + [27879] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5533), 1, sym_identifier, - STATE(2956), 1, + STATE(3040), 1, sym_type, - STATE(3163), 1, + STATE(3351), 1, sym_type_argument, - STATE(3298), 1, - sym_long_identifier, STATE(3358), 1, + sym_long_identifier, + STATE(3465), 1, sym_union_type_field, - STATE(3421), 1, + STATE(3546), 1, sym_union_type_fields, - ACTIONS(4494), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2959), 3, + STATE(3053), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307273,85 +311440,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [25976] = 15, + [27940] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(5344), 1, + ACTIONS(5505), 1, anon_sym_DASH_GT, - ACTIONS(5346), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5348), 1, + ACTIONS(5509), 1, anon_sym_LT2, - ACTIONS(5350), 1, + ACTIONS(5511), 1, anon_sym_LBRACK_RBRACK, - STATE(3137), 1, + STATE(3217), 1, aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, + STATE(3362), 1, sym_long_identifier, - STATE(2960), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2363), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - ACTIONS(2365), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [26035] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, + STATE(3380), 1, sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(2961), 3, + STATE(3054), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2361), 4, + ACTIONS(2321), 4, sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - ACTIONS(2359), 9, + ACTIONS(2319), 9, anon_sym_with, anon_sym_new, anon_sym_static, @@ -307361,124 +311484,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [26094] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - ACTIONS(5354), 1, - anon_sym_GT, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(4997), 1, - sym_types, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2962), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [26155] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5356), 1, - anon_sym_SEMI, - STATE(2954), 1, - aux_sym_record_pattern_repeat1, - STATE(2963), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4899), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(4901), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [26202] = 16, + [27999] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + ACTIONS(5540), 1, + anon_sym_GT, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, + STATE(3653), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(5310), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5084), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2964), 3, + STATE(3055), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307489,41 +311529,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [26263] = 15, + [28060] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - STATE(2965), 3, + STATE(3368), 1, + sym_long_identifier, + STATE(3056), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5358), 4, + ACTIONS(2321), 4, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_PIPE, - ACTIONS(5360), 9, + ACTIONS(2319), 9, anon_sym_with, anon_sym_new, anon_sym_static, @@ -307533,41 +311573,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [26322] = 15, + [28119] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - STATE(2966), 3, + STATE(3368), 1, + sym_long_identifier, + STATE(3057), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5364), 4, + ACTIONS(2375), 4, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_PIPE, - ACTIONS(5366), 9, + ACTIONS(2373), 9, anon_sym_with, anon_sym_new, anon_sym_static, @@ -307577,41 +311617,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [26381] = 16, + [28178] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4875), 1, - anon_sym_QMARK, - ACTIONS(5135), 1, - sym_identifier, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(3106), 1, - sym_argument_name_spec, - STATE(3486), 1, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5542), 1, + anon_sym_GT, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3854), 1, + STATE(3653), 1, sym_type, - ACTIONS(5143), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(5368), 1, + sym_types, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2967), 3, + STATE(3058), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307622,59 +311662,20 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [26442] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(2981), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - ACTIONS(5284), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(2968), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5286), 16, - anon_sym_module, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym__, - anon_sym_new, - anon_sym_SQUOTE, - anon_sym_CARET, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [26491] = 7, + [28239] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2969), 3, + STATE(3059), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 9, + ACTIONS(2603), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -307684,7 +311685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2485), 12, + ACTIONS(2605), 12, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -307697,41 +311698,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [26534] = 16, + [28282] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5368), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3583), 1, + STATE(3709), 1, sym_type, - STATE(4675), 1, - sym_types, - ACTIONS(5143), 2, + STATE(4358), 1, + sym_type_attribute, + STATE(4882), 1, + sym_type_attributes, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2970), 3, + STATE(3060), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307742,86 +311743,85 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [26595] = 16, + [28343] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, - anon_sym__, - ACTIONS(4482), 1, - anon_sym_LPAREN, - ACTIONS(4490), 1, - anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(2956), 1, - sym_type, - STATE(3163), 1, - sym_type_argument, - STATE(3298), 1, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, sym_long_identifier, - STATE(3358), 1, - sym_union_type_field, - STATE(3443), 1, - sym_union_type_fields, - ACTIONS(4494), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2971), 3, + STATE(3380), 1, + sym_type_arguments, + STATE(3061), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [26656] = 16, + ACTIONS(2375), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(2373), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [28402] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5370), 1, + ACTIONS(5544), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, + STATE(3653), 1, sym_type, - STATE(5177), 1, + STATE(3662), 1, + sym_long_identifier, + STATE(5138), 1, sym_types, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2972), 3, + STATE(3062), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -307832,85 +311832,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [26717] = 15, + [28463] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(2973), 3, + ACTIONS(5546), 1, + anon_sym_SEMI, + STATE(3065), 1, + aux_sym_record_pattern_repeat1, + STATE(3063), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2363), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - ACTIONS(2365), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [26776] = 15, + ACTIONS(5083), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5085), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [28510] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5505), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5511), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3217), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, + STATE(3362), 1, sym_long_identifier, - STATE(3300), 1, + STATE(3380), 1, sym_type_arguments, - STATE(2974), 3, + STATE(3064), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2345), 4, + ACTIONS(2361), 4, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - ACTIONS(2343), 9, + ACTIONS(2363), 9, anon_sym_with, anon_sym_new, anon_sym_static, @@ -307920,129 +311914,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [26835] = 15, + [28569] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(2975), 3, + ACTIONS(5546), 1, + anon_sym_SEMI, + STATE(3066), 1, + aux_sym_record_pattern_repeat1, + STATE(3065), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2305), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - ACTIONS(2307), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [26894] = 16, + ACTIONS(5059), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(5061), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [28616] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5548), 1, + anon_sym_SEMI, + STATE(3066), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_record_pattern_repeat1, + ACTIONS(5101), 9, + anon_sym_null, anon_sym__, - ACTIONS(5139), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - ACTIONS(5372), 1, - anon_sym_GT, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(5132), 1, - sym_types, - ACTIONS(5143), 2, + ACTIONS(5103), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2976), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [26955] = 14, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [28661] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - STATE(2977), 3, + STATE(3368), 1, + sym_long_identifier, + STATE(3067), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5374), 5, + ACTIONS(5551), 5, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_PIPE, anon_sym_STAR, - ACTIONS(5376), 9, + ACTIONS(5553), 9, anon_sym_with, anon_sym_new, anon_sym_static, @@ -308052,41 +312032,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [27012] = 16, + [28718] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5378), 1, + ACTIONS(5555), 1, anon_sym_GT, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, + STATE(3653), 1, sym_type, - STATE(5084), 1, + STATE(3662), 1, + sym_long_identifier, + STATE(5183), 1, sym_types, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2978), 3, + STATE(3068), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -308097,41 +312077,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [27073] = 16, + [28779] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5093), 1, + anon_sym_QMARK, + ACTIONS(5313), 1, + sym_identifier, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(3161), 1, + sym_argument_name_spec, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3688), 1, + STATE(3956), 1, sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(5290), 1, - sym_type_attributes, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2979), 3, + STATE(3069), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -308142,124 +312122,112 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [27134] = 16, + [28840] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5380), 1, - anon_sym_GT, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(4674), 1, - sym_types, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2980), 3, + STATE(3070), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [27195] = 9, + ACTIONS(5557), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + ACTIONS(5559), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [28899] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5382), 1, - anon_sym_LBRACK_LT, - STATE(3120), 1, - sym_attribute_set, - ACTIONS(5159), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(2981), 4, + STATE(3071), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(5164), 16, - anon_sym_module, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + ACTIONS(2966), 9, + anon_sym_null, anon_sym__, - anon_sym_new, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2968), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, - anon_sym_CARET, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [27242] = 15, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [28941] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(2982), 3, + ACTIONS(5412), 1, + anon_sym_DOT, + STATE(3088), 1, + aux_sym_long_identifier_repeat1, + STATE(3072), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2361), 4, + ACTIONS(2523), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_PIPE, - ACTIONS(2359), 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2517), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -308269,160 +312237,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [27301] = 16, + sym_identifier, + [28987] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5561), 1, sym_identifier, - ACTIONS(5385), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(2264), 1, + sym__type_defn_body, + STATE(2987), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(5361), 1, - sym_types, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2983), 3, + STATE(3073), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [27362] = 9, + STATE(2502), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [29051] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5356), 1, - anon_sym_SEMI, - STATE(2963), 1, - aux_sym_record_pattern_repeat1, - STATE(2984), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4909), 9, - anon_sym_null, + ACTIONS(5315), 1, anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5561), 1, sym_identifier, - ACTIONS(4911), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + STATE(2494), 1, + sym__type_defn_body, + STATE(2987), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, + sym_type_argument, + ACTIONS(5321), 2, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [27409] = 7, + anon_sym_CARET, + STATE(3074), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2502), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [29115] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2985), 3, + ACTIONS(5378), 1, + anon_sym_new, + ACTIONS(5380), 1, + anon_sym_static, + ACTIONS(5382), 1, + anon_sym_member, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(5386), 1, + anon_sym_abstract, + ACTIONS(5390), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, + sym_member_defn, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(4184), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4567), 1, + sym_access_modifier, + STATE(4866), 1, + sym__type_defn_elements, + STATE(5095), 1, + sym__member_defns, + ACTIONS(5388), 2, + anon_sym_override, + anon_sym_default, + STATE(3075), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4931), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(4933), 12, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [27452] = 16, + [29191] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(5563), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5565), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5567), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(352), 1, + sym_type, + STATE(2545), 1, sym_type_argument, - STATE(3535), 1, + STATE(2556), 1, sym_long_identifier, - STATE(3688), 1, - sym_type, - STATE(4147), 1, - sym_type_attribute, - STATE(4693), 1, - sym_type_attributes, - ACTIONS(5143), 2, + STATE(4333), 1, + sym_object_construction, + ACTIONS(5569), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2986), 3, + STATE(3076), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2553), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -308433,41 +312425,81 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [27513] = 16, + [29249] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(3660), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3077), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3676), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3678), 8, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [29305] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(5563), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5565), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5567), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - ACTIONS(5387), 1, - anon_sym_GT, - STATE(3486), 1, + STATE(354), 1, + sym_type, + STATE(2545), 1, sym_type_argument, - STATE(3535), 1, + STATE(2556), 1, sym_long_identifier, - STATE(3583), 1, - sym_type, - STATE(5302), 1, - sym_types, - ACTIONS(5143), 2, + STATE(4333), 1, + sym_object_construction, + ACTIONS(5569), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(2987), 3, + STATE(3078), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2553), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -308478,101 +312510,96 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [27574] = 18, + [29363] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2180), 1, - sym__type_defn_body, - STATE(2910), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2988), 3, + ACTIONS(5571), 1, + anon_sym_DOT, + STATE(3079), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2415), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [27638] = 7, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2603), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [29407] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2989), 3, + ACTIONS(5574), 1, + anon_sym_DOT, + STATE(3079), 1, + aux_sym_long_identifier_repeat1, + STATE(3080), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2854), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2856), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(2596), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [27680] = 7, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2594), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [29453] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2990), 3, + ACTIONS(5576), 1, + anon_sym_SEMI, + STATE(3081), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2850), 9, + aux_sym_record_pattern_repeat1, + ACTIONS(5101), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -308582,9 +312609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2852), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(5103), 9, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -308594,20 +312619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [27722] = 7, + [29497] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2991), 3, + STATE(3082), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2846), 9, + ACTIONS(5249), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -308617,7 +312642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2848), 11, + ACTIONS(5251), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -308629,63 +312654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [27764] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4814), 1, - anon_sym__, - ACTIONS(4816), 1, - anon_sym_LPAREN, - ACTIONS(4818), 1, - anon_sym_POUND, - STATE(353), 1, - sym_type, - STATE(2485), 1, - sym_type_argument, - STATE(2508), 1, - sym_long_identifier, - STATE(4487), 1, - sym_object_construction, - ACTIONS(4820), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2992), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2506), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [27822] = 7, + [29539] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2993), 3, + STATE(3083), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2842), 9, + ACTIONS(5253), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -308695,7 +312677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2844), 11, + ACTIONS(5255), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -308707,112 +312689,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [27864] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2421), 1, - sym__type_defn_body, - STATE(2910), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2994), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2415), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [27928] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2308), 1, - sym__type_defn_body, - STATE(2911), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2995), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2322), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [27992] = 7, + [29581] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2996), 3, + STATE(3084), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2838), 9, + ACTIONS(2632), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -308822,78 +312712,36 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2840), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2634), 11, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28034] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2148), 1, - sym__type_defn_body, - STATE(2911), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(2997), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2322), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [28098] = 7, + [29623] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(2998), 3, + ACTIONS(5579), 1, + anon_sym_SEMI, + STATE(3081), 1, + aux_sym_record_pattern_repeat1, + STATE(3085), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5298), 9, + ACTIONS(5059), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -308903,189 +312751,149 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5300), 11, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(5061), 9, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28140] = 14, + [29669] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - ACTIONS(3530), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(2999), 3, + ACTIONS(5581), 1, + anon_sym_DOT, + STATE(3086), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3567), 4, - sym__newline, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - ACTIONS(3569), 8, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2603), 10, anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [28196] = 7, + sym_identifier, + [29713] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3000), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3032), 9, - anon_sym_null, + ACTIONS(5315), 1, anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5561), 1, sym_identifier, - ACTIONS(3034), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, + STATE(2342), 1, + sym__type_defn_body, + STATE(2988), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, + sym_type_argument, + ACTIONS(5321), 2, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [28238] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3001), 3, + anon_sym_CARET, + STATE(3087), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2587), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2589), 11, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [28280] = 14, + STATE(2366), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [29777] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - ACTIONS(3530), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3002), 3, + ACTIONS(5412), 1, + anon_sym_DOT, + STATE(3086), 1, + aux_sym_long_identifier_repeat1, + STATE(3088), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3526), 4, - sym__newline, + ACTIONS(2596), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - ACTIONS(3528), 8, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2594), 10, anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [28336] = 8, + sym_identifier, + [29823] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5391), 1, - anon_sym_SEMI, - STATE(3003), 4, + STATE(3089), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4931), 9, + ACTIONS(2685), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309095,30 +312903,32 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4933), 9, + ACTIONS(2687), 11, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28380] = 7, + [29865] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3004), 3, + STATE(3090), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2998), 9, + ACTIONS(2948), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309128,7 +312938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3000), 11, + ACTIONS(2950), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309140,20 +312950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28422] = 7, + [29907] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3005), 3, + STATE(3091), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5070), 9, + ACTIONS(2900), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309163,7 +312973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5072), 11, + ACTIONS(2902), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309175,20 +312985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28464] = 7, + [29949] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3006), 3, + STATE(3092), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2834), 9, + ACTIONS(3139), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309198,7 +313008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2836), 11, + ACTIONS(3141), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309210,55 +313020,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28506] = 7, + [29991] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3685), 1, + anon_sym_COLON, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3007), 3, + ACTIONS(5574), 1, + anon_sym_DOT, + STATE(3080), 1, + aux_sym_long_identifier_repeat1, + STATE(3093), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2830), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2832), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(2523), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [28548] = 7, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2517), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [30039] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3008), 3, + STATE(3094), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2826), 9, + ACTIONS(3027), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309268,7 +313081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2828), 11, + ACTIONS(3029), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309280,20 +313093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28590] = 7, + [30081] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3009), 3, + STATE(3095), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2776), 9, + ACTIONS(5265), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309303,7 +313116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2778), 11, + ACTIONS(5267), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309315,59 +313128,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28632] = 7, + [30123] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3010), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5086), 9, - anon_sym_null, + ACTIONS(4606), 1, anon_sym__, + ACTIONS(4608), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(4616), 1, + anon_sym_POUND, + ACTIONS(5533), 1, sym_identifier, - ACTIONS(5088), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, + STATE(3040), 1, + sym_type, + STATE(3351), 1, + sym_type_argument, + STATE(3358), 1, + sym_long_identifier, + STATE(3500), 1, + sym_union_type_field, + ACTIONS(4620), 2, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [28674] = 9, + anon_sym_CARET, + STATE(3096), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(3354), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [30181] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5394), 1, - anon_sym_SEMI, - STATE(3015), 1, - aux_sym_record_pattern_repeat1, - STATE(3011), 3, + STATE(3097), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4909), 9, + ACTIONS(2628), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309377,30 +313194,32 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4911), 9, + ACTIONS(2630), 11, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28720] = 7, + [30223] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3012), 3, + STATE(3098), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2858), 9, + ACTIONS(5269), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309410,7 +313229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2860), 11, + ACTIONS(5271), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309422,20 +313241,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28762] = 7, + [30265] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3013), 3, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(3660), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3099), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3656), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3658), 8, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [30321] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4964), 1, + anon_sym__, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + anon_sym_POUND, + STATE(356), 1, + sym_type, + STATE(2534), 1, + sym_type_argument, + STATE(2568), 1, + sym_long_identifier, + STATE(4421), 1, + sym_object_construction, + ACTIONS(4970), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3100), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2555), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [30379] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3101), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5396), 9, + ACTIONS(5469), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309445,19 +313349,19 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5398), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(5471), 11, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28804] = 24, + [30421] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -309466,67 +313370,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5218), 1, + ACTIONS(5384), 1, anon_sym_interface, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3304), 1, + STATE(3394), 1, sym_member_defn, - STATE(3646), 1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(4122), 1, + STATE(4184), 1, aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, - sym_access_modifier, - STATE(4361), 1, + STATE(4401), 1, sym_interface_implementation, - STATE(4751), 1, + STATE(4567), 1, + sym_access_modifier, + STATE(4763), 1, sym__type_defn_elements, - STATE(5321), 1, + STATE(5095), 1, sym__member_defns, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(3014), 3, + STATE(3102), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [28880] = 9, + [30497] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5394), 1, - anon_sym_SEMI, - STATE(3003), 1, - aux_sym_record_pattern_repeat1, - STATE(3015), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5561), 1, + sym_identifier, + STATE(2500), 1, + sym__type_defn_body, + STATE(2987), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3103), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2502), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [30561] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3104), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4899), 9, + ACTIONS(2970), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309536,7 +313482,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(4901), 9, + ACTIONS(2972), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -309546,20 +313494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28926] = 7, + [30603] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3016), 3, + STATE(3105), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5031), 9, + ACTIONS(3031), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309569,7 +313517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5033), 11, + ACTIONS(3033), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309581,109 +313529,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [28968] = 24, + [30645] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5561), 1, + sym_identifier, + STATE(2358), 1, + sym__type_defn_body, + STATE(2988), 1, + sym_type_name, + STATE(2994), 1, sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4122), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, + STATE(4060), 1, sym_access_modifier, - STATE(4361), 1, - sym_interface_implementation, - STATE(5292), 1, - sym__type_defn_elements, - STATE(5321), 1, - sym__member_defns, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(3017), 3, + STATE(5418), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3106), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [29044] = 9, + STATE(2366), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [30709] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5242), 1, - anon_sym_DOT, - STATE(3040), 1, - aux_sym_long_identifier_repeat1, - STATE(3018), 3, + STATE(3107), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2473), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(3077), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [29090] = 7, + ACTIONS(3079), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [30751] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3019), 3, + STATE(3108), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5013), 9, + ACTIONS(2997), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309693,7 +313633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5015), 11, + ACTIONS(2999), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309705,20 +313645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29132] = 7, + [30793] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3020), 3, + STATE(3109), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2575), 9, + ACTIONS(2868), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309728,32 +313668,32 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2577), 11, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(2870), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29174] = 7, + [30835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3021), 3, + STATE(3110), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2952), 9, + ACTIONS(2916), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309763,7 +313703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2954), 11, + ACTIONS(2918), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309775,20 +313715,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29216] = 7, + [30877] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3022), 3, + STATE(3111), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2862), 9, + ACTIONS(2938), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309798,7 +313738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2864), 11, + ACTIONS(2940), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309810,20 +313750,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29258] = 7, + [30919] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3023), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5561), 1, + sym_identifier, + STATE(2205), 1, + sym__type_defn_body, + STATE(2988), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3112), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + STATE(2366), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [30983] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5378), 1, + anon_sym_new, + ACTIONS(5380), 1, + anon_sym_static, + ACTIONS(5382), 1, + anon_sym_member, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(5386), 1, + anon_sym_abstract, + ACTIONS(5390), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, + sym_member_defn, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(4184), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4567), 1, + sym_access_modifier, + STATE(5095), 1, + sym__member_defns, + STATE(5220), 1, + sym__type_defn_elements, + ACTIONS(5388), 2, + anon_sym_override, + anon_sym_default, + STATE(3113), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [31059] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3114), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2866), 9, + ACTIONS(5584), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309833,7 +313871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2868), 11, + ACTIONS(5586), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309845,20 +313883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29300] = 7, + [31101] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3024), 3, + STATE(3115), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2886), 9, + ACTIONS(3115), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309868,7 +313906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2888), 11, + ACTIONS(3117), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309880,20 +313918,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29342] = 7, + [31143] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3025), 3, + STATE(3116), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3068), 9, + ACTIONS(3054), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309903,7 +313941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3070), 11, + ACTIONS(3056), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309915,58 +313953,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29384] = 10, + [31185] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3545), 1, - anon_sym_COLON, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5400), 1, - anon_sym_DOT, - STATE(3049), 1, - aux_sym_long_identifier_repeat1, - STATE(3026), 3, + STATE(3117), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2473), 9, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(5588), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [29432] = 7, + ACTIONS(5590), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [31227] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3027), 3, + STATE(3118), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2802), 9, + ACTIONS(3039), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -309976,7 +314011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2804), 11, + ACTIONS(3041), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -309988,20 +314023,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29474] = 7, + [31269] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3028), 3, + ACTIONS(5579), 1, + anon_sym_SEMI, + STATE(3085), 1, + aux_sym_record_pattern_repeat1, + STATE(3119), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2223), 9, + ACTIONS(5083), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310011,9 +314050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2225), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(5085), 9, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -310023,20 +314060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29516] = 7, + [31315] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3029), 3, + STATE(3120), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2806), 9, + ACTIONS(5261), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310046,7 +314083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2808), 11, + ACTIONS(5263), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310058,20 +314095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29558] = 7, + [31357] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3030), 3, + STATE(3121), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2870), 9, + ACTIONS(3035), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310081,7 +314118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2872), 11, + ACTIONS(3037), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310093,20 +314130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29600] = 7, + [31399] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3031), 3, + STATE(3122), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2894), 9, + ACTIONS(2962), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310116,7 +314153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2896), 11, + ACTIONS(2964), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310128,20 +314165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29642] = 7, + [31441] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3032), 3, + STATE(3123), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2810), 9, + ACTIONS(2930), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310151,7 +314188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2812), 11, + ACTIONS(2932), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310163,20 +314200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29684] = 7, + [31483] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3033), 3, + STATE(3124), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2814), 9, + ACTIONS(3105), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310186,7 +314223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2816), 11, + ACTIONS(3107), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310198,20 +314235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29726] = 7, + [31525] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3034), 3, + STATE(3125), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2874), 9, + ACTIONS(2856), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310221,7 +314258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2876), 11, + ACTIONS(2858), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310233,63 +314270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29768] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, - sym_identifier, - ACTIONS(5402), 1, - anon_sym__, - ACTIONS(5404), 1, - anon_sym_LPAREN, - ACTIONS(5406), 1, - anon_sym_POUND, - STATE(354), 1, - sym_type, - STATE(2479), 1, - sym_type_argument, - STATE(2512), 1, - sym_long_identifier, - STATE(4197), 1, - sym_object_construction, - ACTIONS(5408), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3035), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2492), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29826] = 7, + [31567] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3036), 3, + STATE(3126), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5410), 9, + ACTIONS(2860), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310299,7 +314293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5412), 11, + ACTIONS(2862), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310311,20 +314305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29868] = 7, + [31609] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3037), 3, + STATE(3127), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2822), 9, + ACTIONS(2872), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310334,7 +314328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2824), 11, + ACTIONS(2874), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310346,72 +314340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [29910] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4122), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4310), 1, - sym_access_modifier, - STATE(4361), 1, - sym_interface_implementation, - STATE(5321), 1, - sym__member_defns, - STATE(5344), 1, - sym__type_defn_elements, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(3038), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [29986] = 7, + [31651] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3039), 3, + STATE(3128), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2784), 9, + ACTIONS(5257), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310421,7 +314363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2786), 11, + ACTIONS(5259), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310433,57 +314375,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30028] = 9, + [31693] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5242), 1, - anon_sym_DOT, - STATE(3043), 1, - aux_sym_long_identifier_repeat1, - STATE(3040), 3, + STATE(3129), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2494), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2492), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(2876), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [30074] = 7, + ACTIONS(2878), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [31735] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3041), 3, + STATE(3130), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2798), 9, + ACTIONS(2880), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310493,7 +314433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2800), 11, + ACTIONS(2882), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310505,93 +314445,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30116] = 9, + [31777] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5400), 1, - anon_sym_DOT, - STATE(3049), 1, - aux_sym_long_identifier_repeat1, - STATE(3042), 3, + STATE(3131), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2473), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(2884), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [30162] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5414), 1, - anon_sym_DOT, - STATE(3043), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, + ACTIONS(2886), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2483), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [30206] = 7, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [31819] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3044), 3, + STATE(3132), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2878), 9, + ACTIONS(2888), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310601,7 +314503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2880), 11, + ACTIONS(2890), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310613,39 +314515,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30248] = 15, + [31861] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5352), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(2956), 1, - sym_type, - STATE(3163), 1, + STATE(3580), 1, sym_type_argument, - STATE(3298), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3407), 1, - sym_union_type_field, - ACTIONS(4494), 2, + STATE(3709), 1, + sym_type, + STATE(4593), 1, + sym_type_attribute, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3045), 3, + STATE(3133), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -310656,20 +314558,20 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [30306] = 7, + [31919] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3046), 3, + STATE(3134), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2882), 9, + ACTIONS(2892), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310679,7 +314581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2884), 11, + ACTIONS(2894), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310691,95 +314593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30348] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3047), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2597), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2599), 11, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [30390] = 8, + [31961] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5417), 1, - anon_sym_DOT, - STATE(3048), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2483), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [30434] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5400), 1, + ACTIONS(5574), 1, anon_sym_DOT, - STATE(3048), 1, + STATE(3080), 1, aux_sym_long_identifier_repeat1, - STATE(3049), 3, + STATE(3135), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2494), 8, + ACTIONS(2523), 8, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -310788,7 +314619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2492), 10, + ACTIONS(2517), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -310799,66 +314630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [30480] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2407), 1, - sym__type_defn_body, - STATE(2910), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3050), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2415), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [30544] = 7, + [32007] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3051), 3, + STATE(3136), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5420), 9, + ACTIONS(2934), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310868,7 +314653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5422), 11, + ACTIONS(2936), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310880,66 +314665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30586] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2146), 1, - sym__type_defn_body, - STATE(2911), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3052), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2322), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [30650] = 7, + [32049] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3053), 3, + STATE(3137), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2890), 9, + ACTIONS(2864), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -310949,7 +314688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2892), 11, + ACTIONS(2866), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -310961,91 +314700,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30692] = 18, + [32091] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, + ACTIONS(3778), 1, anon_sym_LBRACK_LT, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5389), 1, - sym_identifier, - STATE(2151), 1, - sym__type_defn_body, - STATE(2910), 1, - sym_type_name, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(3912), 1, - sym_attributes, - STATE(4003), 1, - sym_access_modifier, - STATE(5326), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3054), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2415), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [30756] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5389), 1, + ACTIONS(5561), 1, sym_identifier, - STATE(2353), 1, + STATE(2254), 1, sym__type_defn_body, - STATE(2911), 1, + STATE(2987), 1, sym_type_name, - STATE(2921), 1, + STATE(2994), 1, sym_attribute_set, - STATE(3697), 1, + STATE(3887), 1, aux_sym_attributes_repeat1, - STATE(3912), 1, + STATE(4011), 1, sym_attributes, - STATE(4003), 1, + STATE(4060), 1, sym_access_modifier, - STATE(5326), 1, + STATE(5418), 1, sym_type_argument, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3055), 3, + STATE(3138), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2322), 7, + STATE(2502), 7, sym_type_extension, sym_delegate_type_defn, sym_type_abbrev_defn, @@ -311053,106 +314746,55 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_type_defn, sym_union_type_defn, sym_anon_type_defn, - [30820] = 15, + [32155] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3688), 1, - sym_type, - STATE(4617), 1, - sym_type_attribute, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3056), 3, + STATE(3139), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [30878] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, - sym_identifier, - ACTIONS(5402), 1, + ACTIONS(2908), 9, + anon_sym_null, anon_sym__, - ACTIONS(5404), 1, anon_sym_LPAREN, - ACTIONS(5406), 1, - anon_sym_POUND, - STATE(352), 1, - sym_type, - STATE(2479), 1, - sym_type_argument, - STATE(2512), 1, - sym_long_identifier, - STATE(4197), 1, - sym_object_construction, - ACTIONS(5408), 2, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2910), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3057), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - STATE(2492), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [30936] = 7, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [32197] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3058), 3, + STATE(3140), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5039), 9, + ACTIONS(2231), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -311162,7 +314804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5041), 11, + ACTIONS(2229), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -311174,20 +314816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [30978] = 7, + [32239] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3059), 3, + STATE(3141), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5035), 9, + ACTIONS(5592), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -311197,7 +314839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5037), 11, + ACTIONS(5594), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -311209,78 +314851,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [31020] = 14, + [32281] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5561), 1, sym_identifier, - STATE(3402), 1, - sym_type, - STATE(3486), 1, + STATE(2207), 1, + sym__type_defn_body, + STATE(2988), 1, + sym_type_name, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4011), 1, + sym_attributes, + STATE(4060), 1, + sym_access_modifier, + STATE(5418), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3060), 3, + STATE(3142), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [31075] = 14, + STATE(2366), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [32345] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5424), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5426), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5428), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(1133), 1, + STATE(1781), 1, sym_type, - STATE(1253), 1, + STATE(2081), 1, sym_type_argument, - STATE(1255), 1, + STATE(2090), 1, sym_long_identifier, - ACTIONS(5430), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3061), 3, + STATE(3143), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1250), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311291,37 +314938,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31130] = 14, + [32400] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1366), 1, - sym_type, - STATE(1924), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2018), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4881), 2, + STATE(3872), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3062), 3, + STATE(3144), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311332,37 +314979,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31185] = 14, + [32455] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1367), 1, - sym_type, - STATE(1924), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2018), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4881), 2, + STATE(3843), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3063), 3, + STATE(3145), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311373,37 +315020,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31240] = 14, + [32510] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5600), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(365), 1, + sym_type, + STATE(2577), 1, sym_type_argument, - STATE(3535), 1, + STATE(2585), 1, sym_long_identifier, - STATE(3745), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3064), 3, + STATE(3146), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311414,37 +315061,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31295] = 14, + [32565] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5606), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5610), 1, anon_sym_POUND, - STATE(1371), 1, + STATE(3409), 1, sym_type, - STATE(1924), 1, + STATE(3484), 1, sym_type_argument, - STATE(2018), 1, + STATE(3525), 1, sym_long_identifier, - ACTIONS(4881), 2, + ACTIONS(5612), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3065), 3, + STATE(3147), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311455,37 +315102,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31350] = 14, + [32620] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(1855), 1, + STATE(1778), 1, sym_type, - STATE(1924), 1, + STATE(2081), 1, sym_type_argument, - STATE(2018), 1, + STATE(2090), 1, sym_long_identifier, - ACTIONS(4881), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3066), 3, + STATE(3148), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311496,37 +315143,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31405] = 14, + [32675] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5614), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5616), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5618), 1, anon_sym_POUND, - STATE(2578), 1, + STATE(915), 1, sym_type, - STATE(2615), 1, - sym_type_argument, - STATE(2658), 1, + STATE(1172), 1, sym_long_identifier, - ACTIONS(5438), 2, + STATE(1193), 1, + sym_type_argument, + ACTIONS(5620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3067), 3, + STATE(3149), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(1192), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311537,37 +315184,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31460] = 14, + [32730] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5606), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5610), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(3163), 1, - sym_type_argument, - STATE(3271), 1, + STATE(3416), 1, sym_type, - STATE(3298), 1, + STATE(3484), 1, + sym_type_argument, + STATE(3525), 1, sym_long_identifier, - ACTIONS(4494), 2, + ACTIONS(5612), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3068), 3, + STATE(3150), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311578,78 +315225,74 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31515] = 14, + [32785] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3685), 1, + anon_sym_COLON, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3762), 1, - sym_type, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3069), 3, + ACTIONS(5412), 1, + anon_sym_DOT, + STATE(3088), 1, + aux_sym_long_identifier_repeat1, + STATE(3151), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [31570] = 14, + ACTIONS(2523), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2517), 9, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [32832] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5440), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5442), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5444), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(746), 1, - sym_type, - STATE(807), 1, - sym_long_identifier, - STATE(812), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - ACTIONS(5446), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(3849), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3070), 3, + STATE(3152), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(803), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311660,37 +315303,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31625] = 14, + [32887] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3798), 1, + STATE(3583), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3071), 3, + STATE(3153), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311701,37 +315344,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31680] = 14, + [32942] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2938), 1, + ACTIONS(3013), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5448), 1, + ACTIONS(5622), 1, anon_sym__, - ACTIONS(5450), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5452), 1, + ACTIONS(5626), 1, anon_sym_POUND, - STATE(911), 1, + STATE(967), 1, sym_type, - STATE(1155), 1, + STATE(1199), 1, sym_long_identifier, - STATE(1175), 1, + STATE(1213), 1, sym_type_argument, - ACTIONS(5454), 2, + ACTIONS(5628), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3072), 3, + STATE(3154), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1174), 10, + STATE(1217), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311742,37 +315385,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31735] = 14, + [32997] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5342), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3142), 1, + STATE(3580), 1, sym_type_argument, - STATE(3289), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3591), 1, + STATE(3856), 1, sym_type, - ACTIONS(4950), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3073), 3, + STATE(3155), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311783,37 +315426,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31790] = 14, + [33052] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3163), 1, + STATE(3580), 1, sym_type_argument, - STATE(3272), 1, - sym_type, - STATE(3298), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3864), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3074), 3, + STATE(3156), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311824,37 +315467,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31845] = 14, + [33107] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + STATE(3157), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2646), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2644), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [33148] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3753), 1, + STATE(3875), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3075), 3, + STATE(3158), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311865,37 +315542,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31900] = 14, + [33203] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(2982), 1, - sym_type, - STATE(3163), 1, + STATE(3580), 1, sym_type_argument, - STATE(3298), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3847), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3076), 3, + STATE(3159), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311906,37 +315583,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [31955] = 14, + [33258] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2303), 1, + ACTIONS(3013), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5456), 1, + ACTIONS(5622), 1, anon_sym__, - ACTIONS(5458), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5460), 1, + ACTIONS(5626), 1, anon_sym_POUND, - STATE(788), 1, - sym_type_argument, - STATE(792), 1, - sym_long_identifier, - STATE(1158), 1, + STATE(962), 1, sym_type, - ACTIONS(5462), 2, + STATE(1199), 1, + sym_long_identifier, + STATE(1213), 1, + sym_type_argument, + ACTIONS(5628), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3077), 3, + STATE(3160), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(787), 10, + STATE(1217), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311947,37 +315624,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32010] = 14, + [33313] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(365), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2525), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3920), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3078), 3, + STATE(3161), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -311988,37 +315665,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32065] = 14, + [33368] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(2975), 1, - sym_type, - STATE(3163), 1, + STATE(3189), 1, sym_type_argument, - STATE(3298), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3738), 1, + sym_type, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3079), 3, + STATE(3162), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312029,37 +315706,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32120] = 14, + [33423] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(2974), 1, - sym_type, - STATE(3163), 1, + STATE(3580), 1, sym_type_argument, - STATE(3298), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3892), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3080), 3, + STATE(3163), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312070,37 +315747,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32175] = 14, + [33478] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3013), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5622), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5626), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(2973), 1, + STATE(963), 1, sym_type, - STATE(3163), 1, - sym_type_argument, - STATE(3298), 1, + STATE(1199), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(1213), 1, + sym_type_argument, + ACTIONS(5628), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3081), 3, + STATE(3164), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(1217), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312111,37 +315788,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32230] = 14, + [33533] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5600), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(374), 1, + sym_type, + STATE(2577), 1, sym_type_argument, - STATE(3535), 1, + STATE(2585), 1, sym_long_identifier, - STATE(3752), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3082), 3, + STATE(3165), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312152,37 +315829,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32285] = 14, + [33588] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5634), 1, anon_sym_POUND, - STATE(364), 1, + STATE(2641), 1, sym_type, - STATE(2520), 1, + STATE(2680), 1, sym_type_argument, - STATE(2525), 1, + STATE(2719), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3083), 3, + STATE(3166), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312193,37 +315870,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32340] = 14, + [33643] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3163), 1, - sym_type_argument, - STATE(3276), 1, + STATE(3045), 1, sym_type, - STATE(3298), 1, + STATE(3351), 1, + sym_type_argument, + STATE(3358), 1, sym_long_identifier, - ACTIONS(4494), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3084), 3, + STATE(3167), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312234,37 +315911,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32395] = 14, + [33698] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2938), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5448), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5450), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5452), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(955), 1, + STATE(2081), 1, + sym_type_argument, + STATE(2083), 1, sym_type, - STATE(1155), 1, + STATE(2090), 1, sym_long_identifier, - STATE(1175), 1, - sym_type_argument, - ACTIONS(5454), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3085), 3, + STATE(3168), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1174), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312275,79 +315952,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32450] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(3086), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3608), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - ACTIONS(3610), 7, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [32507] = 14, + [33753] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(5402), 1, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(5404), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5406), 1, + ACTIONS(5642), 1, anon_sym_POUND, - STATE(2448), 1, + STATE(2636), 1, sym_type, - STATE(2479), 1, + STATE(2694), 1, sym_type_argument, - STATE(2512), 1, + STATE(2722), 1, sym_long_identifier, - ACTIONS(5408), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3087), 3, + STATE(3169), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2492), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312358,37 +315993,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32562] = 14, + [33808] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(5402), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5404), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5406), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(2419), 1, + STATE(2064), 1, sym_type, - STATE(2479), 1, + STATE(2081), 1, sym_type_argument, - STATE(2512), 1, + STATE(2090), 1, sym_long_identifier, - ACTIONS(5408), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3088), 3, + STATE(3170), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2492), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312399,37 +316034,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32617] = 14, + [33863] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, + ACTIONS(3013), 1, sym_identifier, - ACTIONS(5402), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5622), 1, anon_sym__, - ACTIONS(5404), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5406), 1, + ACTIONS(5626), 1, anon_sym_POUND, - STATE(2422), 1, + STATE(957), 1, sym_type, - STATE(2479), 1, - sym_type_argument, - STATE(2512), 1, + STATE(1199), 1, sym_long_identifier, - ACTIONS(5408), 2, + STATE(1213), 1, + sym_type_argument, + ACTIONS(5628), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3089), 3, + STATE(3171), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2492), 10, + STATE(1217), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312440,37 +316075,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32672] = 14, + [33918] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4370), 1, - sym_identifier, - ACTIONS(5402), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5404), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5406), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(2404), 1, - sym_type, - STATE(2479), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2512), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5408), 2, + STATE(3818), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3090), 3, + STATE(3172), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2492), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312481,71 +316116,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32727] = 7, + [33973] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3091), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2603), 9, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2601), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(3189), 1, sym_identifier, - [32768] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5646), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5648), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5650), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(3163), 1, - sym_type_argument, - STATE(3277), 1, + STATE(1061), 1, sym_type, - STATE(3298), 1, + STATE(1252), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(1254), 1, + sym_type_argument, + ACTIONS(5652), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3092), 3, + STATE(3173), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(1255), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312556,79 +316157,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32823] = 15, + [34028] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(3093), 3, + ACTIONS(5396), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3174), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3641), 4, - sym__newline, - sym__dedent, + ACTIONS(5398), 17, + anon_sym_module, anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - ACTIONS(3643), 7, + anon_sym__, anon_sym_new, + anon_sym_SQUOTE, + anon_sym_CARET, anon_sym_static, anon_sym_member, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [32880] = 14, + [34069] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5163), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(2081), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3748), 1, + STATE(2089), 1, sym_type, - ACTIONS(5143), 2, + STATE(2090), 1, + sym_long_identifier, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3094), 3, + STATE(3175), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312639,37 +316232,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32935] = 14, + [34124] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3123), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5472), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5474), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(1047), 1, + STATE(2076), 1, sym_type, - STATE(1218), 1, - sym_long_identifier, - STATE(1219), 1, + STATE(2081), 1, sym_type_argument, - ACTIONS(5478), 2, + STATE(2090), 1, + sym_long_identifier, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3095), 3, + STATE(3176), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1220), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312680,37 +316273,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [32990] = 14, + [34179] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5654), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5656), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5658), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3715), 1, + STATE(1161), 1, sym_type, - ACTIONS(5143), 2, + STATE(1276), 1, + sym_long_identifier, + STATE(1281), 1, + sym_type_argument, + ACTIONS(5660), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3096), 3, + STATE(3177), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1297), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312721,37 +316314,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33045] = 14, + [34234] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3189), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5646), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5648), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5650), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(2966), 1, + STATE(1082), 1, sym_type, - STATE(3163), 1, - sym_type_argument, - STATE(3298), 1, + STATE(1252), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(1254), 1, + sym_type_argument, + ACTIONS(5652), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3097), 3, + STATE(3178), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(1255), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312762,37 +316355,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33100] = 14, + [34289] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2341), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5480), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5482), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5484), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(733), 1, - sym_type, - STATE(790), 1, + STATE(2081), 1, sym_type_argument, - STATE(796), 1, + STATE(2086), 1, + sym_type, + STATE(2090), 1, sym_long_identifier, - ACTIONS(5486), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3098), 3, + STATE(3179), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(781), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312803,37 +316396,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33155] = 14, + [34344] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2341), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5480), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(5482), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5484), 1, + ACTIONS(5642), 1, anon_sym_POUND, - STATE(741), 1, + STATE(2640), 1, sym_type, - STATE(790), 1, + STATE(2694), 1, sym_type_argument, - STATE(796), 1, + STATE(2722), 1, sym_long_identifier, - ACTIONS(5486), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3099), 3, + STATE(3180), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(781), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312844,37 +316437,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33210] = 14, + [34399] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2341), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5484), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(731), 1, - sym_type, - STATE(790), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(796), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5486), 2, + STATE(3901), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3100), 3, + STATE(3181), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(781), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312885,71 +316478,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33265] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3101), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2603), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2601), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [33306] = 14, + [34454] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3163), 1, + STATE(3580), 1, sym_type_argument, - STATE(3278), 1, - sym_type, - STATE(3298), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3816), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3102), 3, + STATE(3182), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -312960,37 +316519,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33361] = 14, + [34509] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(372), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3035), 1, sym_type, - STATE(2520), 1, + STATE(3351), 1, sym_type_argument, - STATE(2525), 1, + STATE(3358), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3103), 3, + STATE(3183), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313001,37 +316560,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33416] = 14, + [34564] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(360), 1, + STATE(375), 1, sym_type, - STATE(2520), 1, + STATE(2577), 1, sym_type_argument, - STATE(2525), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3104), 3, + STATE(3184), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313042,79 +316601,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33471] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(3105), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3571), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - ACTIONS(3573), 7, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [33528] = 14, + [34619] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3056), 1, + sym_type, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3871), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3106), 3, + STATE(3185), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313125,37 +316642,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33583] = 14, + [34674] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3057), 1, + sym_type, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3780), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3107), 3, + STATE(3186), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313166,37 +316683,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33638] = 14, + [34729] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5642), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3142), 1, + STATE(2649), 1, + sym_type, + STATE(2694), 1, sym_type_argument, - STATE(3289), 1, + STATE(2722), 1, sym_long_identifier, - STATE(3593), 1, - sym_type, - ACTIONS(4950), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3108), 3, + STATE(3187), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313207,37 +316724,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33693] = 14, + [34784] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2788), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5488), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(5490), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5642), 1, anon_sym_POUND, - STATE(914), 1, + STATE(2644), 1, sym_type, - STATE(1182), 1, + STATE(2694), 1, sym_type_argument, - STATE(1194), 1, + STATE(2722), 1, sym_long_identifier, - ACTIONS(5494), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3109), 3, + STATE(3188), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1173), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313248,78 +316765,72 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33748] = 14, + [34839] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, - anon_sym__, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_POUND, - STATE(2005), 1, - sym_type_argument, - STATE(2030), 1, - sym_type, - STATE(2034), 1, - sym_long_identifier, - ACTIONS(4895), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3110), 3, + ACTIONS(5662), 1, + anon_sym_COLON_GT, + STATE(3189), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [33803] = 14, + ACTIONS(2660), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2658), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [34882] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5642), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(3163), 1, + STATE(2642), 1, + sym_type, + STATE(2694), 1, sym_type_argument, - STATE(3298), 1, + STATE(2722), 1, sym_long_identifier, - STATE(3797), 1, - sym_type, - ACTIONS(4494), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3111), 3, + STATE(3190), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313330,37 +316841,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33858] = 14, + [34937] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5600), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(363), 1, + sym_type, + STATE(2577), 1, sym_type_argument, - STATE(3535), 1, + STATE(2585), 1, sym_long_identifier, - STATE(3740), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3112), 3, + STATE(3191), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313371,37 +316882,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33913] = 14, + [34992] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5330), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(2965), 1, - sym_type, - STATE(3163), 1, + STATE(3189), 1, sym_type_argument, - STATE(3298), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4494), 2, + STATE(3718), 1, + sym_type, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3113), 3, + STATE(3192), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313412,71 +316923,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [33968] = 7, + [35047] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5230), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(3114), 3, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3660), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(3656), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(3193), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5232), 17, - anon_sym_module, - anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym__, + ACTIONS(3658), 8, + anon_sym_with, anon_sym_new, - anon_sym_SQUOTE, - anon_sym_CARET, anon_sym_static, anon_sym_member, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [34009] = 14, + [35102] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3802), 1, + STATE(3838), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3115), 3, + STATE(3194), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313487,37 +317005,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34064] = 14, + [35157] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3189), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5646), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5648), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5650), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3093), 1, + STATE(1081), 1, sym_type, - STATE(3142), 1, - sym_type_argument, - STATE(3289), 1, + STATE(1252), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(1254), 1, + sym_type_argument, + ACTIONS(5652), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3116), 3, + STATE(3195), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(1255), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313528,37 +317046,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34119] = 14, + [35212] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(374), 1, + STATE(370), 1, sym_type, - STATE(2520), 1, + STATE(2577), 1, sym_type_argument, - STATE(2525), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3117), 3, + STATE(3196), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313569,37 +317087,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34174] = 14, + [35267] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3607), 1, + STATE(3834), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3118), 3, + STATE(3197), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313610,37 +317128,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34229] = 14, + [35322] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3700), 1, + STATE(3785), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3119), 3, + STATE(3198), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313651,105 +317169,119 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34284] = 7, + [35377] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5248), 2, - anon_sym_let, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5606), 1, + anon_sym__, + ACTIONS(5608), 1, anon_sym_LPAREN, - STATE(3120), 3, + ACTIONS(5610), 1, + anon_sym_POUND, + STATE(3408), 1, + sym_type, + STATE(3484), 1, + sym_type_argument, + STATE(3525), 1, + sym_long_identifier, + ACTIONS(5612), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3199), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5250), 17, - anon_sym_module, - anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym__, - anon_sym_new, - anon_sym_SQUOTE, - anon_sym_CARET, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [34325] = 7, + STATE(3514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35432] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3121), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2485), 9, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3660), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(3676), 3, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2483), 10, + STATE(3200), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3678), 8, anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - sym_identifier, - [34366] = 14, + [35487] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(2579), 1, - sym_type, - STATE(2615), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2658), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5438), 2, + STATE(3794), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3122), 3, + STATE(3201), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313760,71 +317292,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34421] = 7, + [35542] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3189), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3123), 3, + ACTIONS(5646), 1, + anon_sym__, + ACTIONS(5648), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_POUND, + STATE(1076), 1, + sym_type, + STATE(1252), 1, + sym_long_identifier, + STATE(1254), 1, + sym_type_argument, + ACTIONS(5652), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3202), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2611), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2609), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [34462] = 14, + STATE(1255), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35597] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(4968), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(2961), 1, + STATE(2474), 1, sym_type, - STATE(3142), 1, + STATE(2534), 1, sym_type_argument, - STATE(3289), 1, + STATE(2568), 1, sym_long_identifier, - ACTIONS(4950), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3124), 3, + STATE(3203), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313835,37 +317374,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34517] = 14, + [35652] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(2317), 1, sym_identifier, - ACTIONS(5498), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5664), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5666), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5668), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(740), 1, sym_type, - STATE(3399), 1, + STATE(787), 1, sym_type_argument, - STATE(3471), 1, + STATE(789), 1, sym_long_identifier, - ACTIONS(5504), 2, + ACTIONS(5670), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3125), 3, + STATE(3204), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313876,37 +317415,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34572] = 14, + [35707] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5342), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(2957), 1, - sym_type, - STATE(3142), 1, + STATE(3580), 1, sym_type_argument, - STATE(3289), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(3828), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3126), 3, + STATE(3205), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313917,37 +317456,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34627] = 14, + [35762] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3763), 1, + STATE(3825), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3127), 3, + STATE(3206), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313958,37 +317497,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34682] = 14, + [35817] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2546), 1, sym_type, - STATE(2520), 1, + STATE(2577), 1, sym_type_argument, - STATE(2525), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3128), 3, + STATE(3207), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -313999,37 +317538,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34737] = 14, + [35872] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2938), 1, + ACTIONS(2317), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5448), 1, + ACTIONS(5664), 1, anon_sym__, - ACTIONS(5450), 1, + ACTIONS(5666), 1, anon_sym_LPAREN, - ACTIONS(5452), 1, + ACTIONS(5668), 1, anon_sym_POUND, - STATE(931), 1, + STATE(738), 1, sym_type, - STATE(1155), 1, - sym_long_identifier, - STATE(1175), 1, + STATE(787), 1, sym_type_argument, - ACTIONS(5454), 2, + STATE(789), 1, + sym_long_identifier, + ACTIONS(5670), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3129), 3, + STATE(3208), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1174), 10, + STATE(785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314040,37 +317579,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34792] = 14, + [35927] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + STATE(3209), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2605), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2603), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [35968] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(2317), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5664), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5666), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5668), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(2958), 1, + STATE(729), 1, sym_type, - STATE(3142), 1, + STATE(787), 1, sym_type_argument, - STATE(3289), 1, + STATE(789), 1, sym_long_identifier, - ACTIONS(4950), 2, + ACTIONS(5670), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3130), 3, + STATE(3210), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314081,37 +317654,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34847] = 14, + [36023] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(1791), 1, - sym_type, - STATE(2005), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3189), 1, sym_type_argument, - STATE(2034), 1, + STATE(3229), 1, + sym_type, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3131), 3, + STATE(3211), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314122,72 +317695,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [34902] = 8, + [36078] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5506), 1, - anon_sym_STAR, - STATE(3132), 4, + ACTIONS(5672), 1, + anon_sym__, + ACTIONS(5674), 1, + anon_sym_LPAREN, + ACTIONS(5676), 1, + anon_sym_POUND, + STATE(1154), 1, + sym_type, + STATE(1273), 1, + sym_type_argument, + STATE(1277), 1, + sym_long_identifier, + ACTIONS(5678), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3212), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 7, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2343), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [34945] = 14, + STATE(1270), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [36133] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(369), 1, sym_type, - STATE(2005), 1, + STATE(2577), 1, sym_type_argument, - STATE(2034), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3133), 3, + STATE(3213), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314198,37 +317777,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35000] = 14, + [36188] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5163), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1741), 1, + sym_type, + STATE(2081), 1, sym_type_argument, - STATE(3535), 1, + STATE(2090), 1, sym_long_identifier, - STATE(3773), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3134), 3, + STATE(3214), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314239,37 +317818,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35055] = 14, + [36243] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(381), 1, sym_type, - STATE(2005), 1, + STATE(2577), 1, sym_type_argument, - STATE(2034), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3135), 3, + STATE(3215), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314280,37 +317859,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35110] = 14, + [36298] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(3486), 1, + STATE(3064), 1, + sym_type, + STATE(3189), 1, sym_type_argument, - STATE(3535), 1, + STATE(3356), 1, sym_long_identifier, - STATE(3801), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3136), 3, + STATE(3216), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314321,24 +317900,24 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35165] = 9, + [36353] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5346), 1, + ACTIONS(5507), 1, anon_sym_STAR, - STATE(3132), 1, + STATE(3347), 1, aux_sym__compound_type_repeat1, - STATE(3137), 3, + STATE(3217), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2481), 7, + ACTIONS(2589), 7, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -314346,7 +317925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2479), 10, + ACTIONS(2587), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -314357,37 +317936,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [35210] = 14, + [36398] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(1710), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3036), 1, sym_type, - STATE(2005), 1, + STATE(3189), 1, sym_type_argument, - STATE(2034), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3138), 3, + STATE(3218), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314398,37 +317977,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35265] = 14, + [36453] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(1901), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3054), 1, sym_type, - STATE(1924), 1, + STATE(3189), 1, sym_type_argument, - STATE(2018), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4881), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3139), 3, + STATE(3219), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314439,37 +318018,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35320] = 14, + [36508] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(2005), 1, - sym_type_argument, - STATE(2015), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3061), 1, sym_type, - STATE(2034), 1, + STATE(3189), 1, + sym_type_argument, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3140), 3, + STATE(3220), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314480,37 +318059,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35375] = 14, + [36563] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5614), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(5616), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(5618), 1, anon_sym_POUND, - STATE(2443), 1, + STATE(908), 1, sym_type, - STATE(2485), 1, - sym_type_argument, - STATE(2508), 1, + STATE(1172), 1, sym_long_identifier, - ACTIONS(4820), 2, + STATE(1193), 1, + sym_type_argument, + ACTIONS(5620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3141), 3, + STATE(3221), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2506), 10, + STATE(1192), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314521,72 +318100,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35430] = 8, + [36618] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5509), 1, - anon_sym_COLON_GT, - STATE(3142), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2607), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2605), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(2952), 1, sym_identifier, - [35473] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5614), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5616), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5618), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3760), 1, + STATE(906), 1, sym_type, - ACTIONS(5143), 2, + STATE(1172), 1, + sym_long_identifier, + STATE(1193), 1, + sym_type_argument, + ACTIONS(5620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3143), 3, + STATE(3222), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1192), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314597,37 +318141,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35528] = 14, + [36673] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5614), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5616), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5618), 1, anon_sym_POUND, - STATE(2005), 1, - sym_type_argument, - STATE(2008), 1, + STATE(928), 1, sym_type, - STATE(2034), 1, + STATE(1172), 1, sym_long_identifier, - ACTIONS(4895), 2, + STATE(1193), 1, + sym_type_argument, + ACTIONS(5620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3144), 3, + STATE(3223), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(1192), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314638,37 +318182,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35583] = 14, + [36728] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5600), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(2977), 1, + STATE(359), 1, sym_type, - STATE(3163), 1, + STATE(2577), 1, sym_type_argument, - STATE(3298), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4494), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3145), 3, + STATE(3224), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314679,71 +318223,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35638] = 7, + [36783] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3146), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(5317), 1, + anon_sym_LPAREN, + ACTIONS(5319), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, + sym_type_argument, + STATE(3662), 1, + sym_long_identifier, + STATE(3844), 1, + sym_type, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3225), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2485), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2483), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [35679] = 14, + STATE(3669), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [36838] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3705), 1, + STATE(3798), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3147), 3, + STATE(3226), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314754,37 +318305,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35734] = 14, + [36893] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5342), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(2960), 1, - sym_type, - STATE(3142), 1, + STATE(3580), 1, sym_type_argument, - STATE(3289), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(3895), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3148), 3, + STATE(3227), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314795,37 +318346,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35789] = 14, + [36948] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2303), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5456), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5458), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5460), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(734), 1, - sym_type, - STATE(788), 1, + STATE(1893), 1, sym_type_argument, - STATE(792), 1, + STATE(1928), 1, + sym_type, + STATE(2080), 1, sym_long_identifier, - ACTIONS(5462), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3149), 3, + STATE(3228), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(787), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314836,78 +318387,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35844] = 14, + [37003] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2303), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5456), 1, - anon_sym__, - ACTIONS(5458), 1, - anon_sym_LPAREN, - ACTIONS(5460), 1, - anon_sym_POUND, - STATE(729), 1, - sym_type, - STATE(788), 1, - sym_type_argument, - STATE(792), 1, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, sym_long_identifier, - ACTIONS(5462), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3150), 3, + STATE(3380), 1, + sym_type_arguments, + STATE(3229), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(787), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [35899] = 14, + ACTIONS(3736), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3738), 7, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [37060] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2303), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5456), 1, + ACTIONS(4867), 1, + sym_identifier, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(5458), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5460), 1, + ACTIONS(5642), 1, anon_sym_POUND, - STATE(736), 1, - sym_type, - STATE(788), 1, + STATE(2694), 1, sym_type_argument, - STATE(792), 1, + STATE(2722), 1, sym_long_identifier, - ACTIONS(5462), 2, + STATE(2740), 1, + sym_type, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3151), 3, + STATE(3230), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(787), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314918,37 +318470,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [35954] = 14, + [37115] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(2317), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5664), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5666), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5668), 1, anon_sym_POUND, - STATE(378), 1, + STATE(734), 1, sym_type, - STATE(2520), 1, + STATE(787), 1, sym_type_argument, - STATE(2525), 1, + STATE(789), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5670), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3152), 3, + STATE(3231), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -314959,71 +318511,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36009] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3153), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2611), 9, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2609), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [36050] = 14, + [37170] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(2424), 1, + STATE(2549), 1, sym_type, - STATE(2485), 1, + STATE(2577), 1, sym_type_argument, - STATE(2508), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4820), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3154), 3, + STATE(3232), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2506), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315034,37 +318552,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36105] = 14, + [37225] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(367), 1, - sym_type, - STATE(2520), 1, + STATE(1893), 1, sym_type_argument, - STATE(2525), 1, + STATE(1973), 1, + sym_type, + STATE(2080), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3155), 3, + STATE(3233), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315075,31 +318593,30 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36160] = 8, + [37280] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5511), 1, - anon_sym_STAR, - STATE(3156), 4, + STATE(3234), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 7, + ACTIONS(2605), 9, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2343), 10, + ACTIONS(2603), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -315110,37 +318627,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [36203] = 14, + [37321] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(2005), 1, - sym_type_argument, - STATE(2006), 1, + STATE(2540), 1, sym_type, - STATE(2034), 1, + STATE(2577), 1, + sym_type_argument, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4895), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3157), 3, + STATE(3235), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315151,73 +318668,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36258] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3156), 1, - aux_sym__compound_type_repeat1, - STATE(3158), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2481), 7, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2479), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [36303] = 14, + [37376] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(4524), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5563), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5565), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5567), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(2489), 1, sym_type, - STATE(3397), 1, + STATE(2545), 1, sym_type_argument, - STATE(3469), 1, + STATE(2556), 1, sym_long_identifier, - ACTIONS(5522), 2, + ACTIONS(5569), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3159), 3, + STATE(3236), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(2553), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315228,37 +318709,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36358] = 14, + [37431] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(4524), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5563), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5565), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5567), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(2497), 1, sym_type, - STATE(3397), 1, + STATE(2545), 1, sym_type_argument, - STATE(3469), 1, + STATE(2556), 1, sym_long_identifier, - ACTIONS(5522), 2, + ACTIONS(5569), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3160), 3, + STATE(3237), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(2553), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315269,37 +318750,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36413] = 14, + [37486] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5498), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(2539), 1, sym_type, - STATE(3399), 1, + STATE(2577), 1, sym_type_argument, - STATE(3471), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5504), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3161), 3, + STATE(3238), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315310,37 +318791,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36468] = 14, + [37541] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(4524), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5563), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5565), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5567), 1, anon_sym_POUND, - STATE(2588), 1, + STATE(2498), 1, sym_type, - STATE(2615), 1, + STATE(2545), 1, sym_type_argument, - STATE(2658), 1, + STATE(2556), 1, sym_long_identifier, - ACTIONS(5438), 2, + ACTIONS(5569), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3162), 3, + STATE(3239), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(2553), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315351,72 +318832,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36523] = 8, + [37596] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5524), 1, - anon_sym_COLON_GT, - STATE(3163), 3, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(5563), 1, + anon_sym__, + ACTIONS(5565), 1, + anon_sym_LPAREN, + ACTIONS(5567), 1, + anon_sym_POUND, + STATE(2501), 1, + sym_type, + STATE(2545), 1, + sym_type_argument, + STATE(2556), 1, + sym_long_identifier, + ACTIONS(5569), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3240), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2605), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [36566] = 14, + STATE(2553), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [37651] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(372), 1, sym_type, - STATE(3397), 1, + STATE(2577), 1, sym_type_argument, - STATE(3469), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5522), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3164), 3, + STATE(3241), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315427,37 +318914,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36621] = 14, + [37706] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5498), 1, + ACTIONS(5606), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5610), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3407), 1, sym_type, - STATE(3399), 1, + STATE(3484), 1, sym_type_argument, - STATE(3471), 1, + STATE(3525), 1, sym_long_identifier, - ACTIONS(5504), 2, + ACTIONS(5612), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3165), 3, + STATE(3242), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(3514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315468,37 +318955,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36676] = 14, + [37761] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, - sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(3320), 1, - sym_type, - STATE(3397), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(3469), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5522), 2, + STATE(3956), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3166), 3, + STATE(3243), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315509,37 +318996,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36731] = 14, + [37816] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5606), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5610), 1, anon_sym_POUND, - STATE(2580), 1, + STATE(3405), 1, sym_type, - STATE(2615), 1, + STATE(3484), 1, sym_type_argument, - STATE(2658), 1, + STATE(3525), 1, sym_long_identifier, - ACTIONS(5438), 2, + ACTIONS(5612), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3167), 3, + STATE(3244), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(3514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315550,37 +319037,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36786] = 14, + [37871] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5498), 1, + ACTIONS(5606), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5610), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3403), 1, sym_type, - STATE(3399), 1, + STATE(3484), 1, sym_type_argument, - STATE(3471), 1, + STATE(3525), 1, sym_long_identifier, - ACTIONS(5504), 2, + ACTIONS(5612), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3168), 3, + STATE(3245), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(3514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315591,37 +319078,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36841] = 14, + [37926] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5634), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2637), 1, sym_type, - STATE(2615), 1, + STATE(2680), 1, sym_type_argument, - STATE(2658), 1, + STATE(2719), 1, sym_long_identifier, - ACTIONS(5438), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3169), 3, + STATE(3246), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315632,79 +319119,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [36896] = 15, + [37981] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(3170), 3, + STATE(3247), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3612), 4, - sym__newline, + ACTIONS(2646), 9, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - ACTIONS(3614), 7, + anon_sym_PIPE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2644), 10, + anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [36953] = 14, + sym_identifier, + [38022] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2788), 1, + ACTIONS(3644), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5488), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5490), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5163), 1, anon_sym_POUND, - STATE(901), 1, - sym_type, - STATE(1182), 1, + STATE(2081), 1, sym_type_argument, - STATE(1194), 1, + STATE(2090), 1, sym_long_identifier, - ACTIONS(5494), 2, + STATE(2124), 1, + sym_type, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3171), 3, + STATE(3248), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1173), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315715,37 +319194,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37008] = 14, + [38077] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2341), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5480), 1, + ACTIONS(5680), 1, + sym_identifier, + ACTIONS(5682), 1, anon_sym__, - ACTIONS(5482), 1, + ACTIONS(5684), 1, anon_sym_LPAREN, - ACTIONS(5484), 1, + ACTIONS(5686), 1, anon_sym_POUND, - STATE(732), 1, + STATE(3610), 1, sym_type, - STATE(790), 1, + STATE(3800), 1, sym_type_argument, - STATE(796), 1, + STATE(3916), 1, sym_long_identifier, - ACTIONS(5486), 2, + ACTIONS(5688), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3172), 3, + STATE(3249), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(781), 10, + STATE(3919), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315756,37 +319235,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37063] = 14, + [38132] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(5680), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5682), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(5684), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5686), 1, anon_sym_POUND, - STATE(2586), 1, + STATE(3599), 1, sym_type, - STATE(2615), 1, + STATE(3800), 1, sym_type_argument, - STATE(2658), 1, + STATE(3916), 1, sym_long_identifier, - ACTIONS(5438), 2, + ACTIONS(5688), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3173), 3, + STATE(3250), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(3919), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315797,37 +319276,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37118] = 14, + [38187] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2788), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5488), 1, + ACTIONS(5680), 1, + sym_identifier, + ACTIONS(5682), 1, anon_sym__, - ACTIONS(5490), 1, + ACTIONS(5684), 1, anon_sym_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5686), 1, anon_sym_POUND, - STATE(867), 1, + STATE(3602), 1, sym_type, - STATE(1182), 1, + STATE(3800), 1, sym_type_argument, - STATE(1194), 1, + STATE(3916), 1, sym_long_identifier, - ACTIONS(5494), 2, + ACTIONS(5688), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3174), 3, + STATE(3251), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1173), 10, + STATE(3919), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315838,37 +319317,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37173] = 14, + [38242] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2788), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5488), 1, + ACTIONS(5680), 1, + sym_identifier, + ACTIONS(5682), 1, anon_sym__, - ACTIONS(5490), 1, + ACTIONS(5684), 1, anon_sym_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5686), 1, anon_sym_POUND, - STATE(866), 1, + STATE(3605), 1, sym_type, - STATE(1182), 1, + STATE(3800), 1, sym_type_argument, - STATE(1194), 1, + STATE(3916), 1, sym_long_identifier, - ACTIONS(5494), 2, + ACTIONS(5688), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3175), 3, + STATE(3252), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1173), 10, + STATE(3919), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315879,79 +319358,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37228] = 15, + [38297] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5342), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, + ACTIONS(5596), 1, + anon_sym__, + ACTIONS(5598), 1, + anon_sym_LPAREN, + ACTIONS(5600), 1, + anon_sym_POUND, + STATE(360), 1, + sym_type, + STATE(2577), 1, + sym_type_argument, + STATE(2585), 1, sym_long_identifier, - STATE(3176), 3, + ACTIONS(5602), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3253), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3637), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - ACTIONS(3639), 7, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [37285] = 14, + STATE(2586), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [38352] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5117), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1893), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3783), 1, + STATE(2004), 1, sym_type, - ACTIONS(5143), 2, + STATE(2080), 1, + sym_long_identifier, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3177), 3, + STATE(3254), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -315962,37 +319440,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37340] = 14, + [38407] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(5498), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5690), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5694), 1, anon_sym_POUND, - STATE(3326), 1, + STATE(746), 1, sym_type, - STATE(3399), 1, - sym_type_argument, - STATE(3471), 1, + STATE(808), 1, sym_long_identifier, - ACTIONS(5504), 2, + STATE(809), 1, + sym_type_argument, + ACTIONS(5696), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3178), 3, + STATE(3255), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(811), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316003,37 +319481,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37395] = 14, + [38462] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(2005), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2034), 1, + STATE(3662), 1, sym_long_identifier, - STATE(2072), 1, + STATE(3871), 1, sym_type, - ACTIONS(4895), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3179), 3, + STATE(3256), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316044,37 +319522,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37450] = 14, + [38517] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3730), 1, + STATE(3880), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3180), 3, + STATE(3257), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316085,37 +319563,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37505] = 14, + [38572] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, - sym_identifier, - ACTIONS(5498), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5500), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(3324), 1, - sym_type, - STATE(3399), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3189), 1, sym_type_argument, - STATE(3471), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(5504), 2, + STATE(3728), 1, + sym_type, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3181), 3, + STATE(3258), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3466), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316126,37 +319604,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37560] = 14, + [38627] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1924), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2018), 1, - sym_long_identifier, - STATE(2064), 1, + STATE(3631), 1, sym_type, - ACTIONS(4881), 2, + STATE(3662), 1, + sym_long_identifier, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3182), 3, + STATE(3259), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316167,37 +319645,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37615] = 14, + [38682] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5526), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(5528), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5530), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(3553), 1, - sym_type, - STATE(3774), 1, + STATE(1893), 1, sym_type_argument, - STATE(3836), 1, + STATE(1924), 1, + sym_type, + STATE(2080), 1, sym_long_identifier, - ACTIONS(5534), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3183), 3, + STATE(3260), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3832), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316208,37 +319686,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37670] = 14, + [38737] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5526), 1, - sym_identifier, - ACTIONS(5528), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5530), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(3574), 1, - sym_type, - STATE(3774), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(3836), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5534), 2, + STATE(3840), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3184), 3, + STATE(3261), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3832), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316249,37 +319727,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37725] = 14, + [38792] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5526), 1, - sym_identifier, - ACTIONS(5528), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5530), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(3575), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3487), 1, sym_type, - STATE(3774), 1, + STATE(3580), 1, sym_type_argument, - STATE(3836), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5534), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3185), 3, + STATE(3262), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3832), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316290,37 +319768,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37780] = 14, + [38847] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(377), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2525), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3854), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3186), 3, + STATE(3263), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316331,37 +319809,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37835] = 14, + [38902] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4480), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(4482), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(4490), 1, + ACTIONS(5117), 1, anon_sym_POUND, - ACTIONS(5330), 1, - sym_identifier, - STATE(3163), 1, + STATE(1429), 1, + sym_type, + STATE(1893), 1, sym_type_argument, - STATE(3298), 1, + STATE(2080), 1, sym_long_identifier, - STATE(3487), 1, - sym_type, - ACTIONS(4494), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3187), 3, + STATE(3264), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3284), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316372,37 +319850,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37890] = 14, + [38957] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5526), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(5528), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5530), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(3576), 1, + STATE(1433), 1, sym_type, - STATE(3774), 1, + STATE(1893), 1, sym_type_argument, - STATE(3836), 1, + STATE(2080), 1, sym_long_identifier, - ACTIONS(5534), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3188), 3, + STATE(3265), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3832), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316413,37 +319891,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [37945] = 14, + [39012] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3401), 1, + STATE(3489), 1, sym_type, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3189), 3, + STATE(3266), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316454,37 +319932,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38000] = 14, + [39067] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(2589), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3485), 1, sym_type, - STATE(2625), 1, + STATE(3580), 1, sym_type_argument, - STATE(2653), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5542), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3190), 3, + STATE(3267), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316495,37 +319973,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38055] = 14, + [39122] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5400), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3268), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5402), 17, + anon_sym_module, + anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym__, + anon_sym_new, + anon_sym_SQUOTE, + anon_sym_CARET, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [39163] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(4968), 1, anon_sym_POUND, - STATE(2576), 1, + STATE(2481), 1, sym_type, - STATE(2625), 1, + STATE(2534), 1, sym_type_argument, - STATE(2653), 1, + STATE(2568), 1, sym_long_identifier, - ACTIONS(5542), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3191), 3, + STATE(3269), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316536,37 +320048,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38110] = 14, + [39218] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(1924), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3351), 1, sym_type_argument, - STATE(1999), 1, - sym_type, - STATE(2018), 1, + STATE(3358), 1, sym_long_identifier, - ACTIONS(4881), 2, + STATE(3787), 1, + sym_type, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3192), 3, + STATE(3270), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316577,37 +320089,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38165] = 14, + [39273] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(368), 1, sym_type, - STATE(2520), 1, + STATE(2577), 1, sym_type_argument, - STATE(2525), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3193), 3, + STATE(3271), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316618,37 +320130,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38220] = 14, + [39328] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(366), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2525), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3861), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3194), 3, + STATE(3272), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316659,37 +320171,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38275] = 14, + [39383] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2938), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5448), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5450), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5452), 1, + ACTIONS(5117), 1, anon_sym_POUND, - STATE(912), 1, + STATE(1436), 1, sym_type, - STATE(1155), 1, - sym_long_identifier, - STATE(1175), 1, + STATE(1893), 1, sym_type_argument, - ACTIONS(5454), 2, + STATE(2080), 1, + sym_long_identifier, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3195), 3, + STATE(3273), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1174), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316700,37 +320212,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38330] = 14, + [39438] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4968), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(2483), 1, + sym_type, + STATE(2534), 1, sym_type_argument, - STATE(3535), 1, + STATE(2568), 1, sym_long_identifier, - STATE(3710), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3196), 3, + STATE(3274), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316741,37 +320253,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38385] = 14, + [39493] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1365), 1, - sym_type, - STATE(1924), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2018), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4881), 2, + STATE(3784), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3197), 3, + STATE(3275), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316782,37 +320294,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38440] = 14, + [39548] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5117), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3403), 1, + STATE(1465), 1, sym_type, - STATE(3486), 1, + STATE(1893), 1, sym_type_argument, - STATE(3535), 1, + STATE(2080), 1, sym_long_identifier, - ACTIONS(5143), 2, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3198), 3, + STATE(3276), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316823,37 +320335,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38495] = 14, + [39603] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4743), 1, + ACTIONS(4488), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(4964), 1, anon_sym__, - ACTIONS(5434), 1, + ACTIONS(4966), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(4968), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2460), 1, + sym_type, + STATE(2534), 1, sym_type_argument, - STATE(2658), 1, + STATE(2568), 1, sym_long_identifier, - STATE(2669), 1, - sym_type, - ACTIONS(5438), 2, + ACTIONS(4970), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3199), 3, + STATE(3277), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2652), 10, + STATE(2555), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316864,37 +320376,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38550] = 14, + [39658] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5422), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(3278), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5424), 17, + anon_sym_module, + anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym__, - ACTIONS(5139), 1, + anon_sym_new, + anon_sym_SQUOTE, + anon_sym_CARET, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [39699] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4606), 1, + anon_sym__, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3070), 1, + sym_type, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3714), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3200), 3, + STATE(3279), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316905,37 +320451,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38605] = 14, + [39754] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5159), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5161), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5163), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1780), 1, + sym_type, + STATE(2081), 1, sym_type_argument, - STATE(3535), 1, + STATE(2090), 1, sym_long_identifier, - STATE(3803), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5165), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3201), 3, + STATE(3280), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2096), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -316946,71 +320492,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38660] = 7, + [39809] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5254), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(3202), 3, + STATE(3281), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5256), 17, - anon_sym_module, + ACTIONS(2650), 9, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym__, + anon_sym_PIPE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2648), 10, + anon_sym_with, anon_sym_new, - anon_sym_SQUOTE, - anon_sym_CARET, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [38701] = 14, + sym_identifier, + [39850] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(1900), 1, + STATE(361), 1, sym_type, - STATE(1924), 1, + STATE(2577), 1, sym_type_argument, - STATE(2018), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4881), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3203), 3, + STATE(3282), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317021,37 +320567,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38756] = 14, + [39905] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3137), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5544), 1, + ACTIONS(5690), 1, anon_sym__, - ACTIONS(5546), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5548), 1, + ACTIONS(5694), 1, anon_sym_POUND, - STATE(1131), 1, + STATE(743), 1, sym_type, - STATE(1256), 1, + STATE(808), 1, sym_long_identifier, - STATE(1274), 1, + STATE(809), 1, sym_type_argument, - ACTIONS(5550), 2, + ACTIONS(5696), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3204), 3, + STATE(3283), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1285), 10, + STATE(811), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317062,37 +320608,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38811] = 14, + [39960] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(361), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2525), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3802), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3205), 3, + STATE(3284), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317103,37 +320649,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38866] = 14, + [40015] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5690), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5694), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(751), 1, sym_type, - STATE(2520), 1, - sym_type_argument, - STATE(2525), 1, + STATE(808), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(809), 1, + sym_type_argument, + ACTIONS(5696), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3206), 3, + STATE(3285), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(811), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317144,37 +320690,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38921] = 14, + [40070] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5544), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5546), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5548), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(1130), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3351), 1, + sym_type_argument, + STATE(3355), 1, sym_type, - STATE(1256), 1, + STATE(3358), 1, sym_long_identifier, - STATE(1274), 1, - sym_type_argument, - ACTIONS(5550), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3207), 3, + STATE(3286), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1285), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317185,37 +320731,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [38976] = 14, + [40125] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3589), 1, + STATE(3833), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3208), 3, + STATE(3287), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317226,37 +320772,71 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39031] = 14, + [40180] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3137), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3288), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2650), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2648), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, sym_identifier, - ACTIONS(3655), 1, + [40221] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5544), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5546), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5548), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(1129), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3067), 1, sym_type, - STATE(1256), 1, - sym_long_identifier, - STATE(1274), 1, + STATE(3351), 1, sym_type_argument, - ACTIONS(5550), 2, + STATE(3358), 1, + sym_long_identifier, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3209), 3, + STATE(3289), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1285), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317267,37 +320847,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39086] = 14, + [40276] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5680), 1, + sym_identifier, + ACTIONS(5682), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5684), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5686), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3400), 1, + STATE(3590), 1, sym_type, - STATE(3486), 1, + STATE(3800), 1, sym_type_argument, - STATE(3535), 1, + STATE(3916), 1, sym_long_identifier, - ACTIONS(5143), 2, + ACTIONS(5688), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3210), 3, + STATE(3290), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3919), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317308,78 +320888,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39141] = 14, + [40331] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5544), 1, - anon_sym__, - ACTIONS(5546), 1, - anon_sym_LPAREN, - ACTIONS(5548), 1, - anon_sym_POUND, - STATE(1145), 1, - sym_type, - STATE(1256), 1, - sym_long_identifier, - STATE(1274), 1, - sym_type_argument, - ACTIONS(5550), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3211), 3, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + STATE(3291), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1285), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [39196] = 14, + ACTIONS(3740), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3742), 7, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [40388] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5117), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3086), 1, - sym_type, - STATE(3142), 1, + STATE(1893), 1, sym_type_argument, - STATE(3289), 1, + STATE(2080), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(2117), 1, + sym_type, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3212), 3, + STATE(3292), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317390,37 +320971,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39251] = 14, + [40443] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(3486), 1, + STATE(3189), 1, sym_type_argument, - STATE(3535), 1, + STATE(3356), 1, sym_long_identifier, - STATE(3771), 1, + STATE(3753), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3213), 3, + STATE(3293), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317431,37 +321012,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39306] = 14, + [40498] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(4867), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5638), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5642), 1, anon_sym_POUND, - STATE(2491), 1, + STATE(2648), 1, sym_type, - STATE(2520), 1, + STATE(2694), 1, sym_type_argument, - STATE(2525), 1, + STATE(2722), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5644), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3214), 3, + STATE(3294), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(2721), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317472,37 +321053,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39361] = 14, + [40553] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5672), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5674), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5676), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1156), 1, + sym_type, + STATE(1273), 1, sym_type_argument, - STATE(3535), 1, + STATE(1277), 1, sym_long_identifier, - STATE(3729), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5678), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3215), 3, + STATE(3295), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1270), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317513,37 +321094,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39416] = 14, + [40608] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5698), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5702), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, + STATE(777), 1, sym_long_identifier, - STATE(3854), 1, + STATE(779), 1, + sym_type_argument, + STATE(1198), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5704), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3216), 3, + STATE(3296), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(783), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317554,78 +321135,72 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39471] = 14, + [40663] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(5139), 1, - anon_sym_LPAREN, - ACTIONS(5141), 1, - anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3732), 1, - sym_type, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3217), 3, + ACTIONS(5706), 1, + anon_sym_STAR, + STATE(3297), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [39526] = 14, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2319), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [40706] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3199), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5709), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5713), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1095), 1, + sym_type, + STATE(1228), 1, sym_type_argument, - STATE(3535), 1, + STATE(1236), 1, sym_long_identifier, - STATE(3751), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5715), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3218), 3, + STATE(3298), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1230), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317636,37 +321211,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39581] = 14, + [40761] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3746), 1, + STATE(3363), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3219), 3, + STATE(3299), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317677,37 +321252,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39636] = 14, + [40816] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3123), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5472), 1, + ACTIONS(5690), 1, anon_sym__, - ACTIONS(5474), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, + ACTIONS(5694), 1, anon_sym_POUND, - STATE(1049), 1, + STATE(741), 1, sym_type, - STATE(1218), 1, + STATE(808), 1, sym_long_identifier, - STATE(1219), 1, + STATE(809), 1, sym_type_argument, - ACTIONS(5478), 2, + ACTIONS(5696), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3220), 3, + STATE(3300), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1220), 10, + STATE(811), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317718,37 +321293,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39691] = 14, + [40871] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3123), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5472), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5474), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1050), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3502), 1, sym_type, - STATE(1218), 1, - sym_long_identifier, - STATE(1219), 1, + STATE(3580), 1, sym_type_argument, - ACTIONS(5478), 2, + STATE(3662), 1, + sym_long_identifier, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3221), 3, + STATE(3301), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1220), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317759,37 +321334,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39746] = 14, + [40926] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3123), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5472), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5474), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1051), 1, - sym_type, - STATE(1218), 1, - sym_long_identifier, - STATE(1219), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - ACTIONS(5478), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(3793), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3222), 3, + STATE(3302), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1220), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317800,37 +321375,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39801] = 14, + [40981] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3046), 1, + sym_type, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3721), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3223), 3, + STATE(3303), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317841,37 +321416,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39856] = 14, + [41036] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3547), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4889), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4891), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(2005), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2019), 1, - sym_type, - STATE(2034), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4895), 2, + STATE(3885), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3224), 3, + STATE(3304), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2033), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317882,37 +321457,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39911] = 14, + [41091] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3105), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5552), 1, + ACTIONS(5672), 1, anon_sym__, - ACTIONS(5554), 1, + ACTIONS(5674), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5676), 1, anon_sym_POUND, - STATE(1048), 1, + STATE(1158), 1, sym_type, - STATE(1241), 1, - sym_long_identifier, - STATE(1242), 1, + STATE(1273), 1, sym_type_argument, - ACTIONS(5558), 2, + STATE(1277), 1, + sym_long_identifier, + ACTIONS(5678), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3225), 3, + STATE(3305), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1243), 10, + STATE(1270), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -317923,78 +321498,73 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [39966] = 14, + [41146] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5544), 1, - anon_sym__, - ACTIONS(5546), 1, - anon_sym_LPAREN, - ACTIONS(5548), 1, - anon_sym_POUND, - STATE(1147), 1, - sym_type, - STATE(1256), 1, - sym_long_identifier, - STATE(1274), 1, - sym_type_argument, - ACTIONS(5550), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3226), 3, + ACTIONS(5497), 1, + anon_sym_STAR, + STATE(3297), 1, + aux_sym__compound_type_repeat1, + STATE(3306), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1285), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [40021] = 14, + ACTIONS(2589), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2587), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [41191] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5672), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5674), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5676), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1157), 1, + sym_type, + STATE(1273), 1, sym_type_argument, - STATE(3535), 1, + STATE(1277), 1, sym_long_identifier, - STATE(3770), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5678), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3227), 3, + STATE(3307), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1270), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318005,37 +321575,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40076] = 14, + [41246] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3407), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4873), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4877), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(1924), 1, - sym_type_argument, - STATE(1986), 1, + STATE(362), 1, sym_type, - STATE(2018), 1, + STATE(2577), 1, + sym_type_argument, + STATE(2585), 1, sym_long_identifier, - ACTIONS(4881), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3228), 3, + STATE(3308), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2020), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318046,76 +321616,41 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40131] = 14, + [41301] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(5338), 1, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5511), 1, anon_sym_LBRACK_RBRACK, - STATE(3158), 1, + STATE(3217), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, + STATE(3362), 1, sym_long_identifier, - STATE(3300), 1, + STATE(3380), 1, sym_type_arguments, - ACTIONS(3530), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(3526), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3229), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3528), 8, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [40186] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3545), 1, - anon_sym_COLON, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5242), 1, - anon_sym_DOT, - STATE(3040), 1, - aux_sym_long_identifier_repeat1, - STATE(3230), 3, + STATE(3309), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 7, + ACTIONS(3732), 4, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2473), 9, - anon_sym_with, + ACTIONS(3734), 7, anon_sym_new, anon_sym_static, anon_sym_member, @@ -318123,38 +321658,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - sym_identifier, - [40233] = 14, + [41358] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3105), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5552), 1, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(5554), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5723), 1, anon_sym_POUND, - STATE(1052), 1, + STATE(3401), 1, sym_type, - STATE(1241), 1, - sym_long_identifier, - STATE(1242), 1, + STATE(3497), 1, sym_type_argument, - ACTIONS(5558), 2, + STATE(3556), 1, + sym_long_identifier, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3231), 3, + STATE(3310), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1243), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318165,37 +321699,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40288] = 14, + [41413] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4814), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(2444), 1, - sym_type, - STATE(2485), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3189), 1, sym_type_argument, - STATE(2508), 1, + STATE(3291), 1, + sym_type, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4820), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3232), 3, + STATE(3311), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2506), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318206,37 +321740,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40343] = 14, + [41468] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2303), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5456), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5458), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5460), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(735), 1, - sym_type, - STATE(788), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3189), 1, sym_type_argument, - STATE(792), 1, + STATE(3309), 1, + sym_type, + STATE(3356), 1, sym_long_identifier, - ACTIONS(5462), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3233), 3, + STATE(3312), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(787), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318247,78 +321781,78 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40398] = 14, + [41523] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5672), 1, + anon_sym__, + ACTIONS(5674), 1, + anon_sym_LPAREN, + ACTIONS(5676), 1, + anon_sym_POUND, + STATE(1171), 1, + sym_type, + STATE(1273), 1, + sym_type_argument, + STATE(1277), 1, sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - ACTIONS(3530), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(3567), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3234), 3, + ACTIONS(5678), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3313), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3569), 8, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [40453] = 14, + STATE(1270), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [41578] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(4560), 1, + sym_identifier, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5600), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3142), 1, + STATE(373), 1, + sym_type, + STATE(2577), 1, sym_type_argument, - STATE(3289), 1, + STATE(2585), 1, sym_long_identifier, - STATE(3643), 1, - sym_type, - ACTIONS(4950), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3235), 3, + STATE(3314), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318329,37 +321863,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40508] = 14, + [41633] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5113), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5117), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(1893), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3812), 1, + STATE(1974), 1, sym_type, - ACTIONS(5143), 2, + STATE(2080), 1, + sym_long_identifier, + ACTIONS(5119), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3236), 3, + STATE(3315), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(2084), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318370,37 +321904,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40563] = 14, + [41688] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(3486), 1, + STATE(3189), 1, sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3782), 1, + STATE(3348), 1, sym_type, - ACTIONS(5143), 2, + STATE(3356), 1, + sym_long_identifier, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3237), 3, + STATE(3316), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318411,37 +321945,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40618] = 14, + [41743] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3813), 1, + STATE(3788), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3238), 3, + STATE(3317), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318452,37 +321986,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40673] = 14, + [41798] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5723), 1, anon_sym_POUND, - STATE(362), 1, + STATE(3413), 1, sym_type, - STATE(2520), 1, + STATE(3497), 1, sym_type_argument, - STATE(2525), 1, + STATE(3556), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3239), 3, + STATE(3318), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318493,37 +322027,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40728] = 14, + [41853] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, + ACTIONS(3199), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5424), 1, + ACTIONS(5709), 1, anon_sym__, - ACTIONS(5426), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - ACTIONS(5428), 1, + ACTIONS(5713), 1, anon_sym_POUND, - STATE(1143), 1, + STATE(1108), 1, sym_type, - STATE(1253), 1, + STATE(1228), 1, sym_type_argument, - STATE(1255), 1, + STATE(1236), 1, sym_long_identifier, - ACTIONS(5430), 2, + ACTIONS(5715), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3240), 3, + STATE(3319), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1250), 10, + STATE(1230), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318534,37 +322068,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40783] = 14, + [41908] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5440), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5442), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5444), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(747), 1, - sym_type, - STATE(807), 1, - sym_long_identifier, - STATE(812), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - ACTIONS(5446), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(3858), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3241), 3, + STATE(3320), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(803), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318575,37 +322109,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40838] = 14, + [41963] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2391), 1, + ACTIONS(2359), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5440), 1, + ACTIONS(5698), 1, anon_sym__, - ACTIONS(5442), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5444), 1, + ACTIONS(5702), 1, anon_sym_POUND, - STATE(748), 1, + STATE(737), 1, sym_type, - STATE(807), 1, + STATE(777), 1, sym_long_identifier, - STATE(812), 1, + STATE(779), 1, sym_type_argument, - ACTIONS(5446), 2, + ACTIONS(5704), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3242), 3, + STATE(3321), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(803), 10, + STATE(783), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318616,37 +322150,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40893] = 14, + [42018] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5723), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(3397), 1, + sym_type, + STATE(3497), 1, sym_type_argument, - STATE(3535), 1, + STATE(3556), 1, sym_long_identifier, - STATE(3728), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3243), 3, + STATE(3322), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318657,37 +322191,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [40948] = 14, + [42073] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3105), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5552), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5554), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(1082), 1, - sym_type, - STATE(1241), 1, - sym_long_identifier, - STATE(1242), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3351), 1, sym_type_argument, - ACTIONS(5558), 2, + STATE(3358), 1, + sym_long_identifier, + STATE(3364), 1, + sym_type, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3244), 3, + STATE(3323), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1243), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318698,37 +322232,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41003] = 14, + [42128] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2391), 1, - sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5440), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5442), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5444), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(742), 1, - sym_type, - STATE(807), 1, - sym_long_identifier, - STATE(812), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - ACTIONS(5446), 2, + STATE(3662), 1, + sym_long_identifier, + STATE(3690), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3245), 3, + STATE(3324), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(803), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318739,37 +322273,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41058] = 14, + [42183] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(4881), 1, + sym_identifier, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5634), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3142), 1, + STATE(2650), 1, + sym_type, + STATE(2680), 1, sym_type_argument, - STATE(3289), 1, + STATE(2719), 1, sym_long_identifier, - STATE(3463), 1, - sym_type, - ACTIONS(4950), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3246), 3, + STATE(3325), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318780,37 +322314,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41113] = 14, + [42238] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4396), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(4814), 1, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(4816), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(4818), 1, + ACTIONS(5634), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2645), 1, sym_type, - STATE(2485), 1, + STATE(2680), 1, sym_type_argument, - STATE(2508), 1, + STATE(2719), 1, sym_long_identifier, - ACTIONS(4820), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3247), 3, + STATE(3326), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2506), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318821,37 +322355,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41168] = 14, + [42293] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(5634), 1, anon_sym_POUND, - STATE(2583), 1, + STATE(2639), 1, sym_type, - STATE(2625), 1, + STATE(2680), 1, sym_type_argument, - STATE(2653), 1, + STATE(2719), 1, sym_long_identifier, - ACTIONS(5542), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3248), 3, + STATE(3327), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318862,37 +322396,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41223] = 14, + [42348] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5503), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + STATE(3328), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3728), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3730), 7, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [42405] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5424), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5426), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5428), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(1146), 1, - sym_type, - STATE(1253), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(1255), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5430), 2, + STATE(3792), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3249), 3, + STATE(3329), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1250), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318903,37 +322479,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41278] = 14, + [42460] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(4616), 1, anon_sym_POUND, - STATE(369), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5493), 1, + sym_identifier, + STATE(3351), 1, sym_type_argument, - STATE(2525), 1, + STATE(3358), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3366), 1, + sym_type, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3250), 3, + STATE(3330), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318944,37 +322520,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41333] = 14, + [42515] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3486), 1, + STATE(3580), 1, sym_type_argument, - STATE(3535), 1, + STATE(3662), 1, sym_long_identifier, - STATE(3543), 1, + STATE(3881), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3251), 3, + STATE(3331), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -318985,37 +322561,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41388] = 14, + [42570] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(3199), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5709), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5713), 1, anon_sym_POUND, - STATE(3325), 1, + STATE(1067), 1, sym_type, - STATE(3397), 1, + STATE(1228), 1, sym_type_argument, - STATE(3469), 1, + STATE(1236), 1, sym_long_identifier, - ACTIONS(5522), 2, + ACTIONS(5715), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3252), 3, + STATE(3332), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(1230), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319026,37 +322602,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41443] = 14, + [42625] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3105), 1, + ACTIONS(2359), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5552), 1, + ACTIONS(5698), 1, anon_sym__, - ACTIONS(5554), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5702), 1, anon_sym_POUND, - STATE(1102), 1, + STATE(731), 1, sym_type, - STATE(1241), 1, + STATE(777), 1, sym_long_identifier, - STATE(1242), 1, + STATE(779), 1, sym_type_argument, - ACTIONS(5558), 2, + ACTIONS(5704), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3253), 3, + STATE(3333), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1243), 10, + STATE(783), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319067,37 +322643,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41498] = 14, + [42680] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5097), 1, anon_sym_POUND, - ACTIONS(5342), 1, + ACTIONS(5503), 1, sym_identifier, - STATE(3142), 1, + STATE(3189), 1, sym_type_argument, - STATE(3176), 1, - sym_type, - STATE(3289), 1, + STATE(3356), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(3520), 1, + sym_type, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3254), 3, + STATE(3334), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319108,37 +322684,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41553] = 14, + [42735] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(2359), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5698), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(5702), 1, anon_sym_POUND, - STATE(2581), 1, + STATE(735), 1, sym_type, - STATE(2625), 1, - sym_type_argument, - STATE(2653), 1, + STATE(777), 1, sym_long_identifier, - ACTIONS(5542), 2, + STATE(779), 1, + sym_type_argument, + ACTIONS(5704), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3255), 3, + STATE(3335), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(783), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319149,37 +322725,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41608] = 14, + [42790] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(2359), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5698), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(5702), 1, anon_sym_POUND, - STATE(2577), 1, + STATE(736), 1, sym_type, - STATE(2625), 1, - sym_type_argument, - STATE(2653), 1, + STATE(777), 1, sym_long_identifier, - ACTIONS(5542), 2, + STATE(779), 1, + sym_type_argument, + ACTIONS(5704), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3256), 3, + STATE(3336), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(783), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319190,37 +322766,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41663] = 14, + [42845] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4729), 1, + ACTIONS(4560), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5596), 1, anon_sym__, - ACTIONS(5538), 1, + ACTIONS(5598), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, + ACTIONS(5600), 1, anon_sym_POUND, - STATE(2590), 1, + STATE(378), 1, sym_type, - STATE(2625), 1, + STATE(2577), 1, sym_type_argument, - STATE(2653), 1, + STATE(2585), 1, sym_long_identifier, - ACTIONS(5542), 2, + ACTIONS(5602), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3257), 3, + STATE(3337), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2662), 10, + STATE(2586), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319231,37 +322807,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41718] = 14, + [42900] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(4881), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5630), 1, anon_sym__, - ACTIONS(5518), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5634), 1, anon_sym_POUND, - STATE(3327), 1, + STATE(2647), 1, sym_type, - STATE(3397), 1, + STATE(2680), 1, sym_type_argument, - STATE(3469), 1, + STATE(2719), 1, sym_long_identifier, - ACTIONS(5522), 2, + ACTIONS(5636), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3258), 3, + STATE(3338), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3465), 10, + STATE(2723), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319272,37 +322848,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41773] = 14, + [42955] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5526), 1, + ACTIONS(3211), 1, sym_identifier, - ACTIONS(5528), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5654), 1, anon_sym__, - ACTIONS(5530), 1, + ACTIONS(5656), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5658), 1, anon_sym_POUND, - STATE(3493), 1, + STATE(1152), 1, sym_type, - STATE(3774), 1, - sym_type_argument, - STATE(3836), 1, + STATE(1276), 1, sym_long_identifier, - ACTIONS(5534), 2, + STATE(1281), 1, + sym_type_argument, + ACTIONS(5660), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3259), 3, + STATE(3339), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3832), 10, + STATE(1297), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319313,37 +322889,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41828] = 14, + [43010] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5723), 1, anon_sym_POUND, - STATE(368), 1, + STATE(3406), 1, sym_type, - STATE(2520), 1, + STATE(3497), 1, sym_type_argument, - STATE(2525), 1, + STATE(3556), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3260), 3, + STATE(3340), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319354,37 +322930,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41883] = 14, + [43065] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(4606), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(4616), 1, anon_sym_POUND, - ACTIONS(5262), 1, + ACTIONS(5493), 1, sym_identifier, - STATE(3486), 1, + STATE(3351), 1, sym_type_argument, - STATE(3535), 1, + STATE(3358), 1, sym_long_identifier, - STATE(3795), 1, + STATE(3373), 1, sym_type, - ACTIONS(5143), 2, + ACTIONS(4620), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3261), 3, + STATE(3341), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3354), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319395,37 +322971,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41938] = 14, + [43120] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5091), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5095), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5097), 1, anon_sym_POUND, - STATE(376), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5503), 1, + sym_identifier, + STATE(3189), 1, sym_type_argument, - STATE(2525), 1, + STATE(3328), 1, + sym_type, + STATE(3356), 1, sym_long_identifier, - ACTIONS(5470), 2, + ACTIONS(5099), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3262), 3, + STATE(3342), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3369), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319436,37 +323012,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [41993] = 14, + [43175] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4430), 1, - sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(5466), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5319), 1, anon_sym_POUND, - STATE(359), 1, - sym_type, - STATE(2520), 1, + ACTIONS(5430), 1, + sym_identifier, + STATE(3580), 1, sym_type_argument, - STATE(2525), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(5470), 2, + STATE(3742), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3263), 3, + STATE(3343), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(2527), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319477,37 +323053,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42048] = 14, + [43230] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5723), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3142), 1, - sym_type_argument, - STATE(3170), 1, + STATE(3398), 1, sym_type, - STATE(3289), 1, + STATE(3497), 1, + sym_type_argument, + STATE(3556), 1, sym_long_identifier, - ACTIONS(4950), 2, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3264), 3, + STATE(3344), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319518,37 +323094,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42103] = 14, + [43285] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3167), 1, + ACTIONS(3199), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5424), 1, + ACTIONS(5709), 1, anon_sym__, - ACTIONS(5426), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - ACTIONS(5428), 1, + ACTIONS(5713), 1, anon_sym_POUND, - STATE(1151), 1, + STATE(1058), 1, sym_type, - STATE(1253), 1, + STATE(1228), 1, sym_type_argument, - STATE(1255), 1, + STATE(1236), 1, sym_long_identifier, - ACTIONS(5430), 2, + ACTIONS(5715), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3265), 3, + STATE(3345), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(1250), 10, + STATE(1230), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319559,37 +323135,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42158] = 14, + [43340] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5719), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5723), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, + STATE(3399), 1, + sym_type, + STATE(3497), 1, sym_type_argument, - STATE(3535), 1, + STATE(3556), 1, sym_long_identifier, - STATE(3757), 1, - sym_type, - ACTIONS(5143), 2, + ACTIONS(5725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3266), 3, + STATE(3346), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(3515), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319600,37 +323176,114 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42213] = 14, + [43395] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5727), 1, + anon_sym_STAR, + STATE(3347), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 7, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2319), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [43438] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + STATE(3348), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3763), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + ACTIONS(3765), 7, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [43495] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5654), 1, anon_sym__, - ACTIONS(5139), 1, + ACTIONS(5656), 1, anon_sym_LPAREN, - ACTIONS(5141), 1, + ACTIONS(5658), 1, anon_sym_POUND, - ACTIONS(5262), 1, - sym_identifier, - STATE(3486), 1, - sym_type_argument, - STATE(3535), 1, - sym_long_identifier, - STATE(3759), 1, + STATE(1146), 1, sym_type, - ACTIONS(5143), 2, + STATE(1276), 1, + sym_long_identifier, + STATE(1281), 1, + sym_type_argument, + ACTIONS(5660), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3267), 3, + STATE(3349), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3557), 10, + STATE(1297), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319641,37 +323294,37 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42268] = 14, + [43550] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5654), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5656), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5658), 1, anon_sym_POUND, - ACTIONS(5342), 1, - sym_identifier, - STATE(3142), 1, - sym_type_argument, - STATE(3289), 1, - sym_long_identifier, - STATE(3609), 1, + STATE(1150), 1, sym_type, - ACTIONS(4950), 2, + STATE(1276), 1, + sym_long_identifier, + STATE(1281), 1, + sym_type_argument, + ACTIONS(5660), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3268), 3, + STATE(3350), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(1297), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319682,37 +323335,72 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42323] = 14, + [43605] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4944), 1, + ACTIONS(5730), 1, + anon_sym_COLON_GT, + STATE(3351), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2660), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2658), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [43648] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5315), 1, anon_sym__, - ACTIONS(4946), 1, + ACTIONS(5317), 1, anon_sym_LPAREN, - ACTIONS(4948), 1, + ACTIONS(5319), 1, anon_sym_POUND, - ACTIONS(5342), 1, + ACTIONS(5430), 1, sym_identifier, - STATE(3105), 1, - sym_type, - STATE(3142), 1, + STATE(3580), 1, sym_type_argument, - STATE(3289), 1, + STATE(3662), 1, sym_long_identifier, - ACTIONS(4950), 2, + STATE(3832), 1, + sym_type, + ACTIONS(5321), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3269), 3, + STATE(3352), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - STATE(3274), 10, + STATE(3669), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -319723,29 +323411,76 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [42378] = 7, + [43703] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3270), 3, + ACTIONS(5067), 1, + anon_sym_new, + ACTIONS(5071), 1, + anon_sym_member, + ACTIONS(5075), 1, + anon_sym_abstract, + ACTIONS(5079), 1, + anon_sym_val, + ACTIONS(5732), 1, + anon_sym_static, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3379), 1, + aux_sym__member_defns_repeat1, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(3626), 1, + sym_member_defn, + STATE(3735), 1, + sym_attributes, + STATE(4714), 1, + sym_access_modifier, + ACTIONS(3767), 2, + sym__newline, + sym__dedent, + ACTIONS(5077), 2, + anon_sym_override, + anon_sym_default, + STATE(3353), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2628), 8, - sym__newline, + [43771] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3354), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2660), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2626), 10, + ACTIONS(2658), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -319756,40 +323491,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [42418] = 15, + [43811] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - ACTIONS(3637), 3, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3732), 3, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(3271), 3, + STATE(3355), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3639), 7, + ACTIONS(3734), 7, anon_sym_new, anon_sym_static, anon_sym_member, @@ -319797,116 +323532,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [42474] = 15, + [43867] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5734), 1, anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - ACTIONS(3612), 3, + STATE(3356), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2654), 7, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(3272), 3, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + ACTIONS(2652), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [43909] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3357), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3614), 7, + ACTIONS(2687), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2685), 10, + anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [42530] = 20, + sym_identifier, + [43949] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3584), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5736), 1, + anon_sym_LT2, + STATE(3358), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2654), 7, + sym__dedent, anon_sym_LBRACK_LT, - ACTIONS(3587), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5560), 1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + ACTIONS(2652), 10, + anon_sym_with, anon_sym_new, - ACTIONS(5563), 1, anon_sym_static, - ACTIONS(5566), 1, anon_sym_member, - ACTIONS(5569), 1, + anon_sym_interface, anon_sym_abstract, - ACTIONS(5575), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3512), 1, - sym_member_defn, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3633), 1, - sym_attributes, - STATE(4463), 1, - sym_access_modifier, - ACTIONS(3580), 2, - sym__newline, - sym__dedent, - ACTIONS(5572), 2, anon_sym_override, anon_sym_default, - STATE(3273), 4, + anon_sym_val, + sym_identifier, + [43991] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3359), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__member_defns_repeat1, - [42596] = 7, + ACTIONS(2630), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2628), 10, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [44031] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3274), 3, + STATE(3360), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 8, - sym__newline, + ACTIONS(2634), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2605), 10, + ACTIONS(2632), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -319917,20 +323699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [42636] = 7, + [44071] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3275), 3, + STATE(3361), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2818), 9, + ACTIONS(3009), 9, anon_sym_null, anon_sym__, anon_sym_LPAREN, @@ -319940,7 +323722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2820), 9, + ACTIONS(3011), 9, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_LT2, @@ -319950,81 +323732,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [42676] = 15, + [44111] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - ACTIONS(3571), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3276), 3, + STATE(3362), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3573), 7, + ACTIONS(2621), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(2615), 10, + anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [42732] = 15, + sym_identifier, + [44151] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - ACTIONS(3608), 3, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3763), 3, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(3277), 3, + STATE(3363), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3610), 7, + ACTIONS(3765), 7, anon_sym_new, anon_sym_static, anon_sym_member, @@ -320032,40 +323806,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [42788] = 15, + [44207] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5330), 1, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(5336), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - ACTIONS(5340), 1, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - STATE(3158), 1, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3367), 1, sym_type_arguments, - ACTIONS(3641), 3, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3728), 3, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(3278), 3, + STATE(3364), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3643), 7, + ACTIONS(3730), 7, anon_sym_new, anon_sym_static, anon_sym_member, @@ -320073,29 +323847,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [42844] = 7, + [44263] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3279), 3, + STATE(3365), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2599), 8, - sym__newline, + ACTIONS(2638), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2597), 10, + ACTIONS(2636), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320106,109 +323880,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [42884] = 7, + [44303] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3280), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2898), 9, - anon_sym_null, - anon_sym__, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5493), 1, sym_identifier, - ACTIONS(2900), 9, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42924] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3740), 3, + sym__dedent, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4954), 1, + STATE(3366), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3742), 7, anon_sym_new, - ACTIONS(4958), 1, + anon_sym_static, anon_sym_member, - ACTIONS(4962), 1, anon_sym_abstract, - ACTIONS(4966), 1, - anon_sym_val, - ACTIONS(5578), 1, - anon_sym_static, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3273), 1, - aux_sym__member_defns_repeat1, - STATE(3512), 1, - sym_member_defn, - STATE(3536), 1, - sym_additional_constr_defn, - STATE(3633), 1, - sym_attributes, - STATE(4463), 1, - sym_access_modifier, - ACTIONS(3645), 2, - sym__newline, - sym__dedent, - ACTIONS(4964), 2, anon_sym_override, anon_sym_default, - STATE(3281), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [42992] = 7, + anon_sym_val, + [44359] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3282), 3, + STATE(3367), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2577), 8, - sym__newline, + ACTIONS(2677), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2575), 10, + ACTIONS(2675), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320219,29 +323954,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43032] = 7, + [44399] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3283), 3, + STATE(3368), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2581), 8, - sym__newline, + ACTIONS(2621), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2579), 10, + ACTIONS(2615), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320252,29 +323987,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43072] = 7, + [44439] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3284), 3, + STATE(3369), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 8, + ACTIONS(2660), 8, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2605), 10, + ACTIONS(2658), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320285,20 +324020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43112] = 7, + [44479] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3285), 3, + STATE(3370), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2585), 8, + ACTIONS(2664), 8, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -320307,7 +324042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2583), 10, + ACTIONS(2662), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320318,20 +324053,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43152] = 7, + [44519] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3699), 1, + anon_sym_LBRACK_LT, + ACTIONS(3702), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3286), 3, + ACTIONS(5738), 1, + anon_sym_new, + ACTIONS(5741), 1, + anon_sym_static, + ACTIONS(5744), 1, + anon_sym_member, + ACTIONS(5747), 1, + anon_sym_abstract, + ACTIONS(5753), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3618), 1, + sym_additional_constr_defn, + STATE(3626), 1, + sym_member_defn, + STATE(3735), 1, + sym_attributes, + STATE(4714), 1, + sym_access_modifier, + ACTIONS(3695), 2, + sym__newline, + sym__dedent, + ACTIONS(5750), 2, + anon_sym_override, + anon_sym_default, + STATE(3371), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2589), 8, + aux_sym__member_defns_repeat1, + [44585] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3372), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2630), 8, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -320340,7 +324121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2587), 10, + ACTIONS(2628), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320351,53 +324132,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43192] = 7, + [44625] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3287), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2593), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5495), 1, anon_sym_DASH_GT, + ACTIONS(5497), 1, anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2591), 10, - anon_sym_with, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + ACTIONS(3736), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(3373), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3738), 7, anon_sym_new, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - sym_identifier, - [43232] = 7, + [44681] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3288), 3, + STATE(3374), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2573), 8, + ACTIONS(2638), 8, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -320406,7 +324195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2571), 10, + ACTIONS(2636), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320417,30 +324206,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43272] = 8, + [44721] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5580), 1, - anon_sym_LT2, - STATE(3289), 3, + STATE(3375), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2622), 7, - sym__newline, + ACTIONS(2664), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2620), 10, + ACTIONS(2662), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320451,29 +324239,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43314] = 7, + [44761] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3290), 3, + STATE(3376), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2581), 8, + ACTIONS(2681), 8, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2579), 10, + ACTIONS(2679), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320484,20 +324272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43354] = 7, + [44801] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3291), 3, + STATE(3377), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2593), 8, + ACTIONS(2681), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -320506,7 +324294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2591), 10, + ACTIONS(2679), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320517,29 +324305,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43394] = 7, + [44841] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3292), 3, + STATE(3378), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2569), 8, + ACTIONS(2687), 8, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2567), 10, + ACTIONS(2685), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320550,7 +324338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43434] = 21, + [44881] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -320559,58 +324347,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4954), 1, + ACTIONS(5067), 1, anon_sym_new, - ACTIONS(4958), 1, + ACTIONS(5071), 1, anon_sym_member, - ACTIONS(4962), 1, + ACTIONS(5075), 1, anon_sym_abstract, - ACTIONS(4966), 1, + ACTIONS(5079), 1, anon_sym_val, - ACTIONS(5578), 1, + ACTIONS(5732), 1, anon_sym_static, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3281), 1, + STATE(3371), 1, aux_sym__member_defns_repeat1, - STATE(3512), 1, - sym_member_defn, - STATE(3536), 1, + STATE(3618), 1, sym_additional_constr_defn, - STATE(3633), 1, + STATE(3626), 1, + sym_member_defn, + STATE(3735), 1, sym_attributes, - STATE(4463), 1, + STATE(4714), 1, sym_access_modifier, - ACTIONS(3618), 2, + ACTIONS(3747), 2, sym__newline, sym__dedent, - ACTIONS(4964), 2, + ACTIONS(5077), 2, anon_sym_override, anon_sym_default, - STATE(3293), 3, + STATE(3379), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [43502] = 7, + [44949] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3294), 3, + STATE(3380), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2569), 8, + ACTIONS(2677), 8, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -320619,7 +324407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2567), 10, + ACTIONS(2675), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320630,129 +324418,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43542] = 7, + [44989] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3295), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2589), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(5756), 1, + aux_sym_float_token1, + ACTIONS(2693), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2587), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [43582] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3296), 3, + STATE(3381), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2577), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, + ACTIONS(2695), 15, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2575), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [43622] = 7, + anon_sym_f, + aux_sym_decimal_token1, + [45031] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3297), 3, + ACTIONS(5758), 1, + sym_int, + ACTIONS(2758), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3382), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2599), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, + ACTIONS(2760), 15, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2597), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [43662] = 8, + anon_sym_f, + aux_sym_decimal_token1, + [45073] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5582), 1, - anon_sym_LT2, - STATE(3298), 3, + STATE(3383), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2622), 7, + ACTIONS(2642), 8, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2620), 10, + ACTIONS(2640), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320763,20 +324519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43704] = 7, + [45113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3299), 3, + STATE(3384), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2585), 8, + ACTIONS(2642), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -320785,7 +324541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2583), 10, + ACTIONS(2640), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320796,62 +324552,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43744] = 7, + [45153] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3300), 3, + STATE(3385), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2628), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2626), 10, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, + ACTIONS(3023), 9, + anon_sym_null, + anon_sym__, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [43784] = 7, + ACTIONS(3025), 9, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [45193] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3301), 3, + STATE(3386), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2573), 8, + ACTIONS(2634), 8, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2571), 10, + ACTIONS(2632), 10, anon_sym_with, anon_sym_new, anon_sym_static, @@ -320862,27 +324618,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [43824] = 9, + [45233] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5584), 1, - anon_sym_DOT, - STATE(3303), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2492), 2, + ACTIONS(2693), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3302), 3, + STATE(3387), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2494), 13, + ACTIONS(2695), 15, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -320896,26 +324648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [43867] = 8, + anon_sym_f, + aux_sym_decimal_token1, + [45272] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5586), 1, - anon_sym_DOT, - ACTIONS(2483), 2, + ACTIONS(2752), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3303), 4, + STATE(3388), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 13, + ACTIONS(2754), 15, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -320929,7 +324680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [43908] = 21, + anon_sym_f, + aux_sym_decimal_token1, + [45311] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -320938,155 +324691,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3618), 1, + ACTIONS(3747), 1, sym__dedent, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3305), 1, - aux_sym__member_defns_repeat1, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(3690), 1, - sym_member_defn, - STATE(4310), 1, - sym_access_modifier, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(3304), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [43975] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3645), 1, - sym__dedent, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3306), 1, + STATE(3395), 1, aux_sym__member_defns_repeat1, - STATE(3646), 1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(3690), 1, + STATE(3726), 1, sym_member_defn, - STATE(4310), 1, + STATE(4567), 1, sym_access_modifier, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(3305), 3, + STATE(3389), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [44042] = 20, + [45378] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3580), 1, - sym__dedent, - ACTIONS(3584), 1, - anon_sym_LBRACK_LT, - ACTIONS(3587), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5589), 1, - anon_sym_new, - ACTIONS(5592), 1, - anon_sym_static, - ACTIONS(5595), 1, - anon_sym_member, - ACTIONS(5598), 1, - anon_sym_abstract, - ACTIONS(5604), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(3690), 1, - sym_member_defn, - STATE(4310), 1, - sym_access_modifier, - ACTIONS(5601), 2, - anon_sym_override, - anon_sym_default, - STATE(3306), 4, + ACTIONS(5760), 1, + anon_sym_DOT, + STATE(3391), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2594), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3390), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__member_defns_repeat1, - [44107] = 9, + ACTIONS(2596), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [45421] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5584), 1, + ACTIONS(5762), 1, anon_sym_DOT, - STATE(3302), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2473), 2, + ACTIONS(2603), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3307), 3, + STATE(3391), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 13, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -321100,62 +324795,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [44150] = 15, + [45462] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, - sym_identifier, - ACTIONS(5607), 1, - anon_sym_DASH_GT, - ACTIONS(5609), 1, - anon_sym_STAR, - ACTIONS(5611), 1, - anon_sym_LT2, - ACTIONS(5613), 1, - anon_sym_LBRACK_RBRACK, - STATE(3414), 1, - aux_sym__compound_type_repeat1, - STATE(3462), 1, - sym_type_arguments, - STATE(3464), 1, - sym_long_identifier, - ACTIONS(2343), 3, + ACTIONS(5149), 1, + aux_sym_decimal_token1, + ACTIONS(5765), 1, + anon_sym_f, + ACTIONS(2231), 2, anon_sym_COLON, - anon_sym_as, - anon_sym_in, - STATE(3308), 3, + anon_sym_PIPE, + STATE(3392), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2345), 5, + ACTIONS(2229), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, - [44204] = 7, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [45505] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2601), 2, + ACTIONS(5760), 1, + anon_sym_DOT, + STATE(3390), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2517), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3309), 3, + STATE(3393), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2603), 14, + ACTIONS(2523), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -321167,10 +324861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_RBRACK, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - [44242] = 20, + [45548] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -321179,169 +324872,266 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3767), 1, + sym__dedent, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, + STATE(3389), 1, + aux_sym__member_defns_repeat1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(4310), 1, + STATE(3726), 1, + sym_member_defn, + STATE(4567), 1, sym_access_modifier, - STATE(5210), 1, - sym__member_defns, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(3310), 3, + STATE(3394), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [44306] = 9, + [45615] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3695), 1, + sym__dedent, + ACTIONS(3699), 1, + anon_sym_LBRACK_LT, + ACTIONS(3702), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5234), 1, - anon_sym_EQ, - ACTIONS(5238), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_of, - STATE(3311), 3, + ACTIONS(5767), 1, + anon_sym_new, + ACTIONS(5770), 1, + anon_sym_static, + ACTIONS(5773), 1, + anon_sym_member, + ACTIONS(5776), 1, + anon_sym_abstract, + ACTIONS(5782), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(3726), 1, + sym_member_defn, + STATE(4567), 1, + sym_access_modifier, + ACTIONS(5779), 2, + anon_sym_override, + anon_sym_default, + STATE(3395), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5236), 13, - sym__dedent, + aux_sym__member_defns_repeat1, + [45680] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(25), 1, anon_sym_LBRACK_LT, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5378), 1, anon_sym_new, + ACTIONS(5380), 1, anon_sym_static, + ACTIONS(5382), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(5386), 1, anon_sym_abstract, + ACTIONS(5390), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, + sym_member_defn, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(4567), 1, + sym_access_modifier, + STATE(5357), 1, + sym__member_defns, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - anon_sym_val, - [44348] = 15, + STATE(3396), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [45744] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5617), 1, + ACTIONS(5785), 1, anon_sym_DASH_GT, - ACTIONS(5619), 1, + ACTIONS(5787), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(5789), 1, anon_sym_LT2, - ACTIONS(5623), 1, + ACTIONS(5791), 1, anon_sym_LBRACK_RBRACK, - STATE(3405), 1, + STATE(3494), 1, aux_sym__compound_type_repeat1, - STATE(3460), 1, - sym_long_identifier, - STATE(3461), 1, + STATE(3554), 1, sym_type_arguments, - ACTIONS(2365), 3, + STATE(3559), 1, + sym_long_identifier, + ACTIONS(2411), 3, anon_sym_COLON, anon_sym_as, - anon_sym_when, - STATE(3312), 3, + anon_sym_in, + STATE(3397), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2363), 5, + ACTIONS(2409), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44402] = 15, + [45798] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5617), 1, + ACTIONS(5785), 1, anon_sym_DASH_GT, - ACTIONS(5619), 1, + ACTIONS(5787), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(5789), 1, anon_sym_LT2, - ACTIONS(5623), 1, + ACTIONS(5791), 1, anon_sym_LBRACK_RBRACK, - STATE(3405), 1, + STATE(3494), 1, aux_sym__compound_type_repeat1, - STATE(3460), 1, + STATE(3554), 1, + sym_type_arguments, + STATE(3559), 1, sym_long_identifier, - STATE(3461), 1, + ACTIONS(2363), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + STATE(3398), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2361), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [45852] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5785), 1, + anon_sym_DASH_GT, + ACTIONS(5787), 1, + anon_sym_STAR, + ACTIONS(5789), 1, + anon_sym_LT2, + ACTIONS(5791), 1, + anon_sym_LBRACK_RBRACK, + STATE(3494), 1, + aux_sym__compound_type_repeat1, + STATE(3554), 1, sym_type_arguments, - ACTIONS(2343), 3, + STATE(3559), 1, + sym_long_identifier, + ACTIONS(4871), 3, anon_sym_COLON, anon_sym_as, - anon_sym_when, - STATE(3313), 3, + anon_sym_in, + STATE(3399), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2345), 5, + ACTIONS(4869), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44456] = 7, + [45906] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2483), 2, + ACTIONS(2603), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3314), 3, + STATE(3400), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2485), 14, + ACTIONS(2605), 14, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -321356,75 +325146,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_when, anon_sym_LT2, - [44494] = 15, + [45944] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5617), 1, + ACTIONS(5785), 1, anon_sym_DASH_GT, - ACTIONS(5619), 1, + ACTIONS(5787), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(5789), 1, anon_sym_LT2, - ACTIONS(5623), 1, + ACTIONS(5791), 1, anon_sym_LBRACK_RBRACK, - STATE(3405), 1, + STATE(3494), 1, aux_sym__compound_type_repeat1, - STATE(3460), 1, - sym_long_identifier, - STATE(3461), 1, + STATE(3554), 1, sym_type_arguments, - ACTIONS(2307), 3, + STATE(3559), 1, + sym_long_identifier, + ACTIONS(2373), 3, anon_sym_COLON, anon_sym_as, - anon_sym_when, - STATE(3315), 3, + anon_sym_in, + STATE(3401), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2305), 5, + ACTIONS(2375), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44548] = 15, + [45998] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5378), 1, + anon_sym_new, + ACTIONS(5380), 1, + anon_sym_static, + ACTIONS(5382), 1, + anon_sym_member, + ACTIONS(5386), 1, + anon_sym_abstract, + ACTIONS(5390), 1, + anon_sym_val, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(3394), 1, + sym_member_defn, + STATE(3706), 1, + sym_attributes, + STATE(3719), 1, + sym_additional_constr_defn, + STATE(4567), 1, + sym_access_modifier, + STATE(5446), 1, + sym__member_defns, + ACTIONS(5388), 2, + anon_sym_override, + anon_sym_default, + STATE(3402), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [46062] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5617), 1, + ACTIONS(5793), 1, anon_sym_DASH_GT, - ACTIONS(5619), 1, + ACTIONS(5795), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(5797), 1, anon_sym_LT2, - ACTIONS(5623), 1, + ACTIONS(5799), 1, anon_sym_LBRACK_RBRACK, - STATE(3405), 1, + STATE(3490), 1, aux_sym__compound_type_repeat1, - STATE(3460), 1, + STATE(3507), 1, sym_long_identifier, - STATE(3461), 1, + STATE(3540), 1, sym_type_arguments, - ACTIONS(2359), 3, + ACTIONS(2363), 3, anon_sym_COLON, anon_sym_as, anon_sym_when, - STATE(3316), 3, + STATE(3403), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, @@ -321434,38 +325268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44602] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(2609), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3317), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2611), 14, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [44640] = 20, + [46116] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -321474,203 +325277,236 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3304), 1, + STATE(3394), 1, sym_member_defn, - STATE(3646), 1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(4310), 1, + STATE(4567), 1, sym_access_modifier, - STATE(5274), 1, + STATE(4936), 1, sym__member_defns, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(3318), 3, + STATE(3404), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [44704] = 20, + [46180] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, - anon_sym_new, - ACTIONS(5214), 1, - anon_sym_static, - ACTIONS(5216), 1, - anon_sym_member, - ACTIONS(5220), 1, - anon_sym_abstract, - ACTIONS(5224), 1, - anon_sym_val, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3304), 1, - sym_member_defn, - STATE(3646), 1, - sym_attributes, - STATE(3682), 1, - sym_additional_constr_defn, - STATE(4310), 1, - sym_access_modifier, - STATE(4955), 1, - sym__member_defns, - ACTIONS(5222), 2, - anon_sym_override, - anon_sym_default, - STATE(3319), 3, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5793), 1, + anon_sym_DASH_GT, + ACTIONS(5795), 1, + anon_sym_STAR, + ACTIONS(5797), 1, + anon_sym_LT2, + ACTIONS(5799), 1, + anon_sym_LBRACK_RBRACK, + STATE(3490), 1, + aux_sym__compound_type_repeat1, + STATE(3507), 1, + sym_long_identifier, + STATE(3540), 1, + sym_type_arguments, + ACTIONS(2411), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(3405), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [44768] = 15, + ACTIONS(2409), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [46234] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5785), 1, anon_sym_DASH_GT, - ACTIONS(5609), 1, + ACTIONS(5787), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5789), 1, anon_sym_LT2, - ACTIONS(5613), 1, + ACTIONS(5791), 1, anon_sym_LBRACK_RBRACK, - STATE(3414), 1, + STATE(3494), 1, aux_sym__compound_type_repeat1, - STATE(3462), 1, + STATE(3554), 1, sym_type_arguments, - STATE(3464), 1, + STATE(3559), 1, sym_long_identifier, - ACTIONS(2359), 3, + ACTIONS(4895), 3, anon_sym_COLON, anon_sym_as, anon_sym_in, - STATE(3320), 3, + STATE(3406), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2361), 5, + ACTIONS(4893), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44822] = 15, + [46288] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5793), 1, anon_sym_DASH_GT, - ACTIONS(5609), 1, + ACTIONS(5795), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5797), 1, anon_sym_LT2, - ACTIONS(5613), 1, + ACTIONS(5799), 1, anon_sym_LBRACK_RBRACK, - STATE(3414), 1, + STATE(3490), 1, aux_sym__compound_type_repeat1, - STATE(3462), 1, - sym_type_arguments, - STATE(3464), 1, + STATE(3507), 1, sym_long_identifier, - ACTIONS(2365), 3, + STATE(3540), 1, + sym_type_arguments, + ACTIONS(2319), 3, anon_sym_COLON, anon_sym_as, - anon_sym_in, - STATE(3321), 3, + anon_sym_when, + STATE(3407), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2363), 5, + ACTIONS(2321), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44876] = 15, + [46342] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5793), 1, anon_sym_DASH_GT, - ACTIONS(5609), 1, + ACTIONS(5795), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5797), 1, anon_sym_LT2, - ACTIONS(5613), 1, + ACTIONS(5799), 1, anon_sym_LBRACK_RBRACK, - STATE(3414), 1, + STATE(3490), 1, aux_sym__compound_type_repeat1, - STATE(3462), 1, + STATE(3507), 1, + sym_long_identifier, + STATE(3540), 1, sym_type_arguments, - STATE(3464), 1, + ACTIONS(2373), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(3408), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2375), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [46396] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5795), 1, + anon_sym_STAR, + ACTIONS(5797), 1, + anon_sym_LT2, + ACTIONS(5799), 1, + anon_sym_LBRACK_RBRACK, + STATE(3490), 1, + aux_sym__compound_type_repeat1, + STATE(3507), 1, sym_long_identifier, - ACTIONS(2307), 3, + STATE(3540), 1, + sym_type_arguments, + ACTIONS(4871), 3, anon_sym_COLON, anon_sym_as, - anon_sym_in, - STATE(3322), 3, + anon_sym_when, + STATE(3409), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2305), 5, + ACTIONS(4869), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [44930] = 20, + anon_sym_DASH_GT, + [46448] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -321679,257 +325515,307 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + ACTIONS(5378), 1, anon_sym_new, - ACTIONS(5214), 1, + ACTIONS(5380), 1, anon_sym_static, - ACTIONS(5216), 1, + ACTIONS(5382), 1, anon_sym_member, - ACTIONS(5220), 1, + ACTIONS(5386), 1, anon_sym_abstract, - ACTIONS(5224), 1, + ACTIONS(5390), 1, anon_sym_val, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3304), 1, + STATE(3394), 1, sym_member_defn, - STATE(3646), 1, + STATE(3706), 1, sym_attributes, - STATE(3682), 1, + STATE(3719), 1, sym_additional_constr_defn, - STATE(4310), 1, + STATE(4567), 1, sym_access_modifier, - STATE(5330), 1, + STATE(5306), 1, sym__member_defns, - ACTIONS(5222), 2, + ACTIONS(5388), 2, anon_sym_override, anon_sym_default, - STATE(3323), 3, + STATE(3410), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [44994] = 15, + [46512] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, - sym_identifier, - ACTIONS(5617), 1, - anon_sym_DASH_GT, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(5621), 1, - anon_sym_LT2, - ACTIONS(5623), 1, - anon_sym_LBRACK_RBRACK, - STATE(3405), 1, - aux_sym__compound_type_repeat1, - STATE(3460), 1, - sym_long_identifier, - STATE(3461), 1, - sym_type_arguments, - ACTIONS(4755), 3, + ACTIONS(2648), 2, anon_sym_COLON, + anon_sym_PIPE, + STATE(3411), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2650), 14, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, anon_sym_when, - STATE(3324), 3, + anon_sym_LT2, + [46550] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(2644), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3412), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4753), 5, + ACTIONS(2646), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, - [45048] = 15, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [46588] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(5717), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5785), 1, anon_sym_DASH_GT, - ACTIONS(5609), 1, + ACTIONS(5787), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5789), 1, anon_sym_LT2, - ACTIONS(5613), 1, + ACTIONS(5791), 1, anon_sym_LBRACK_RBRACK, - STATE(3414), 1, + STATE(3494), 1, aux_sym__compound_type_repeat1, - STATE(3462), 1, + STATE(3554), 1, sym_type_arguments, - STATE(3464), 1, + STATE(3559), 1, sym_long_identifier, - ACTIONS(4755), 3, + ACTIONS(2319), 3, anon_sym_COLON, anon_sym_as, anon_sym_in, - STATE(3325), 3, + STATE(3413), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4753), 5, + ACTIONS(2321), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [45102] = 14, + [46642] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5496), 1, - sym_identifier, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(5621), 1, - anon_sym_LT2, - ACTIONS(5623), 1, - anon_sym_LBRACK_RBRACK, - STATE(3405), 1, - aux_sym__compound_type_repeat1, - STATE(3460), 1, - sym_long_identifier, - STATE(3461), 1, - sym_type_arguments, - ACTIONS(4733), 3, + ACTIONS(5801), 1, + anon_sym_y, + ACTIONS(5803), 1, + anon_sym_uy, + ACTIONS(5805), 1, + anon_sym_s, + ACTIONS(5807), 1, + anon_sym_us, + ACTIONS(5809), 1, + anon_sym_l, + ACTIONS(5811), 1, + aux_sym_uint32_token1, + ACTIONS(5813), 1, + anon_sym_n, + ACTIONS(5815), 1, + anon_sym_un, + ACTIONS(5817), 1, + anon_sym_L, + ACTIONS(5819), 1, + aux_sym_uint64_token1, + ACTIONS(5821), 1, + aux_sym_bignum_token1, + ACTIONS(5823), 1, + aux_sym_decimal_token1, + ACTIONS(5825), 1, + anon_sym_DOT2, + ACTIONS(5827), 1, + aux_sym_float_token1, + ACTIONS(2229), 2, + sym__dedent, + anon_sym_PIPE, + STATE(3414), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [46706] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5408), 1, anon_sym_COLON, - anon_sym_as, - anon_sym_when, - STATE(3326), 3, + ACTIONS(5829), 1, + anon_sym_of, + STATE(3415), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4731), 6, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(5406), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - [45154] = 15, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [46748] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5514), 1, + ACTIONS(5604), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5793), 1, anon_sym_DASH_GT, - ACTIONS(5609), 1, + ACTIONS(5795), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5797), 1, anon_sym_LT2, - ACTIONS(5613), 1, + ACTIONS(5799), 1, anon_sym_LBRACK_RBRACK, - STATE(3414), 1, + STATE(3490), 1, aux_sym__compound_type_repeat1, - STATE(3462), 1, - sym_type_arguments, - STATE(3464), 1, + STATE(3507), 1, sym_long_identifier, - ACTIONS(4733), 3, + STATE(3540), 1, + sym_type_arguments, + ACTIONS(4895), 3, anon_sym_COLON, anon_sym_as, - anon_sym_in, - STATE(3327), 3, + anon_sym_when, + STATE(3416), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4731), 5, + ACTIONS(4893), 5, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [45208] = 20, + [46802] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4637), 1, - anon_sym_DOT2, - ACTIONS(5001), 1, - aux_sym_float_token1, - ACTIONS(5625), 1, - anon_sym_y, - ACTIONS(5627), 1, - anon_sym_uy, - ACTIONS(5629), 1, - anon_sym_s, - ACTIONS(5631), 1, - anon_sym_us, - ACTIONS(5633), 1, - anon_sym_l, - ACTIONS(5635), 1, - aux_sym_uint32_token1, - ACTIONS(5637), 1, - anon_sym_n, - ACTIONS(5639), 1, - anon_sym_un, - ACTIONS(5641), 1, - anon_sym_L, - ACTIONS(5643), 1, - aux_sym_uint64_token1, - ACTIONS(5645), 1, - aux_sym_bignum_token1, - ACTIONS(5647), 1, - aux_sym_decimal_token1, - ACTIONS(2225), 2, - sym__dedent, - anon_sym_PIPE, - STATE(3328), 3, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5833), 1, + anon_sym_LPAREN, + ACTIONS(5835), 1, + anon_sym_LT2, + STATE(3519), 1, + sym_type_arguments, + STATE(3417), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [45272] = 7, + ACTIONS(5831), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [46843] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5058), 2, + ACTIONS(2868), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3329), 3, + STATE(3418), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5060), 13, + ACTIONS(2870), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -321943,23 +325829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45309] = 7, + [46880] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5062), 2, + ACTIONS(5214), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3330), 3, + STATE(3419), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5064), 13, + ACTIONS(5216), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -321973,28 +325859,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45346] = 8, + [46917] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5649), 1, + ACTIONS(5837), 1, anon_sym_DOT, - ACTIONS(2483), 4, + ACTIONS(2603), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - STATE(3331), 4, + STATE(3420), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, aux_sym_long_identifier_repeat1, - ACTIONS(2485), 9, + ACTIONS(2605), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -322004,23 +325890,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [45385] = 7, + [46956] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5035), 2, + ACTIONS(2997), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3332), 3, + STATE(3421), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2999), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [46993] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3027), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3422), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5037), 13, + ACTIONS(3029), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322034,29 +325950,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45422] = 10, + [47030] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4472), 1, + ACTIONS(4598), 1, anon_sym_LBRACK_LT, - STATE(3384), 1, + STATE(3436), 1, aux_sym_attributes_repeat1, - STATE(3470), 1, + STATE(3521), 1, sym_attribute_set, - ACTIONS(5286), 2, + ACTIONS(5485), 2, anon_sym_let_BANG, aux_sym_access_modifier_token1, - STATE(3333), 3, + STATE(3423), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5284), 10, + ACTIONS(5483), 10, anon_sym_do, anon_sym_let, anon_sym_new, @@ -322067,23 +325983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [45465] = 7, + [47073] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2858), 2, + ACTIONS(2231), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3334), 3, + STATE(3424), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2860), 13, + ACTIONS(2229), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322097,23 +326013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45502] = 7, + [47110] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5074), 2, + ACTIONS(5101), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3335), 3, + STATE(3425), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5076), 13, + ACTIONS(5103), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322127,55 +326043,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45539] = 9, + [47147] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5652), 1, - anon_sym_DOT, - STATE(3340), 1, - aux_sym_long_identifier_repeat1, - STATE(3336), 3, + ACTIONS(5249), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3426), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 4, - anon_sym_COLON, + ACTIONS(5251), 13, + anon_sym_EQ, anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2475), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [45580] = 7, + [47184] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2822), 2, + ACTIONS(5261), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3337), 3, + STATE(3427), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2824), 13, + ACTIONS(5263), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322189,118 +326103,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45617] = 8, + [47221] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5238), 1, + ACTIONS(5253), 2, anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_of, - STATE(3338), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5236), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [45656] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5656), 1, - anon_sym_LPAREN, - ACTIONS(5658), 1, - anon_sym_LT2, - STATE(3441), 1, - sym_type_arguments, - STATE(3339), 3, + STATE(3428), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5654), 12, + ACTIONS(5255), 13, anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [45697] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5652), 1, - anon_sym_DOT, - STATE(3343), 1, - aux_sym_long_identifier_repeat1, - STATE(3340), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2492), 4, - anon_sym_COLON, anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2494), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [45738] = 7, + [47258] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5078), 2, + ACTIONS(5200), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3341), 3, + STATE(3429), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5080), 13, + ACTIONS(5202), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322314,23 +326163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45775] = 7, + [47295] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2784), 2, + ACTIONS(5185), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3342), 3, + STATE(3430), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2786), 13, + ACTIONS(5187), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322344,28 +326193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45812] = 8, + [47332] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5660), 1, + ACTIONS(5840), 1, anon_sym_DOT, - ACTIONS(2483), 4, + STATE(3433), 1, + aux_sym_long_identifier_repeat1, + STATE(3431), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2517), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - STATE(3343), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 9, + ACTIONS(2523), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -322375,23 +326225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [45851] = 7, + [47373] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5086), 2, + ACTIONS(5181), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3344), 3, + STATE(3432), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5088), 13, + ACTIONS(5183), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322405,54 +326255,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45888] = 8, + [47410] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5665), 1, - anon_sym_STAR, - STATE(3373), 1, - aux_sym_union_type_fields_repeat1, - STATE(3345), 3, + ACTIONS(5840), 1, + anon_sym_DOT, + STATE(3435), 1, + aux_sym_long_identifier_repeat1, + STATE(3433), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5663), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(2594), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2596), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [45927] = 7, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [47451] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5039), 2, + ACTIONS(3077), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3346), 3, + STATE(3434), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5041), 13, + ACTIONS(3079), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322466,29 +326317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [45964] = 9, + [47488] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5667), 1, + ACTIONS(5842), 1, anon_sym_DOT, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, - STATE(3347), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2492), 4, + ACTIONS(2603), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2494), 9, + STATE(3435), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -322498,84 +326348,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [46005] = 8, + [47527] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5669), 1, - anon_sym_LT2, - ACTIONS(5003), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3348), 3, + ACTIONS(5845), 1, + anon_sym_LBRACK_LT, + STATE(3521), 1, + sym_attribute_set, + ACTIONS(5368), 2, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(3436), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5005), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - [46044] = 7, + aux_sym_attributes_repeat1, + ACTIONS(5363), 10, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + sym_identifier, + [47568] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5070), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3349), 3, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(4614), 1, + anon_sym_new, + ACTIONS(5848), 1, + sym_identifier, + ACTIONS(5850), 1, + anon_sym_do, + ACTIONS(5852), 1, + anon_sym_static, + ACTIONS(5854), 1, + anon_sym_member, + ACTIONS(5856), 1, + anon_sym_abstract, + ACTIONS(5860), 1, + anon_sym_val, + STATE(3625), 1, + sym_additional_constr_defn, + STATE(4459), 1, + sym_function_or_value_defn, + STATE(4608), 1, + sym_access_modifier, + ACTIONS(5858), 2, + anon_sym_override, + anon_sym_default, + STATE(3437), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5072), 13, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [46081] = 7, + [47629] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4931), 2, + ACTIONS(2908), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3350), 3, + STATE(3438), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4933), 13, + ACTIONS(2910), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322589,23 +326452,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46118] = 7, + [47666] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5066), 2, + ACTIONS(5257), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3351), 3, + STATE(3439), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5068), 13, + ACTIONS(5259), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322619,53 +326482,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46155] = 7, + [47703] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5009), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3352), 3, + ACTIONS(5864), 1, + anon_sym_STAR, + STATE(3443), 1, + aux_sym_union_type_fields_repeat1, + STATE(3440), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5011), 13, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [46192] = 7, + ACTIONS(5862), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [47742] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5003), 2, + ACTIONS(2900), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3353), 3, + STATE(3441), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5005), 13, + ACTIONS(2902), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322679,23 +326543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46229] = 7, + [47779] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2223), 2, + ACTIONS(3031), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3354), 3, + STATE(3442), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2225), 13, + ACTIONS(3033), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322709,24 +326573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46266] = 8, + [47816] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_of, - STATE(3355), 3, + ACTIONS(5868), 1, + anon_sym_STAR, + STATE(3443), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5671), 13, + aux_sym_union_type_fields_repeat1, + ACTIONS(5866), 13, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -322740,23 +326603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [46305] = 7, + [47853] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2826), 2, + ACTIONS(5871), 1, + anon_sym_LT2, + ACTIONS(5008), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3356), 3, + STATE(3444), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2828), 13, + ACTIONS(5010), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322769,24 +326634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DASH_GT, anon_sym_when, - anon_sym_LT2, - [46342] = 7, + [47892] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2894), 2, + ACTIONS(2970), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3357), 3, + STATE(3445), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2896), 13, + ACTIONS(2972), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322800,96 +326664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46379] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5665), 1, - anon_sym_STAR, - STATE(3345), 1, - aux_sym_union_type_fields_repeat1, - STATE(3358), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5677), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [46418] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4488), 1, - anon_sym_new, - ACTIONS(5679), 1, - sym_identifier, - ACTIONS(5681), 1, - anon_sym_do, - ACTIONS(5683), 1, - anon_sym_static, - ACTIONS(5685), 1, - anon_sym_member, - ACTIONS(5687), 1, - anon_sym_abstract, - ACTIONS(5691), 1, - anon_sym_val, - STATE(3510), 1, - sym_additional_constr_defn, - STATE(4431), 1, - sym_access_modifier, - STATE(4615), 1, - sym_function_or_value_defn, - ACTIONS(5689), 2, - anon_sym_override, - anon_sym_default, - STATE(3359), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [46479] = 7, + [47929] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5013), 2, + ACTIONS(5008), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3360), 3, + STATE(3446), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5015), 13, + ACTIONS(5010), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -322903,58 +326694,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46516] = 9, + [47966] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5695), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_type_arguments, - STATE(3361), 3, + ACTIONS(5873), 1, + anon_sym_as, + ACTIONS(5208), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3447), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5693), 12, + ACTIONS(5210), 12, anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [46557] = 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [48005] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5697), 1, - anon_sym_as, - ACTIONS(5019), 2, + ACTIONS(2864), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3362), 3, + STATE(3448), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5021), 12, + ACTIONS(2866), 13, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -322966,55 +326755,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46596] = 9, + [48042] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5667), 1, - anon_sym_DOT, - STATE(3347), 1, - aux_sym_long_identifier_repeat1, - STATE(3363), 3, + ACTIONS(3139), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3449), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2473), 4, - anon_sym_COLON, + ACTIONS(3141), 13, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2475), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [46637] = 7, + [48079] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2854), 2, + ACTIONS(5218), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3364), 3, + STATE(3450), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2856), 13, + ACTIONS(5220), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323028,23 +326815,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46674] = 7, + [48116] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2890), 2, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5877), 1, + anon_sym_LPAREN, + STATE(3522), 1, + sym_type_arguments, + STATE(3451), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5875), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [48157] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(2934), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3365), 3, + STATE(3452), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2892), 13, + ACTIONS(2936), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323058,23 +326877,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46711] = 7, + [48194] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2830), 2, + ACTIONS(2916), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3366), 3, + STATE(3453), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2832), 13, + ACTIONS(2918), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323088,23 +326907,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46748] = 7, + [48231] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2862), 2, + ACTIONS(5171), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3367), 3, + STATE(3454), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2864), 13, + ACTIONS(5173), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323118,23 +326937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46785] = 7, + [48268] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2834), 2, + ACTIONS(2938), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3368), 3, + STATE(3455), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2836), 13, + ACTIONS(2940), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323148,23 +326967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46822] = 7, + [48305] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2798), 2, + ACTIONS(2888), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3369), 3, + STATE(3456), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2800), 13, + ACTIONS(2890), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323178,23 +326997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46859] = 7, + [48342] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2870), 2, + ACTIONS(2884), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3370), 3, + STATE(3457), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2872), 13, + ACTIONS(2886), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323208,23 +327027,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46896] = 7, + [48379] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3068), 2, + ACTIONS(5265), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3371), 3, + STATE(3458), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3070), 13, + ACTIONS(5267), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323238,23 +327057,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46933] = 7, + [48416] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5051), 2, + ACTIONS(2880), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3372), 3, + STATE(3459), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5053), 13, + ACTIONS(2882), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323268,53 +327087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [46970] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5701), 1, - anon_sym_STAR, - STATE(3373), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_union_type_fields_repeat1, - ACTIONS(5699), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [47007] = 7, + [48453] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2874), 2, + ACTIONS(5269), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3374), 3, + STATE(3460), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2876), 13, + ACTIONS(5271), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323328,23 +327117,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47044] = 7, + [48490] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2952), 2, + ACTIONS(2876), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3375), 3, + STATE(3461), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2954), 13, + ACTIONS(2878), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323358,23 +327147,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47081] = 7, + [48527] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5031), 2, + ACTIONS(2872), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3376), 3, + STATE(3462), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5033), 13, + ACTIONS(2874), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323388,23 +327177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47118] = 7, + [48564] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2838), 2, + ACTIONS(5175), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3377), 3, + STATE(3463), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2840), 13, + ACTIONS(5177), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323418,23 +327207,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47155] = 7, + [48601] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2842), 2, + ACTIONS(2860), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3378), 3, + STATE(3464), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2844), 13, + ACTIONS(2862), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323448,29 +327237,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47192] = 9, + [48638] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5706), 1, - anon_sym_LPAREN, - STATE(3439), 1, - sym_type_arguments, - STATE(3379), 3, + ACTIONS(5864), 1, + anon_sym_STAR, + STATE(3440), 1, + aux_sym_union_type_fields_repeat1, + STATE(3465), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5704), 12, - anon_sym_EQ, + ACTIONS(5879), 13, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_with, anon_sym_new, anon_sym_static, @@ -323480,23 +327268,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [47233] = 7, + [48677] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5047), 2, + ACTIONS(2856), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3380), 3, + STATE(3466), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5049), 13, + ACTIONS(2858), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323510,23 +327298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47270] = 7, + [48714] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2866), 2, + ACTIONS(3105), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3381), 3, + STATE(3467), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2868), 13, + ACTIONS(3107), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323540,23 +327328,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47307] = 7, + [48751] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2886), 2, + ACTIONS(2930), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3382), 3, + STATE(3468), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2888), 13, + ACTIONS(2932), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323570,23 +327358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47344] = 7, + [48788] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2814), 2, + ACTIONS(2962), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3383), 3, + STATE(3469), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2816), 13, + ACTIONS(2964), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323600,55 +327388,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47381] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5708), 1, - anon_sym_LBRACK_LT, - STATE(3470), 1, - sym_attribute_set, - ACTIONS(5164), 2, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(3384), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(5159), 10, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [47422] = 7, + [48825] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2846), 2, + ACTIONS(3035), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3385), 3, + STATE(3470), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2848), 13, + ACTIONS(3037), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323662,23 +327418,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47459] = 7, + [48862] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2850), 2, + ACTIONS(3039), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3386), 3, + STATE(3471), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2852), 13, + ACTIONS(3041), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323692,23 +327448,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47496] = 7, + [48899] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2776), 2, + ACTIONS(5408), 1, anon_sym_COLON, + ACTIONS(5829), 1, + anon_sym_of, + STATE(3472), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5406), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - STATE(3387), 3, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [48938] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3054), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3473), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2778), 13, + ACTIONS(3056), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323722,23 +327509,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47533] = 7, + [48975] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2878), 2, + ACTIONS(3115), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3388), 3, + STATE(3474), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2880), 13, + ACTIONS(3117), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323752,53 +327539,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47570] = 7, + [49012] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2802), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3389), 3, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(3477), 1, + aux_sym_long_identifier_repeat1, + STATE(3475), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2804), 13, - anon_sym_EQ, + ACTIONS(2517), 4, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(2523), 9, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - [47607] = 7, + anon_sym_LBRACK_RBRACK, + [49053] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2998), 2, + ACTIONS(5204), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3390), 3, + STATE(3476), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3000), 13, + ACTIONS(5206), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323812,53 +327601,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47644] = 7, + [49090] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5082), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3391), 3, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(3420), 1, + aux_sym_long_identifier_repeat1, + STATE(3477), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5084), 13, - anon_sym_EQ, + ACTIONS(2594), 4, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(2596), 9, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [49131] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, anon_sym_LT2, - [47681] = 7, + ACTIONS(5885), 1, + anon_sym_LPAREN, + STATE(3550), 1, + sym_type_arguments, + STATE(3478), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5883), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [49172] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2806), 2, + ACTIONS(2892), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3392), 3, + STATE(3479), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2808), 13, + ACTIONS(2894), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323872,23 +327695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47718] = 7, + [49209] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2882), 2, + ACTIONS(5889), 1, anon_sym_COLON, + ACTIONS(5891), 1, + anon_sym_of, + STATE(3480), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5887), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - STATE(3393), 3, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [49248] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5222), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3481), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2884), 13, + ACTIONS(5224), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323902,23 +327756,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47755] = 7, + [49285] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2810), 2, + ACTIONS(2966), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3394), 3, + STATE(3482), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2812), 13, + ACTIONS(2968), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323932,23 +327786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47792] = 7, + [49322] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3032), 2, + ACTIONS(2948), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3395), 3, + STATE(3483), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3034), 13, + ACTIONS(2950), 13, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -323962,67 +327816,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [47829] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(4954), 1, - anon_sym_new, - ACTIONS(5711), 1, - anon_sym_do, - ACTIONS(5713), 1, - anon_sym_static, - ACTIONS(5715), 1, - anon_sym_member, - ACTIONS(5717), 1, - anon_sym_abstract, - ACTIONS(5721), 1, - anon_sym_val, - STATE(3510), 1, - sym_additional_constr_defn, - STATE(4431), 1, - sym_access_modifier, - STATE(4615), 1, - sym_function_or_value_defn, - ACTIONS(5719), 2, - anon_sym_override, - anon_sym_default, - STATE(3396), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [47887] = 8, + [49359] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5723), 1, + ACTIONS(5893), 1, anon_sym_COLON_GT, - STATE(3397), 3, + STATE(3484), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 4, + ACTIONS(2658), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2607), 9, + ACTIONS(2660), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -324032,265 +327846,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [47925] = 7, + [49397] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2411), 1, + anon_sym_and, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3398), 3, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3485), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 4, + ACTIONS(2409), 5, + anon_sym_EQ, anon_sym_COLON, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2485), 10, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [47961] = 8, + anon_sym_GT, + [49449] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5725), 1, - anon_sym_COLON_GT, - STATE(3399), 3, + ACTIONS(5903), 1, + anon_sym_PIPE, + STATE(3491), 1, + aux_sym_union_type_cases_repeat1, + STATE(3486), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2607), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [47999] = 15, + ACTIONS(5901), 12, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [49487] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2365), 1, + ACTIONS(2373), 1, anon_sym_and, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3400), 3, + STATE(3487), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2363), 5, + ACTIONS(2375), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT, - [48051] = 15, + [49539] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2359), 1, - anon_sym_and, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5262), 1, - sym_identifier, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5905), 1, anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3401), 3, + ACTIONS(2319), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(3488), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2361), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 8, anon_sym_COMMA, - anon_sym_GT, - [48103] = 15, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [49577] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2343), 1, + ACTIONS(2319), 1, anon_sym_and, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5262), 1, + ACTIONS(5430), 1, sym_identifier, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3402), 3, + STATE(3489), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2345), 5, + ACTIONS(2321), 5, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT, - [48155] = 15, + [49629] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2307), 1, - anon_sym_and, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5262), 1, - sym_identifier, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5795), 1, anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - STATE(3496), 1, + STATE(3493), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3403), 3, + STATE(3490), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2305), 5, - anon_sym_EQ, + ACTIONS(2587), 4, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2589), 8, anon_sym_COMMA, - anon_sym_GT, - [48207] = 7, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [49669] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5910), 1, + anon_sym_PIPE, + STATE(3491), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_union_type_cases_repeat1, + ACTIONS(5908), 12, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [49705] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5903), 1, + anon_sym_PIPE, + STATE(3496), 1, + aux_sym_union_type_cases_repeat1, + STATE(3492), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5901), 12, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [49743] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3404), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2601), 4, + ACTIONS(5913), 1, + anon_sym_STAR, + ACTIONS(2319), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2603), 10, + STATE(3493), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48243] = 9, + [49781] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5619), 1, + ACTIONS(5787), 1, anon_sym_STAR, - STATE(3406), 1, + STATE(3488), 1, aux_sym__compound_type_repeat1, - STATE(3405), 3, + STATE(3494), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2479), 4, + ACTIONS(2587), 4, anon_sym_COLON, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(2481), 8, + ACTIONS(2589), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -324299,57 +328168,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48283] = 8, + [49821] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5733), 1, - anon_sym_STAR, - ACTIONS(2343), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(3406), 4, + STATE(3495), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 8, + ACTIONS(2603), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2605), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48321] = 6, + [49857] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3407), 3, + ACTIONS(5903), 1, + anon_sym_PIPE, + STATE(3491), 1, + aux_sym_union_type_cases_repeat1, + STATE(3496), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5699), 14, + ACTIONS(5916), 12, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, anon_sym_with, anon_sym_new, - anon_sym_STAR, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -324357,55 +328227,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [48355] = 8, + [49895] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, - anon_sym_PIPE, - STATE(3411), 1, - aux_sym_union_type_cases_repeat1, - STATE(3408), 3, + ACTIONS(5918), 1, + anon_sym_COLON_GT, + STATE(3497), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5736), 12, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [48393] = 7, + ACTIONS(2658), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2660), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [49933] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3409), 3, + STATE(3498), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 4, + ACTIONS(2648), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(2611), 10, + ACTIONS(2650), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -324416,25 +328286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48429] = 7, + [49969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3410), 3, + STATE(3499), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2601), 4, + ACTIONS(2644), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(2603), 10, + ACTIONS(2646), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -324445,29 +328315,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48465] = 8, + [50005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, - anon_sym_PIPE, - STATE(3417), 1, - aux_sym_union_type_cases_repeat1, - STATE(3411), 3, + STATE(3500), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5740), 12, + ACTIONS(5866), 14, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_with, anon_sym_new, + anon_sym_STAR, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -324475,54 +328343,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [48503] = 8, + [50039] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5742), 1, - anon_sym_STAR, - ACTIONS(2343), 4, + STATE(3501), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2644), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - STATE(3412), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 8, + ACTIONS(2646), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48541] = 8, + [50075] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2363), 1, + anon_sym_and, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3502), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2361), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + [50127] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5903), 1, anon_sym_PIPE, - STATE(3418), 1, + STATE(3486), 1, aux_sym_union_type_cases_repeat1, - STATE(3413), 3, + STATE(3503), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5740), 12, + ACTIONS(5920), 12, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -324535,56 +328439,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [48579] = 9, + [50165] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5609), 1, - anon_sym_STAR, - STATE(3412), 1, - aux_sym__compound_type_repeat1, - STATE(3414), 3, + STATE(3504), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2479), 4, + ACTIONS(2603), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2481), 8, + ACTIONS(2605), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48619] = 7, + [50201] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3415), 3, + STATE(3505), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2609), 4, + ACTIONS(2648), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - ACTIONS(2611), 10, + ACTIONS(2650), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -324595,142 +328497,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48655] = 7, + [50237] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3416), 3, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(5067), 1, + anon_sym_new, + ACTIONS(5922), 1, + anon_sym_do, + ACTIONS(5924), 1, + anon_sym_static, + ACTIONS(5926), 1, + anon_sym_member, + ACTIONS(5928), 1, + anon_sym_abstract, + ACTIONS(5932), 1, + anon_sym_val, + STATE(3625), 1, + sym_additional_constr_defn, + STATE(4459), 1, + sym_function_or_value_defn, + STATE(4608), 1, + sym_access_modifier, + ACTIONS(5930), 2, + anon_sym_override, + anon_sym_default, + STATE(3506), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [50295] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3507), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2483), 4, + ACTIONS(2615), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(2485), 10, + ACTIONS(2621), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [48691] = 7, + [50330] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5747), 1, + ACTIONS(5167), 1, anon_sym_PIPE, - STATE(3417), 4, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3508), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_union_type_cases_repeat1, - ACTIONS(5745), 12, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [48727] = 8, + ACTIONS(5169), 10, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_LT2, + [50369] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5940), 1, anon_sym_PIPE, - STATE(3417), 1, - aux_sym_union_type_cases_repeat1, - STATE(3418), 3, + ACTIONS(5942), 1, + anon_sym_AMP, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3509), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5750), 12, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [48765] = 7, + ACTIONS(5046), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_LT2, + [50416] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3419), 3, + ACTIONS(5055), 1, + anon_sym_PIPE, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3510), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2567), 4, - anon_sym_COLON, + ACTIONS(5057), 10, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2569), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_PIPE_RBRACK, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [48800] = 9, + [50455] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4905), 1, - anon_sym_PIPE, - ACTIONS(5125), 1, + STATE(3538), 1, + aux_sym_record_pattern_repeat1, + ACTIONS(5083), 2, anon_sym_COLON, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3420), 3, + anon_sym_PIPE, + STATE(3511), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4907), 10, + ACTIONS(5085), 10, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -324741,116 +328688,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [48839] = 6, + [50492] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3421), 3, + ACTIONS(5402), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(3512), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5364), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, + ACTIONS(5400), 10, + anon_sym_do, + anon_sym_let, anon_sym_new, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [48872] = 13, + sym_identifier, + [50527] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + STATE(3513), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2628), 4, anon_sym_COLON, - ACTIONS(5752), 1, anon_sym_as, - ACTIONS(5754), 1, + anon_sym_in, + sym_identifier, + ACTIONS(2630), 9, anon_sym_COMMA, - ACTIONS(5756), 1, anon_sym_COLON_COLON, - ACTIONS(5758), 1, anon_sym_PIPE, - ACTIONS(5760), 1, anon_sym_AMP, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3422), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [50562] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3514), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4975), 6, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2658), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2660), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_PIPE_RBRACK, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [48919] = 8, + anon_sym_LBRACK_RBRACK, + [50597] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5762), 1, - anon_sym_COMMA, - ACTIONS(4919), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3423), 4, + STATE(3515), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 9, - anon_sym_EQ, + ACTIONS(2658), 4, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(2660), 9, + anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_PIPE_RBRACK, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [48956] = 9, + anon_sym_LBRACK_RBRACK, + [50632] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4883), 1, + ACTIONS(5040), 1, anon_sym_PIPE, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3459), 1, + STATE(3523), 1, aux_sym_repeat_pattern_repeat1, - STATE(3424), 3, + STATE(3516), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4885), 10, + ACTIONS(5042), 10, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -324861,24 +328830,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [48995] = 7, + [50671] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3517), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2685), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2687), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [50706] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3518), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2679), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + sym_identifier, + ACTIONS(2681), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [50741] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5946), 1, + anon_sym_LPAREN, + STATE(3519), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5944), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [50776] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(3942), 1, + anon_sym_interface, + ACTIONS(5503), 1, + sym_identifier, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5948), 1, + anon_sym_with, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + STATE(4285), 1, + sym__object_members, + ACTIONS(3940), 2, + sym__newline, + sym__dedent, + STATE(3520), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [50831] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5232), 3, + ACTIONS(5398), 3, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, - STATE(3425), 3, + STATE(3521), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5230), 10, + ACTIONS(5396), 10, anon_sym_do, anon_sym_let, anon_sym_new, @@ -324889,113 +328980,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_val, sym_identifier, - [49030] = 9, + [50866] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4927), 1, - anon_sym_PIPE, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3426), 3, + ACTIONS(5952), 1, + anon_sym_LPAREN, + STATE(3522), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4929), 10, + ACTIONS(5950), 12, anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_LT2, - [49069] = 9, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [50901] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4923), 1, - anon_sym_PIPE, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(3459), 1, + ACTIONS(5936), 1, + anon_sym_COMMA, + STATE(3527), 1, aux_sym_repeat_pattern_repeat1, - STATE(3427), 3, + ACTIONS(5014), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(3523), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4925), 10, + ACTIONS(5016), 9, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [49108] = 7, + [50940] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3428), 3, + ACTIONS(5424), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(3524), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2587), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, + ACTIONS(5422), 10, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, sym_identifier, - ACTIONS(2589), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [49143] = 7, + [50975] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3429), 3, + ACTIONS(5954), 1, + anon_sym_LT2, + STATE(3525), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2575), 4, + ACTIONS(2652), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(2577), 9, + ACTIONS(2654), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325003,118 +329094,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49178] = 13, + [51012] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5956), 1, + anon_sym_SEMI, + ACTIONS(5101), 2, anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3430), 3, + STATE(3526), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4921), 6, + aux_sym_record_pattern_repeat1, + ACTIONS(5103), 9, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_RBRACK, - anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [49225] = 8, + [51049] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3435), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(4899), 2, + ACTIONS(5959), 1, + anon_sym_COMMA, + ACTIONS(5044), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3431), 3, + STATE(3527), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4901), 10, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 9, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [49262] = 7, + [51086] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3432), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2597), 4, + ACTIONS(5289), 1, anon_sym_COLON, + ACTIONS(5934), 1, anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2599), 9, + ACTIONS(5936), 1, anon_sym_COMMA, + ACTIONS(5938), 1, anon_sym_COLON_COLON, + ACTIONS(5940), 1, anon_sym_PIPE, + ACTIONS(5942), 1, anon_sym_AMP, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3528), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5053), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_PIPE_RBRACK, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [49297] = 7, + [51133] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5656), 1, - anon_sym_LPAREN, - STATE(3433), 3, + STATE(3529), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5654), 12, - anon_sym_EQ, + ACTIONS(5908), 13, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_with, anon_sym_new, anon_sym_static, @@ -325124,25 +329214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [49332] = 7, + [51166] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3434), 3, + STATE(3530), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2571), 4, + ACTIONS(2632), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - ACTIONS(2573), 9, + ACTIONS(2634), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325152,136 +329242,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49367] = 8, + [51201] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5765), 1, - anon_sym_SEMI, - ACTIONS(4931), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3435), 4, + STATE(3531), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4933), 9, - anon_sym_EQ, + ACTIONS(2662), 4, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_in, + sym_identifier, + ACTIONS(2664), 9, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [49404] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3436), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5745), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [49437] = 9, + anon_sym_LBRACK_RBRACK, + [51236] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4938), 1, - anon_sym_PIPE, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3437), 3, + ACTIONS(5962), 1, + anon_sym_DOT, + STATE(3537), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2517), 2, + anon_sym_and, + sym_identifier, + STATE(3532), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4940), 10, + ACTIONS(2523), 9, anon_sym_EQ, - anon_sym_as, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, anon_sym_LT2, - [49476] = 7, + anon_sym_LBRACK_RBRACK, + [51275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5770), 1, - anon_sym_LPAREN, - STATE(3438), 3, + STATE(3533), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5768), 12, - anon_sym_EQ, + ACTIONS(2734), 13, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [49511] = 7, + [51308] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5774), 1, + ACTIONS(5833), 1, anon_sym_LPAREN, - STATE(3439), 3, + STATE(3534), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5772), 12, + ACTIONS(5831), 12, anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -325294,50 +329355,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [49546] = 7, + [51343] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5778), 1, - anon_sym_LPAREN, - STATE(3440), 3, + ACTIONS(5032), 1, + anon_sym_PIPE, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3535), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5776), 12, + ACTIONS(5034), 10, anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [49581] = 7, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + anon_sym_LT2, + [51382] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5782), 1, + ACTIONS(5885), 1, anon_sym_LPAREN, - STATE(3441), 3, + STATE(3536), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5780), 12, + ACTIONS(5883), 12, anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -325350,25 +329413,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [49616] = 8, + [51417] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5962), 1, + anon_sym_DOT, + STATE(3543), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(2594), 2, + anon_sym_and, + sym_identifier, + STATE(3537), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2596), 9, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [51456] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3431), 1, + STATE(3526), 1, aux_sym_record_pattern_repeat1, - ACTIONS(4909), 2, + ACTIONS(5059), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(3442), 3, + STATE(3538), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4911), 10, + ACTIONS(5061), 10, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -325379,52 +329472,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [49653] = 6, + [51493] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3443), 3, + STATE(3539), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5358), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(2636), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + ACTIONS(2638), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [49686] = 7, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [51528] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3444), 3, + STATE(3540), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2583), 4, + ACTIONS(2675), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2585), 9, + ACTIONS(2677), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325434,52 +329528,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49721] = 6, + [51563] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3445), 3, + ACTIONS(5966), 1, + anon_sym_LPAREN, + STATE(3541), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2649), 13, - sym__newline, - sym__dedent, + ACTIONS(5964), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_default, anon_sym_val, - [49754] = 7, + [51598] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3446), 3, + STATE(3542), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2587), 4, + ACTIONS(2632), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2589), 9, + ACTIONS(2634), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325489,27 +329584,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49789] = 9, + [51633] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5784), 1, + ACTIONS(5968), 1, anon_sym_DOT, - STATE(3467), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2492), 2, + ACTIONS(2603), 2, anon_sym_and, sym_identifier, - STATE(3447), 3, + STATE(3543), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2494), 9, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -325519,25 +329613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49828] = 7, + [51670] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3448), 3, + STATE(3544), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2579), 4, + ACTIONS(2640), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2581), 9, + ACTIONS(2642), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325547,25 +329641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49863] = 7, + [51705] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3449), 3, + STATE(3545), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2597), 4, + ACTIONS(2685), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2599), 9, + ACTIONS(2687), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325575,83 +329669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [49898] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5784), 1, - anon_sym_DOT, - STATE(3447), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(2473), 2, - anon_sym_and, - sym_identifier, - STATE(3450), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2475), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [49937] = 7, + [51740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3451), 3, + STATE(3546), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2579), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2581), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(5557), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [49972] = 7, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [51773] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3452), 3, + STATE(3547), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2583), 4, + ACTIONS(2628), 4, anon_sym_COLON, anon_sym_as, anon_sym_when, sym_identifier, - ACTIONS(2585), 9, + ACTIONS(2630), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325661,78 +329724,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50007] = 7, + [51808] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3453), 3, + ACTIONS(5036), 1, + anon_sym_PIPE, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3548), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2571), 4, - anon_sym_COLON, + ACTIONS(5038), 10, + anon_sym_EQ, anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2573), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_PIPE_RBRACK, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [50042] = 7, + [51847] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3454), 3, + STATE(3549), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2567), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2569), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(5525), 13, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [50077] = 7, + anon_sym_with, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [51880] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5706), 1, + ACTIONS(5973), 1, anon_sym_LPAREN, - STATE(3455), 3, + STATE(3550), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5704), 12, + ACTIONS(5971), 12, anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -325745,25 +329809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [50112] = 7, + [51915] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3456), 3, + STATE(3551), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2575), 4, + ACTIONS(2640), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - ACTIONS(2577), 9, + ACTIONS(2642), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325773,117 +329837,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50147] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5256), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(3457), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(5254), 10, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - sym_identifier, - [50182] = 13, + [51950] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(5754), 1, + ACTIONS(5936), 1, anon_sym_COMMA, - ACTIONS(5756), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(5758), 1, + ACTIONS(5940), 1, anon_sym_PIPE, - ACTIONS(5760), 1, + ACTIONS(5942), 1, anon_sym_AMP, - STATE(3459), 1, + STATE(3523), 1, aux_sym_repeat_pattern_repeat1, - STATE(3458), 3, + STATE(3552), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3736), 6, + ACTIONS(5123), 6, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_PIPE_RBRACK, anon_sym_LT2, - [50229] = 9, + [51997] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5754), 1, - anon_sym_COMMA, - STATE(3423), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4915), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(3459), 3, + STATE(3553), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4917), 9, - anon_sym_EQ, + ACTIONS(2662), 4, + anon_sym_COLON, anon_sym_as, - anon_sym_RPAREN, + anon_sym_when, + sym_identifier, + ACTIONS(2664), 9, + anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_PIPE_RBRACK, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [50268] = 7, + anon_sym_LBRACK_RBRACK, + [52032] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3460), 3, + STATE(3554), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2591), 4, + ACTIONS(2675), 4, anon_sym_COLON, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(2593), 9, + ACTIONS(2677), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325893,25 +329927,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50303] = 7, + [52067] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3461), 3, + STATE(3555), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2626), 4, + ACTIONS(2636), 4, anon_sym_COLON, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(2628), 9, + ACTIONS(2638), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325921,25 +329955,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50338] = 7, + [52102] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3462), 3, + ACTIONS(5975), 1, + anon_sym_LT2, + STATE(3556), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2626), 4, + ACTIONS(2652), 4, anon_sym_COLON, anon_sym_as, anon_sym_in, sym_identifier, - ACTIONS(2628), 9, + ACTIONS(2654), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -325947,93 +329983,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [50373] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3820), 1, - anon_sym_interface, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5786), 1, - anon_sym_with, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - STATE(4194), 1, - sym__object_members, - ACTIONS(3818), 2, - sym__newline, - sym__dedent, - STATE(3463), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [50428] = 7, + [52139] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3464), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2591), 4, + ACTIONS(5289), 1, anon_sym_COLON, + ACTIONS(5934), 1, anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2593), 9, + ACTIONS(5936), 1, anon_sym_COMMA, + ACTIONS(5938), 1, anon_sym_COLON_COLON, + ACTIONS(5940), 1, anon_sym_PIPE, + ACTIONS(5942), 1, anon_sym_AMP, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3557), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3858), 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_PIPE_RBRACK, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [50463] = 7, + [52186] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3465), 3, + STATE(3558), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 4, + ACTIONS(2679), 4, anon_sym_COLON, anon_sym_as, - anon_sym_in, + anon_sym_when, sym_identifier, - ACTIONS(2607), 9, + ACTIONS(2681), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -326043,25 +330046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50498] = 7, + [52221] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3466), 3, + STATE(3559), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2605), 4, + ACTIONS(2615), 4, anon_sym_COLON, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - ACTIONS(2607), 9, + ACTIONS(2621), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -326071,118 +330074,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [50533] = 8, + [52256] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2459), 1, + anon_sym_l, + ACTIONS(2461), 1, + aux_sym_uint32_token1, + ACTIONS(2467), 1, + anon_sym_L, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5788), 1, - anon_sym_DOT, - ACTIONS(2483), 2, - anon_sym_and, - sym_identifier, - STATE(3467), 4, + ACTIONS(5977), 1, + anon_sym_y, + ACTIONS(5979), 1, + anon_sym_uy, + ACTIONS(5981), 1, + anon_sym_s, + ACTIONS(5983), 1, + anon_sym_us, + ACTIONS(5985), 1, + anon_sym_n, + ACTIONS(5987), 1, + anon_sym_un, + ACTIONS(5989), 1, + aux_sym_uint64_token1, + ACTIONS(5991), 1, + anon_sym_lf, + ACTIONS(5993), 1, + anon_sym_LF, + STATE(3560), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [50570] = 13, + [52310] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, + ACTIONS(5995), 1, anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3468), 3, + STATE(3561), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4855), 6, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_LT2, - [50617] = 8, + ACTIONS(4016), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [52344] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5791), 1, - anon_sym_LT2, - STATE(3469), 3, + ACTIONS(4743), 1, + anon_sym_l, + ACTIONS(4745), 1, + aux_sym_uint32_token1, + ACTIONS(4751), 1, + anon_sym_L, + ACTIONS(5997), 1, + anon_sym_y, + ACTIONS(5999), 1, + anon_sym_uy, + ACTIONS(6001), 1, + anon_sym_s, + ACTIONS(6003), 1, + anon_sym_us, + ACTIONS(6005), 1, + anon_sym_n, + ACTIONS(6007), 1, + anon_sym_un, + ACTIONS(6009), 1, + aux_sym_uint64_token1, + ACTIONS(6011), 1, + anon_sym_lf, + ACTIONS(6013), 1, + anon_sym_LF, + STATE(3562), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2620), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - sym_identifier, - ACTIONS(2622), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [50654] = 7, + [52398] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2269), 1, + anon_sym_l, + ACTIONS(2271), 1, + aux_sym_uint32_token1, + ACTIONS(2277), 1, + anon_sym_L, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5250), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(3470), 3, + ACTIONS(6015), 1, + anon_sym_y, + ACTIONS(6017), 1, + anon_sym_uy, + ACTIONS(6019), 1, + anon_sym_s, + ACTIONS(6021), 1, + anon_sym_us, + ACTIONS(6023), 1, + anon_sym_n, + ACTIONS(6025), 1, + anon_sym_un, + ACTIONS(6027), 1, + aux_sym_uint64_token1, + ACTIONS(6029), 1, + anon_sym_lf, + ACTIONS(6031), 1, + anon_sym_LF, + STATE(3563), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5248), 10, - anon_sym_do, - anon_sym_let, + [52452] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6033), 1, + anon_sym_COMMA, + STATE(3564), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(3988), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_static, anon_sym_member, @@ -326190,129 +330239,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - sym_identifier, - [50689] = 8, + [52486] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5793), 1, - anon_sym_LT2, - STATE(3471), 3, + ACTIONS(6035), 1, + anon_sym_COMMA, + STATE(3565), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2620), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - ACTIONS(2622), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [50726] = 17, + ACTIONS(3988), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [52520] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2433), 1, - anon_sym_l, - ACTIONS(2435), 1, - aux_sym_uint32_token1, - ACTIONS(2441), 1, - anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5795), 1, + ACTIONS(5801), 1, anon_sym_y, - ACTIONS(5797), 1, + ACTIONS(5803), 1, anon_sym_uy, - ACTIONS(5799), 1, + ACTIONS(5805), 1, anon_sym_s, - ACTIONS(5801), 1, + ACTIONS(5807), 1, anon_sym_us, - ACTIONS(5803), 1, + ACTIONS(5811), 1, + aux_sym_uint32_token1, + ACTIONS(5813), 1, anon_sym_n, - ACTIONS(5805), 1, + ACTIONS(5815), 1, anon_sym_un, - ACTIONS(5807), 1, + ACTIONS(5819), 1, aux_sym_uint64_token1, - ACTIONS(5809), 1, + ACTIONS(6037), 1, + anon_sym_l, + ACTIONS(6039), 1, + anon_sym_L, + ACTIONS(6041), 1, anon_sym_lf, - ACTIONS(5811), 1, + ACTIONS(6043), 1, anon_sym_LF, - STATE(3472), 3, + STATE(3566), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [52574] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(2648), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(3567), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2650), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [52608] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6045), 1, + anon_sym_COMMA, + STATE(3568), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4006), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [52642] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6047), 1, + anon_sym_COMMA, + STATE(3569), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4006), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [52676] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6049), 1, + anon_sym_COMMA, + STATE(3570), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [50780] = 17, + ACTIONS(4016), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [52710] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2325), 1, + ACTIONS(2487), 1, anon_sym_l, - ACTIONS(2327), 1, + ACTIONS(2489), 1, aux_sym_uint32_token1, - ACTIONS(2333), 1, + ACTIONS(2495), 1, anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5813), 1, + ACTIONS(6051), 1, anon_sym_y, - ACTIONS(5815), 1, + ACTIONS(6053), 1, anon_sym_uy, - ACTIONS(5817), 1, + ACTIONS(6055), 1, anon_sym_s, - ACTIONS(5819), 1, + ACTIONS(6057), 1, anon_sym_us, - ACTIONS(5821), 1, + ACTIONS(6059), 1, anon_sym_n, - ACTIONS(5823), 1, + ACTIONS(6061), 1, anon_sym_un, - ACTIONS(5825), 1, + ACTIONS(6063), 1, aux_sym_uint64_token1, - ACTIONS(5827), 1, + ACTIONS(6065), 1, anon_sym_lf, - ACTIONS(5829), 1, + ACTIONS(6067), 1, anon_sym_LF, - STATE(3473), 3, + STATE(3571), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [50834] = 6, + [52764] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3474), 3, + ACTIONS(6069), 1, + anon_sym_with, + STATE(3572), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2649), 12, + ACTIONS(3994), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, @@ -326320,560 +330475,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [50866] = 17, + [52798] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4977), 1, + ACTIONS(4799), 1, + anon_sym_l, + ACTIONS(4801), 1, + aux_sym_uint32_token1, + ACTIONS(4807), 1, + anon_sym_L, + ACTIONS(6071), 1, anon_sym_y, - ACTIONS(4979), 1, + ACTIONS(6073), 1, anon_sym_uy, - ACTIONS(4981), 1, + ACTIONS(6075), 1, anon_sym_s, - ACTIONS(4983), 1, + ACTIONS(6077), 1, anon_sym_us, - ACTIONS(4987), 1, - aux_sym_uint32_token1, - ACTIONS(4989), 1, + ACTIONS(6079), 1, anon_sym_n, - ACTIONS(4991), 1, + ACTIONS(6081), 1, anon_sym_un, - ACTIONS(4995), 1, + ACTIONS(6083), 1, aux_sym_uint64_token1, - ACTIONS(5831), 1, + ACTIONS(6085), 1, + anon_sym_lf, + ACTIONS(6087), 1, + anon_sym_LF, + STATE(3573), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [52852] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4912), 1, anon_sym_l, - ACTIONS(5833), 1, + ACTIONS(4914), 1, + aux_sym_uint32_token1, + ACTIONS(4920), 1, anon_sym_L, - ACTIONS(5835), 1, + ACTIONS(6089), 1, + anon_sym_y, + ACTIONS(6091), 1, + anon_sym_uy, + ACTIONS(6093), 1, + anon_sym_s, + ACTIONS(6095), 1, + anon_sym_us, + ACTIONS(6097), 1, + anon_sym_n, + ACTIONS(6099), 1, + anon_sym_un, + ACTIONS(6101), 1, + aux_sym_uint64_token1, + ACTIONS(6103), 1, anon_sym_lf, - ACTIONS(5837), 1, + ACTIONS(6105), 1, anon_sym_LF, - STATE(3475), 3, + STATE(3574), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [50920] = 17, + [52906] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2287), 1, + ACTIONS(2385), 1, anon_sym_l, - ACTIONS(2289), 1, + ACTIONS(2387), 1, aux_sym_uint32_token1, - ACTIONS(2295), 1, + ACTIONS(2393), 1, anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5839), 1, + ACTIONS(6107), 1, anon_sym_y, - ACTIONS(5841), 1, + ACTIONS(6109), 1, anon_sym_uy, - ACTIONS(5843), 1, + ACTIONS(6111), 1, anon_sym_s, - ACTIONS(5845), 1, + ACTIONS(6113), 1, anon_sym_us, - ACTIONS(5847), 1, + ACTIONS(6115), 1, anon_sym_n, - ACTIONS(5849), 1, + ACTIONS(6117), 1, anon_sym_un, - ACTIONS(5851), 1, + ACTIONS(6119), 1, aux_sym_uint64_token1, - ACTIONS(5853), 1, + ACTIONS(6121), 1, anon_sym_lf, - ACTIONS(5855), 1, + ACTIONS(6123), 1, anon_sym_LF, - STATE(3476), 3, + STATE(3575), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [50974] = 17, + [52960] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2263), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4771), 1, anon_sym_l, - ACTIONS(2265), 1, + ACTIONS(4773), 1, aux_sym_uint32_token1, - ACTIONS(2271), 1, + ACTIONS(4779), 1, anon_sym_L, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5857), 1, + ACTIONS(6125), 1, anon_sym_y, - ACTIONS(5859), 1, + ACTIONS(6127), 1, anon_sym_uy, - ACTIONS(5861), 1, + ACTIONS(6129), 1, anon_sym_s, - ACTIONS(5863), 1, + ACTIONS(6131), 1, anon_sym_us, - ACTIONS(5865), 1, + ACTIONS(6133), 1, anon_sym_n, - ACTIONS(5867), 1, + ACTIONS(6135), 1, anon_sym_un, - ACTIONS(5869), 1, + ACTIONS(6137), 1, aux_sym_uint64_token1, - ACTIONS(5871), 1, + ACTIONS(6139), 1, anon_sym_lf, - ACTIONS(5873), 1, + ACTIONS(6141), 1, anon_sym_LF, - STATE(3477), 3, + STATE(3576), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51028] = 17, + [53014] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2457), 1, + ACTIONS(2297), 1, anon_sym_l, - ACTIONS(2459), 1, + ACTIONS(2299), 1, aux_sym_uint32_token1, - ACTIONS(2465), 1, + ACTIONS(2305), 1, anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5875), 1, + ACTIONS(6143), 1, anon_sym_y, - ACTIONS(5877), 1, + ACTIONS(6145), 1, anon_sym_uy, - ACTIONS(5879), 1, + ACTIONS(6147), 1, anon_sym_s, - ACTIONS(5881), 1, + ACTIONS(6149), 1, anon_sym_us, - ACTIONS(5883), 1, + ACTIONS(6151), 1, anon_sym_n, - ACTIONS(5885), 1, + ACTIONS(6153), 1, anon_sym_un, - ACTIONS(5887), 1, + ACTIONS(6155), 1, aux_sym_uint64_token1, - ACTIONS(5889), 1, + ACTIONS(6157), 1, anon_sym_lf, - ACTIONS(5891), 1, + ACTIONS(6159), 1, anon_sym_LF, - STATE(3478), 3, + STATE(3577), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51082] = 17, + [53068] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(2603), 2, + anon_sym_and, + sym_identifier, + STATE(3578), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2605), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [53102] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2409), 1, + ACTIONS(2535), 1, anon_sym_l, - ACTIONS(2411), 1, + ACTIONS(2537), 1, aux_sym_uint32_token1, - ACTIONS(2417), 1, + ACTIONS(2543), 1, anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5893), 1, + ACTIONS(6161), 1, anon_sym_y, - ACTIONS(5895), 1, + ACTIONS(6163), 1, anon_sym_uy, - ACTIONS(5897), 1, + ACTIONS(6165), 1, anon_sym_s, - ACTIONS(5899), 1, + ACTIONS(6167), 1, anon_sym_us, - ACTIONS(5901), 1, + ACTIONS(6169), 1, anon_sym_n, - ACTIONS(5903), 1, + ACTIONS(6171), 1, anon_sym_un, - ACTIONS(5905), 1, + ACTIONS(6173), 1, aux_sym_uint64_token1, - ACTIONS(5907), 1, + ACTIONS(6175), 1, anon_sym_lf, - ACTIONS(5909), 1, + ACTIONS(6177), 1, anon_sym_LF, - STATE(3479), 3, + STATE(3579), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51136] = 7, + [53156] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5911), 1, - anon_sym_with, - STATE(3480), 3, + ACTIONS(6179), 1, + anon_sym_COLON_GT, + ACTIONS(2658), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(3580), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3896), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [51170] = 7, + ACTIONS(2660), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [53192] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2241), 1, + anon_sym_l, + ACTIONS(2243), 1, + aux_sym_uint32_token1, + ACTIONS(2249), 1, + anon_sym_L, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5913), 1, - anon_sym_with, - STATE(3481), 3, + ACTIONS(6181), 1, + anon_sym_y, + ACTIONS(6183), 1, + anon_sym_uy, + ACTIONS(6185), 1, + anon_sym_s, + ACTIONS(6187), 1, + anon_sym_us, + ACTIONS(6189), 1, + anon_sym_n, + ACTIONS(6191), 1, + anon_sym_un, + ACTIONS(6193), 1, + aux_sym_uint64_token1, + ACTIONS(6195), 1, + anon_sym_lf, + ACTIONS(6197), 1, + anon_sym_LF, + STATE(3581), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3902), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [51204] = 7, + [53246] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(2431), 1, + anon_sym_l, + ACTIONS(2433), 1, + aux_sym_uint32_token1, + ACTIONS(2439), 1, + anon_sym_L, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6199), 1, + anon_sym_y, + ACTIONS(6201), 1, + anon_sym_uy, + ACTIONS(6203), 1, + anon_sym_s, + ACTIONS(6205), 1, + anon_sym_us, + ACTIONS(6207), 1, + anon_sym_n, + ACTIONS(6209), 1, + anon_sym_un, + ACTIONS(6211), 1, + aux_sym_uint64_token1, + ACTIONS(6213), 1, + anon_sym_lf, + ACTIONS(6215), 1, + anon_sym_LF, + STATE(3582), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [53300] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5915), 1, + ACTIONS(3940), 1, + sym__dedent, + ACTIONS(3942), 1, + anon_sym_interface, + ACTIONS(5493), 1, + sym_identifier, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6217), 1, anon_sym_with, - STATE(3482), 3, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + STATE(4508), 1, + sym__object_members, + STATE(3583), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3890), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [51238] = 17, + [53354] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4695), 1, - anon_sym_l, - ACTIONS(4697), 1, - aux_sym_uint32_token1, - ACTIONS(4703), 1, - anon_sym_L, - ACTIONS(5917), 1, - anon_sym_y, - ACTIONS(5919), 1, - anon_sym_uy, - ACTIONS(5921), 1, - anon_sym_s, - ACTIONS(5923), 1, - anon_sym_us, - ACTIONS(5925), 1, - anon_sym_n, - ACTIONS(5927), 1, - anon_sym_un, - ACTIONS(5929), 1, - aux_sym_uint64_token1, - ACTIONS(5931), 1, - anon_sym_lf, - ACTIONS(5933), 1, - anon_sym_LF, - STATE(3483), 3, + ACTIONS(2644), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(3584), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51292] = 17, + ACTIONS(2646), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [53388] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4647), 1, - anon_sym_l, - ACTIONS(4649), 1, - aux_sym_uint32_token1, - ACTIONS(4655), 1, - anon_sym_L, - ACTIONS(5935), 1, + ACTIONS(5127), 1, anon_sym_y, - ACTIONS(5937), 1, + ACTIONS(5129), 1, anon_sym_uy, - ACTIONS(5939), 1, + ACTIONS(5131), 1, anon_sym_s, - ACTIONS(5941), 1, + ACTIONS(5133), 1, anon_sym_us, - ACTIONS(5943), 1, + ACTIONS(5137), 1, + aux_sym_uint32_token1, + ACTIONS(5139), 1, anon_sym_n, - ACTIONS(5945), 1, + ACTIONS(5141), 1, anon_sym_un, - ACTIONS(5947), 1, + ACTIONS(5145), 1, aux_sym_uint64_token1, - ACTIONS(5949), 1, + ACTIONS(5765), 1, anon_sym_lf, - ACTIONS(5951), 1, + ACTIONS(6219), 1, + anon_sym_l, + ACTIONS(6221), 1, + anon_sym_L, + ACTIONS(6223), 1, anon_sym_LF, - STATE(3484), 3, + STATE(3585), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51346] = 17, + [53442] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4671), 1, + ACTIONS(2339), 1, anon_sym_l, - ACTIONS(4673), 1, + ACTIONS(2341), 1, aux_sym_uint32_token1, - ACTIONS(4679), 1, + ACTIONS(2347), 1, anon_sym_L, - ACTIONS(5953), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6225), 1, anon_sym_y, - ACTIONS(5955), 1, + ACTIONS(6227), 1, anon_sym_uy, - ACTIONS(5957), 1, + ACTIONS(6229), 1, anon_sym_s, - ACTIONS(5959), 1, + ACTIONS(6231), 1, anon_sym_us, - ACTIONS(5961), 1, + ACTIONS(6233), 1, anon_sym_n, - ACTIONS(5963), 1, + ACTIONS(6235), 1, anon_sym_un, - ACTIONS(5965), 1, + ACTIONS(6237), 1, aux_sym_uint64_token1, - ACTIONS(5967), 1, + ACTIONS(6239), 1, anon_sym_lf, - ACTIONS(5969), 1, + ACTIONS(6241), 1, anon_sym_LF, - STATE(3485), 3, + STATE(3586), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51400] = 8, + [53496] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5971), 1, - anon_sym_COLON_GT, - ACTIONS(2605), 3, - anon_sym_COLON, + ACTIONS(6243), 1, + anon_sym_STAR, + ACTIONS(2319), 2, anon_sym_and, sym_identifier, - STATE(3486), 3, + STATE(3587), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 8, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 8, anon_sym_EQ, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [51436] = 17, + [53532] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, ACTIONS(3818), 1, - sym__dedent, - ACTIONS(3820), 1, - anon_sym_interface, - ACTIONS(5330), 1, - sym_identifier, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - ACTIONS(5973), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6246), 1, anon_sym_with, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(4372), 1, - sym__object_members, - STATE(3487), 3, + STATE(3588), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51490] = 7, + ACTIONS(4024), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [53566] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2601), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(3488), 3, + ACTIONS(4827), 1, + anon_sym_l, + ACTIONS(4829), 1, + aux_sym_uint32_token1, + ACTIONS(4835), 1, + anon_sym_L, + ACTIONS(6248), 1, + anon_sym_y, + ACTIONS(6250), 1, + anon_sym_uy, + ACTIONS(6252), 1, + anon_sym_s, + ACTIONS(6254), 1, + anon_sym_us, + ACTIONS(6256), 1, + anon_sym_n, + ACTIONS(6258), 1, + anon_sym_un, + ACTIONS(6260), 1, + aux_sym_uint64_token1, + ACTIONS(6262), 1, + anon_sym_lf, + ACTIONS(6264), 1, + anon_sym_LF, + STATE(3589), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2603), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [51524] = 8, + [53620] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5975), 1, - anon_sym_STAR, - ACTIONS(2343), 2, - anon_sym_and, + ACTIONS(6266), 1, sym_identifier, - STATE(3489), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 8, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6268), 1, anon_sym_DASH_GT, - anon_sym_GT, + ACTIONS(6270), 1, + anon_sym_STAR, + ACTIONS(6272), 1, anon_sym_LT2, + ACTIONS(6274), 1, anon_sym_LBRACK_RBRACK, - [51560] = 17, + ACTIONS(6278), 1, + sym__indent, + STATE(3830), 1, + aux_sym__compound_type_repeat1, + STATE(3921), 1, + sym_long_identifier, + STATE(3931), 1, + sym_type_arguments, + STATE(4735), 1, + sym__expression_block, + ACTIONS(6276), 2, + sym__newline, + sym__dedent, + STATE(3590), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [53672] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2504), 1, + ACTIONS(2563), 1, anon_sym_l, - ACTIONS(2506), 1, + ACTIONS(2565), 1, aux_sym_uint32_token1, - ACTIONS(2512), 1, + ACTIONS(2571), 1, anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5978), 1, + ACTIONS(6280), 1, anon_sym_y, - ACTIONS(5980), 1, + ACTIONS(6282), 1, anon_sym_uy, - ACTIONS(5982), 1, + ACTIONS(6284), 1, anon_sym_s, - ACTIONS(5984), 1, + ACTIONS(6286), 1, anon_sym_us, - ACTIONS(5986), 1, + ACTIONS(6288), 1, anon_sym_n, - ACTIONS(5988), 1, + ACTIONS(6290), 1, anon_sym_un, - ACTIONS(5990), 1, + ACTIONS(6292), 1, aux_sym_uint64_token1, - ACTIONS(5992), 1, + ACTIONS(6294), 1, anon_sym_lf, - ACTIONS(5994), 1, + ACTIONS(6296), 1, anon_sym_LF, - STATE(3490), 3, + STATE(3591), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51614] = 7, + [53726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5996), 1, - anon_sym_COMMA, - STATE(3491), 3, + STATE(3592), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3872), 11, - sym__newline, + ACTIONS(2734), 12, sym__dedent, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_static, anon_sym_member, @@ -326881,22 +331155,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [51648] = 7, + [53758] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5998), 1, + ACTIONS(5897), 1, + anon_sym_STAR, + STATE(3587), 1, + aux_sym__compound_type_repeat1, + ACTIONS(2587), 2, + anon_sym_and, + sym_identifier, + STATE(3593), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2589), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3492), 3, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [53796] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6298), 1, + anon_sym_with, + STATE(3594), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3872), 11, + ACTIONS(4000), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -326908,354 +331211,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [51682] = 16, + [53830] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6306), 1, + anon_sym_DQUOTE, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3595), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [53871] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5331), 1, + anon_sym_new, + ACTIONS(6310), 1, + anon_sym_LPAREN, + ACTIONS(6312), 1, + anon_sym_static, + ACTIONS(6314), 1, + anon_sym_member, + ACTIONS(6316), 1, + anon_sym_abstract, + ACTIONS(6320), 1, + anon_sym_val, + STATE(2189), 1, + sym_additional_constr_defn, + STATE(4384), 1, + sym_access_modifier, + ACTIONS(6318), 2, + anon_sym_override, + anon_sym_default, + STATE(3596), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [53920] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6322), 1, + anon_sym_DQUOTE, + STATE(3606), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3597), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [53961] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6324), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3598), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54002] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6000), 1, + ACTIONS(6266), 1, sym_identifier, - ACTIONS(6002), 1, + ACTIONS(6268), 1, anon_sym_DASH_GT, - ACTIONS(6004), 1, + ACTIONS(6270), 1, anon_sym_STAR, - ACTIONS(6006), 1, + ACTIONS(6272), 1, anon_sym_LT2, - ACTIONS(6008), 1, + ACTIONS(6274), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6012), 1, - sym__indent, - STATE(3750), 1, + STATE(3830), 1, aux_sym__compound_type_repeat1, - STATE(3850), 1, - sym_type_arguments, - STATE(3859), 1, + STATE(3921), 1, sym_long_identifier, - STATE(4324), 1, - sym__expression_block, - ACTIONS(6010), 2, + STATE(3931), 1, + sym_type_arguments, + ACTIONS(2409), 3, sym__newline, + sym__indent, sym__dedent, - STATE(3493), 3, + STATE(3599), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51734] = 17, - ACTIONS(3), 1, + [54049] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(2545), 1, - anon_sym_l, - ACTIONS(2547), 1, - aux_sym_uint32_token1, - ACTIONS(2553), 1, - anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(6326), 1, + anon_sym_DQUOTE, + STATE(3609), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3600), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54090] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6014), 1, - anon_sym_y, - ACTIONS(6016), 1, - anon_sym_uy, - ACTIONS(6018), 1, - anon_sym_s, - ACTIONS(6020), 1, - anon_sym_us, - ACTIONS(6022), 1, - anon_sym_n, - ACTIONS(6024), 1, - anon_sym_un, - ACTIONS(6026), 1, - aux_sym_uint64_token1, - ACTIONS(6028), 1, - anon_sym_lf, - ACTIONS(6030), 1, - anon_sym_LF, - STATE(3494), 3, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6328), 1, + anon_sym_DQUOTE, + STATE(3595), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3601), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51788] = 7, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54131] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2483), 2, - anon_sym_and, + ACTIONS(6266), 1, sym_identifier, - STATE(3495), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2485), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6268), 1, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_GT, + ACTIONS(6270), 1, anon_sym_STAR, + ACTIONS(6272), 1, anon_sym_LT2, + ACTIONS(6274), 1, anon_sym_LBRACK_RBRACK, - [51822] = 9, + STATE(3830), 1, + aux_sym__compound_type_repeat1, + STATE(3921), 1, + sym_long_identifier, + STATE(3931), 1, + sym_type_arguments, + ACTIONS(2321), 3, + sym__newline, + sym__indent, + sym__dedent, + STATE(3602), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [54178] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6330), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3603), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54219] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6332), 1, + anon_sym_DQUOTE, + STATE(3598), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3604), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54260] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5729), 1, + ACTIONS(6266), 1, + sym_identifier, + ACTIONS(6268), 1, + anon_sym_DASH_GT, + ACTIONS(6270), 1, anon_sym_STAR, - STATE(3489), 1, + ACTIONS(6272), 1, + anon_sym_LT2, + ACTIONS(6274), 1, + anon_sym_LBRACK_RBRACK, + STATE(3830), 1, aux_sym__compound_type_repeat1, - ACTIONS(2479), 2, - anon_sym_and, - sym_identifier, - STATE(3496), 3, + STATE(3921), 1, + sym_long_identifier, + STATE(3931), 1, + sym_type_arguments, + ACTIONS(2375), 3, + sym__newline, + sym__indent, + sym__dedent, + STATE(3605), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2481), 8, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [51860] = 7, + [54307] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6334), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3606), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54348] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6336), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3607), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54389] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6032), 1, - anon_sym_COMMA, - STATE(3497), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3866), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5349), 1, anon_sym_new, + ACTIONS(6310), 1, + anon_sym_LPAREN, + ACTIONS(6338), 1, anon_sym_static, + ACTIONS(6340), 1, anon_sym_member, + ACTIONS(6342), 1, anon_sym_abstract, + ACTIONS(6346), 1, + anon_sym_val, + STATE(2181), 1, + sym_additional_constr_defn, + STATE(4275), 1, + sym_access_modifier, + ACTIONS(6344), 2, anon_sym_override, anon_sym_default, - anon_sym_val, - [51894] = 17, - ACTIONS(3), 1, + STATE(3608), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [54438] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4621), 1, - anon_sym_l, - ACTIONS(4623), 1, - aux_sym_uint32_token1, - ACTIONS(4629), 1, - anon_sym_L, - ACTIONS(6034), 1, - anon_sym_y, - ACTIONS(6036), 1, - anon_sym_uy, - ACTIONS(6038), 1, - anon_sym_s, - ACTIONS(6040), 1, - anon_sym_us, - ACTIONS(6042), 1, - anon_sym_n, - ACTIONS(6044), 1, - anon_sym_un, - ACTIONS(6046), 1, - aux_sym_uint64_token1, - ACTIONS(6048), 1, - anon_sym_lf, - ACTIONS(6050), 1, - anon_sym_LF, - STATE(3498), 3, + ACTIONS(6348), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3609), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [51948] = 17, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54479] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4777), 1, - anon_sym_l, - ACTIONS(4779), 1, - aux_sym_uint32_token1, - ACTIONS(4785), 1, - anon_sym_L, - ACTIONS(6052), 1, - anon_sym_y, - ACTIONS(6054), 1, - anon_sym_uy, - ACTIONS(6056), 1, - anon_sym_s, - ACTIONS(6058), 1, - anon_sym_us, - ACTIONS(6060), 1, - anon_sym_n, - ACTIONS(6062), 1, - anon_sym_un, - ACTIONS(6064), 1, - aux_sym_uint64_token1, - ACTIONS(6066), 1, - anon_sym_lf, - ACTIONS(6068), 1, - anon_sym_LF, - STATE(3499), 3, + ACTIONS(6266), 1, + sym_identifier, + ACTIONS(6268), 1, + anon_sym_DASH_GT, + ACTIONS(6270), 1, + anon_sym_STAR, + ACTIONS(6272), 1, + anon_sym_LT2, + ACTIONS(6274), 1, + anon_sym_LBRACK_RBRACK, + STATE(3830), 1, + aux_sym__compound_type_repeat1, + STATE(3921), 1, + sym_long_identifier, + STATE(3931), 1, + sym_type_arguments, + ACTIONS(2361), 3, + sym__newline, + sym__indent, + sym__dedent, + STATE(3610), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [52002] = 17, - ACTIONS(3), 1, + [54526] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(2235), 1, - anon_sym_l, - ACTIONS(2237), 1, - aux_sym_uint32_token1, - ACTIONS(2243), 1, - anon_sym_L, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6070), 1, - anon_sym_y, - ACTIONS(6072), 1, - anon_sym_uy, - ACTIONS(6074), 1, - anon_sym_s, - ACTIONS(6076), 1, - anon_sym_us, - ACTIONS(6078), 1, - anon_sym_n, - ACTIONS(6080), 1, - anon_sym_un, - ACTIONS(6082), 1, - aux_sym_uint64_token1, - ACTIONS(6084), 1, - anon_sym_lf, - ACTIONS(6086), 1, - anon_sym_LF, - STATE(3500), 3, + ACTIONS(6350), 1, + anon_sym_DQUOTE, + STATE(3617), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3611), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [52056] = 7, - ACTIONS(3), 1, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54567] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(2609), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(3501), 3, + ACTIONS(6352), 1, + anon_sym_DQUOTE, + STATE(3603), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3612), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2611), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [52090] = 17, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54608] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5625), 1, - anon_sym_y, - ACTIONS(5627), 1, - anon_sym_uy, - ACTIONS(5629), 1, - anon_sym_s, - ACTIONS(5631), 1, - anon_sym_us, - ACTIONS(5635), 1, - aux_sym_uint32_token1, - ACTIONS(5637), 1, - anon_sym_n, - ACTIONS(5639), 1, - anon_sym_un, - ACTIONS(5643), 1, - aux_sym_uint64_token1, - ACTIONS(6088), 1, - anon_sym_l, - ACTIONS(6090), 1, - anon_sym_L, - ACTIONS(6092), 1, - anon_sym_lf, - ACTIONS(6094), 1, - anon_sym_LF, - STATE(3502), 3, + ACTIONS(5083), 1, + anon_sym_COLON, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(3673), 1, + aux_sym_record_pattern_repeat1, + STATE(3613), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [52144] = 7, + ACTIONS(5085), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [54645] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6096), 1, + ACTIONS(6356), 1, anon_sym_COMMA, - STATE(3503), 3, + STATE(3614), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3866), 11, - sym__newline, + ACTIONS(4016), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327266,23 +331825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52178] = 7, + [54678] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6098), 1, + ACTIONS(6358), 1, anon_sym_COMMA, - STATE(3504), 3, + STATE(3615), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3878), 11, - sym__newline, + ACTIONS(4016), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327293,60 +331851,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52212] = 17, + [54711] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6360), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3616), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54752] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6362), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3617), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54793] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2375), 1, - anon_sym_l, - ACTIONS(2377), 1, - aux_sym_uint32_token1, - ACTIONS(2383), 1, - anon_sym_L, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6100), 1, - anon_sym_y, - ACTIONS(6102), 1, - anon_sym_uy, - ACTIONS(6104), 1, - anon_sym_s, - ACTIONS(6106), 1, - anon_sym_us, - ACTIONS(6108), 1, - anon_sym_n, - ACTIONS(6110), 1, - anon_sym_un, - ACTIONS(6112), 1, - aux_sym_uint64_token1, - ACTIONS(6114), 1, - anon_sym_lf, - ACTIONS(6116), 1, - anon_sym_LF, - STATE(3505), 3, + STATE(3618), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [52266] = 7, + ACTIONS(4052), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [54824] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6118), 1, + ACTIONS(6364), 1, anon_sym_COMMA, - STATE(3506), 3, + STATE(3619), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3878), 11, - sym__newline, + ACTIONS(3988), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327357,21 +331962,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52300] = 6, + [54857] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3507), 3, + ACTIONS(6366), 1, + anon_sym_COMMA, + STATE(3620), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3922), 11, - sym__newline, + ACTIONS(3988), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327382,75 +331988,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52331] = 11, + [54890] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6126), 1, - anon_sym_DQUOTE, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - STATE(3541), 1, + ACTIONS(6368), 1, + anon_sym_DQUOTE, + STATE(3607), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3508), 3, + STATE(3621), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [52372] = 6, - ACTIONS(3), 1, + [54931] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3509), 3, + ACTIONS(6370), 1, + anon_sym_DQUOTE, + STATE(3628), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3622), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3982), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [52403] = 6, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [54972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3510), 3, + STATE(3623), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3958), 11, + ACTIONS(4056), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -327462,20 +332073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52434] = 6, + [55003] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3511), 3, + STATE(3624), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3912), 11, + ACTIONS(4082), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -327487,20 +332098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52465] = 6, + [55034] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3512), 3, + STATE(3625), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3918), 11, + ACTIONS(4098), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -327512,22 +332123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52496] = 7, + [55065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6130), 1, - anon_sym_COMMA, - STATE(3513), 3, + STATE(3626), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3866), 10, + ACTIONS(4046), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327538,23 +332148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [52529] = 7, + [55096] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2626), 2, + ACTIONS(2640), 2, anon_sym_and, sym_identifier, - STATE(3514), 3, + STATE(3627), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2628), 9, + ACTIONS(2642), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -327564,326 +332174,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [52562] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6132), 1, - anon_sym_with, - STATE(3515), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3890), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [52595] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6134), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3516), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52636] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5172), 1, - anon_sym_new, - ACTIONS(6136), 1, - anon_sym_LPAREN, - ACTIONS(6138), 1, - anon_sym_static, - ACTIONS(6140), 1, - anon_sym_member, - ACTIONS(6142), 1, - anon_sym_abstract, - ACTIONS(6146), 1, - anon_sym_val, - STATE(2135), 1, - sym_additional_constr_defn, - STATE(4255), 1, - sym_access_modifier, - ACTIONS(6144), 2, - anon_sym_override, - anon_sym_default, - STATE(3517), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [52685] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6148), 1, - anon_sym_DQUOTE, - STATE(3582), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3518), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52726] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6150), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3519), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52767] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5190), 1, - anon_sym_new, - ACTIONS(6136), 1, - anon_sym_LPAREN, - ACTIONS(6152), 1, - anon_sym_static, - ACTIONS(6154), 1, - anon_sym_member, - ACTIONS(6156), 1, - anon_sym_abstract, - ACTIONS(6160), 1, - anon_sym_val, - STATE(2117), 1, - sym_additional_constr_defn, - STATE(4240), 1, - sym_access_modifier, - ACTIONS(6158), 2, - anon_sym_override, - anon_sym_default, - STATE(3520), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [52816] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6162), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3521), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52857] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6164), 1, - anon_sym_DQUOTE, - STATE(3516), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3522), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52898] = 11, + [55129] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6166), 1, + ACTIONS(6372), 1, anon_sym_DQUOTE, - STATE(3571), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3523), 3, + STATE(3628), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [52939] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [55170] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6168), 1, - anon_sym_DQUOTE, - STATE(3528), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3524), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6374), 1, + anon_sym_COMMA, + STATE(3629), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [52980] = 7, + ACTIONS(4006), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [55203] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6170), 1, - anon_sym_COMMA, - STATE(3525), 3, + STATE(3630), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3878), 10, + ACTIONS(4060), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327894,22 +332255,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [53013] = 7, + [55234] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6172), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + ACTIONS(6378), 3, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3526), 3, + STATE(3631), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [55281] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6380), 1, + anon_sym_with, + STATE(3632), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3878), 10, + ACTIONS(3994), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -327920,196 +332314,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [53046] = 11, + [55314] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6174), 1, + ACTIONS(6382), 1, anon_sym_DQUOTE, - STATE(3562), 1, + STATE(3640), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3527), 3, + STATE(3633), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53087] = 11, + [55355] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6176), 1, + ACTIONS(6384), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3528), 3, + STATE(3634), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53128] = 11, + [55396] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6178), 1, + ACTIONS(6386), 1, anon_sym_DQUOTE, - STATE(3546), 1, + STATE(3639), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3529), 3, + STATE(3635), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53169] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [55437] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6186), 1, - anon_sym_LBRACE2, - ACTIONS(6189), 1, - anon_sym_DQUOTE, - ACTIONS(6180), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(6183), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - STATE(3530), 4, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6388), 1, + anon_sym_with, + STATE(3636), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_format_string_repeat1, - [53208] = 11, + ACTIONS(4024), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [55470] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6191), 1, + ACTIONS(6390), 1, anon_sym_DQUOTE, - STATE(3538), 1, + STATE(3634), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3531), 3, + STATE(3637), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53249] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(2567), 2, - anon_sym_and, - sym_identifier, - STATE(3532), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2569), 9, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [53282] = 6, + [55511] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3533), 3, + ACTIONS(6392), 1, + anon_sym_with, + STATE(3638), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3962), 11, - sym__newline, + ACTIONS(4000), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -328120,23 +332486,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [53313] = 7, + [55544] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6394), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3639), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [55585] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6396), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3640), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [55626] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2571), 2, + ACTIONS(2679), 2, anon_sym_and, sym_identifier, - STATE(3534), 3, + STATE(3641), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2573), 9, + ACTIONS(2681), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -328146,25 +332572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [53346] = 8, + [55659] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6193), 1, - anon_sym_LT2, - ACTIONS(2620), 2, + ACTIONS(2662), 2, anon_sym_and, sym_identifier, - STATE(3535), 3, + STATE(3642), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2622), 8, + ACTIONS(2664), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -328172,386 +332596,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [53381] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3536), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3972), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53412] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3537), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3936), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53443] = 11, + [55692] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6195), 1, + ACTIONS(6398), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3645), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3538), 3, + STATE(3643), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53484] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + [55733] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3539), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3944), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53515] = 9, - ACTIONS(3), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3435), 1, - aux_sym_record_pattern_repeat1, - STATE(3540), 3, + ACTIONS(6406), 1, + anon_sym_LBRACE2, + ACTIONS(6409), 1, + anon_sym_DQUOTE, + ACTIONS(6400), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(6403), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + STATE(3644), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4901), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [53552] = 11, + aux_sym_format_string_repeat1, + [55772] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6199), 1, + ACTIONS(6411), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3541), 3, + STATE(3645), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53593] = 6, + [55813] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3542), 3, + ACTIONS(2675), 2, + anon_sym_and, + sym_identifier, + STATE(3646), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3954), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53624] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(6203), 3, + ACTIONS(2677), 9, + anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3543), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [53671] = 11, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [55846] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6205), 1, + ACTIONS(6413), 1, anon_sym_DQUOTE, - STATE(3521), 1, + STATE(3649), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3544), 3, + STATE(3647), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53712] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6207), 1, - anon_sym_COMMA, - STATE(3545), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3866), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53745] = 11, + [55887] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6209), 1, + ACTIONS(6415), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3668), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3546), 3, + STATE(3648), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53786] = 11, + [55928] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6211), 1, + ACTIONS(6417), 1, anon_sym_DQUOTE, - STATE(3569), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3547), 3, + STATE(3649), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53827] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3548), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3608), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [53858] = 7, + [55969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2583), 2, + ACTIONS(2636), 2, anon_sym_and, sym_identifier, - STATE(3549), 3, + STATE(3650), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2585), 9, + ACTIONS(2638), 9, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -328561,173 +332829,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [53891] = 11, + [56002] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6213), 1, + ACTIONS(6419), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3616), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3550), 3, + STATE(3651), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53932] = 11, + [56043] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6215), 1, + ACTIONS(6421), 1, anon_sym_DQUOTE, - STATE(3572), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3551), 3, + STATE(3652), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [56084] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6423), 1, + anon_sym_COMMA, + ACTIONS(6425), 1, + anon_sym_GT, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(4256), 1, + aux_sym_types_repeat1, + STATE(3653), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [56135] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6427), 1, + anon_sym_DQUOTE, + STATE(3644), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3654), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [53973] = 11, + [56176] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6217), 1, + ACTIONS(6429), 1, anon_sym_DQUOTE, - STATE(3519), 1, + STATE(3652), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3552), 3, + STATE(3655), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54014] = 14, + [56217] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6000), 1, + ACTIONS(2615), 2, + anon_sym_and, sym_identifier, - ACTIONS(6002), 1, + STATE(3656), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2621), 9, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(6004), 1, + anon_sym_GT, anon_sym_STAR, - ACTIONS(6006), 1, anon_sym_LT2, - ACTIONS(6008), 1, - anon_sym_LBRACK_RBRACK, - STATE(3750), 1, - aux_sym__compound_type_repeat1, - STATE(3850), 1, - sym_type_arguments, - STATE(3859), 1, - sym_long_identifier, - ACTIONS(2361), 3, - sym__newline, - sym__indent, - sym__dedent, - STATE(3553), 3, + anon_sym_LBRACK_RBRACK, + [56250] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6304), 1, + anon_sym_LBRACE2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6431), 1, + anon_sym_DQUOTE, + STATE(3672), 1, + aux_sym_format_string_repeat1, + ACTIONS(6300), 2, + sym__escape_char, + sym__non_escape_char, + STATE(3962), 2, + sym__string_char, + sym_format_string_eval, + STATE(3657), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [54061] = 11, + ACTIONS(6302), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + [56291] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6219), 1, + ACTIONS(6433), 1, anon_sym_DQUOTE, - STATE(3586), 1, + STATE(3654), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3554), 3, + STATE(3658), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54102] = 6, + [56332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3555), 3, + STATE(3659), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3950), 11, + ACTIONS(4070), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -328739,20 +333095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54133] = 6, + [56363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3556), 3, + STATE(3660), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3940), 11, + ACTIONS(3736), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -328764,23 +333120,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54164] = 7, + [56394] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6435), 1, + anon_sym_COMMA, + STATE(3661), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4006), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [56427] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2605), 2, + ACTIONS(6437), 1, + anon_sym_LT2, + ACTIONS(2652), 2, anon_sym_and, sym_identifier, - STATE(3557), 3, + STATE(3662), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 9, + ACTIONS(2654), 8, anon_sym_EQ, anon_sym_COLON, anon_sym_RPAREN, @@ -328788,22 +333172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [54197] = 6, + [56462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3558), 3, + STATE(3663), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3641), 11, + ACTIONS(4102), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -328815,22 +333198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54228] = 7, + [56493] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6221), 1, - anon_sym_COMMA, - STATE(3559), 3, + STATE(3664), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3872), 10, + ACTIONS(3740), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -328841,20 +333223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54261] = 6, + [56524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3560), 3, + STATE(3665), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3928), 11, + ACTIONS(4042), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -328866,22 +333248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54292] = 7, + [56555] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6223), 1, - anon_sym_COMMA, - STATE(3561), 3, + STATE(3666), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3872), 10, + ACTIONS(4074), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -328892,170 +333273,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54325] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [56586] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6225), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3562), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54366] = 11, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6227), 1, - anon_sym_DQUOTE, - STATE(3550), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3563), 3, + STATE(3667), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54407] = 11, + ACTIONS(4078), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [56617] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6229), 1, + ACTIONS(6439), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3564), 3, + STATE(3668), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54448] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [56658] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6231), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3565), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(2658), 2, + anon_sym_and, + sym_identifier, + STATE(3669), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54489] = 11, + ACTIONS(2660), 9, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [56691] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6233), 1, + ACTIONS(6441), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3566), 3, + STATE(3670), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54530] = 6, + [56732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3567), 3, + STATE(3671), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3968), 11, + ACTIONS(4066), 11, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -329067,82 +333409,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54561] = 11, + [56763] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6235), 1, + ACTIONS(6443), 1, anon_sym_DQUOTE, - STATE(3530), 1, + STATE(3644), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3568), 3, + STATE(3672), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54602] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [56804] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6237), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3569), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5059), 1, + anon_sym_COLON, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(3526), 1, + aux_sym_record_pattern_repeat1, + STATE(3673), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54643] = 7, + ACTIONS(5061), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [56841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6239), 1, - anon_sym_with, - STATE(3570), 3, + STATE(3674), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3896), 10, + ACTIONS(4086), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -329153,508 +333492,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [54676] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6241), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3571), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54717] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6243), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3572), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [54758] = 11, + [56872] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, + ACTIONS(6304), 1, anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6245), 1, + ACTIONS(6445), 1, anon_sym_DQUOTE, - STATE(3568), 1, + STATE(3670), 1, aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6300), 2, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, + STATE(3962), 2, sym__string_char, sym_format_string_eval, - STATE(3573), 3, + STATE(3675), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, + ACTIONS(6302), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, - [54799] = 14, + [56913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6000), 1, - sym_identifier, - ACTIONS(6002), 1, - anon_sym_DASH_GT, - ACTIONS(6004), 1, - anon_sym_STAR, - ACTIONS(6006), 1, - anon_sym_LT2, - ACTIONS(6008), 1, - anon_sym_LBRACK_RBRACK, - STATE(3750), 1, - aux_sym__compound_type_repeat1, - STATE(3850), 1, - sym_type_arguments, - STATE(3859), 1, - sym_long_identifier, - ACTIONS(2305), 3, - sym__newline, - sym__indent, - sym__dedent, - STATE(3574), 3, + STATE(3676), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [54846] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6000), 1, - sym_identifier, - ACTIONS(6002), 1, - anon_sym_DASH_GT, - ACTIONS(6004), 1, - anon_sym_STAR, - ACTIONS(6006), 1, - anon_sym_LT2, - ACTIONS(6008), 1, - anon_sym_LBRACK_RBRACK, - STATE(3750), 1, - aux_sym__compound_type_repeat1, - STATE(3850), 1, - sym_type_arguments, - STATE(3859), 1, - sym_long_identifier, - ACTIONS(2345), 3, + ACTIONS(4090), 11, sym__newline, - sym__indent, sym__dedent, - STATE(3575), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [54893] = 14, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [56944] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6000), 1, - sym_identifier, - ACTIONS(6002), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6449), 1, + anon_sym_COMMA, + ACTIONS(6451), 1, + anon_sym_COLON_COLON, + ACTIONS(6453), 1, + anon_sym_PIPE, + ACTIONS(6455), 1, + anon_sym_AMP, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3858), 3, + anon_sym_SEMI, anon_sym_DASH_GT, - ACTIONS(6004), 1, - anon_sym_STAR, - ACTIONS(6006), 1, - anon_sym_LT2, - ACTIONS(6008), 1, - anon_sym_LBRACK_RBRACK, - STATE(3750), 1, - aux_sym__compound_type_repeat1, - STATE(3850), 1, - sym_type_arguments, - STATE(3859), 1, - sym_long_identifier, - ACTIONS(2363), 3, - sym__newline, - sym__indent, - sym__dedent, - STATE(3576), 3, + anon_sym_when, + STATE(3677), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [54940] = 11, + [56988] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6247), 1, + ACTIONS(6461), 1, anon_sym_DQUOTE, - STATE(3566), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, + ACTIONS(6463), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3577), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, + sym__simple_string_char, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - sym__simple_string_char, - [54981] = 7, + STATE(3678), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [57028] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2591), 2, - anon_sym_and, - sym_identifier, - STATE(3578), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2593), 9, - anon_sym_EQ, + ACTIONS(5289), 1, anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, + ACTIONS(6467), 1, + anon_sym_COLON_COLON, + ACTIONS(6469), 1, + anon_sym_PIPE, + ACTIONS(6471), 1, + anon_sym_AMP, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5053), 3, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [55014] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6249), 1, - anon_sym_DQUOTE, - STATE(3565), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3579), 3, + STATE(3679), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55055] = 7, + [57072] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2579), 2, - anon_sym_and, - sym_identifier, - STATE(3580), 3, + ACTIONS(5044), 1, + anon_sym_COLON, + ACTIONS(6473), 1, + anon_sym_COMMA, + STATE(3680), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2581), 9, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 7, anon_sym_EQ, - anon_sym_COLON, + anon_sym_as, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [55088] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [57106] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6251), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3581), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55129] = 11, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6253), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3582), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3681), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55170] = 16, + ACTIONS(5042), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [57140] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6255), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6449), 1, anon_sym_COMMA, - ACTIONS(6257), 1, - anon_sym_GT, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(4139), 1, - aux_sym_types_repeat1, - STATE(3583), 3, + ACTIONS(6451), 1, + anon_sym_COLON_COLON, + ACTIONS(6453), 1, + anon_sym_PIPE, + ACTIONS(6455), 1, + anon_sym_AMP, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5053), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + STATE(3682), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55221] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [57184] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6259), 1, - anon_sym_DQUOTE, - STATE(3564), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3584), 3, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5044), 1, + anon_sym_COLON, + ACTIONS(6476), 1, + anon_sym_COMMA, + STATE(3683), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55262] = 7, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 7, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [57218] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6261), 1, - anon_sym_with, - STATE(3585), 3, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3684), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3902), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [55295] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(5042), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [57252] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6263), 1, - anon_sym_DQUOTE, - STATE(3530), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3586), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3685), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55336] = 9, + ACTIONS(5038), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [57286] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4909), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3540), 1, - aux_sym_record_pattern_repeat1, - STATE(3587), 3, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3686), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4911), 8, + ACTIONS(5038), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -329663,2313 +333825,1951 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_LT2, - [55373] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [57320] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6124), 1, - anon_sym_LBRACE2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6265), 1, - anon_sym_DQUOTE, - STATE(3581), 1, - aux_sym_format_string_repeat1, - ACTIONS(6120), 2, - sym__escape_char, - sym__non_escape_char, - STATE(3829), 2, - sym__string_char, - sym_format_string_eval, - STATE(3588), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3687), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6122), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - [55414] = 15, + ACTIONS(5034), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [57354] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5262), 1, - sym_identifier, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6449), 1, + anon_sym_COMMA, + ACTIONS(6451), 1, + anon_sym_COLON_COLON, + ACTIONS(6453), 1, + anon_sym_PIPE, + ACTIONS(6455), 1, + anon_sym_AMP, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 3, + anon_sym_SEMI, anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6267), 1, - anon_sym_and, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3589), 3, + anon_sym_when, + STATE(3688), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55462] = 8, + [57398] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4919), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6271), 1, - anon_sym_COMMA, - STATE(3590), 4, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3689), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 7, + ACTIONS(5034), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT2, - [55496] = 14, + [57432] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5344), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5346), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6274), 1, + ACTIONS(6376), 1, sym_identifier, - STATE(3137), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3270), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3287), 1, + STATE(3656), 1, sym_long_identifier, - ACTIONS(6276), 2, - sym__newline, - sym__dedent, - STATE(3591), 3, + ACTIONS(6479), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3690), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55542] = 15, + [57478] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5014), 1, anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, + ACTIONS(6449), 1, anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6280), 1, - anon_sym_PIPE_RBRACK, - STATE(3459), 1, + STATE(3683), 1, aux_sym_repeat_pattern_repeat1, - STATE(4286), 1, - aux_sym_list_pattern_repeat1, - STATE(3592), 3, + STATE(3691), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55590] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5344), 1, + ACTIONS(5016), 7, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, - ACTIONS(5346), 1, - anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6274), 1, - sym_identifier, - STATE(3137), 1, - aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, - sym_long_identifier, - ACTIONS(6282), 2, - sym__newline, - sym__dedent, - STATE(3593), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [55636] = 8, + anon_sym_when, + [57514] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6284), 1, - anon_sym_DOT, - STATE(3626), 1, - aux_sym_long_identifier_repeat1, - STATE(3594), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_COLON_COLON, + ACTIONS(6469), 1, + anon_sym_PIPE, + ACTIONS(6471), 1, + anon_sym_AMP, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 3, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LT2, + STATE(3692), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [55670] = 11, + [57558] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6290), 1, + ACTIONS(6481), 1, anon_sym_DQUOTE, - ACTIONS(6292), 1, + ACTIONS(6483), 1, anon_sym_DQUOTEB, - STATE(3597), 1, + STATE(3777), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3595), 3, + STATE(3693), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55710] = 14, + [57598] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5190), 1, - anon_sym_new, - ACTIONS(6152), 1, - anon_sym_static, - ACTIONS(6154), 1, - anon_sym_member, - ACTIONS(6156), 1, - anon_sym_abstract, - ACTIONS(6160), 1, - anon_sym_val, - STATE(2117), 1, - sym_additional_constr_defn, - STATE(4670), 1, - sym_access_modifier, - ACTIONS(6158), 2, - anon_sym_override, - anon_sym_default, - STATE(3596), 3, + ACTIONS(5059), 1, + anon_sym_COLON, + STATE(3701), 1, + aux_sym_record_pattern_repeat1, + STATE(3694), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55756] = 11, + ACTIONS(5061), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [57632] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6294), 1, + ACTIONS(6485), 1, anon_sym_DQUOTE, - ACTIONS(6296), 1, + ACTIONS(6487), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3704), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3597), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [55796] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6298), 1, - anon_sym_EQ, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4667), 1, - sym_type_arguments, - STATE(3598), 3, + STATE(3695), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55844] = 11, + [57672] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6489), 1, anon_sym_DQUOTE, - ACTIONS(6310), 1, + ACTIONS(6491), 1, anon_sym_DQUOTEB, - STATE(3606), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3599), 3, + STATE(3696), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55884] = 13, + [57712] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6314), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, anon_sym_COMMA, - ACTIONS(6316), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6318), 1, - anon_sym_PIPE, - ACTIONS(6320), 1, + ACTIONS(5942), 1, anon_sym_AMP, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3736), 3, + ACTIONS(6493), 1, + anon_sym_PIPE, + ACTIONS(6495), 1, + anon_sym_RBRACK, + ACTIONS(6497), 1, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(3600), 3, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4385), 1, + aux_sym_list_pattern_repeat1, + STATE(3697), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [55928] = 8, + [57760] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3601), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4907), 8, - anon_sym_EQ, + ACTIONS(5934), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(5936), 1, anon_sym_COMMA, + ACTIONS(5938), 1, anon_sym_COLON_COLON, + ACTIONS(5940), 1, anon_sym_PIPE, + ACTIONS(5942), 1, anon_sym_AMP, - anon_sym_LT2, - [55962] = 15, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6499), 1, + anon_sym_PIPE_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4345), 1, + aux_sym_list_pattern_repeat1, + STATE(3698), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [57808] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(5754), 1, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(5756), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6322), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6324), 1, - anon_sym_RBRACK, - STATE(3459), 1, + ACTIONS(6471), 1, + anon_sym_AMP, + ACTIONS(6501), 1, + anon_sym_EQ, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(4228), 1, - aux_sym_list_pattern_repeat1, - STATE(3602), 3, + STATE(4698), 1, + sym_type_arguments, + STATE(3699), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56010] = 13, + [57856] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6326), 3, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - STATE(3603), 3, + ACTIONS(5349), 1, + anon_sym_new, + ACTIONS(6338), 1, + anon_sym_static, + ACTIONS(6340), 1, + anon_sym_member, + ACTIONS(6342), 1, + anon_sym_abstract, + ACTIONS(6346), 1, + anon_sym_val, + STATE(2181), 1, + sym_additional_constr_defn, + STATE(4704), 1, + sym_access_modifier, + ACTIONS(6344), 2, + anon_sym_override, + anon_sym_default, + STATE(3700), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56054] = 8, + [57902] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, + ACTIONS(5101), 1, anon_sym_COLON, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3604), 3, + ACTIONS(6503), 1, + anon_sym_SEMI, + STATE(3701), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4940), 8, + aux_sym_record_pattern_repeat1, + ACTIONS(5103), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_when, - [56088] = 9, + [57936] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4915), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6314), 1, + ACTIONS(6449), 1, anon_sym_COMMA, - STATE(3619), 1, + ACTIONS(6451), 1, + anon_sym_COLON_COLON, + ACTIONS(6453), 1, + anon_sym_PIPE, + ACTIONS(6455), 1, + anon_sym_AMP, + STATE(3691), 1, aux_sym_repeat_pattern_repeat1, - STATE(3605), 3, + ACTIONS(5123), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + STATE(3702), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [57980] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6506), 1, + anon_sym_DQUOTE, + ACTIONS(6508), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3703), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58020] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6510), 1, + anon_sym_DQUOTE, + ACTIONS(6512), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3704), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58060] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5059), 1, + anon_sym_COLON, + ACTIONS(6514), 1, + anon_sym_SEMI, + STATE(3701), 1, + aux_sym_record_pattern_repeat1, + STATE(3705), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4917), 7, + ACTIONS(5061), 7, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_when, - [56124] = 11, + [58096] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5378), 1, + anon_sym_new, + ACTIONS(6516), 1, + anon_sym_static, + ACTIONS(6518), 1, + anon_sym_member, + ACTIONS(6520), 1, + anon_sym_abstract, + ACTIONS(6524), 1, + anon_sym_val, + STATE(3725), 1, + sym_additional_constr_defn, + STATE(4686), 1, + sym_access_modifier, + ACTIONS(6522), 2, + anon_sym_override, + anon_sym_default, + STATE(3706), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58142] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6328), 1, + ACTIONS(6526), 1, anon_sym_DQUOTE, - ACTIONS(6330), 1, + ACTIONS(6528), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3696), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3606), 3, + STATE(3707), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56164] = 14, + [58182] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(6332), 2, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(3607), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [56210] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_mutable, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(4090), 1, - sym_attributes, - STATE(4232), 1, - sym_record_field, - STATE(4810), 1, - sym_access_modifier, - STATE(4880), 1, - sym_record_fields, - STATE(3608), 3, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5942), 1, + anon_sym_AMP, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6530), 3, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE_RBRACK, + STATE(3708), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56258] = 14, + [58226] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5344), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5346), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5348), 1, - anon_sym_LT2, - ACTIONS(5350), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6274), 1, + ACTIONS(6376), 1, sym_identifier, - STATE(3137), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3270), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3287), 1, + STATE(3656), 1, sym_long_identifier, - ACTIONS(6338), 2, - sym__newline, - sym__dedent, - STATE(3609), 3, + ACTIONS(6532), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3709), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56304] = 11, + [58272] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6340), 1, + ACTIONS(6534), 1, anon_sym_DQUOTE, - ACTIONS(6342), 1, + ACTIONS(6536), 1, anon_sym_DQUOTEB, - STATE(3618), 1, + STATE(3714), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3610), 3, + STATE(3710), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58312] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6538), 1, + anon_sym_DQUOTE, + ACTIONS(6540), 1, + anon_sym_DQUOTEB, + STATE(3703), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3711), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56344] = 13, + [58352] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6314), 1, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3712), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5169), 8, + anon_sym_as, anon_sym_COMMA, - ACTIONS(6316), 1, anon_sym_COLON_COLON, - ACTIONS(6318), 1, anon_sym_PIPE, - ACTIONS(6320), 1, anon_sym_AMP, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 3, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_when, - STATE(3611), 3, + [58386] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6548), 1, + anon_sym_DQUOTE, + ACTIONS(6550), 1, + anon_sym_DQUOTEB, + STATE(3959), 1, + sym__string_char, + ACTIONS(6542), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6545), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3713), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56388] = 11, + aux_sym__string_literal_repeat1, + [58424] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6344), 1, + ACTIONS(6552), 1, anon_sym_DQUOTE, - ACTIONS(6346), 1, + ACTIONS(6554), 1, anon_sym_DQUOTEB, - STATE(3634), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3612), 3, + STATE(3714), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56428] = 11, + [58464] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6348), 1, + ACTIONS(6556), 1, anon_sym_DQUOTE, - ACTIONS(6350), 1, + ACTIONS(6558), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3613), 3, + STATE(3715), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56468] = 8, - ACTIONS(3), 1, + [58504] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3614), 3, + ACTIONS(6560), 1, + anon_sym_DQUOTE, + ACTIONS(6562), 1, + anon_sym_DQUOTEB, + STATE(3715), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3716), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4925), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [56502] = 9, - ACTIONS(3), 1, + [58544] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(6352), 1, - anon_sym_SEMI, - STATE(3629), 1, - aux_sym_record_pattern_repeat1, - STATE(3615), 3, + ACTIONS(6564), 1, + anon_sym_DQUOTE, + ACTIONS(6566), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3717), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4901), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [56538] = 8, + [58584] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3616), 3, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6568), 1, + sym_identifier, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(6570), 2, + sym__newline, + sym__dedent, + STATE(3718), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4929), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [56572] = 8, + [58630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3617), 3, + STATE(3719), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4885), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [56606] = 11, + ACTIONS(4052), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [58660] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6354), 1, + ACTIONS(6572), 1, anon_sym_DQUOTE, - ACTIONS(6356), 1, + ACTIONS(6574), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3717), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3618), 3, + STATE(3720), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56646] = 8, + [58700] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4919), 1, - anon_sym_COLON, - ACTIONS(6358), 1, - anon_sym_COMMA, - STATE(3619), 4, + STATE(3721), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 7, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [56680] = 13, + ACTIONS(4056), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [58730] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6314), 1, - anon_sym_COMMA, - ACTIONS(6316), 1, - anon_sym_COLON_COLON, - ACTIONS(6318), 1, - anon_sym_PIPE, - ACTIONS(6320), 1, - anon_sym_AMP, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4975), 3, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(3620), 3, + ACTIONS(6576), 1, + anon_sym_DOT, + STATE(3722), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56724] = 13, + aux_sym_long_identifier_repeat1, + ACTIONS(2605), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [58762] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(3736), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LT2, - STATE(3621), 3, + ACTIONS(6579), 1, + anon_sym_DOT, + STATE(3722), 1, + aux_sym_long_identifier_repeat1, + STATE(3723), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56768] = 13, + ACTIONS(2596), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [58796] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4855), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LT2, - STATE(3622), 3, + STATE(3724), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56812] = 15, + ACTIONS(4082), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [58826] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6361), 1, - anon_sym_EQ, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4350), 1, - sym_type_arguments, - STATE(3623), 3, + STATE(3725), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56860] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(4098), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [58856] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6363), 1, - anon_sym_DQUOTE, - ACTIONS(6365), 1, - anon_sym_DQUOTEB, - STATE(3613), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3624), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3726), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [56900] = 8, + ACTIONS(4046), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [58886] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4909), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3651), 1, - aux_sym_record_pattern_repeat1, - STATE(3625), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4911), 8, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [56934] = 8, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3858), 3, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LT2, + STATE(3727), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58930] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6284), 1, - anon_sym_DOT, - STATE(3628), 1, - aux_sym_long_identifier_repeat1, - STATE(3626), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2494), 8, - sym__newline, - sym__indent, - sym__dedent, + ACTIONS(5505), 1, anon_sym_DASH_GT, + ACTIONS(5507), 1, anon_sym_STAR, + ACTIONS(5509), 1, anon_sym_LT2, + ACTIONS(5511), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(6568), 1, sym_identifier, - [56968] = 15, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(6581), 2, + sym__newline, + sym__dedent, + STATE(3728), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [58976] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_mutable, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(4090), 1, - sym_attributes, - STATE(4232), 1, - sym_record_field, - STATE(4810), 1, - sym_access_modifier, - STATE(5074), 1, - sym_record_fields, - STATE(3627), 3, + STATE(3729), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57016] = 7, + ACTIONS(4060), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59006] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6367), 1, - anon_sym_DOT, - STATE(3628), 4, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3691), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3730), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2485), 8, - sym__newline, - sym__indent, - sym__dedent, + ACTIONS(5057), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [57048] = 8, + anon_sym_when, + [59040] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4931), 1, + ACTIONS(5014), 1, anon_sym_COLON, - ACTIONS(6370), 1, - anon_sym_SEMI, - STATE(3629), 4, + ACTIONS(6465), 1, + anon_sym_COMMA, + STATE(3680), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3731), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4933), 7, + ACTIONS(5016), 7, + anon_sym_EQ, anon_sym_as, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [57082] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + anon_sym_LT2, + [59076] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6373), 1, - anon_sym_DQUOTE, - ACTIONS(6375), 1, - anon_sym_DQUOTEB, - STATE(3632), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3630), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3732), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57122] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(4070), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59106] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6377), 1, - anon_sym_DQUOTE, - ACTIONS(6379), 1, - anon_sym_DQUOTEB, - STATE(3639), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3631), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3733), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57162] = 11, + ACTIONS(3736), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59136] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6381), 1, + ACTIONS(6583), 1, anon_sym_DQUOTE, - ACTIONS(6383), 1, + ACTIONS(6585), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3632), 3, + STATE(3734), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57202] = 14, + [59176] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4954), 1, + ACTIONS(5067), 1, anon_sym_new, - ACTIONS(5715), 1, + ACTIONS(5926), 1, anon_sym_member, - ACTIONS(5717), 1, + ACTIONS(5928), 1, anon_sym_abstract, - ACTIONS(5721), 1, + ACTIONS(5932), 1, anon_sym_val, - ACTIONS(6385), 1, + ACTIONS(6587), 1, anon_sym_static, - STATE(3510), 1, + STATE(3625), 1, sym_additional_constr_defn, - STATE(4431), 1, + STATE(4608), 1, sym_access_modifier, - ACTIONS(5719), 2, + ACTIONS(5930), 2, anon_sym_override, anon_sym_default, - STATE(3633), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57248] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6387), 1, - anon_sym_DQUOTE, - ACTIONS(6389), 1, - anon_sym_DQUOTEB, - STATE(3645), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3634), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57288] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6391), 1, - anon_sym_DQUOTE, - ACTIONS(6393), 1, - anon_sym_DQUOTEB, - STATE(3645), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3635), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57328] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4909), 1, - anon_sym_COLON, - ACTIONS(6352), 1, - anon_sym_SEMI, - STATE(3615), 1, - aux_sym_record_pattern_repeat1, - STATE(3636), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4911), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [57364] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6395), 1, - anon_sym_DQUOTE, - ACTIONS(6397), 1, - anon_sym_DQUOTEB, - STATE(3640), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3637), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57404] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6399), 1, - anon_sym_DQUOTE, - ACTIONS(6401), 1, - anon_sym_DQUOTEB, - STATE(3645), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3638), 3, + STATE(3735), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57444] = 11, + [59222] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6403), 1, + ACTIONS(6589), 1, anon_sym_DQUOTE, - ACTIONS(6405), 1, + ACTIONS(6591), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3734), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3639), 3, + STATE(3736), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57484] = 11, + [59262] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6407), 1, + ACTIONS(6593), 1, anon_sym_DQUOTE, - ACTIONS(6409), 1, + ACTIONS(6595), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3678), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3640), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57524] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6322), 1, - anon_sym_PIPE, - ACTIONS(6411), 1, - anon_sym_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4154), 1, - aux_sym_list_pattern_repeat1, - STATE(3641), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57572] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6413), 1, - anon_sym_PIPE_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4152), 1, - aux_sym_list_pattern_repeat1, - STATE(3642), 3, + STATE(3737), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57620] = 14, + [59302] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5344), 1, + ACTIONS(5505), 1, anon_sym_DASH_GT, - ACTIONS(5346), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5348), 1, + ACTIONS(5509), 1, anon_sym_LT2, - ACTIONS(5350), 1, + ACTIONS(5511), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6274), 1, + ACTIONS(6568), 1, sym_identifier, - STATE(3137), 1, + STATE(3217), 1, aux_sym__compound_type_repeat1, - STATE(3270), 1, - sym_type_arguments, - STATE(3287), 1, + STATE(3362), 1, sym_long_identifier, - ACTIONS(6415), 2, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(6597), 2, sym__newline, sym__dedent, - STATE(3643), 3, + STATE(3738), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57666] = 11, + [59348] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6417), 1, + ACTIONS(6599), 1, anon_sym_DQUOTE, - ACTIONS(6419), 1, + ACTIONS(6601), 1, anon_sym_DQUOTEB, - STATE(3638), 1, + STATE(3741), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3644), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57706] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6427), 1, - anon_sym_DQUOTE, - ACTIONS(6429), 1, - anon_sym_DQUOTEB, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6421), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6424), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3645), 4, + STATE(3739), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__string_literal_repeat1, - [57744] = 14, + [59388] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5212), 1, + STATE(3740), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(4102), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_new, - ACTIONS(6431), 1, anon_sym_static, - ACTIONS(6433), 1, anon_sym_member, - ACTIONS(6435), 1, anon_sym_abstract, - ACTIONS(6439), 1, - anon_sym_val, - STATE(3687), 1, - sym_additional_constr_defn, - STATE(4333), 1, - sym_access_modifier, - ACTIONS(6437), 2, anon_sym_override, anon_sym_default, - STATE(3646), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57790] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4915), 1, - anon_sym_COLON, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(3590), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3647), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4917), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [57826] = 11, + anon_sym_val, + [59418] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6441), 1, + ACTIONS(6603), 1, anon_sym_DQUOTE, - ACTIONS(6443), 1, + ACTIONS(6605), 1, anon_sym_DQUOTEB, - STATE(3635), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3648), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57866] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6445), 1, - anon_sym_PIPE_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4297), 1, - aux_sym_list_pattern_repeat1, - STATE(3649), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [57914] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6322), 1, - anon_sym_PIPE, - ACTIONS(6447), 1, - anon_sym_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4298), 1, - aux_sym_list_pattern_repeat1, - STATE(3650), 3, + STATE(3741), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [57962] = 8, + [59458] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - STATE(3629), 1, - aux_sym_record_pattern_repeat1, - STATE(3651), 3, + ACTIONS(5430), 1, + sym_identifier, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6607), 1, + anon_sym_and, + ACTIONS(6609), 1, + anon_sym_GT, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3742), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4901), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [57996] = 8, + [59506] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3652), 3, + STATE(3743), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4907), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [58030] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6322), 1, - anon_sym_PIPE, - ACTIONS(6449), 1, - anon_sym_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4148), 1, - aux_sym_list_pattern_repeat1, - STATE(3653), 3, + ACTIONS(3740), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59536] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3744), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58078] = 15, + ACTIONS(4042), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59566] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(5754), 1, - anon_sym_COMMA, - ACTIONS(5756), 1, - anon_sym_COLON_COLON, - ACTIONS(5758), 1, - anon_sym_PIPE, - ACTIONS(5760), 1, - anon_sym_AMP, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(6451), 1, - anon_sym_PIPE_RBRACK, - STATE(3459), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4149), 1, - aux_sym_list_pattern_repeat1, - STATE(3654), 3, + ACTIONS(5089), 1, + anon_sym_LBRACK_LT, + STATE(3760), 1, + aux_sym_attributes_repeat1, + STATE(3960), 1, + sym_attribute_set, + ACTIONS(5485), 3, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3745), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58126] = 11, + ACTIONS(5483), 4, + anon_sym__, + anon_sym_LPAREN, + anon_sym_POUND, + sym_identifier, + [59604] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6453), 1, + ACTIONS(6611), 1, anon_sym_DQUOTE, - ACTIONS(6455), 1, + ACTIONS(6613), 1, anon_sym_DQUOTEB, - STATE(3659), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3655), 3, + STATE(3746), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58166] = 9, + [59644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6457), 1, - anon_sym_LBRACK_LT, - STATE(3866), 1, - sym_attribute_set, - ACTIONS(5164), 3, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_CARET, - ACTIONS(5159), 4, - anon_sym__, - anon_sym_LPAREN, - anon_sym_POUND, - sym_identifier, - STATE(3656), 4, + STATE(3747), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_attributes_repeat1, - [58202] = 13, + ACTIONS(4074), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59674] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6314), 1, - anon_sym_COMMA, - ACTIONS(6316), 1, - anon_sym_COLON_COLON, - ACTIONS(6318), 1, - anon_sym_PIPE, - ACTIONS(6320), 1, - anon_sym_AMP, - STATE(3605), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4855), 3, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(3657), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [58246] = 11, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6460), 1, - anon_sym_DQUOTE, - ACTIONS(6462), 1, - anon_sym_DQUOTEB, - STATE(3661), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3658), 3, + STATE(3748), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58286] = 11, + ACTIONS(4078), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_default, + anon_sym_val, + [59704] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6464), 1, + ACTIONS(6615), 1, anon_sym_DQUOTE, - ACTIONS(6466), 1, + ACTIONS(6617), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3746), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3659), 3, + STATE(3749), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58326] = 11, + [59744] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6468), 1, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(6470), 1, + ACTIONS(6621), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3771), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3660), 3, + STATE(3750), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58366] = 11, + [59784] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6472), 1, + ACTIONS(6623), 1, anon_sym_DQUOTE, - ACTIONS(6474), 1, + ACTIONS(6625), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3661), 3, + STATE(3751), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58406] = 13, + [59824] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LT2, - STATE(3662), 3, + ACTIONS(6627), 1, + sym_identifier, + ACTIONS(6629), 1, + anon_sym_mutable, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4197), 1, + sym_attributes, + STATE(4326), 1, + sym_record_field, + STATE(5281), 1, + sym_access_modifier, + STATE(5283), 1, + sym_record_fields, + STATE(3752), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58450] = 6, + [59872] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3663), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(3982), 10, + ACTIONS(5505), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_STAR, + ACTIONS(5509), 1, + anon_sym_LT2, + ACTIONS(5511), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6568), 1, + sym_identifier, + STATE(3217), 1, + aux_sym__compound_type_repeat1, + STATE(3362), 1, + sym_long_identifier, + STATE(3380), 1, + sym_type_arguments, + ACTIONS(6631), 2, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [58480] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3664), 3, + STATE(3753), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4925), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [58514] = 11, + [59918] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6476), 1, + ACTIONS(6633), 1, anon_sym_DQUOTE, - ACTIONS(6478), 1, + ACTIONS(6635), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3762), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3665), 3, + STATE(3754), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58554] = 6, + [59958] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3666), 3, + STATE(3755), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3912), 10, + ACTIONS(4090), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -331980,49 +335780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [58584] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6480), 1, - anon_sym_DQUOTE, - ACTIONS(6482), 1, - anon_sym_DQUOTEB, - STATE(3681), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3667), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [58624] = 6, + [59988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3668), 3, + STATE(3756), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3641), 10, + ACTIONS(4086), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -332033,20 +335804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [58654] = 6, + [60018] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3669), 3, + STATE(3757), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3968), 10, + ACTIONS(4066), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -332057,878 +335828,1115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_default, anon_sym_val, - [58684] = 6, + [60048] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3670), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6493), 1, + anon_sym_PIPE, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6637), 1, + anon_sym_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4255), 1, + aux_sym_list_pattern_repeat1, + STATE(3758), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3608), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [58714] = 15, + [60096] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6484), 1, - anon_sym_EQ, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(4631), 1, - sym_type_arguments, - STATE(3671), 3, + ACTIONS(6579), 1, + anon_sym_DOT, + STATE(3723), 1, + aux_sym_long_identifier_repeat1, + STATE(3759), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58762] = 6, + ACTIONS(2523), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [60130] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3672), 3, + ACTIONS(6639), 1, + anon_sym_LBRACK_LT, + STATE(3960), 1, + sym_attribute_set, + ACTIONS(5368), 3, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_CARET, + ACTIONS(5363), 4, + anon_sym__, + anon_sym_LPAREN, + anon_sym_POUND, + sym_identifier, + STATE(3760), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3928), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [58792] = 6, + aux_sym_attributes_repeat1, + [60166] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3673), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3761), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3944), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [58822] = 6, + ACTIONS(5169), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [60200] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6642), 1, + anon_sym_DQUOTE, + ACTIONS(6644), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3762), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [60240] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3674), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6646), 1, + anon_sym_PIPE_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4246), 1, + aux_sym_list_pattern_repeat1, + STATE(3763), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3936), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [58852] = 11, + [60288] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6486), 1, + ACTIONS(6648), 1, anon_sym_DQUOTE, - ACTIONS(6488), 1, + ACTIONS(6650), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3751), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3675), 3, + STATE(3764), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58892] = 13, + [60328] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6471), 1, anon_sym_AMP, - STATE(3647), 1, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(4975), 3, + ACTIONS(5123), 3, anon_sym_EQ, anon_sym_RPAREN, anon_sym_LT2, - STATE(3676), 3, + STATE(3765), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [58936] = 8, + [60372] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3677), 3, + ACTIONS(5331), 1, + anon_sym_new, + ACTIONS(6312), 1, + anon_sym_static, + ACTIONS(6314), 1, + anon_sym_member, + ACTIONS(6316), 1, + anon_sym_abstract, + ACTIONS(6320), 1, + anon_sym_val, + STATE(2189), 1, + sym_additional_constr_defn, + STATE(4570), 1, + sym_access_modifier, + ACTIONS(6318), 2, + anon_sym_override, + anon_sym_default, + STATE(3766), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4929), 8, - anon_sym_EQ, + [60418] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5934), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_LT2, - [58970] = 11, + ACTIONS(6652), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4553), 1, + sym_type_arguments, + STATE(3767), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [60466] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6490), 1, + ACTIONS(6654), 1, anon_sym_DQUOTE, - ACTIONS(6492), 1, + ACTIONS(6656), 1, anon_sym_DQUOTEB, - STATE(3660), 1, + STATE(3779), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3678), 3, + STATE(3768), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [60506] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5083), 1, + anon_sym_COLON, + ACTIONS(6514), 1, + anon_sym_SEMI, + STATE(3705), 1, + aux_sym_record_pattern_repeat1, + STATE(3769), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5085), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [60542] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6658), 1, + anon_sym_PIPE_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4243), 1, + aux_sym_list_pattern_repeat1, + STATE(3770), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59010] = 11, + [60590] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6494), 1, + ACTIONS(6660), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + ACTIONS(6662), 1, anon_sym_DQUOTEB, - STATE(3692), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3679), 3, + STATE(3771), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59050] = 10, + [60630] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4871), 1, - anon_sym_LBRACK_LT, - STATE(3656), 1, - aux_sym_attributes_repeat1, - STATE(3866), 1, - sym_attribute_set, - ACTIONS(5286), 3, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3680), 3, + ACTIONS(5083), 1, + anon_sym_COLON, + STATE(3694), 1, + aux_sym_record_pattern_repeat1, + STATE(3772), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5284), 4, - anon_sym__, - anon_sym_LPAREN, - anon_sym_POUND, - sym_identifier, - [59088] = 11, + ACTIONS(5085), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [60664] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6498), 1, + ACTIONS(6664), 1, anon_sym_DQUOTE, - ACTIONS(6500), 1, + ACTIONS(6666), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3681), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [59128] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3682), 3, + STATE(3773), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3972), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59158] = 6, + [60704] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3683), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6493), 1, + anon_sym_PIPE, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6668), 1, + anon_sym_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4250), 1, + aux_sym_list_pattern_repeat1, + STATE(3774), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3950), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59188] = 6, + [60752] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3684), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_COLON_COLON, + ACTIONS(6469), 1, + anon_sym_PIPE, + ACTIONS(6471), 1, + anon_sym_AMP, + ACTIONS(6670), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4498), 1, + sym_type_arguments, + STATE(3775), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3954), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59218] = 14, + [60800] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5172), 1, - anon_sym_new, - ACTIONS(6138), 1, - anon_sym_static, - ACTIONS(6140), 1, - anon_sym_member, - ACTIONS(6142), 1, - anon_sym_abstract, - ACTIONS(6146), 1, - anon_sym_val, - STATE(2135), 1, - sym_additional_constr_defn, - STATE(4477), 1, + ACTIONS(6627), 1, + sym_identifier, + ACTIONS(6629), 1, + anon_sym_mutable, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4197), 1, + sym_attributes, + STATE(4326), 1, + sym_record_field, + STATE(5231), 1, + sym_record_fields, + STATE(5281), 1, sym_access_modifier, - ACTIONS(6144), 2, - anon_sym_override, - anon_sym_default, - STATE(3685), 3, + STATE(3776), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59264] = 6, - ACTIONS(3), 1, + [60848] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3686), 3, + ACTIONS(6672), 1, + anon_sym_DQUOTE, + ACTIONS(6674), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3777), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3922), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59294] = 6, - ACTIONS(3), 1, + [60888] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3687), 3, + ACTIONS(6676), 1, + anon_sym_DQUOTE, + ACTIONS(6678), 1, + anon_sym_DQUOTEB, + STATE(3783), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3778), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3958), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59324] = 14, - ACTIONS(3), 1, + [60928] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(6502), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(3688), 3, + ACTIONS(6680), 1, + anon_sym_DQUOTE, + ACTIONS(6682), 1, + anon_sym_DQUOTEB, + STATE(3713), 1, + aux_sym__string_literal_repeat1, + STATE(3959), 1, + sym__string_char, + ACTIONS(6457), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6459), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3779), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59370] = 11, + [60968] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6504), 1, + ACTIONS(6684), 1, anon_sym_DQUOTE, - ACTIONS(6506), 1, + ACTIONS(6686), 1, anon_sym_DQUOTEB, - STATE(3675), 1, + STATE(3773), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3689), 3, + STATE(3780), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59410] = 6, + [61008] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3690), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6493), 1, + anon_sym_PIPE, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6688), 1, + anon_sym_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4327), 1, + aux_sym_list_pattern_repeat1, + STATE(3781), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3918), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59440] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [61056] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6508), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_DQUOTEB, - STATE(3665), 1, - aux_sym__string_literal_repeat1, - STATE(3828), 1, - sym__string_char, - ACTIONS(6286), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6288), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3691), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(5940), 1, + anon_sym_PIPE, + ACTIONS(5942), 1, + anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(6690), 1, + anon_sym_PIPE_RBRACK, + STATE(3523), 1, + aux_sym_repeat_pattern_repeat1, + STATE(4335), 1, + aux_sym_list_pattern_repeat1, + STATE(3782), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59480] = 11, + [61104] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6512), 1, + ACTIONS(6692), 1, anon_sym_DQUOTE, - ACTIONS(6514), 1, + ACTIONS(6694), 1, anon_sym_DQUOTEB, - STATE(3645), 1, + STATE(3713), 1, aux_sym__string_literal_repeat1, - STATE(3828), 1, + STATE(3959), 1, sym__string_char, - ACTIONS(6286), 3, + ACTIONS(6457), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6288), 3, + ACTIONS(6459), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3692), 3, + STATE(3783), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59520] = 6, + [61144] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3693), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6696), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3784), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3962), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59550] = 8, + [61189] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6698), 1, + anon_sym_GT, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3785), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [61234] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5101), 1, anon_sym_COLON, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3694), 3, + ACTIONS(6700), 1, + anon_sym_SEMI, + STATE(3786), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4885), 8, - anon_sym_EQ, + aux_sym_record_pattern_repeat1, + ACTIONS(5103), 6, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_in, + [61267] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, anon_sym_LT2, - [59584] = 6, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6703), 1, + sym_identifier, + ACTIONS(6705), 1, + sym__dedent, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + STATE(3787), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [61312] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3695), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6707), 1, + anon_sym_EQ, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3788), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(3940), 10, - sym__dedent, - anon_sym_LBRACK_LT, + [61357] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_default, - anon_sym_val, - [59614] = 9, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + sym_identifier, + ACTIONS(6629), 1, + anon_sym_mutable, + STATE(2994), 1, + sym_attribute_set, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4197), 1, + sym_attributes, + STATE(4426), 1, + sym_record_field, + STATE(5281), 1, + sym_access_modifier, + STATE(3789), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [61402] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4909), 1, + ACTIONS(5059), 1, anon_sym_COLON, - ACTIONS(6516), 1, + ACTIONS(6709), 1, anon_sym_SEMI, - STATE(3800), 1, + STATE(3786), 1, aux_sym_record_pattern_repeat1, - STATE(3696), 3, + STATE(3790), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4911), 6, + ACTIONS(5061), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_in, - [59649] = 10, - ACTIONS(3), 1, + [61437] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - STATE(2909), 1, - aux_sym_attributes_repeat1, - STATE(2921), 1, - sym_attribute_set, - ACTIONS(5284), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(5286), 3, - aux_sym_access_modifier_token1, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3697), 3, + ACTIONS(6715), 1, + anon_sym_DQUOTE, + STATE(3888), 1, + aux_sym__string_literal_repeat1, + STATE(4023), 1, + sym__string_char, + ACTIONS(6711), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6713), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3791), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59686] = 13, + [61474] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6518), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6520), 1, - anon_sym__, - ACTIONS(6522), 1, - anon_sym_LPAREN, - ACTIONS(6524), 1, - anon_sym_POUND2, - STATE(2826), 1, + ACTIONS(6717), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, sym_long_identifier, - STATE(2904), 1, - sym_atomic_type, - STATE(2905), 1, - sym_type_argument, - ACTIONS(6526), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3698), 3, + STATE(3792), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59729] = 14, + [61519] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(6528), 1, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6530), 1, - sym__dedent, - STATE(3158), 1, + ACTIONS(6719), 1, + anon_sym_RPAREN, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3699), 3, + STATE(3656), 1, + sym_long_identifier, + STATE(3793), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59774] = 14, + [61564] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6532), 1, + ACTIONS(6721), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3700), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [59819] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6538), 1, - anon_sym_DQUOTE, - STATE(3737), 1, - aux_sym__string_literal_repeat1, - STATE(3936), 1, - sym__string_char, - ACTIONS(6534), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6536), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3701), 3, + STATE(3794), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59856] = 13, + [61609] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -332937,116 +336945,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4059), 1, + STATE(4048), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3702), 3, + STATE(3795), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59899] = 13, + [61652] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3948), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3703), 3, + STATE(3796), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59942] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(2646), 9, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [61681] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - STATE(3776), 1, - aux_sym__string_literal_repeat1, - STATE(3936), 1, - sym__string_char, - ACTIONS(6534), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6536), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3704), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3797), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [59979] = 14, + ACTIONS(5034), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [61714] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6546), 1, + ACTIONS(6727), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3705), 3, + STATE(3798), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60024] = 13, + [61759] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333055,333 +337054,358 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4008), 1, + STATE(4092), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3706), 3, + STATE(3799), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60067] = 13, + [61802] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(4053), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3707), 3, + ACTIONS(6729), 1, + anon_sym_COLON_GT, + STATE(3800), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60110] = 13, + ACTIONS(2660), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [61833] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3961), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3708), 3, + ACTIONS(6733), 1, + anon_sym_LPAREN, + ACTIONS(6735), 1, + anon_sym_not, + ACTIONS(6737), 1, + anon_sym_enum, + ACTIONS(6739), 1, + anon_sym_delegate, + STATE(3801), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6731), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + [61870] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6741), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3802), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60153] = 14, + [61915] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6749), 1, anon_sym_AMP, - ACTIONS(6556), 1, + ACTIONS(6751), 1, anon_sym_DASH_GT, - ACTIONS(6558), 1, + ACTIONS(6753), 1, anon_sym_when, - STATE(3767), 1, + STATE(3870), 1, aux_sym_repeat_pattern_repeat1, - STATE(3709), 3, + STATE(3803), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60198] = 14, + [61960] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6560), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3710), 3, + ACTIONS(5083), 1, + anon_sym_COLON, + STATE(3815), 1, + aux_sym_record_pattern_repeat1, + STATE(3804), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60243] = 13, + ACTIONS(5085), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [61993] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6524), 1, - anon_sym_POUND2, - ACTIONS(6562), 1, + ACTIONS(6755), 1, sym_identifier, - ACTIONS(6564), 1, + ACTIONS(6757), 1, anon_sym__, - ACTIONS(6566), 1, + ACTIONS(6759), 1, anon_sym_LPAREN, - STATE(3348), 1, + ACTIONS(6761), 1, + anon_sym_POUND2, + STATE(3444), 1, sym_long_identifier, - STATE(3353), 1, + STATE(3446), 1, sym_type_argument, - STATE(3362), 1, + STATE(3447), 1, sym_atomic_type, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3711), 3, + STATE(3805), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60286] = 13, + [62036] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(4007), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3712), 3, + ACTIONS(5083), 1, + anon_sym_COLON, + ACTIONS(6709), 1, + anon_sym_SEMI, + STATE(3790), 1, + aux_sym_record_pattern_repeat1, + STATE(3806), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60329] = 13, + ACTIONS(5085), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [62071] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(4024), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3713), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_PIPE, + ACTIONS(6749), 1, + anon_sym_AMP, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5053), 2, + anon_sym_DASH_GT, + anon_sym_when, + STATE(3807), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60372] = 14, + [62114] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5497), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6703), 1, sym_identifier, - ACTIONS(6568), 1, - anon_sym_RPAREN, - STATE(3496), 1, + ACTIONS(6763), 1, + sym__dedent, + STATE(3306), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3367), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3368), 1, sym_long_identifier, - STATE(3714), 3, + STATE(3808), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60417] = 14, + [62159] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5044), 1, + anon_sym_COLON, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(3809), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6570), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3715), 3, + anon_sym_when, + [62192] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3810), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60462] = 14, + ACTIONS(5042), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [62225] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(6334), 1, - sym_identifier, - ACTIONS(6336), 1, - anon_sym_mutable, - STATE(2921), 1, - sym_attribute_set, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(4090), 1, - sym_attributes, - STATE(4565), 1, - sym_record_field, - STATE(4810), 1, - sym_access_modifier, - STATE(3716), 3, + ACTIONS(6447), 1, + anon_sym_COLON, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3811), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60507] = 13, + ACTIONS(5038), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [62258] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333390,55 +337414,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4061), 1, + STATE(4127), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3717), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [60550] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6572), 1, - anon_sym_DQUOTE, - STATE(3704), 1, - aux_sym__string_literal_repeat1, - STATE(3936), 1, - sym__string_char, - ACTIONS(6534), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6536), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3718), 3, + STATE(3812), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60587] = 13, + [62301] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333447,28 +337444,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4052), 1, + STATE(4139), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3719), 3, + STATE(3813), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60630] = 13, + [62344] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333477,59 +337474,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4050), 1, + STATE(4147), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3720), 3, + STATE(3814), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60673] = 14, + [62387] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5059), 1, + anon_sym_COLON, + STATE(3786), 1, + aux_sym_record_pattern_repeat1, + STATE(3815), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5061), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [62420] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6574), 1, - anon_sym_RPAREN, - STATE(3496), 1, + ACTIONS(6768), 1, + anon_sym_COMMA, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3721), 3, + STATE(3816), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60718] = 13, + [62465] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333538,28 +337560,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3969), 1, - sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4363), 1, + sym_type_argument_defn, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3722), 3, + STATE(3817), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [62508] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6770), 1, + anon_sym_GT, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3818), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60761] = 13, + [62553] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333568,316 +337621,296 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3996), 1, + STATE(4146), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3723), 3, + STATE(3819), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60804] = 14, + [62596] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6749), 1, anon_sym_AMP, - ACTIONS(6576), 1, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 2, anon_sym_DASH_GT, - ACTIONS(6578), 1, anon_sym_when, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3724), 3, + STATE(3820), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60849] = 8, + [62639] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3725), 3, + ACTIONS(6755), 1, + sym_identifier, + ACTIONS(6757), 1, + anon_sym__, + ACTIONS(6759), 1, + anon_sym_LPAREN, + ACTIONS(6772), 1, + anon_sym_POUND2, + STATE(3444), 1, + sym_long_identifier, + STATE(3446), 1, + sym_type_argument, + STATE(3447), 1, + sym_atomic_type, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3821), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4940), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [60882] = 8, + [62682] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3726), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4142), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3822), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4907), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [60915] = 13, + [62725] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6749), 1, anon_sym_AMP, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4975), 2, + ACTIONS(6774), 1, anon_sym_DASH_GT, + ACTIONS(6776), 1, anon_sym_when, - STATE(3727), 3, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3823), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [60958] = 14, + [62770] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3728), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4090), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3824), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61003] = 14, + [62813] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6584), 1, + ACTIONS(6778), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3729), 3, + STATE(3825), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61048] = 14, + [62858] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_PIPE, + ACTIONS(6749), 1, + anon_sym_AMP, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5123), 2, anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6586), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3730), 3, + anon_sym_when, + STATE(3826), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61093] = 13, + [62901] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3827), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5169), 7, + anon_sym_as, anon_sym_COMMA, - ACTIONS(6550), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, anon_sym_PIPE, - ACTIONS(6554), 1, anon_sym_AMP, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4855), 2, anon_sym_DASH_GT, anon_sym_when, - STATE(3731), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [61136] = 14, + [62934] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6588), 1, + ACTIONS(6780), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3732), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [61181] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3733), 3, + STATE(3828), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2603), 9, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [61210] = 13, + [62979] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -333886,195 +337919,177 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3964), 1, + STATE(4132), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3734), 3, + STATE(3829), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61253] = 14, + [63022] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6550), 1, - anon_sym_COLON_COLON, - ACTIONS(6552), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_when, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3735), 3, + ACTIONS(6270), 1, + anon_sym_STAR, + STATE(3902), 1, + aux_sym__compound_type_repeat1, + STATE(3830), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61298] = 14, + ACTIONS(2589), 7, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [63055] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6550), 1, - anon_sym_COLON_COLON, - ACTIONS(6552), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6594), 1, + ACTIONS(5495), 1, anon_sym_DASH_GT, - ACTIONS(6596), 1, - anon_sym_when, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3736), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [61343] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6598), 1, - anon_sym_DQUOTE, - STATE(3776), 1, - aux_sym__string_literal_repeat1, - STATE(3936), 1, - sym__string_char, - ACTIONS(6534), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6536), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3737), 3, + ACTIONS(5497), 1, + anon_sym_STAR, + ACTIONS(5499), 1, + anon_sym_LT2, + ACTIONS(5501), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6703), 1, + sym_identifier, + ACTIONS(6782), 1, + sym__dedent, + STATE(3306), 1, + aux_sym__compound_type_repeat1, + STATE(3367), 1, + sym_type_arguments, + STATE(3368), 1, + sym_long_identifier, + STATE(3831), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61380] = 6, + [63100] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3738), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2611), 9, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_COLON_GT, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, + ACTIONS(5897), 1, anon_sym_STAR, - anon_sym_LT2, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, sym_identifier, - [61409] = 7, + ACTIONS(6784), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3832), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [63145] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6600), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, anon_sym_STAR, - STATE(3739), 4, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6786), 1, + anon_sym_EQ, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3833), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2345), 7, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [61440] = 14, + [63190] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6603), 1, + ACTIONS(6788), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3740), 3, + STATE(3834), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61485] = 13, + [63235] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -334083,28 +338098,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3949), 1, + STATE(4116), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3741), 3, + STATE(3835), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61528] = 13, + [63278] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -334113,59 +338128,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3970), 1, + STATE(4102), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3742), 3, + STATE(3836), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61571] = 14, + [63321] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6550), 1, - anon_sym_COLON_COLON, - ACTIONS(6552), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6605), 1, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4087), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3837), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [63364] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_when, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3743), 3, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6790), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3838), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61616] = 13, + [63409] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -334174,299 +338219,326 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3991), 1, + STATE(4075), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3744), 3, + STATE(3839), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61659] = 14, + [63452] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6609), 1, + ACTIONS(6792), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3745), 3, + STATE(3840), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61704] = 14, + [63497] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6611), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3746), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4062), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3841), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61749] = 13, + [63540] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6562), 1, - sym_identifier, - ACTIONS(6564), 1, + ACTIONS(6723), 1, anon_sym__, - ACTIONS(6566), 1, - anon_sym_LPAREN, - ACTIONS(6613), 1, - anon_sym_POUND2, - STATE(3348), 1, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4051), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3842), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [63583] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6794), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, sym_long_identifier, - STATE(3353), 1, - sym_type_argument, - STATE(3362), 1, - sym_atomic_type, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3747), 3, + STATE(3843), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61792] = 14, + [63628] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6615), 1, + ACTIONS(6796), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3748), 3, + STATE(3844), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61837] = 13, + [63673] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3947), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3749), 3, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3845), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61880] = 8, - ACTIONS(3), 1, + ACTIONS(5057), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [63706] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6004), 1, - anon_sym_STAR, - STATE(3739), 1, - aux_sym__compound_type_repeat1, - STATE(3750), 3, + ACTIONS(6800), 1, + anon_sym_DQUOTE, + STATE(3888), 1, + aux_sym__string_literal_repeat1, + STATE(4023), 1, + sym__string_char, + ACTIONS(6711), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6713), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3846), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2481), 7, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [61913] = 14, + [63743] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6617), 1, - anon_sym_RPAREN, - STATE(3496), 1, + ACTIONS(6802), 1, + anon_sym_EQ, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3751), 3, + STATE(3847), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [61958] = 14, + [63788] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_PIPE, + ACTIONS(6749), 1, + anon_sym_AMP, + ACTIONS(6804), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6619), 1, - anon_sym_GT, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3752), 3, + ACTIONS(6806), 1, + anon_sym_when, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3848), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62003] = 14, + [63833] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6621), 1, - anon_sym_EQ, - STATE(3496), 1, + ACTIONS(6808), 1, + anon_sym_RPAREN, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3753), 3, + STATE(3849), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62048] = 13, + [63878] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -334475,668 +338547,788 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4004), 1, + STATE(4093), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3754), 3, + STATE(3850), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62091] = 13, + [63921] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - STATE(4279), 1, - sym_type_argument_defn, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3755), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6810), 1, + anon_sym_COMMA, + ACTIONS(6812), 1, + anon_sym_COLON_COLON, + ACTIONS(6814), 1, + anon_sym_PIPE, + ACTIONS(6816), 1, + anon_sym_AMP, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5053), 2, + anon_sym_SEMI, + anon_sym_in, + STATE(3851), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62134] = 14, + [63964] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(5044), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6818), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + STATE(3852), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 6, + anon_sym_as, anon_sym_COLON_COLON, - ACTIONS(6552), 1, anon_sym_PIPE, - ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(6623), 1, - anon_sym_DASH_GT, - ACTIONS(6625), 1, - anon_sym_when, - STATE(3767), 1, + anon_sym_SEMI, + anon_sym_in, + [63997] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3879), 1, aux_sym_repeat_pattern_repeat1, - STATE(3756), 3, + STATE(3853), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62179] = 14, + ACTIONS(5042), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [64030] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6627), 1, - anon_sym_RPAREN, - STATE(3496), 1, + ACTIONS(6821), 1, + anon_sym_EQ, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3757), 3, + STATE(3854), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62224] = 10, + [64075] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6631), 1, - anon_sym_LPAREN, - ACTIONS(6633), 1, - anon_sym_not, - ACTIONS(6635), 1, - anon_sym_enum, - ACTIONS(6637), 1, - anon_sym_delegate, - STATE(3758), 3, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3855), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6629), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - [62261] = 14, + ACTIONS(5038), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [64108] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6639), 1, + ACTIONS(6823), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3759), 3, + STATE(3856), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62306] = 14, + [64153] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3857), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5034), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [64186] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6641), 1, + ACTIONS(6825), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3760), 3, + STATE(3858), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62351] = 8, + [64231] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - STATE(3779), 1, - aux_sym_record_pattern_repeat1, - STATE(3761), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4901), 7, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6810), 1, anon_sym_COMMA, + ACTIONS(6812), 1, anon_sym_COLON_COLON, + ACTIONS(6814), 1, anon_sym_PIPE, + ACTIONS(6816), 1, anon_sym_AMP, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 2, anon_sym_SEMI, anon_sym_in, - [62384] = 14, + STATE(3859), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64274] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4038), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3860), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64317] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6643), 1, - anon_sym_EQ, - STATE(3496), 1, + ACTIONS(6827), 1, + anon_sym_RPAREN, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3762), 3, + STATE(3861), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62429] = 14, + [64362] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_PIPE, + ACTIONS(6749), 1, + anon_sym_AMP, + ACTIONS(6829), 1, + anon_sym_DASH_GT, + ACTIONS(6831), 1, + anon_sym_when, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3862), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64407] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6833), 1, + anon_sym_DQUOTE, + STATE(3791), 1, + aux_sym__string_literal_repeat1, + STATE(4023), 1, + sym__string_char, + ACTIONS(6711), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6713), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3863), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64444] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6645), 1, + ACTIONS(6835), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3763), 3, + STATE(3864), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62474] = 8, + [64489] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3764), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4907), 7, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, anon_sym_COMMA, + ACTIONS(6745), 1, anon_sym_COLON_COLON, + ACTIONS(6747), 1, anon_sym_PIPE, + ACTIONS(6749), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [62507] = 8, + ACTIONS(6837), 1, + anon_sym_DASH_GT, + ACTIONS(6839), 1, + anon_sym_when, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3865), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64534] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4909), 1, - anon_sym_COLON, - STATE(3761), 1, - aux_sym_record_pattern_repeat1, - STATE(3765), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4068), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3866), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4911), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [62540] = 13, + [64577] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6647), 1, + ACTIONS(6810), 1, anon_sym_COMMA, - ACTIONS(6649), 1, + ACTIONS(6812), 1, anon_sym_COLON_COLON, - ACTIONS(6651), 1, + ACTIONS(6814), 1, anon_sym_PIPE, - ACTIONS(6653), 1, + ACTIONS(6816), 1, anon_sym_AMP, - STATE(3805), 1, + STATE(3879), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(4855), 2, + ACTIONS(5123), 2, anon_sym_SEMI, anon_sym_in, - STATE(3766), 3, + STATE(3867), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62583] = 9, + [64620] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4915), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - STATE(3808), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3767), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4917), 6, - anon_sym_as, + ACTIONS(6745), 1, anon_sym_COLON_COLON, + ACTIONS(6747), 1, anon_sym_PIPE, + ACTIONS(6749), 1, anon_sym_AMP, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(3858), 2, anon_sym_DASH_GT, anon_sym_when, - [62618] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(3957), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3768), 3, + STATE(3868), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62661] = 14, + [64663] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6548), 1, + STATE(3879), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3869), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5169), 7, + anon_sym_as, anon_sym_COMMA, - ACTIONS(6550), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, anon_sym_PIPE, - ACTIONS(6554), 1, anon_sym_AMP, - ACTIONS(6655), 1, - anon_sym_DASH_GT, - ACTIONS(6657), 1, - anon_sym_when, - STATE(3767), 1, + anon_sym_SEMI, + anon_sym_in, + [64696] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5014), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + STATE(3809), 1, aux_sym_repeat_pattern_repeat1, - STATE(3769), 3, + STATE(3870), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62706] = 14, + ACTIONS(5016), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [64731] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6659), 1, + ACTIONS(6841), 1, anon_sym_EQ, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3770), 3, + STATE(3871), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62751] = 14, + [64776] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6661), 1, + ACTIONS(6843), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3771), 3, + STATE(3872), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62796] = 14, + [64821] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5336), 1, - anon_sym_DASH_GT, - ACTIONS(5338), 1, - anon_sym_LT2, - ACTIONS(5340), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__dedent, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(3772), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4050), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3873), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62841] = 14, + [64864] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_COMMA, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_PIPE, + ACTIONS(6749), 1, + anon_sym_AMP, + ACTIONS(6845), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6665), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3773), 3, + ACTIONS(6847), 1, + anon_sym_when, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3874), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [62886] = 7, + [64909] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6667), 1, - anon_sym_COLON_GT, - STATE(3774), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(2607), 8, - sym__newline, - sym__indent, - sym__dedent, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, + ACTIONS(5897), 1, anon_sym_STAR, - anon_sym_LT2, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, sym_identifier, - [62917] = 14, + ACTIONS(6849), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3875), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [64954] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6749), 1, anon_sym_AMP, - ACTIONS(6669), 1, + ACTIONS(6851), 1, anon_sym_DASH_GT, - ACTIONS(6671), 1, + ACTIONS(6853), 1, anon_sym_when, - STATE(3767), 1, + STATE(3870), 1, aux_sym_repeat_pattern_repeat1, - STATE(3775), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [62962] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6427), 1, - anon_sym_DQUOTE, - STATE(3936), 1, - sym__string_char, - ACTIONS(6673), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6676), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3776), 4, + STATE(3876), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__string_literal_repeat1, - [62997] = 13, + [64999] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -335145,374 +339337,265 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4042), 1, + STATE(4054), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3777), 3, + STATE(3877), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63040] = 13, + [65042] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6810), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6812), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6814), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6816), 1, anon_sym_AMP, - STATE(3767), 1, + STATE(3879), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(3736), 2, - anon_sym_DASH_GT, - anon_sym_when, - STATE(3778), 3, + ACTIONS(3858), 2, + anon_sym_SEMI, + anon_sym_in, + STATE(3878), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63083] = 8, + [65085] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4931), 1, + ACTIONS(5014), 1, anon_sym_COLON, - ACTIONS(6679), 1, - anon_sym_SEMI, - STATE(3779), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(4933), 6, - anon_sym_as, + ACTIONS(6810), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - [63116] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6682), 1, - anon_sym_EQ, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3780), 3, + STATE(3852), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3879), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63161] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5016), 6, anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6647), 1, - anon_sym_COMMA, - ACTIONS(6649), 1, anon_sym_COLON_COLON, - ACTIONS(6651), 1, anon_sym_PIPE, - ACTIONS(6653), 1, anon_sym_AMP, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4975), 2, anon_sym_SEMI, anon_sym_in, - STATE(3781), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [63204] = 14, + [65120] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6684), 1, + ACTIONS(6855), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3782), 3, + STATE(3880), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63249] = 14, + [65165] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6686), 1, + ACTIONS(6857), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3783), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [63294] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - STATE(3776), 1, - aux_sym__string_literal_repeat1, - STATE(3936), 1, - sym__string_char, - ACTIONS(6534), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - ACTIONS(6536), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(3784), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [63331] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4919), 1, - anon_sym_COLON, - ACTIONS(6690), 1, - anon_sym_COMMA, - STATE(3785), 4, + STATE(3881), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [63364] = 13, + [65210] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6562), 1, - sym_identifier, - ACTIONS(6564), 1, + ACTIONS(6723), 1, anon_sym__, - ACTIONS(6566), 1, - anon_sym_LPAREN, - ACTIONS(6693), 1, - anon_sym_POUND2, - STATE(3348), 1, - sym_long_identifier, - STATE(3353), 1, + STATE(3043), 1, + aux_sym_attributes_repeat1, + STATE(3174), 1, + sym_attribute_set, + STATE(4078), 1, + sym_type_argument_defn, + STATE(4168), 1, + sym_attributes, + STATE(4375), 1, sym_type_argument, - STATE(3362), 1, - sym_atomic_type, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3786), 3, + STATE(3882), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63407] = 14, + [65253] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6312), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6548), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6550), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6552), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6554), 1, + ACTIONS(6749), 1, anon_sym_AMP, - ACTIONS(6695), 1, + ACTIONS(6859), 1, anon_sym_DASH_GT, - ACTIONS(6697), 1, + ACTIONS(6861), 1, anon_sym_when, - STATE(3767), 1, + STATE(3870), 1, aux_sym_repeat_pattern_repeat1, - STATE(3787), 3, + STATE(3883), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63452] = 8, - ACTIONS(3), 1, + [65298] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3788), 3, + ACTIONS(6863), 1, + anon_sym_DQUOTE, + STATE(3888), 1, + aux_sym__string_literal_repeat1, + STATE(4023), 1, + sym__string_char, + ACTIONS(6711), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6713), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3884), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4885), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [63485] = 13, + [65335] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(2968), 1, - aux_sym_attributes_repeat1, - STATE(3120), 1, - sym_attribute_set, - STATE(4005), 1, - sym_type_argument_defn, - STATE(4074), 1, - sym_attributes, - STATE(4167), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3789), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, + anon_sym_DASH_GT, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6865), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3885), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63528] = 13, + [65380] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -335521,408 +339604,364 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(4031), 1, + STATE(4121), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3790), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [63571] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3791), 3, + STATE(3886), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4929), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [63604] = 14, + [65423] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6550), 1, - anon_sym_COLON_COLON, - ACTIONS(6552), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, - anon_sym_AMP, - ACTIONS(6699), 1, - anon_sym_DASH_GT, - ACTIONS(6701), 1, - anon_sym_when, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3792), 3, + STATE(2989), 1, + aux_sym_attributes_repeat1, + STATE(2994), 1, + sym_attribute_set, + ACTIONS(5483), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(5485), 3, + aux_sym_access_modifier_token1, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3887), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63649] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + [65460] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3793), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4925), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [63682] = 13, - ACTIONS(3), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6647), 1, - anon_sym_COMMA, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(6653), 1, - anon_sym_AMP, - STATE(3805), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 2, - anon_sym_SEMI, - anon_sym_in, - STATE(3794), 3, + ACTIONS(6548), 1, + anon_sym_DQUOTE, + STATE(4023), 1, + sym__string_char, + ACTIONS(6867), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6870), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3888), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63725] = 14, + aux_sym__string_literal_repeat1, + [65495] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(6703), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3795), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [63770] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(6705), 1, + ACTIONS(6873), 1, anon_sym__, - ACTIONS(6707), 1, + ACTIONS(6875), 1, anon_sym_LPAREN, - ACTIONS(6709), 1, + ACTIONS(6877), 1, anon_sym_POUND2, - STATE(2751), 1, + STATE(2766), 1, sym_long_identifier, - STATE(2763), 1, + STATE(2854), 1, sym_type_argument, - STATE(2764), 1, + STATE(2855), 1, sym_atomic_type, - ACTIONS(6711), 2, + ACTIONS(6879), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3796), 3, + STATE(3889), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63813] = 14, + [65538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5336), 1, + STATE(3890), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2650), 9, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_COLON_GT, anon_sym_DASH_GT, - ACTIONS(5338), 1, + anon_sym_STAR, anon_sym_LT2, - ACTIONS(5340), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(5362), 1, - anon_sym_STAR, - ACTIONS(6528), 1, sym_identifier, - ACTIONS(6713), 1, - sym__dedent, - STATE(3158), 1, - aux_sym__compound_type_repeat1, - STATE(3291), 1, - sym_long_identifier, - STATE(3300), 1, - sym_type_arguments, - STATE(3797), 3, + [65567] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3891), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63858] = 14, + ACTIONS(2605), 9, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [65596] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6715), 1, + ACTIONS(6881), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3798), 3, + STATE(3892), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63903] = 10, + [65641] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6717), 1, + ACTIONS(6883), 1, anon_sym_DQUOTE, - STATE(3784), 1, + STATE(3846), 1, aux_sym__string_literal_repeat1, - STATE(3936), 1, + STATE(4023), 1, sym__string_char, - ACTIONS(6534), 3, + ACTIONS(6711), 3, sym__escape_char, sym__non_escape_char, sym__simple_string_char, - ACTIONS(6536), 3, + ACTIONS(6713), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(3799), 3, + STATE(3893), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [63940] = 9, + [65678] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(6516), 1, - anon_sym_SEMI, - STATE(3779), 1, - aux_sym_record_pattern_repeat1, - STATE(3800), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4901), 6, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6447), 1, + anon_sym_COLON, + ACTIONS(6743), 1, anon_sym_COMMA, + ACTIONS(6745), 1, anon_sym_COLON_COLON, + ACTIONS(6747), 1, anon_sym_PIPE, + ACTIONS(6749), 1, anon_sym_AMP, - anon_sym_in, - [63975] = 14, + ACTIONS(6885), 1, + anon_sym_DASH_GT, + ACTIONS(6887), 1, + anon_sym_when, + STATE(3870), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3894), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [65723] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, + ACTIONS(5835), 1, anon_sym_LT2, - ACTIONS(5727), 1, + ACTIONS(5895), 1, anon_sym_DASH_GT, - ACTIONS(5729), 1, + ACTIONS(5897), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5899), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6376), 1, sym_identifier, - ACTIONS(6719), 1, - anon_sym_EQ, - STATE(3496), 1, + ACTIONS(6889), 1, + anon_sym_RPAREN, + STATE(3593), 1, aux_sym__compound_type_repeat1, - STATE(3514), 1, + STATE(3646), 1, sym_type_arguments, - STATE(3578), 1, + STATE(3656), 1, sym_long_identifier, - STATE(3801), 3, + STATE(3895), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64020] = 14, + [65768] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6891), 1, sym_identifier, - ACTIONS(6721), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, + ACTIONS(6893), 1, + anon_sym__, + ACTIONS(6895), 1, + anon_sym_LPAREN, + ACTIONS(6897), 1, + anon_sym_POUND2, + STATE(2904), 1, sym_long_identifier, - STATE(3802), 3, + STATE(2981), 1, + sym_atomic_type, + STATE(2982), 1, + sym_type_argument, + ACTIONS(6899), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3896), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [65811] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6901), 1, + anon_sym_DQUOTE, + STATE(3884), 1, + aux_sym__string_literal_repeat1, + STATE(4023), 1, + sym__string_char, + ACTIONS(6711), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + ACTIONS(6713), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(3897), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64065] = 14, + [65848] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + ACTIONS(6755), 1, sym_identifier, - ACTIONS(6723), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, + ACTIONS(6757), 1, + anon_sym__, + ACTIONS(6759), 1, + anon_sym_LPAREN, + ACTIONS(6897), 1, + anon_sym_POUND2, + STATE(3444), 1, sym_long_identifier, - STATE(3803), 3, + STATE(3446), 1, + sym_type_argument, + STATE(3447), 1, + sym_atomic_type, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3898), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64110] = 13, + [65891] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -335931,444 +339970,399 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, + ACTIONS(6723), 1, anon_sym__, - STATE(2968), 1, + STATE(3043), 1, aux_sym_attributes_repeat1, - STATE(3120), 1, + STATE(3174), 1, sym_attribute_set, - STATE(3967), 1, + STATE(4137), 1, sym_type_argument_defn, - STATE(4074), 1, + STATE(4168), 1, sym_attributes, - STATE(4167), 1, + STATE(4375), 1, sym_type_argument, - ACTIONS(6542), 2, + ACTIONS(6725), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3804), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [64153] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4915), 1, - anon_sym_COLON, - ACTIONS(6647), 1, - anon_sym_COMMA, - STATE(3785), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3805), 3, + STATE(3899), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4917), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [64188] = 13, + [65934] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6447), 1, anon_sym_COLON, - ACTIONS(6647), 1, + ACTIONS(6743), 1, anon_sym_COMMA, - ACTIONS(6649), 1, + ACTIONS(6745), 1, anon_sym_COLON_COLON, - ACTIONS(6651), 1, + ACTIONS(6747), 1, anon_sym_PIPE, - ACTIONS(6653), 1, + ACTIONS(6749), 1, anon_sym_AMP, - STATE(3805), 1, + ACTIONS(6903), 1, + anon_sym_DASH_GT, + ACTIONS(6905), 1, + anon_sym_when, + STATE(3870), 1, aux_sym_repeat_pattern_repeat1, - ACTIONS(3736), 2, - anon_sym_SEMI, - anon_sym_in, - STATE(3806), 3, + STATE(3900), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64231] = 13, + [65979] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6312), 1, - anon_sym_COLON, - ACTIONS(6548), 1, - anon_sym_COMMA, - ACTIONS(6550), 1, - anon_sym_COLON_COLON, - ACTIONS(6552), 1, - anon_sym_PIPE, - ACTIONS(6554), 1, - anon_sym_AMP, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 2, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5895), 1, anon_sym_DASH_GT, - anon_sym_when, - STATE(3807), 3, + ACTIONS(5897), 1, + anon_sym_STAR, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + ACTIONS(6907), 1, + anon_sym_RPAREN, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + STATE(3901), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64274] = 8, + [66024] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4919), 1, - anon_sym_COLON, - ACTIONS(6725), 1, - anon_sym_COMMA, - STATE(3808), 4, + ACTIONS(6909), 1, + anon_sym_STAR, + STATE(3902), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + aux_sym__compound_type_repeat1, + ACTIONS(2321), 7, + sym__newline, + sym__indent, + sym__dedent, anon_sym_DASH_GT, - anon_sym_when, - [64307] = 8, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [66055] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3809), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4885), 7, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [64340] = 8, + ACTIONS(6912), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3903), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [66097] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3810), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4925), 7, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [64373] = 6, + ACTIONS(6914), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3904), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [66139] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3811), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_AMP, + ACTIONS(6924), 1, + anon_sym_in, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3905), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2485), 9, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [64402] = 14, + [66181] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6728), 1, - anon_sym_GT, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3812), 3, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_COLON_COLON, + ACTIONS(6469), 1, + anon_sym_PIPE, + ACTIONS(6471), 1, + anon_sym_AMP, + ACTIONS(6926), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3906), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64447] = 14, + [66223] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5727), 1, - anon_sym_DASH_GT, - ACTIONS(5729), 1, - anon_sym_STAR, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6730), 1, + ACTIONS(5046), 1, + anon_sym_in, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, anon_sym_COMMA, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - STATE(3813), 3, + ACTIONS(6918), 1, + anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_AMP, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3907), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64492] = 8, + [66265] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6312), 1, - anon_sym_COLON, - STATE(3767), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3814), 3, + STATE(3908), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4929), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2664), 8, + sym__newline, + sym__indent, + sym__dedent, anon_sym_DASH_GT, - anon_sym_when, - [64525] = 13, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [66293] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6740), 1, + ACTIONS(6928), 1, anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3815), 3, + STATE(3909), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64567] = 7, - ACTIONS(3), 1, + [66335] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(3816), 3, + STATE(3910), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5230), 4, - anon_sym__, - anon_sym_LPAREN, - anon_sym_POUND, - sym_identifier, - ACTIONS(5232), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_CARET, - [64597] = 6, + ACTIONS(6930), 4, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + anon_sym_DQUOTEB, + ACTIONS(6932), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + [66365] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3817), 3, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3911), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2589), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [64625] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5169), 6, anon_sym_as, - ACTIONS(6300), 1, anon_sym_COMMA, - ACTIONS(6302), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, anon_sym_PIPE, - ACTIONS(6306), 1, anon_sym_AMP, - ACTIONS(6742), 1, - anon_sym_EQ, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3818), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [64667] = 13, + anon_sym_in, + [66397] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(3858), 1, + anon_sym_in, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6744), 1, - anon_sym_EQ, - STATE(3647), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3819), 3, + STATE(3912), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64709] = 6, + [66439] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3820), 3, + STATE(3913), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2577), 8, + ACTIONS(2681), 8, sym__newline, sym__indent, sym__dedent, @@ -336377,315 +340371,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [64737] = 13, + [66467] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5123), 1, + anon_sym_in, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6746), 1, - anon_sym_EQ, - STATE(3647), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3821), 3, + STATE(3914), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64779] = 13, + [66509] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6748), 1, - anon_sym_EQ, - STATE(3647), 1, + ACTIONS(6934), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3822), 3, + STATE(3915), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64821] = 6, + [66551] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3823), 3, + ACTIONS(6936), 1, + anon_sym_LT2, + STATE(3916), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2599), 8, + ACTIONS(2654), 7, sym__newline, sym__indent, sym__dedent, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [64849] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6750), 1, - anon_sym_EQ, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3824), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [64891] = 8, + [66581] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COLON, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3825), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + ACTIONS(3660), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3917), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4907), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - [64923] = 13, + [66621] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - STATE(3834), 1, + ACTIONS(6938), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3826), 3, + STATE(3918), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [64965] = 13, + [66663] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_COLON_COLON, - ACTIONS(6736), 1, - anon_sym_PIPE, - ACTIONS(6738), 1, - anon_sym_AMP, - ACTIONS(6752), 1, - anon_sym_in, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3827), 3, + STATE(3919), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65007] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(2660), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [66691] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(3828), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6754), 4, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - anon_sym_DQUOTEB, - ACTIONS(6756), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - [65037] = 7, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6758), 3, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(3829), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + ACTIONS(6940), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3920), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6760), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - anon_sym_DQUOTE, - [65067] = 13, + [66731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6762), 1, - anon_sym_RPAREN, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3830), 3, + STATE(3921), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65109] = 13, + ACTIONS(2621), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [66759] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6764), 1, - anon_sym_RPAREN, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3831), 3, + STATE(3922), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65151] = 6, + ACTIONS(2630), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [66787] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3832), 3, + STATE(3923), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2607), 8, + ACTIONS(2687), 8, sym__newline, sym__indent, sym__dedent, @@ -336694,433 +340625,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [65179] = 13, + [66815] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6766), 1, + ACTIONS(6942), 1, anon_sym_EQ, - STATE(3647), 1, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3833), 3, + STATE(3924), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65221] = 9, + [66857] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4915), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, - anon_sym_COMMA, - STATE(3860), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3834), 3, + STATE(3925), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4917), 5, + ACTIONS(5038), 6, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_in, - [65255] = 13, + [66889] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3736), 1, - anon_sym_in, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - STATE(3834), 1, + ACTIONS(6944), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3835), 3, + STATE(3926), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65297] = 7, + [66931] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6768), 1, - anon_sym_LT2, - STATE(3836), 3, + STATE(3927), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2622), 7, + ACTIONS(2634), 8, sym__newline, sym__indent, sym__dedent, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [65327] = 7, + [66959] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3837), 3, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3928), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6770), 4, - anon_sym__, - anon_sym_LPAREN, - anon_sym_POUND, - sym_identifier, - ACTIONS(6772), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_CARET, - [65357] = 13, + ACTIONS(5042), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + [66991] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6774), 1, - anon_sym_RPAREN, - STATE(3647), 1, + ACTIONS(6946), 1, + anon_sym_EQ, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3838), 3, + STATE(3929), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65399] = 13, + [67033] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(5044), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6948), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + STATE(3930), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_repeat_pattern_repeat1, + ACTIONS(5046), 5, + anon_sym_as, anon_sym_COLON_COLON, - ACTIONS(6736), 1, anon_sym_PIPE, - ACTIONS(6738), 1, anon_sym_AMP, - ACTIONS(6776), 1, anon_sym_in, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3839), 3, + [67065] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3931), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65441] = 13, + ACTIONS(2677), 8, + sym__newline, + sym__indent, + sym__dedent, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [67093] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6778), 1, + ACTIONS(6951), 1, anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3840), 3, + STATE(3932), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65483] = 13, + [67135] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, + ACTIONS(4602), 1, anon_sym_let, - ACTIONS(4478), 1, + ACTIONS(4604), 1, anon_sym_let_BANG, - ACTIONS(5711), 1, + ACTIONS(5922), 1, anon_sym_do, - ACTIONS(5715), 1, + ACTIONS(5926), 1, anon_sym_member, - ACTIONS(5721), 1, + ACTIONS(5932), 1, anon_sym_val, - STATE(4615), 1, + STATE(4459), 1, sym_function_or_value_defn, - STATE(4723), 1, + STATE(4764), 1, sym_access_modifier, - STATE(3841), 3, + STATE(3933), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65525] = 13, + [67177] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4476), 1, - anon_sym_let, - ACTIONS(4478), 1, - anon_sym_let_BANG, - ACTIONS(6780), 1, - anon_sym_do, - ACTIONS(6782), 1, - anon_sym_member, - ACTIONS(6784), 1, - anon_sym_val, - STATE(4349), 1, - sym_function_or_value_defn, - STATE(4709), 1, - sym_access_modifier, - STATE(3842), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_AMP, + ACTIONS(6953), 1, + anon_sym_in, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3934), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65567] = 13, + [67219] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6786), 1, - anon_sym_in, - STATE(3834), 1, + ACTIONS(6955), 1, + anon_sym_RPAREN, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3843), 3, + STATE(3935), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65609] = 13, + [67261] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6788), 1, + ACTIONS(6957), 1, anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3844), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [65651] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - STATE(3845), 3, + STATE(3936), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6790), 4, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - anon_sym_DQUOTEB, - ACTIONS(6792), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - [65681] = 13, + [67303] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5053), 1, + anon_sym_in, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6794), 1, - anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3846), 3, + STATE(3937), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65723] = 13, + [67345] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6300), 1, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6304), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6306), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6796), 1, - anon_sym_EQ, - STATE(3647), 1, + ACTIONS(6959), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3847), 3, + STATE(3938), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65765] = 6, + [67387] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3848), 3, + STATE(3939), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2569), 8, + ACTIONS(2642), 8, sym__newline, sym__indent, sym__dedent, @@ -337129,378 +341053,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [65793] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6790), 3, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - STATE(3849), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(6792), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - sym__simple_string_char, - anon_sym_DQUOTE, - [65823] = 6, + [67415] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3850), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_AMP, + ACTIONS(6961), 1, + anon_sym_in, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3940), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2628), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [65851] = 13, + [67457] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - ACTIONS(6798), 1, + ACTIONS(6963), 1, anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3851), 3, + STATE(3941), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65893] = 13, + [67499] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6800), 1, - anon_sym_in, - STATE(3834), 1, + ACTIONS(6965), 1, + anon_sym_RPAREN, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3852), 3, + STATE(3942), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65935] = 13, + [67541] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3685), 1, + anon_sym_COLON, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4921), 1, - anon_sym_in, - ACTIONS(5752), 1, + ACTIONS(5962), 1, + anon_sym_DOT, + STATE(3537), 1, + aux_sym_long_identifier_repeat1, + STATE(3943), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(2523), 5, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [67575] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - STATE(3834), 1, + ACTIONS(6967), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3853), 3, + STATE(3944), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [67617] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6969), 3, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(3945), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [65977] = 12, + ACTIONS(6971), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + anon_sym_DQUOTE, + [67647] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, + STATE(3946), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(6973), 4, + anon_sym__, + anon_sym_LPAREN, + anon_sym_POUND, sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(6802), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3854), 3, + ACTIONS(6975), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_CARET, + [67677] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5289), 1, + anon_sym_COLON, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_COLON_COLON, + ACTIONS(6469), 1, + anon_sym_PIPE, + ACTIONS(6471), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3947), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66017] = 8, + [67719] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, + ACTIONS(5014), 1, anon_sym_COLON, - STATE(3834), 1, + ACTIONS(6916), 1, + anon_sym_COMMA, + STATE(3930), 1, aux_sym_repeat_pattern_repeat1, - STATE(3855), 3, + STATE(3948), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(4925), 6, + ACTIONS(5016), 5, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_in, - [66049] = 8, + [67753] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3856), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4929), 6, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_in, - [66081] = 6, + ACTIONS(6979), 1, + anon_sym_RPAREN, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3949), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [67795] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3857), 3, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, + anon_sym_COLON, + ACTIONS(6916), 1, + anon_sym_COMMA, + ACTIONS(6918), 1, + anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_AMP, + ACTIONS(6981), 1, + anon_sym_in, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3950), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2573), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [66109] = 8, + [67837] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3858), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - ACTIONS(4885), 6, + ACTIONS(5934), 1, anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, + ACTIONS(6467), 1, anon_sym_COLON_COLON, + ACTIONS(6469), 1, anon_sym_PIPE, + ACTIONS(6471), 1, anon_sym_AMP, - anon_sym_in, - [66141] = 6, + ACTIONS(6983), 1, + anon_sym_EQ, + STATE(3731), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3951), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [67879] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3859), 3, + STATE(3952), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2593), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, + ACTIONS(5422), 4, + anon_sym__, + anon_sym_LPAREN, + anon_sym_POUND, sym_identifier, - [66169] = 8, + ACTIONS(5424), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_CARET, + [67909] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4919), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6804), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - STATE(3860), 4, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(4921), 5, - anon_sym_as, + ACTIONS(6918), 1, anon_sym_COLON_COLON, + ACTIONS(6920), 1, anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_AMP, + ACTIONS(6985), 1, anon_sym_in, - [66201] = 13, + STATE(3948), 1, + aux_sym_repeat_pattern_repeat1, + STATE(3953), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [67951] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4975), 1, - anon_sym_in, - ACTIONS(5752), 1, + ACTIONS(5934), 1, anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6918), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6922), 1, anon_sym_AMP, - STATE(3834), 1, + ACTIONS(6987), 1, + anon_sym_in, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3861), 3, + STATE(3954), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66243] = 13, + [67993] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6807), 1, - anon_sym_in, - STATE(3834), 1, + ACTIONS(6989), 1, + anon_sym_RPAREN, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3862), 3, + STATE(3955), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66285] = 6, + [68035] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3863), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(5899), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6376), 1, + sym_identifier, + STATE(3593), 1, + aux_sym__compound_type_repeat1, + STATE(3646), 1, + sym_type_arguments, + STATE(3656), 1, + sym_long_identifier, + ACTIONS(6991), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(3956), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [68075] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(3957), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2581), 8, + ACTIONS(2638), 8, sym__newline, sym__indent, sym__dedent, @@ -337509,435 +341541,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, sym_identifier, - [66313] = 7, + [68103] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3864), 3, + STATE(3958), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5254), 4, + ACTIONS(5400), 4, anon_sym__, anon_sym_LPAREN, anon_sym_POUND, sym_identifier, - ACTIONS(5256), 4, + ACTIONS(5402), 4, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_SQUOTE, anon_sym_CARET, - [66343] = 9, - ACTIONS(3), 1, + [68133] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3545), 1, - anon_sym_COLON, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5784), 1, - anon_sym_DOT, - STATE(3447), 1, - aux_sym_long_identifier_repeat1, - STATE(3865), 3, + STATE(3959), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2475), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [66377] = 7, + ACTIONS(6993), 4, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + anon_sym_DQUOTEB, + ACTIONS(6995), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + [68163] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3866), 3, + STATE(3960), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5248), 4, + ACTIONS(5396), 4, anon_sym__, anon_sym_LPAREN, anon_sym_POUND, sym_identifier, - ACTIONS(5250), 4, + ACTIONS(5398), 4, anon_sym_LBRACK_LT, anon_sym_QMARK, anon_sym_SQUOTE, anon_sym_CARET, - [66407] = 13, + [68193] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(6798), 1, anon_sym_COLON, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_COLON_COLON, - ACTIONS(6736), 1, - anon_sym_PIPE, - ACTIONS(6738), 1, - anon_sym_AMP, - ACTIONS(6809), 1, - anon_sym_in, - STATE(3834), 1, + STATE(3948), 1, aux_sym_repeat_pattern_repeat1, - STATE(3867), 3, + STATE(3961), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66449] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, + ACTIONS(5034), 6, anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6734), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, anon_sym_PIPE, - ACTIONS(6738), 1, anon_sym_AMP, - ACTIONS(6811), 1, anon_sym_in, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3868), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [66491] = 7, + [68225] = 7, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6813), 3, + ACTIONS(6997), 3, sym__escape_char, sym__non_escape_char, anon_sym_LBRACE2, - STATE(3869), 3, + STATE(3962), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6815), 5, + ACTIONS(6999), 5, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, sym__simple_string_char, anon_sym_DQUOTE, - [66521] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + [68255] = 7, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(3530), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3870), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [66561] = 12, - ACTIONS(3), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(5731), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6201), 1, - sym_identifier, - STATE(3496), 1, - aux_sym__compound_type_repeat1, - STATE(3514), 1, - sym_type_arguments, - STATE(3578), 1, - sym_long_identifier, - ACTIONS(6817), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3871), 3, + ACTIONS(6930), 3, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + STATE(3963), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66601] = 6, + ACTIONS(6932), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + sym__simple_string_char, + anon_sym_DQUOTE, + [68285] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(3872), 3, + ACTIONS(4602), 1, + anon_sym_let, + ACTIONS(4604), 1, + anon_sym_let_BANG, + ACTIONS(7001), 1, + anon_sym_do, + ACTIONS(7003), 1, + anon_sym_member, + ACTIONS(7005), 1, + anon_sym_val, + STATE(4733), 1, + sym_function_or_value_defn, + STATE(4755), 1, + sym_access_modifier, + STATE(3964), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(2585), 8, - sym__newline, - sym__indent, - sym__dedent, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [66629] = 13, + [68327] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, + ACTIONS(5289), 1, anon_sym_COLON, - ACTIONS(6732), 1, + ACTIONS(5934), 1, + anon_sym_as, + ACTIONS(6465), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6467), 1, anon_sym_COLON_COLON, - ACTIONS(6736), 1, + ACTIONS(6469), 1, anon_sym_PIPE, - ACTIONS(6738), 1, + ACTIONS(6471), 1, anon_sym_AMP, - ACTIONS(6819), 1, - anon_sym_in, - STATE(3834), 1, + ACTIONS(7007), 1, + anon_sym_EQ, + STATE(3731), 1, aux_sym_repeat_pattern_repeat1, - STATE(3873), 3, + STATE(3965), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66671] = 13, - ACTIONS(3), 1, + [68369] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(7012), 1, + sym__simple_string_char, + ACTIONS(7015), 1, + anon_sym_DQUOTE2, + ACTIONS(7017), 1, + anon_sym_DQUOTEB, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7009), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3966), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_verbatim_string_repeat1, + [68404] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_RPAREN, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3874), 3, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7023), 1, + anon_sym_DQUOTE2, + ACTIONS(7025), 1, + anon_sym_DQUOTEB, + STATE(4008), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3967), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66713] = 13, - ACTIONS(3), 1, + [68441] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7027), 1, + anon_sym_DQUOTE2, + ACTIONS(7029), 1, + anon_sym_DQUOTEB, + STATE(3969), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3968), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [68478] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6302), 1, - anon_sym_COLON_COLON, - ACTIONS(6304), 1, - anon_sym_PIPE, - ACTIONS(6306), 1, - anon_sym_AMP, - ACTIONS(6823), 1, - anon_sym_EQ, - STATE(3647), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3875), 3, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7031), 1, + anon_sym_DQUOTE2, + ACTIONS(7033), 1, + anon_sym_DQUOTEB, + STATE(3966), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3969), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66755] = 13, + [68515] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_COLON_COLON, - ACTIONS(6736), 1, - anon_sym_PIPE, - ACTIONS(6738), 1, - anon_sym_AMP, - ACTIONS(6825), 1, - anon_sym_in, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3876), 3, + ACTIONS(7035), 1, + sym_identifier, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, + sym__method_defn, + STATE(3624), 1, + sym__property_defn, + STATE(3625), 1, + sym_method_or_prop_defn, + STATE(4091), 1, + sym_access_modifier, + STATE(3970), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66797] = 13, + [68554] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5752), 1, - anon_sym_as, - ACTIONS(6580), 1, - anon_sym_COLON, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_COLON_COLON, - ACTIONS(6736), 1, - anon_sym_PIPE, - ACTIONS(6738), 1, - anon_sym_AMP, - ACTIONS(6827), 1, - anon_sym_in, - STATE(3834), 1, - aux_sym_repeat_pattern_repeat1, - STATE(3877), 3, + ACTIONS(3898), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7037), 1, + aux_sym_access_modifier_token1, + ACTIONS(7039), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym__identifier_or_op, + STATE(4140), 1, + sym_access_modifier, + ACTIONS(3900), 2, + anon_sym_LPAREN_STAR_RPAREN, + sym_identifier, + STATE(3971), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66839] = 11, + [68591] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6833), 1, + ACTIONS(7041), 1, anon_sym_DQUOTE2, - ACTIONS(6835), 1, + ACTIONS(7043), 1, anon_sym_DQUOTEB, - STATE(3894), 1, + STATE(4001), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3878), 3, + STATE(3972), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66876] = 12, - ACTIONS(3), 1, + [68628] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7045), 1, + anon_sym_DQUOTE2, + ACTIONS(7047), 1, + anon_sym_DQUOTEB, + STATE(4015), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3973), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [68665] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(265), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1919), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(6837), 1, - sym_identifier, - ACTIONS(6839), 1, - anon_sym_LPAREN, - STATE(969), 1, - sym_long_identifier_or_op, - STATE(986), 1, - sym_long_identifier, - STATE(987), 1, - sym__identifier_or_op, - STATE(3879), 3, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7049), 1, + anon_sym_DQUOTE2, + ACTIONS(7051), 1, + anon_sym_DQUOTEB, + STATE(3966), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3974), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66915] = 12, + [68702] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -337948,49 +341983,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, ACTIONS(35), 1, anon_sym_let_BANG, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6841), 1, + ACTIONS(7053), 1, anon_sym_module, - ACTIONS(6843), 1, + ACTIONS(7055), 1, anon_sym_type, - ACTIONS(6845), 1, + ACTIONS(7057), 1, anon_sym_do, - STATE(2420), 1, + STATE(2495), 1, sym_function_or_value_defn, - STATE(2445), 1, + STATE(2496), 1, sym_do, - STATE(3880), 3, + STATE(3975), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [68741] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5471), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(3976), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + ACTIONS(5469), 5, + anon_sym__, + anon_sym_LPAREN, + anon_sym_new, + anon_sym_member, + sym_identifier, + [68770] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(207), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(1937), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7059), 1, + sym_identifier, + ACTIONS(7061), 1, + anon_sym_LPAREN, + STATE(951), 1, + sym_long_identifier_or_op, + STATE(986), 1, + sym_long_identifier, + STATE(987), 1, + sym__identifier_or_op, + STATE(3977), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66954] = 11, + [68809] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6847), 1, + ACTIONS(7063), 1, anon_sym_DQUOTE2, - ACTIONS(6849), 1, + ACTIONS(7065), 1, anon_sym_DQUOTEB, - STATE(3902), 1, + STATE(3974), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3881), 3, + STATE(3978), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [68846] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7035), 1, + sym_identifier, + STATE(2167), 1, + sym__method_defn, + STATE(2168), 1, + sym_method_or_prop_defn, + STATE(2175), 1, + sym__property_defn, + STATE(2203), 1, + sym_property_or_ident, + STATE(4042), 1, + sym_access_modifier, + STATE(3979), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [66991] = 12, + [68885] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -337999,233 +342110,235 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(731), 1, + ACTIONS(809), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1973), 1, + ACTIONS(1975), 1, aux_sym__identifier_or_op_token1, - ACTIONS(6851), 1, + ACTIONS(7067), 1, sym_identifier, - ACTIONS(6853), 1, + ACTIONS(7069), 1, anon_sym_LPAREN, - STATE(1737), 1, - sym_long_identifier, - STATE(1738), 1, - sym__identifier_or_op, - STATE(1792), 1, + STATE(1638), 1, sym_long_identifier_or_op, - STATE(3882), 3, + STATE(1724), 1, + sym__identifier_or_op, + STATE(1725), 1, + sym_long_identifier, + STATE(3980), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67030] = 11, + [68924] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6855), 1, + ACTIONS(7071), 1, anon_sym_DQUOTE2, - ACTIONS(6857), 1, + ACTIONS(7073), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3883), 3, + STATE(3981), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67067] = 12, - ACTIONS(3), 1, + [68961] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, - sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2136), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(4015), 1, - sym_access_modifier, - STATE(3884), 3, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7075), 1, + anon_sym_DQUOTE2, + ACTIONS(7077), 1, + anon_sym_DQUOTEB, + STATE(3966), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3982), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67106] = 11, + [68998] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6861), 1, + ACTIONS(7079), 1, anon_sym_DQUOTE2, - ACTIONS(6863), 1, + ACTIONS(7081), 1, anon_sym_DQUOTEB, - STATE(3905), 1, + STATE(3982), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3885), 3, + STATE(3983), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67143] = 12, - ACTIONS(3), 1, + [69035] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, - sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2135), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(3955), 1, - sym_access_modifier, - STATE(3886), 3, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7083), 1, + anon_sym_DQUOTE2, + ACTIONS(7085), 1, + anon_sym_DQUOTEB, + STATE(3997), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3984), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67182] = 11, + [69072] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6865), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE2, - ACTIONS(6867), 1, + ACTIONS(7089), 1, anon_sym_DQUOTEB, - STATE(3883), 1, + STATE(3981), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3887), 3, + STATE(3985), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67219] = 7, - ACTIONS(3), 1, + [69109] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5300), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3888), 3, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7091), 1, + anon_sym_DQUOTE2, + ACTIONS(7093), 1, + anon_sym_DQUOTEB, + STATE(3992), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(3986), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(5298), 5, - anon_sym__, - anon_sym_LPAREN, - anon_sym_new, - anon_sym_member, - sym_identifier, - [67248] = 12, + [69146] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, + ACTIONS(7035), 1, sym_identifier, - STATE(2145), 1, + STATE(2202), 1, sym_property_or_ident, - STATE(3683), 1, + STATE(3721), 1, sym__method_defn, - STATE(3684), 1, + STATE(3724), 1, sym__property_defn, - STATE(3693), 1, + STATE(3729), 1, sym_method_or_prop_defn, - STATE(4019), 1, + STATE(4119), 1, sym_access_modifier, - STATE(3889), 3, + STATE(3987), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67287] = 12, + [69185] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, + ACTIONS(1125), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(2017), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7095), 1, sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3533), 1, - sym_method_or_prop_defn, - STATE(3542), 1, - sym__property_defn, - STATE(3555), 1, - sym__method_defn, - STATE(3962), 1, - sym_access_modifier, - STATE(3890), 3, + ACTIONS(7097), 1, + anon_sym_LPAREN, + STATE(1906), 1, + sym_long_identifier_or_op, + STATE(2051), 1, + sym_long_identifier, + STATE(2052), 1, + sym__identifier_or_op, + STATE(3988), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67326] = 12, + [69224] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -338234,391 +342347,368 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(603), 1, + ACTIONS(625), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1931), 1, + ACTIONS(1903), 1, aux_sym__identifier_or_op_token1, - ACTIONS(6869), 1, + ACTIONS(7099), 1, sym_identifier, - ACTIONS(6871), 1, + ACTIONS(7101), 1, anon_sym_LPAREN, - STATE(1505), 1, + STATE(1445), 1, sym_long_identifier_or_op, - STATE(1548), 1, + STATE(1525), 1, sym__identifier_or_op, - STATE(1553), 1, + STATE(1530), 1, sym_long_identifier, - STATE(3891), 3, + STATE(3989), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67365] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [69263] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6873), 1, - anon_sym_DQUOTE2, - ACTIONS(6875), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3892), 3, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7035), 1, + sym_identifier, + STATE(2202), 1, + sym_property_or_ident, + STATE(3721), 1, + sym__method_defn, + STATE(3724), 1, + sym__property_defn, + STATE(3725), 1, + sym_method_or_prop_defn, + STATE(4099), 1, + sym_access_modifier, + STATE(3990), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67402] = 12, + [69302] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(867), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(2011), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(6877), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7035), 1, sym_identifier, - ACTIONS(6879), 1, - anon_sym_LPAREN, - STATE(1637), 1, - sym_long_identifier, - STATE(1640), 1, - sym__identifier_or_op, - STATE(1676), 1, - sym_long_identifier_or_op, - STATE(3893), 3, + STATE(2190), 1, + sym__property_defn, + STATE(2197), 1, + sym__method_defn, + STATE(2199), 1, + sym_method_or_prop_defn, + STATE(2201), 1, + sym_property_or_ident, + STATE(4122), 1, + sym_access_modifier, + STATE(3991), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67441] = 11, + [69341] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6881), 1, + ACTIONS(7103), 1, anon_sym_DQUOTE2, - ACTIONS(6883), 1, + ACTIONS(7105), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3894), 3, + STATE(3992), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67478] = 12, + [69378] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(6885), 1, + ACTIONS(935), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(1963), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7107), 1, sym_identifier, - STATE(2921), 1, - sym_attribute_set, - STATE(3413), 1, - sym_union_type_case, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(4275), 1, - sym_enum_type_case, - STATE(4692), 1, - sym_attributes, - STATE(3895), 3, + ACTIONS(7109), 1, + anon_sym_LPAREN, + STATE(1752), 1, + sym_long_identifier, + STATE(1753), 1, + sym__identifier_or_op, + STATE(1832), 1, + sym_long_identifier_or_op, + STATE(3993), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67517] = 11, + [69417] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6887), 1, + ACTIONS(7111), 1, anon_sym_DQUOTE2, - ACTIONS(6889), 1, + ACTIONS(7113), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3896), 3, + STATE(3994), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67554] = 11, + [69454] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6891), 1, + ACTIONS(7115), 1, anon_sym_DQUOTE2, - ACTIONS(6893), 1, + ACTIONS(7117), 1, anon_sym_DQUOTEB, - STATE(3892), 1, + STATE(3994), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3897), 3, + STATE(3995), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67591] = 11, + [69491] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6895), 1, + ACTIONS(7119), 1, anon_sym_DQUOTE2, - ACTIONS(6897), 1, + ACTIONS(7121), 1, anon_sym_DQUOTEB, - STATE(3900), 1, + STATE(4005), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3898), 3, + STATE(3996), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67628] = 11, + [69528] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6899), 1, + ACTIONS(7123), 1, anon_sym_DQUOTE2, - ACTIONS(6901), 1, + ACTIONS(7125), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3899), 3, + STATE(3997), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67665] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [69565] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6903), 1, - anon_sym_DQUOTE2, - ACTIONS(6905), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3900), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [67702] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6907), 1, - anon_sym_DQUOTE2, - ACTIONS(6909), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3901), 3, + ACTIONS(721), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(1915), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7129), 1, + anon_sym_LPAREN, + STATE(1699), 1, + sym_long_identifier, + STATE(1709), 1, + sym_long_identifier_or_op, + STATE(1890), 1, + sym__identifier_or_op, + STATE(3998), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67739] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [69604] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6911), 1, - anon_sym_DQUOTE2, - ACTIONS(6913), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3902), 3, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7131), 1, + sym_identifier, + STATE(2994), 1, + sym_attribute_set, + STATE(3492), 1, + sym_union_type_case, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(4323), 1, + sym_enum_type_case, + STATE(5019), 1, + sym_attributes, + STATE(3999), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67776] = 11, + [69643] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6915), 1, + ACTIONS(7133), 1, anon_sym_DQUOTE2, - ACTIONS(6917), 1, + ACTIONS(7135), 1, anon_sym_DQUOTEB, - STATE(3899), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3903), 3, + STATE(4000), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67813] = 11, + [69680] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6919), 1, + ACTIONS(7137), 1, anon_sym_DQUOTE2, - ACTIONS(6921), 1, + ACTIONS(7139), 1, anon_sym_DQUOTEB, - STATE(3896), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3904), 3, + STATE(4001), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67850] = 11, + [69717] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6923), 1, + ACTIONS(7141), 1, anon_sym_DQUOTE2, - ACTIONS(6925), 1, + ACTIONS(7143), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(4004), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3905), 3, + STATE(4002), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [67887] = 12, + [69754] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -338627,340 +342717,182 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1107), 1, + ACTIONS(1227), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1985), 1, + ACTIONS(1989), 1, aux_sym__identifier_or_op_token1, - ACTIONS(6927), 1, + ACTIONS(7145), 1, sym_identifier, - ACTIONS(6929), 1, + ACTIONS(7147), 1, anon_sym_LPAREN, - STATE(1861), 1, - sym_long_identifier_or_op, - STATE(1989), 1, + STATE(1914), 1, sym__identifier_or_op, - STATE(1996), 1, - sym_long_identifier, - STATE(3906), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [67926] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(471), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1997), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(6931), 1, - sym_identifier, - ACTIONS(6933), 1, - anon_sym_LPAREN, - STATE(1373), 1, + STATE(1917), 1, sym_long_identifier, - STATE(1437), 1, - sym__identifier_or_op, - STATE(1496), 1, + STATE(1971), 1, sym_long_identifier_or_op, - STATE(3907), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [67965] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6935), 1, - anon_sym_DQUOTE2, - ACTIONS(6937), 1, - anon_sym_DQUOTEB, - STATE(3901), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3908), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [68002] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, - sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3510), 1, - sym_method_or_prop_defn, - STATE(3542), 1, - sym__property_defn, - STATE(3555), 1, - sym__method_defn, - STATE(4012), 1, - sym_access_modifier, - STATE(3909), 3, + STATE(4003), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68041] = 11, + [69793] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6939), 1, + ACTIONS(7149), 1, anon_sym_DQUOTE2, - ACTIONS(6941), 1, + ACTIONS(7151), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3910), 3, + STATE(4004), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68078] = 11, + [69830] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6943), 1, + ACTIONS(7153), 1, anon_sym_DQUOTE2, - ACTIONS(6945), 1, + ACTIONS(7155), 1, anon_sym_DQUOTEB, - STATE(3910), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3911), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [68115] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(6947), 1, - sym_identifier, - STATE(4045), 1, - sym_access_modifier, - STATE(5207), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3912), 3, + STATE(4005), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68152] = 10, + [69867] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6952), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6955), 1, + ACTIONS(7157), 1, anon_sym_DQUOTE2, - ACTIONS(6957), 1, + ACTIONS(7159), 1, anon_sym_DQUOTEB, - STATE(4033), 1, + STATE(4022), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6949), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3913), 4, + STATE(4006), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [68187] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [69904] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3776), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(6959), 1, - aux_sym_access_modifier_token1, - ACTIONS(6961), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__identifier_or_op, - STATE(3958), 1, - sym_access_modifier, - ACTIONS(3778), 2, - anon_sym_LPAREN_STAR_RPAREN, - sym_identifier, - STATE(3914), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [68224] = 12, - ACTIONS(3), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(1225), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1961), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6965), 1, - anon_sym_LPAREN, - STATE(1836), 1, - sym_long_identifier_or_op, - STATE(1871), 1, - sym__identifier_or_op, - STATE(1877), 1, - sym_long_identifier, - STATE(3915), 3, + ACTIONS(7021), 1, + sym__simple_string_char, + ACTIONS(7161), 1, + anon_sym_DQUOTE2, + ACTIONS(7163), 1, + anon_sym_DQUOTEB, + STATE(3966), 1, + aux_sym_verbatim_string_repeat1, + STATE(4115), 1, + sym__verbatim_string_char, + ACTIONS(7019), 2, + sym__non_escape_char, + anon_sym_BSLASH, + STATE(4007), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68263] = 11, + [69941] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6967), 1, + ACTIONS(7165), 1, anon_sym_DQUOTE2, - ACTIONS(6969), 1, + ACTIONS(7167), 1, anon_sym_DQUOTEB, - STATE(3922), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3916), 3, + STATE(4008), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68300] = 12, + [69978] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, + ACTIONS(7035), 1, sym_identifier, - STATE(2145), 1, - sym_property_or_ident, - STATE(3683), 1, + STATE(2167), 1, sym__method_defn, - STATE(3684), 1, + STATE(2175), 1, sym__property_defn, - STATE(3687), 1, + STATE(2181), 1, sym_method_or_prop_defn, - STATE(3978), 1, + STATE(2203), 1, + sym_property_or_ident, + STATE(4145), 1, sym_access_modifier, - STATE(3917), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [68339] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6971), 1, - anon_sym_DQUOTE2, - ACTIONS(6973), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3918), 3, + STATE(4009), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68376] = 12, + [70017] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -338971,102 +342903,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(381), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1825), 1, + ACTIONS(1694), 1, aux_sym__identifier_or_op_token1, - ACTIONS(6975), 1, + ACTIONS(7169), 1, sym_identifier, - ACTIONS(6977), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(928), 1, + STATE(916), 1, + sym_long_identifier_or_op, + STATE(937), 1, sym_long_identifier, - STATE(929), 1, + STATE(938), 1, sym__identifier_or_op, - STATE(970), 1, - sym_long_identifier_or_op, - STATE(3919), 3, + STATE(4010), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68415] = 12, + [70056] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(7173), 1, sym_identifier, - STATE(2114), 1, - sym__method_defn, - STATE(2115), 1, - sym__property_defn, - STATE(2117), 1, - sym_method_or_prop_defn, - STATE(2144), 1, - sym_property_or_ident, - STATE(4039), 1, + STATE(4113), 1, sym_access_modifier, - STATE(3920), 3, + STATE(5244), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4011), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68454] = 11, + [70093] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6979), 1, + ACTIONS(7175), 1, anon_sym_DQUOTE2, - ACTIONS(6981), 1, + ACTIONS(7177), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(4007), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3921), 3, + STATE(4012), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68491] = 11, + [70130] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(6983), 1, - anon_sym_DQUOTE2, - ACTIONS(6985), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3922), 3, + ACTIONS(471), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(2001), 1, + aux_sym__identifier_or_op_token1, + ACTIONS(7179), 1, + sym_identifier, + ACTIONS(7181), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_long_identifier, + STATE(1434), 1, + sym_long_identifier_or_op, + STATE(1549), 1, + sym__identifier_or_op, + STATE(4013), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68528] = 12, + [70169] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -339079,796 +343011,827 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__identifier_or_op_token1, ACTIONS(101), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6987), 1, + ACTIONS(7183), 1, sym_identifier, - ACTIONS(6989), 1, + ACTIONS(7185), 1, anon_sym_LPAREN, - STATE(1038), 1, + STATE(1057), 1, + sym_long_identifier, + STATE(1123), 1, sym_long_identifier_or_op, - STATE(1103), 1, + STATE(1128), 1, sym__identifier_or_op, - STATE(1113), 1, - sym_long_identifier, - STATE(3923), 3, + STATE(4014), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68567] = 11, + [70208] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6991), 1, + ACTIONS(7187), 1, anon_sym_DQUOTE2, - ACTIONS(6993), 1, + ACTIONS(7189), 1, anon_sym_DQUOTEB, - STATE(3930), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3924), 3, + STATE(4015), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [70245] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(6930), 3, + sym__escape_char, + sym__non_escape_char, + sym__simple_string_char, + STATE(4016), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68604] = 12, + ACTIONS(6932), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + [70274] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6859), 1, + ACTIONS(7035), 1, sym_identifier, - STATE(2114), 1, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, sym__method_defn, - STATE(2115), 1, + STATE(3624), 1, sym__property_defn, - STATE(2118), 1, + STATE(3630), 1, + sym_method_or_prop_defn, + STATE(4141), 1, + sym_access_modifier, + STATE(4017), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [70313] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7035), 1, + sym_identifier, + STATE(2189), 1, sym_method_or_prop_defn, - STATE(2144), 1, + STATE(2190), 1, + sym__property_defn, + STATE(2197), 1, + sym__method_defn, + STATE(2201), 1, sym_property_or_ident, - STATE(3976), 1, + STATE(4103), 1, sym_access_modifier, - STATE(3925), 3, + STATE(4018), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68643] = 11, + [70352] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6995), 1, + ACTIONS(7191), 1, anon_sym_DQUOTE2, - ACTIONS(6997), 1, + ACTIONS(7193), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3926), 3, + STATE(4019), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [70389] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(1682), 1, + anon_sym_let, + ACTIONS(1684), 1, + anon_sym_let_BANG, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7195), 1, + anon_sym_module, + ACTIONS(7197), 1, + anon_sym_type, + ACTIONS(7199), 1, + anon_sym_do, + STATE(2516), 1, + sym_function_or_value_defn, + STATE(2533), 1, + sym_do, + STATE(4020), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68680] = 11, + [70428] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(6999), 1, + ACTIONS(7201), 1, anon_sym_DQUOTE2, - ACTIONS(7001), 1, + ACTIONS(7203), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3927), 3, + STATE(4021), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68717] = 11, + [70465] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(7003), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE2, - ACTIONS(7005), 1, + ACTIONS(7207), 1, anon_sym_DQUOTEB, - STATE(3921), 1, + STATE(3966), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3928), 3, + STATE(4022), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68754] = 11, + [70502] = 7, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(7007), 1, - anon_sym_DQUOTE2, - ACTIONS(7009), 1, - anon_sym_DQUOTEB, - STATE(3938), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, - sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(6993), 3, + sym__escape_char, sym__non_escape_char, - anon_sym_BSLASH, - STATE(3929), 3, + sym__simple_string_char, + STATE(4023), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68791] = 11, + ACTIONS(6995), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + [70531] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(7011), 1, + ACTIONS(7209), 1, anon_sym_DQUOTE2, - ACTIONS(7013), 1, + ACTIONS(7211), 1, anon_sym_DQUOTEB, - STATE(3913), 1, + STATE(4019), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3930), 3, + STATE(4024), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68828] = 11, + [70568] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(7015), 1, + ACTIONS(7213), 1, anon_sym_DQUOTE2, - ACTIONS(7017), 1, + ACTIONS(7215), 1, anon_sym_DQUOTEB, - STATE(3927), 1, + STATE(4000), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3931), 3, + STATE(4025), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68865] = 11, + [70605] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7021), 1, sym__simple_string_char, - ACTIONS(7019), 1, + ACTIONS(7217), 1, anon_sym_DQUOTE2, - ACTIONS(7021), 1, + ACTIONS(7219), 1, anon_sym_DQUOTEB, - STATE(3926), 1, + STATE(4021), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4115), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7019), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3932), 3, + STATE(4026), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [68902] = 12, + [70642] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1813), 1, - anon_sym_let, - ACTIONS(1815), 1, - anon_sym_let_BANG, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7023), 1, - anon_sym_module, - ACTIONS(7025), 1, - anon_sym_type, - ACTIONS(7027), 1, - anon_sym_do, - STATE(2469), 1, - sym_function_or_value_defn, - STATE(2473), 1, - sym_do, - STATE(3933), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [68941] = 7, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6790), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - STATE(3934), 3, + ACTIONS(7223), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4027), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6792), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - [68970] = 12, + ACTIONS(7221), 4, + anon_sym__, + anon_sym_LPAREN, + anon_sym_POUND, + sym_identifier, + [70670] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(989), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(1897), 1, - aux_sym__identifier_or_op_token1, - ACTIONS(7029), 1, - sym_identifier, - ACTIONS(7031), 1, - anon_sym_LPAREN, - STATE(1638), 1, - sym_long_identifier, - STATE(1716), 1, - sym_long_identifier_or_op, - STATE(1768), 1, - sym__identifier_or_op, - STATE(3935), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [69009] = 7, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(6754), 3, - sym__escape_char, - sym__non_escape_char, - sym__simple_string_char, - STATE(3936), 3, + ACTIONS(7225), 1, + anon_sym__, + STATE(4435), 1, + sym_constraint, + STATE(4446), 1, + sym_type_argument, + STATE(5091), 1, + sym_static_type_argument, + ACTIONS(7227), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4028), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(6756), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - [69038] = 11, + [70704] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, + ACTIONS(7231), 1, sym__simple_string_char, - ACTIONS(7033), 1, + ACTIONS(7233), 1, anon_sym_DQUOTE2, - ACTIONS(7035), 1, - anon_sym_DQUOTEB, - STATE(3918), 1, + STATE(4030), 1, aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + STATE(4187), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7229), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3937), 3, + STATE(4029), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69075] = 11, + [70738] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6831), 1, - sym__simple_string_char, - ACTIONS(7037), 1, + ACTIONS(7017), 1, anon_sym_DQUOTE2, - ACTIONS(7039), 1, - anon_sym_DQUOTEB, - STATE(3913), 1, - aux_sym_verbatim_string_repeat1, - STATE(4033), 1, + ACTIONS(7238), 1, + sym__simple_string_char, + STATE(4187), 1, sym__verbatim_string_char, - ACTIONS(6829), 2, + ACTIONS(7235), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3938), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [69112] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(3694), 1, - anon_sym_LBRACK_LT, - ACTIONS(7041), 1, - sym_identifier, - STATE(2921), 1, - sym_attribute_set, - STATE(3436), 1, - sym_union_type_case, - STATE(3697), 1, - aux_sym_attributes_repeat1, - STATE(4692), 1, - sym_attributes, - STATE(3939), 3, + STATE(4030), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69148] = 10, + aux_sym_verbatim_string_repeat1, + [70770] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7043), 1, + ACTIONS(7225), 1, anon_sym__, - STATE(4439), 1, + STATE(4360), 1, sym_constraint, - STATE(4619), 1, + STATE(4446), 1, sym_type_argument, - STATE(4689), 1, + STATE(5091), 1, sym_static_type_argument, - ACTIONS(7045), 2, + ACTIONS(7227), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3940), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [69182] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(7049), 1, - sym__simple_string_char, - ACTIONS(7051), 1, - anon_sym_DQUOTE2, - STATE(3943), 1, - aux_sym_verbatim_string_repeat1, - STATE(4092), 1, - sym__verbatim_string_char, - ACTIONS(7047), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3941), 3, + STATE(4031), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69216] = 7, + [70804] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7055), 2, + ACTIONS(7243), 2, anon_sym_SQUOTE, anon_sym_CARET, - STATE(3942), 3, + STATE(4032), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(7053), 4, + ACTIONS(7241), 4, anon_sym__, anon_sym_LPAREN, anon_sym_POUND, sym_identifier, - [69244] = 10, + [70832] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3778), 1, + anon_sym_LBRACK_LT, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7245), 1, + sym_identifier, + STATE(2994), 1, + sym_attribute_set, + STATE(3529), 1, + sym_union_type_case, + STATE(3887), 1, + aux_sym_attributes_repeat1, + STATE(5019), 1, + sym_attributes, + STATE(4033), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [70868] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7049), 1, + ACTIONS(7231), 1, sym__simple_string_char, - ACTIONS(7057), 1, + ACTIONS(7247), 1, anon_sym_DQUOTE2, - STATE(3946), 1, + STATE(4029), 1, aux_sym_verbatim_string_repeat1, - STATE(4092), 1, + STATE(4187), 1, sym__verbatim_string_char, - ACTIONS(7047), 2, + ACTIONS(7229), 2, sym__non_escape_char, anon_sym_BSLASH, - STATE(3943), 3, + STATE(4034), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69278] = 7, - ACTIONS(3), 1, + [70902] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7061), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3944), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4672), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4035), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - ACTIONS(7059), 4, - anon_sym__, - anon_sym_LPAREN, - anon_sym_POUND, - sym_identifier, - [69306] = 10, + [70931] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7043), 1, - anon_sym__, - STATE(4278), 1, - sym_constraint, - STATE(4619), 1, - sym_type_argument, - STATE(4689), 1, - sym_static_type_argument, - ACTIONS(7045), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(3945), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7255), 1, + anon_sym_GT, + ACTIONS(7257), 1, + anon_sym_when, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4907), 1, + sym_type_argument_constraints, + STATE(4036), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69340] = 9, + [70964] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(6957), 1, - anon_sym_DQUOTE2, - ACTIONS(7066), 1, - sym__simple_string_char, - STATE(4092), 1, - sym__verbatim_string_char, - ACTIONS(7063), 2, - sym__non_escape_char, - anon_sym_BSLASH, - STATE(3946), 4, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4507), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4037), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [69372] = 10, + [70993] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7071), 1, - anon_sym_GT, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - STATE(3952), 1, + ACTIONS(7259), 1, + anon_sym_GT, + STATE(4040), 1, aux_sym_type_arguments_repeat1, - STATE(5121), 1, + STATE(5025), 1, sym_type_argument_constraints, - STATE(3947), 3, + STATE(4038), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69405] = 10, + [71026] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(513), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7075), 1, - anon_sym_GT, - STATE(4034), 1, - aux_sym_type_arguments_repeat1, - STATE(4867), 1, - sym_type_argument_constraints, - STATE(3948), 3, + STATE(2062), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4039), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69438] = 10, + [71059] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7077), 1, + ACTIONS(7261), 1, anon_sym_GT, - STATE(3950), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4889), 1, + STATE(5023), 1, sym_type_argument_constraints, - STATE(3949), 3, + STATE(4040), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69471] = 10, + [71092] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7079), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(4888), 1, - sym_type_argument_constraints, - STATE(3950), 3, + ACTIONS(7263), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7265), 1, + anon_sym_DQUOTE, + STATE(2506), 1, + sym_string, + STATE(2493), 2, + sym_format_string, + sym__string_literal, + STATE(4041), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69504] = 9, + [71123] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7083), 1, - anon_sym_DQUOTE, - STATE(2471), 1, - sym_string, - STATE(2457), 2, - sym_format_string, - sym__string_literal, - STATE(3951), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2166), 1, + sym_method_or_prop_defn, + STATE(2167), 1, + sym__method_defn, + STATE(2175), 1, + sym__property_defn, + STATE(2203), 1, + sym_property_or_ident, + STATE(4042), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69535] = 10, + [71156] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(493), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7085), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(5116), 1, - sym_type_argument_constraints, - STATE(3952), 3, + STATE(1740), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4043), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [71189] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7269), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7271), 1, + anon_sym_DQUOTE, + STATE(2520), 1, + sym_string, + STATE(2511), 2, + sym_format_string, + sym__string_literal, + STATE(4044), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69568] = 8, + [71220] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4416), 1, + STATE(4552), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(3953), 3, + STATE(4045), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69597] = 10, + [71249] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(489), 1, - sym__else, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1992), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(3954), 3, + ACTIONS(7269), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7271), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + sym_string, + STATE(2511), 2, + sym_format_string, + sym__string_literal, + STATE(4046), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69630] = 10, + [71280] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2136), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(3955), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7273), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(5061), 1, + sym_type_argument_constraints, + STATE(4047), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [71313] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7275), 1, + anon_sym_GT, + STATE(4098), 1, + aux_sym_type_arguments_repeat1, + STATE(4798), 1, + sym_type_argument_constraints, + STATE(4048), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69663] = 9, + [71346] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -339877,362 +343840,381 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(731), 1, + ACTIONS(1227), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6853), 1, + ACTIONS(7147), 1, anon_sym_LPAREN, - STATE(1796), 1, + STATE(1955), 1, sym__identifier_or_op, - ACTIONS(1973), 2, + ACTIONS(1989), 2, aux_sym__identifier_or_op_token1, sym_identifier, - STATE(3956), 3, + STATE(4049), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69694] = 10, + [71377] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7093), 1, + ACTIONS(7277), 1, anon_sym_GT, - STATE(3990), 1, + STATE(4047), 1, aux_sym_type_arguments_repeat1, - STATE(5167), 1, + STATE(5068), 1, sym_type_argument_constraints, - STATE(3957), 3, + STATE(4050), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69727] = 9, + [71410] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3778), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6961), 1, - anon_sym_LPAREN, - STATE(2552), 1, - sym__identifier_or_op, - ACTIONS(3776), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(3958), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7279), 1, + anon_sym_GT, + STATE(4052), 1, + aux_sym_type_arguments_repeat1, + STATE(5006), 1, + sym_type_argument_constraints, + STATE(4051), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69758] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [71443] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7095), 1, - anon_sym_DQUOTE, - ACTIONS(7097), 1, - anon_sym_AT_DQUOTE, - ACTIONS(7099), 1, - aux_sym_preproc_line_token2, - STATE(5233), 1, - sym_verbatim_string, - STATE(5235), 1, - sym__string_literal, - STATE(3959), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7281), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(5003), 1, + sym_type_argument_constraints, + STATE(4052), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69791] = 10, + [71476] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7101), 1, + ACTIONS(7267), 1, sym_identifier, - ACTIONS(7103), 1, - anon_sym_member, - STATE(2136), 1, - sym_member_signature, - STATE(4166), 1, - sym_access_modifier, - STATE(3960), 3, + STATE(2202), 1, + sym_property_or_ident, + STATE(3721), 1, + sym__method_defn, + STATE(3724), 1, + sym__property_defn, + STATE(3725), 1, + sym_method_or_prop_defn, + STATE(4053), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69824] = 10, + [71509] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7105), 1, + ACTIONS(7283), 1, anon_sym_GT, - STATE(3966), 1, + STATE(4072), 1, aux_sym_type_arguments_repeat1, - STATE(4826), 1, + STATE(5276), 1, sym_type_argument_constraints, - STATE(3961), 3, + STATE(4054), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69857] = 10, + [71542] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(7285), 1, sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3542), 1, - sym__property_defn, - STATE(3555), 1, - sym__method_defn, - STATE(3558), 1, - sym_method_or_prop_defn, - STATE(3962), 3, + ACTIONS(7287), 1, + anon_sym_member, + STATE(3725), 1, + sym_member_signature, + STATE(4257), 1, + sym_access_modifier, + STATE(4055), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69890] = 10, - ACTIONS(3), 1, + [71575] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(501), 1, - sym__else, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(1773), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(3963), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4458), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4056), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69923] = 10, + [71604] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7107), 1, - anon_sym_GT, - STATE(4032), 1, - aux_sym_type_arguments_repeat1, - STATE(5293), 1, - sym_type_argument_constraints, - STATE(3964), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2202), 1, + sym_property_or_ident, + STATE(3721), 1, + sym__method_defn, + STATE(3724), 1, + sym__property_defn, + STATE(3743), 1, + sym_method_or_prop_defn, + STATE(4057), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69956] = 8, + [71637] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4366), 1, + STATE(4676), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(3965), 3, + STATE(4058), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [71666] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(207), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7061), 1, + anon_sym_LPAREN, + STATE(942), 1, + sym__identifier_or_op, + ACTIONS(1937), 2, + aux_sym__identifier_or_op_token1, + sym_identifier, + STATE(4059), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [69985] = 10, + [71697] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7109), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(4825), 1, - sym_type_argument_constraints, - STATE(3966), 3, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(7173), 1, + sym_identifier, + STATE(5244), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4060), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70018] = 10, + [71728] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7111), 1, - anon_sym_GT, - STATE(3968), 1, - aux_sym_type_arguments_repeat1, - STATE(4923), 1, - sym_type_argument_constraints, - STATE(3967), 3, + ACTIONS(5073), 1, + anon_sym_interface, + STATE(4071), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4332), 1, + sym_interface_implementation, + ACTIONS(4183), 2, + sym__newline, + sym__dedent, + STATE(4061), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70051] = 10, + [71759] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7113), 1, + ACTIONS(7289), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4064), 1, aux_sym_type_arguments_repeat1, - STATE(4920), 1, + STATE(4986), 1, sym_type_argument_constraints, - STATE(3968), 3, + STATE(4062), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70084] = 10, + [71792] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7115), 1, - anon_sym_GT, - STATE(3998), 1, - aux_sym_type_arguments_repeat1, - STATE(4878), 1, - sym_type_argument_constraints, - STATE(3969), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2189), 1, + sym_method_or_prop_defn, + STATE(2190), 1, + sym__property_defn, + STATE(2197), 1, + sym__method_defn, + STATE(2201), 1, + sym_property_or_ident, + STATE(4063), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70117] = 10, + [71825] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7117), 1, + ACTIONS(7291), 1, anon_sym_GT, - STATE(4025), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4986), 1, + STATE(4985), 1, sym_type_argument_constraints, - STATE(3970), 3, + STATE(4064), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70150] = 10, + [71858] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(7293), 1, sym_identifier, - STATE(2145), 1, - sym_property_or_ident, - STATE(3683), 1, - sym__method_defn, - STATE(3684), 1, - sym__property_defn, - STATE(3687), 1, - sym_method_or_prop_defn, - STATE(3971), 3, + ACTIONS(7295), 1, + anon_sym_member, + STATE(2189), 1, + sym_member_signature, + STATE(4231), 1, + sym_access_modifier, + STATE(4065), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70183] = 9, + [71891] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -340241,982 +344223,979 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1225), 1, + ACTIONS(809), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6965), 1, + ACTIONS(7069), 1, anon_sym_LPAREN, - STATE(1974), 1, + STATE(1629), 1, sym__identifier_or_op, - ACTIONS(1961), 2, + ACTIONS(1975), 2, aux_sym__identifier_or_op_token1, sym_identifier, - STATE(3972), 3, + STATE(4066), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70214] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [71922] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4348), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(3973), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [70243] = 8, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4573), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(3974), 3, + ACTIONS(7263), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7265), 1, + anon_sym_DQUOTE, + STATE(2485), 1, + sym_string, + STATE(2493), 2, + sym_format_string, + sym__string_literal, + STATE(4067), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70272] = 9, + [71953] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7119), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7121), 1, - anon_sym_DQUOTE, - STATE(2417), 1, - sym_string, - STATE(2437), 2, - sym_format_string, - sym__string_literal, - STATE(3975), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7297), 1, + anon_sym_GT, + STATE(4089), 1, + aux_sym_type_arguments_repeat1, + STATE(5352), 1, + sym_type_argument_constraints, + STATE(4068), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70303] = 10, + [71986] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(497), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2112), 1, - sym_method_or_prop_defn, - STATE(2114), 1, - sym__method_defn, - STATE(2115), 1, - sym__property_defn, - STATE(2144), 1, - sym_property_or_ident, - STATE(3976), 3, + STATE(1528), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4069), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70336] = 8, + [72019] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4341), 1, + STATE(4412), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(3977), 3, + STATE(4070), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70365] = 10, + [72048] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2145), 1, - sym_property_or_ident, - STATE(3683), 1, - sym__method_defn, - STATE(3684), 1, - sym__property_defn, - STATE(3693), 1, - sym_method_or_prop_defn, - STATE(3978), 3, + ACTIONS(7299), 1, + anon_sym_interface, + STATE(4332), 1, + sym_interface_implementation, + ACTIONS(4191), 2, + sym__newline, + sym__dedent, + STATE(4071), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym__object_expression_inner_repeat1, + [72077] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7302), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(5271), 1, + sym_type_argument_constraints, + STATE(4072), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70398] = 10, + [72110] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7123), 1, + ACTIONS(7304), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4934), 1, + STATE(5119), 1, sym_type_argument_constraints, - STATE(3979), 3, + STATE(4073), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70431] = 10, + [72143] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7125), 1, + ACTIONS(1125), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7097), 1, + anon_sym_LPAREN, + STATE(1913), 1, + sym__identifier_or_op, + ACTIONS(2017), 2, + aux_sym__identifier_or_op_token1, sym_identifier, - ACTIONS(7127), 1, - anon_sym_member, - STATE(3687), 1, - sym_member_signature, - STATE(4304), 1, - sym_access_modifier, - STATE(3980), 3, + STATE(4074), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70464] = 10, + [72174] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7129), 1, - sym_identifier, - ACTIONS(7131), 1, - anon_sym_member, - STATE(2118), 1, - sym_member_signature, - STATE(4270), 1, - sym_access_modifier, - STATE(3981), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7306), 1, + anon_sym_GT, + STATE(4077), 1, + aux_sym_type_arguments_repeat1, + STATE(4965), 1, + sym_type_argument_constraints, + STATE(4075), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70497] = 8, + [72207] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4408), 1, + STATE(4432), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(3982), 3, + STATE(4076), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70526] = 9, + [72236] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7119), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7121), 1, - anon_sym_DQUOTE, - STATE(2414), 1, - sym_string, - STATE(2437), 2, - sym_format_string, - sym__string_literal, - STATE(3983), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7308), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4964), 1, + sym_type_argument_constraints, + STATE(4077), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70557] = 10, + [72269] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7133), 1, + ACTIONS(7310), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4073), 1, aux_sym_type_arguments_repeat1, - STATE(4847), 1, + STATE(5125), 1, sym_type_argument_constraints, - STATE(3984), 3, + STATE(4078), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70590] = 8, + [72302] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4521), 1, + STATE(4554), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(3985), 3, + STATE(4079), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70619] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [72331] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(381), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6977), 1, - anon_sym_LPAREN, - STATE(994), 1, - sym__identifier_or_op, - ACTIONS(1825), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(3986), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4462), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4080), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70650] = 10, + [72360] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(521), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2145), 1, - sym_property_or_ident, - STATE(3670), 1, - sym_method_or_prop_defn, - STATE(3683), 1, - sym__method_defn, - STATE(3684), 1, - sym__property_defn, - STATE(3987), 3, + STATE(1880), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4081), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70683] = 10, + [72393] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7125), 1, + ACTIONS(7312), 1, sym_identifier, - ACTIONS(7135), 1, + ACTIONS(7314), 1, anon_sym_member, - STATE(3693), 1, + STATE(3630), 1, sym_member_signature, - STATE(4280), 1, + STATE(4328), 1, sym_access_modifier, - STATE(3988), 3, + STATE(4082), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70716] = 10, + [72426] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7129), 1, + ACTIONS(7316), 1, sym_identifier, - ACTIONS(7137), 1, + ACTIONS(7318), 1, anon_sym_member, - STATE(2117), 1, + STATE(2168), 1, sym_member_signature, - STATE(4201), 1, + STATE(4294), 1, sym_access_modifier, - STATE(3989), 3, + STATE(4083), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70749] = 10, + [72459] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(517), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7139), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(5164), 1, - sym_type_argument_constraints, - STATE(3990), 3, + STATE(1019), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4084), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70782] = 10, + [72492] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7141), 1, - anon_sym_GT, - STATE(3979), 1, - aux_sym_type_arguments_repeat1, - STATE(4937), 1, - sym_type_argument_constraints, - STATE(3991), 3, + ACTIONS(721), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7129), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym__identifier_or_op, + ACTIONS(1915), 2, + aux_sym__identifier_or_op_token1, + sym_identifier, + STATE(4085), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70815] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [72523] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7145), 2, - sym__simple_string_char, - anon_sym_DQUOTEB, - ACTIONS(7143), 3, - sym__non_escape_char, - anon_sym_BSLASH, - anon_sym_DQUOTE2, - STATE(3992), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7267), 1, + sym_identifier, + STATE(2187), 1, + sym_method_or_prop_defn, + STATE(2190), 1, + sym__property_defn, + STATE(2197), 1, + sym__method_defn, + STATE(2201), 1, + sym_property_or_ident, + STATE(4086), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70842] = 10, + [72556] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7147), 1, - sym_identifier, - ACTIONS(7149), 1, - anon_sym_member, - STATE(3533), 1, - sym_member_signature, - STATE(4144), 1, - sym_access_modifier, - STATE(3993), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7320), 1, + anon_sym_GT, + STATE(4094), 1, + aux_sym_type_arguments_repeat1, + STATE(4940), 1, + sym_type_argument_constraints, + STATE(4087), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70875] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [72589] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(101), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6989), 1, - anon_sym_LPAREN, - STATE(1111), 1, - sym__identifier_or_op, - ACTIONS(99), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(3994), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4492), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4088), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70906] = 10, + [72618] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2110), 1, - sym_method_or_prop_defn, - STATE(2114), 1, - sym__method_defn, - STATE(2115), 1, - sym__property_defn, - STATE(2144), 1, - sym_property_or_ident, - STATE(3995), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7322), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(5346), 1, + sym_type_argument_constraints, + STATE(4089), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70939] = 10, + [72651] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7151), 1, + ACTIONS(7324), 1, anon_sym_GT, - STATE(4018), 1, + STATE(4154), 1, aux_sym_type_arguments_repeat1, - STATE(5073), 1, + STATE(5218), 1, sym_type_argument_constraints, - STATE(3996), 3, + STATE(4090), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [70972] = 9, + [72684] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4960), 1, - anon_sym_interface, - STATE(4048), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4187), 1, - sym_interface_implementation, - ACTIONS(4076), 2, - sym__newline, - sym__dedent, - STATE(3997), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, + sym__method_defn, + STATE(3624), 1, + sym__property_defn, + STATE(3630), 1, + sym_method_or_prop_defn, + STATE(4091), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71003] = 10, + [72717] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7153), 1, + ACTIONS(7326), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4036), 1, aux_sym_type_arguments_repeat1, - STATE(4875), 1, + STATE(4850), 1, sym_type_argument_constraints, - STATE(3998), 3, + STATE(4092), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71036] = 10, + [72750] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7155), 1, - anon_sym_member, - STATE(2135), 1, - sym_member_signature, - STATE(4143), 1, - sym_access_modifier, - STATE(3999), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7328), 1, + anon_sym_GT, + STATE(4126), 1, + aux_sym_type_arguments_repeat1, + STATE(5459), 1, + sym_type_argument_constraints, + STATE(4093), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71069] = 10, + [72783] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7157), 1, + ACTIONS(7330), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4899), 1, + STATE(4939), 1, sym_type_argument_constraints, - STATE(4000), 3, + STATE(4094), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71102] = 8, + [72816] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4331), 1, + STATE(4521), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(4001), 3, + STATE(4095), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71131] = 10, - ACTIONS(3), 1, + [72845] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2135), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(4002), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4427), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4096), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71164] = 9, + [72874] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(483), 1, + sym__else, + ACTIONS(485), 1, + sym__elif, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(6947), 1, - sym_identifier, - STATE(5207), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(4003), 3, + STATE(958), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4097), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71195] = 10, + [72907] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7159), 1, + ACTIONS(7332), 1, anon_sym_GT, - STATE(4000), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4901), 1, + STATE(5092), 1, sym_type_argument_constraints, - STATE(4004), 3, + STATE(4098), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71228] = 10, + [72940] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7161), 1, - anon_sym_GT, - STATE(4037), 1, - aux_sym_type_arguments_repeat1, - STATE(5219), 1, - sym_type_argument_constraints, - STATE(4005), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2202), 1, + sym_property_or_ident, + STATE(3721), 1, + sym__method_defn, + STATE(3724), 1, + sym__property_defn, + STATE(3729), 1, + sym_method_or_prop_defn, + STATE(4099), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71261] = 8, + [72973] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, + ACTIONS(7249), 1, sym__escape_char, - STATE(4392), 1, + STATE(4549), 1, sym__char_char, - ACTIONS(7089), 3, + ACTIONS(7251), 3, sym__simple_char_char, sym__unicodegraph_short, sym__trigraph, - STATE(4006), 3, + STATE(4100), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71290] = 10, - ACTIONS(3), 1, + [73002] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7163), 1, - anon_sym_GT, - STATE(4029), 1, - aux_sym_type_arguments_repeat1, - STATE(4819), 1, - sym_type_argument_constraints, - STATE(4007), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4574), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4101), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71323] = 10, + [73031] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7165), 1, + ACTIONS(7334), 1, anon_sym_GT, - STATE(3984), 1, + STATE(4107), 1, aux_sym_type_arguments_repeat1, - STATE(4851), 1, + STATE(4911), 1, sym_type_argument_constraints, - STATE(4008), 3, + STATE(4102), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71356] = 10, + [73064] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(7267), 1, sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3510), 1, - sym_method_or_prop_defn, - STATE(3542), 1, + STATE(2190), 1, sym__property_defn, - STATE(3555), 1, + STATE(2197), 1, sym__method_defn, - STATE(4009), 3, + STATE(2199), 1, + sym_method_or_prop_defn, + STATE(2201), 1, + sym_property_or_ident, + STATE(4103), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71389] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [73097] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4560), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4010), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7336), 1, + sym_int, + STATE(4104), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71418] = 10, + ACTIONS(2760), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + [73124] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7147), 1, + ACTIONS(7285), 1, sym_identifier, - ACTIONS(7167), 1, + ACTIONS(7338), 1, anon_sym_member, - STATE(3510), 1, + STATE(3729), 1, sym_member_signature, - STATE(4155), 1, + STATE(4268), 1, sym_access_modifier, - STATE(4011), 3, + STATE(4105), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71451] = 10, - ACTIONS(3), 1, + [73157] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3533), 1, - sym_method_or_prop_defn, - STATE(3542), 1, - sym__property_defn, - STATE(3555), 1, - sym__method_defn, - STATE(4012), 3, + ACTIONS(7342), 2, + sym__simple_string_char, + anon_sym_DQUOTEB, + ACTIONS(7340), 3, + sym__non_escape_char, + anon_sym_BSLASH, + anon_sym_DQUOTE2, + STATE(4106), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71484] = 9, + [73184] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(603), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6871), 1, - anon_sym_LPAREN, - STATE(1499), 1, - sym__identifier_or_op, - ACTIONS(1931), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(4013), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7344), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4910), 1, + sym_type_argument_constraints, + STATE(4107), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71515] = 9, + [73217] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(265), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6839), 1, - anon_sym_LPAREN, - STATE(965), 1, - sym__identifier_or_op, - ACTIONS(1919), 2, - aux_sym__identifier_or_op_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7267), 1, sym_identifier, - STATE(4014), 3, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, + sym__method_defn, + STATE(3624), 1, + sym__property_defn, + STATE(3664), 1, + sym_method_or_prop_defn, + STATE(4108), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71546] = 10, + [73250] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + aux_sym_preproc_line_token1, + ACTIONS(625), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7101), 1, + anon_sym_LPAREN, + STATE(1452), 1, + sym__identifier_or_op, + ACTIONS(1903), 2, + aux_sym__identifier_or_op_token1, sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2140), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(4015), 3, + STATE(4109), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71579] = 10, + [73281] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -341225,21 +345204,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(485), 1, sym__elif, - ACTIONS(497), 1, + ACTIONS(501), 1, sym__else, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1647), 1, + STATE(1936), 1, sym__else_expression, - STATE(4102), 1, + STATE(4172), 1, aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, + STATE(4661), 1, sym_elif_expression, - STATE(4016), 3, + STATE(4110), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71612] = 10, + [73314] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, @@ -341248,89 +345227,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_line_token1, ACTIONS(485), 1, sym__elif, - ACTIONS(517), 1, + ACTIONS(505), 1, sym__else, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1560), 1, + STATE(1551), 1, sym__else_expression, - STATE(4102), 1, + STATE(4172), 1, aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, + STATE(4661), 1, sym_elif_expression, - STATE(4017), 3, + STATE(4111), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71645] = 10, + [73347] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7169), 1, + ACTIONS(7346), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(5068), 1, + STATE(5171), 1, sym_type_argument_constraints, - STATE(4018), 3, + STATE(4112), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71678] = 10, + [73380] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(5315), 1, + anon_sym__, + ACTIONS(7348), 1, sym_identifier, - STATE(2145), 1, - sym_property_or_ident, - STATE(3668), 1, - sym_method_or_prop_defn, - STATE(3683), 1, - sym__method_defn, - STATE(3684), 1, - sym__property_defn, - STATE(4019), 3, + STATE(4997), 1, + sym_type_argument, + ACTIONS(5321), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4113), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71711] = 9, - ACTIONS(3), 1, + [73411] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7350), 1, + anon_sym_DQUOTE, + ACTIONS(7352), 1, + anon_sym_AT_DQUOTE, + ACTIONS(7354), 1, + aux_sym_preproc_line_token2, + STATE(5292), 1, + sym_verbatim_string, + STATE(5296), 1, + sym__string_literal, + STATE(4114), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [73444] = 7, ACTIONS(5), 1, anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7358), 2, + sym__simple_string_char, + anon_sym_DQUOTEB, + ACTIONS(7356), 3, + sym__non_escape_char, + anon_sym_BSLASH, + anon_sym_DQUOTE2, + STATE(4115), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [73471] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(471), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6933), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym__identifier_or_op, - ACTIONS(1997), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(4020), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7360), 1, + anon_sym_GT, + STATE(4120), 1, + aux_sym_type_arguments_repeat1, + STATE(4889), 1, + sym_type_argument_constraints, + STATE(4116), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71742] = 9, + [73504] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -341339,514 +345361,517 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1107), 1, + ACTIONS(101), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6929), 1, + ACTIONS(7185), 1, anon_sym_LPAREN, - STATE(1866), 1, + STATE(1068), 1, sym__identifier_or_op, - ACTIONS(1985), 2, + ACTIONS(99), 2, aux_sym__identifier_or_op_token1, sym_identifier, - STATE(4021), 3, + STATE(4117), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71773] = 10, + [73535] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(505), 1, - sym__else, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - STATE(1833), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4022), 3, + ACTIONS(935), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7109), 1, + anon_sym_LPAREN, + STATE(1837), 1, + sym__identifier_or_op, + ACTIONS(1963), 2, + aux_sym__identifier_or_op_token1, + sym_identifier, + STATE(4118), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71806] = 9, + [73566] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7081), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7083), 1, - anon_sym_DQUOTE, - STATE(2470), 1, - sym_string, - STATE(2457), 2, - sym_format_string, - sym__string_literal, - STATE(4023), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2202), 1, + sym_property_or_ident, + STATE(3721), 1, + sym__method_defn, + STATE(3724), 1, + sym__property_defn, + STATE(3733), 1, + sym_method_or_prop_defn, + STATE(4119), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71837] = 10, + [73599] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7171), 1, + ACTIONS(7362), 1, anon_sym_GT, - STATE(4030), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4816), 1, + STATE(4888), 1, sym_type_argument_constraints, - STATE(4024), 3, + STATE(4120), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71870] = 10, + [73632] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7173), 1, + ACTIONS(7364), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4112), 1, aux_sym_type_arguments_repeat1, - STATE(4978), 1, + STATE(5174), 1, sym_type_argument_constraints, - STATE(4025), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [71903] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4315), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4026), 3, + STATE(4121), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71932] = 10, + [73665] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(7267), 1, sym_identifier, - STATE(2114), 1, - sym__method_defn, - STATE(2115), 1, - sym__property_defn, - STATE(2117), 1, + STATE(2185), 1, sym_method_or_prop_defn, - STATE(2144), 1, + STATE(2190), 1, + sym__property_defn, + STATE(2197), 1, + sym__method_defn, + STATE(2201), 1, sym_property_or_ident, - STATE(4027), 3, + STATE(4122), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71965] = 10, + [73698] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(509), 1, - sym__else, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(900), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4028), 3, + ACTIONS(7293), 1, + sym_identifier, + ACTIONS(7366), 1, + anon_sym_member, + STATE(2199), 1, + sym_member_signature, + STATE(4248), 1, + sym_access_modifier, + STATE(4123), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [73731] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4410), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4124), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [71998] = 10, + [73760] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7175), 1, + ACTIONS(7368), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4818), 1, + STATE(4820), 1, sym_type_argument_constraints, - STATE(4029), 3, + STATE(4125), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72031] = 10, + [73793] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7177), 1, + ACTIONS(7370), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4688), 1, + STATE(5449), 1, sym_type_argument_constraints, - STATE(4030), 3, + STATE(4126), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72064] = 10, + [73826] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7179), 1, + ACTIONS(7372), 1, anon_sym_GT, - STATE(4065), 1, + STATE(4125), 1, aux_sym_type_arguments_repeat1, - STATE(5349), 1, + STATE(4821), 1, sym_type_argument_constraints, - STATE(4031), 3, + STATE(4127), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72097] = 10, + [73859] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(485), 1, + sym__elif, + ACTIONS(489), 1, + sym__else, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7181), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(5282), 1, - sym_type_argument_constraints, - STATE(4032), 3, + STATE(1125), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4128), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72130] = 7, + [73892] = 8, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(7185), 2, - sym__simple_string_char, - anon_sym_DQUOTEB, - ACTIONS(7183), 3, - sym__non_escape_char, - anon_sym_BSLASH, - anon_sym_DQUOTE2, - STATE(4033), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4697), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4129), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72157] = 10, + [73921] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7187), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(4865), 1, - sym_type_argument_constraints, - STATE(4034), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, + sym__method_defn, + STATE(3624), 1, + sym__property_defn, + STATE(3625), 1, + sym_method_or_prop_defn, + STATE(4130), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72190] = 10, + [73954] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7189), 1, + ACTIONS(7374), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(5019), 1, + STATE(4830), 1, sym_type_argument_constraints, - STATE(4035), 3, + STATE(4131), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72223] = 10, + [73987] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(513), 1, - sym__else, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1451), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4036), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7376), 1, + anon_sym_GT, + STATE(4136), 1, + aux_sym_type_arguments_repeat1, + STATE(4876), 1, + sym_type_argument_constraints, + STATE(4132), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72256] = 10, + [74020] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7191), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(5213), 1, - sym_type_argument_constraints, - STATE(4037), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2160), 1, + sym_method_or_prop_defn, + STATE(2167), 1, + sym__method_defn, + STATE(2175), 1, + sym__property_defn, + STATE(2203), 1, + sym_property_or_ident, + STATE(4133), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72289] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [74053] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4359), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4038), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7378), 1, + aux_sym_float_token1, + STATE(4134), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72318] = 10, + ACTIONS(2695), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + [74080] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(7312), 1, sym_identifier, - STATE(2114), 1, - sym__method_defn, - STATE(2115), 1, - sym__property_defn, - STATE(2118), 1, - sym_method_or_prop_defn, - STATE(2144), 1, - sym_property_or_ident, - STATE(4039), 3, + ACTIONS(7380), 1, + anon_sym_member, + STATE(3625), 1, + sym_member_signature, + STATE(4288), 1, + sym_access_modifier, + STATE(4135), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72351] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [74113] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4320), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4040), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [72380] = 8, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4569), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4041), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7382), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4875), 1, + sym_type_argument_constraints, + STATE(4136), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72409] = 10, + [74146] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7193), 1, + ACTIONS(7384), 1, anon_sym_GT, - STATE(4043), 1, + STATE(4149), 1, aux_sym_type_arguments_repeat1, - STATE(4910), 1, + STATE(5210), 1, sym_type_argument_constraints, - STATE(4042), 3, + STATE(4137), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [74179] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(381), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7171), 1, + anon_sym_LPAREN, + STATE(922), 1, + sym__identifier_or_op, + ACTIONS(1694), 2, + aux_sym__identifier_or_op_token1, + sym_identifier, + STATE(4138), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72442] = 10, + [74210] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7195), 1, + ACTIONS(7386), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4131), 1, aux_sym_type_arguments_repeat1, - STATE(4909), 1, + STATE(4831), 1, sym_type_argument_constraints, - STATE(4043), 3, + STATE(4139), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72475] = 9, + [74243] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, @@ -341855,29209 +345880,29441 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(989), 1, + ACTIONS(3900), 1, anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(7031), 1, + ACTIONS(7039), 1, anon_sym_LPAREN, - STATE(1712), 1, + STATE(2610), 1, sym__identifier_or_op, - ACTIONS(1897), 2, + ACTIONS(3898), 2, aux_sym__identifier_or_op_token1, sym_identifier, - STATE(4044), 3, + STATE(4140), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72506] = 9, + [74274] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5137), 1, - anon_sym__, - ACTIONS(7197), 1, + ACTIONS(7267), 1, sym_identifier, - STATE(4992), 1, - sym_type_argument, - ACTIONS(5143), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(4045), 3, + STATE(2200), 1, + sym_property_or_ident, + STATE(3623), 1, + sym__method_defn, + STATE(3624), 1, + sym__property_defn, + STATE(3660), 1, + sym_method_or_prop_defn, + STATE(4141), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72537] = 10, + [74307] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(521), 1, - sym__else, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1018), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4046), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7388), 1, + anon_sym_GT, + STATE(4143), 1, + aux_sym_type_arguments_repeat1, + STATE(4868), 1, + sym_type_argument_constraints, + STATE(4142), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72570] = 10, + [74340] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, - sym_identifier, - STATE(2143), 1, - sym_property_or_ident, - STATE(3542), 1, - sym__property_defn, - STATE(3548), 1, - sym_method_or_prop_defn, - STATE(3555), 1, - sym__method_defn, - STATE(4047), 3, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7390), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4867), 1, + sym_type_argument_constraints, + STATE(4143), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72603] = 8, + [74373] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7199), 1, - anon_sym_interface, - STATE(4187), 1, - sym_interface_implementation, - ACTIONS(4056), 2, - sym__newline, - sym__dedent, - STATE(4048), 4, + ACTIONS(7253), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_when, + ACTIONS(7392), 1, + anon_sym_GT, + STATE(4182), 1, + aux_sym_type_arguments_repeat1, + STATE(4839), 1, + sym_type_argument_constraints, + STATE(4144), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [74406] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7267), 1, + sym_identifier, + STATE(2167), 1, + sym__method_defn, + STATE(2168), 1, + sym_method_or_prop_defn, + STATE(2175), 1, + sym__property_defn, + STATE(2203), 1, + sym_property_or_ident, + STATE(4145), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [72632] = 10, + [74439] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7202), 1, + ACTIONS(7394), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4148), 1, aux_sym_type_arguments_repeat1, - STATE(4792), 1, + STATE(4852), 1, sym_type_argument_constraints, - STATE(4049), 3, + STATE(4146), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72665] = 10, + [74472] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7204), 1, + ACTIONS(7396), 1, anon_sym_GT, - STATE(4049), 1, + STATE(4144), 1, aux_sym_type_arguments_repeat1, - STATE(4793), 1, + STATE(4840), 1, sym_type_argument_constraints, - STATE(4050), 3, + STATE(4147), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72698] = 10, + [74505] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7206), 1, + ACTIONS(7398), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4799), 1, + STATE(4851), 1, sym_type_argument_constraints, - STATE(4051), 3, + STATE(4148), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72731] = 10, + [74538] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7208), 1, + ACTIONS(7400), 1, anon_sym_GT, - STATE(4051), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4800), 1, + STATE(5223), 1, sym_type_argument_constraints, - STATE(4052), 3, + STATE(4149), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72764] = 10, - ACTIONS(3), 1, + [74571] = 8, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7210), 1, - anon_sym_GT, - STATE(4057), 1, - aux_sym_type_arguments_repeat1, - STATE(4840), 1, - sym_type_argument_constraints, - STATE(4053), 3, + ACTIONS(7249), 1, + sym__escape_char, + STATE(4512), 1, + sym__char_char, + ACTIONS(7251), 3, + sym__simple_char_char, + sym__unicodegraph_short, + sym__trigraph, + STATE(4150), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72797] = 10, + [74600] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(483), 1, - sym__else, - ACTIONS(485), 1, - sym__elif, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1044), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4054), 3, + ACTIONS(7316), 1, + sym_identifier, + ACTIONS(7402), 1, + anon_sym_member, + STATE(2181), 1, + sym_member_signature, + STATE(4287), 1, + sym_access_modifier, + STATE(4151), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72830] = 10, + [74633] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7091), 1, + ACTIONS(471), 1, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(7181), 1, + anon_sym_LPAREN, + STATE(1416), 1, + sym__identifier_or_op, + ACTIONS(2001), 2, + aux_sym__identifier_or_op_token1, sym_identifier, - STATE(2126), 1, - sym__property_defn, - STATE(2130), 1, - sym__method_defn, - STATE(2138), 1, - sym_method_or_prop_defn, - STATE(2142), 1, - sym_property_or_ident, - STATE(4055), 3, + STATE(4152), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72863] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [74664] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4457), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4056), 3, + ACTIONS(485), 1, + sym__elif, + ACTIONS(509), 1, + sym__else, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(1681), 1, + sym__else_expression, + STATE(4172), 1, + aux_sym__if_then_else_expression_repeat1, + STATE(4661), 1, + sym_elif_expression, + STATE(4153), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72892] = 10, + [74697] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, + ACTIONS(7253), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + ACTIONS(7257), 1, anon_sym_when, - ACTIONS(7212), 1, + ACTIONS(7404), 1, anon_sym_GT, - STATE(4109), 1, + STATE(4182), 1, aux_sym_type_arguments_repeat1, - STATE(4834), 1, + STATE(5290), 1, sym_type_argument_constraints, - STATE(4057), 3, + STATE(4154), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72925] = 10, + [74730] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7214), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(4809), 1, - sym_type_argument_constraints, - STATE(4058), 3, + ACTIONS(7267), 1, + sym_identifier, + STATE(2167), 1, + sym__method_defn, + STATE(2175), 1, + sym__property_defn, + STATE(2181), 1, + sym_method_or_prop_defn, + STATE(2203), 1, + sym_property_or_ident, + STATE(4155), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72958] = 10, + [74763] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7216), 1, - anon_sym_GT, - STATE(4035), 1, - aux_sym_type_arguments_repeat1, - STATE(5023), 1, - sym_type_argument_constraints, - STATE(4059), 3, + ACTIONS(7406), 1, + sym_identifier, + STATE(4353), 1, + sym_field_initializer, + STATE(5015), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4156), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [72991] = 9, + [74793] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(867), 1, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(6879), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym__identifier_or_op, - ACTIONS(2011), 2, - aux_sym__identifier_or_op_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7408), 1, sym_identifier, - STATE(4060), 3, + ACTIONS(7410), 1, + anon_sym_mutable, + STATE(5261), 1, + sym_access_modifier, + STATE(4157), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73022] = 10, + [74823] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7218), 1, - anon_sym_GT, - STATE(4058), 1, - aux_sym_type_arguments_repeat1, - STATE(4742), 1, - sym_type_argument_constraints, - STATE(4061), 3, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(7412), 1, + sym__dedent, + STATE(4201), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4158), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73055] = 10, + [74853] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(485), 1, - sym__elif, - ACTIONS(493), 1, - sym__else, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(1956), 1, - sym__else_expression, - STATE(4102), 1, - aux_sym__if_then_else_expression_repeat1, - STATE(4500), 1, - sym_elif_expression, - STATE(4062), 3, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7416), 1, + anon_sym_mutable, + STATE(5229), 1, + sym_access_modifier, + STATE(4159), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73088] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [74883] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4345), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4063), 3, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6340), 1, + anon_sym_member, + ACTIONS(6346), 1, + anon_sym_val, + STATE(4971), 1, + sym_access_modifier, + STATE(4160), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73117] = 8, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [74913] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7087), 1, - sym__escape_char, - STATE(4651), 1, - sym__char_char, - ACTIONS(7089), 3, - sym__simple_char_char, - sym__unicodegraph_short, - sym__trigraph, - STATE(4064), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(7418), 1, + sym__dedent, + STATE(4158), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4161), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73146] = 10, + [74943] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7069), 1, - anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_when, - ACTIONS(7220), 1, - anon_sym_GT, - STATE(4109), 1, - aux_sym_type_arguments_repeat1, - STATE(5337), 1, - sym_type_argument_constraints, - STATE(4065), 3, + ACTIONS(7420), 1, + sym_identifier, + STATE(337), 1, + sym_long_identifier, + STATE(4546), 1, + sym_access_modifier, + STATE(4162), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73179] = 9, + [74973] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7222), 1, + ACTIONS(7003), 1, anon_sym_member, - ACTIONS(7224), 1, + ACTIONS(7005), 1, anon_sym_val, - STATE(4703), 1, + STATE(4755), 1, sym_access_modifier, - STATE(4066), 3, + STATE(4163), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73209] = 9, + [75003] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(7226), 1, + ACTIONS(7422), 1, sym__indent, - STATE(5106), 1, + STATE(5109), 1, sym_active_pattern_op_name, - STATE(5158), 1, + STATE(5167), 1, sym__expression_block, - STATE(4067), 3, + STATE(4164), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73239] = 7, + [75033] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7228), 1, - anon_sym_and, - ACTIONS(4181), 2, - sym__newline, - sym__dedent, - STATE(4068), 4, + ACTIONS(7424), 1, + sym_identifier, + ACTIONS(7426), 1, + anon_sym_mutable, + STATE(5221), 1, + sym_access_modifier, + STATE(4165), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [73265] = 9, + [75063] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(5217), 1, - sym_active_pattern_op_name, - STATE(5319), 1, - sym__expression_block, - STATE(4069), 3, + STATE(4166), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73295] = 9, + ACTIONS(2754), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + [75087] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(7406), 1, sym_identifier, - STATE(4241), 1, + STATE(4353), 1, sym_field_initializer, - STATE(4922), 1, - sym_field_initializers, - STATE(5090), 1, + STATE(5089), 1, sym_long_identifier, - STATE(4070), 3, + STATE(5108), 1, + sym_field_initializers, + STATE(4167), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73325] = 9, + [75117] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1859), 1, - ts_builtin_sym_end, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, - anon_sym_namespace, - STATE(4076), 1, - aux_sym_file_repeat2, - STATE(4449), 1, - sym_namespace, - STATE(4071), 3, + ACTIONS(6723), 1, + anon_sym__, + STATE(4258), 1, + sym_type_argument, + ACTIONS(6725), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4168), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73355] = 9, + [75145] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(7235), 1, - sym__dedent, - STATE(4078), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4361), 1, - sym_interface_implementation, - STATE(4072), 3, + ACTIONS(7428), 1, + anon_sym_member, + ACTIONS(7430), 1, + anon_sym_val, + STATE(4861), 1, + sym_access_modifier, + STATE(4169), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73385] = 9, + [75175] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(7237), 1, - sym__dedent, - STATE(4120), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4361), 1, - sym_interface_implementation, - STATE(4073), 3, + ACTIONS(7406), 1, + sym_identifier, + STATE(4353), 1, + sym_field_initializer, + STATE(5089), 1, + sym_long_identifier, + STATE(5090), 1, + sym_field_initializers, + STATE(4170), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73415] = 8, + [75205] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6540), 1, - anon_sym__, - STATE(4137), 1, - sym_type_argument, - ACTIONS(6542), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(4074), 3, + ACTIONS(7432), 1, + anon_sym_COLON, + ACTIONS(7434), 1, + anon_sym_RPAREN, + ACTIONS(7436), 1, + anon_sym_COMMA, + STATE(4295), 1, + aux_sym_primary_constr_args_repeat1, + STATE(4171), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73443] = 9, + [75235] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7239), 1, - sym_identifier, - ACTIONS(7241), 1, - anon_sym_mutable, - STATE(5148), 1, - sym_access_modifier, - STATE(4075), 3, + ACTIONS(7438), 1, + sym__else, + ACTIONS(7440), 1, + sym__elif, + STATE(4661), 1, + sym_elif_expression, + STATE(4172), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73473] = 8, + aux_sym__if_then_else_expression_repeat1, + [75263] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7243), 1, - ts_builtin_sym_end, - ACTIONS(7245), 1, - anon_sym_namespace, - STATE(4449), 1, - sym_namespace, - STATE(4076), 4, + ACTIONS(7406), 1, + sym_identifier, + STATE(4353), 1, + sym_field_initializer, + STATE(4950), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4173), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_file_repeat2, - [73501] = 9, + [75293] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(7406), 1, sym_identifier, - STATE(4241), 1, + STATE(4353), 1, sym_field_initializer, - STATE(4730), 1, + STATE(4984), 1, sym_field_initializers, - STATE(5090), 1, + STATE(5089), 1, sym_long_identifier, - STATE(4077), 3, + STATE(4174), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73531] = 9, + [75323] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(7248), 1, + ACTIONS(5823), 1, + aux_sym_decimal_token1, + ACTIONS(6041), 1, + anon_sym_f, + ACTIONS(2229), 2, sym__dedent, - STATE(4120), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4361), 1, - sym_interface_implementation, - STATE(4078), 3, + anon_sym_PIPE, + STATE(4175), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73561] = 9, + [75351] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7250), 1, + ACTIONS(7443), 1, sym_identifier, - ACTIONS(7252), 1, + ACTIONS(7445), 1, anon_sym_mutable, - STATE(5060), 1, + STATE(5217), 1, sym_access_modifier, - STATE(4079), 3, + STATE(4176), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [75381] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7447), 1, + sym_identifier, + ACTIONS(7449), 1, + anon_sym_mutable, + STATE(5300), 1, + sym_access_modifier, + STATE(4177), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [75411] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7406), 1, + sym_identifier, + STATE(4353), 1, + sym_field_initializer, + STATE(4749), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4178), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [75441] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7451), 1, + sym_identifier, + ACTIONS(7453), 1, + anon_sym_mutable, + STATE(4958), 1, + sym_access_modifier, + STATE(4179), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73591] = 9, + [75471] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(7226), 1, + ACTIONS(7422), 1, sym__indent, - STATE(5157), 1, + STATE(5044), 1, sym_active_pattern_op_name, - STATE(5191), 1, + STATE(5113), 1, sym__expression_block, - STATE(4080), 3, + STATE(4180), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [75501] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7340), 2, + sym__non_escape_char, + anon_sym_BSLASH, + ACTIONS(7342), 2, + sym__simple_string_char, + anon_sym_DQUOTE2, + STATE(4181), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73621] = 9, + [75527] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7455), 1, + anon_sym_COMMA, + ACTIONS(7458), 2, + anon_sym_GT, + anon_sym_when, + STATE(4182), 4, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + aux_sym_type_arguments_repeat1, + [75553] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7254), 1, + ACTIONS(7406), 1, sym_identifier, - ACTIONS(7256), 1, - anon_sym_mutable, - STATE(5118), 1, - sym_access_modifier, - STATE(4081), 3, + STATE(4353), 1, + sym_field_initializer, + STATE(5089), 1, + sym_long_identifier, + STATE(5268), 1, + sym_field_initializers, + STATE(4183), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73651] = 7, + [75583] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, - ACTIONS(6326), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(4082), 4, + ACTIONS(4183), 1, + sym__dedent, + ACTIONS(5384), 1, + anon_sym_interface, + STATE(4201), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4184), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_list_pattern_repeat1, - [73677] = 9, + [75613] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7261), 1, + ACTIONS(7460), 1, sym_identifier, - ACTIONS(7263), 1, - anon_sym_mutable, - STATE(5064), 1, - sym_access_modifier, - STATE(4083), 3, + ACTIONS(7462), 1, + anon_sym_global, + ACTIONS(7464), 1, + anon_sym_rec, + STATE(328), 1, + sym_long_identifier, + STATE(4185), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73707] = 9, + [75643] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7265), 1, + ACTIONS(7466), 1, sym_identifier, - ACTIONS(7267), 1, + ACTIONS(7468), 1, anon_sym_mutable, - STATE(4733), 1, + STATE(5294), 1, sym_access_modifier, - STATE(4084), 3, + STATE(4186), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [75673] = 7, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(7356), 2, + sym__non_escape_char, + anon_sym_BSLASH, + ACTIONS(7358), 2, + sym__simple_string_char, + anon_sym_DQUOTE2, + STATE(4187), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73737] = 9, + [75699] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4891), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4085), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5206), 1, + sym_active_pattern_op_name, + STATE(5262), 1, + sym__expression_block, + STATE(4188), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73767] = 9, + [75729] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, + ACTIONS(7432), 1, anon_sym_COLON, - ACTIONS(7271), 1, - anon_sym_RPAREN, - ACTIONS(7273), 1, + ACTIONS(7436), 1, anon_sym_COMMA, - STATE(4198), 1, + ACTIONS(7470), 1, + anon_sym_RPAREN, + STATE(4274), 1, aux_sym_primary_constr_args_repeat1, - STATE(4086), 3, + STATE(4189), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73797] = 9, + [75759] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6154), 1, - anon_sym_member, - ACTIONS(6160), 1, - anon_sym_val, - STATE(4961), 1, - sym_access_modifier, - STATE(4087), 3, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(7472), 1, + sym__dedent, + STATE(4201), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4190), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73827] = 9, + [75789] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7275), 1, - anon_sym_member, - ACTIONS(7277), 1, - anon_sym_val, - STATE(4763), 1, + ACTIONS(7474), 1, + sym_identifier, + ACTIONS(7476), 1, + anon_sym_mutable, + STATE(5291), 1, sym_access_modifier, - STATE(4088), 3, + STATE(4191), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73857] = 9, + [75819] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, + ACTIONS(7406), 1, sym_identifier, - ACTIONS(7281), 1, - anon_sym_mutable, - STATE(5142), 1, - sym_access_modifier, - STATE(4089), 3, + STATE(4353), 1, + sym_field_initializer, + STATE(4899), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4192), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73887] = 9, + [75849] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7283), 1, - sym_identifier, - ACTIONS(7285), 1, - anon_sym_mutable, - STATE(5031), 1, + ACTIONS(5926), 1, + anon_sym_member, + ACTIONS(5932), 1, + anon_sym_val, + STATE(4764), 1, sym_access_modifier, - STATE(4090), 3, + STATE(4193), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73917] = 9, + [75879] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(4971), 1, - sym_active_pattern_op_name, - STATE(5017), 1, - sym__expression_block, - STATE(4091), 3, + ACTIONS(7432), 1, + anon_sym_COLON, + ACTIONS(7436), 1, + anon_sym_COMMA, + ACTIONS(7478), 1, + anon_sym_RPAREN, + STATE(4374), 1, + aux_sym_primary_constr_args_repeat1, + STATE(4194), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73947] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [75909] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7183), 2, - sym__non_escape_char, - anon_sym_BSLASH, - ACTIONS(7185), 2, - sym__simple_string_char, - anon_sym_DQUOTE2, - STATE(4092), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5363), 1, + sym_active_pattern_op_name, + STATE(5471), 1, + sym__expression_block, + STATE(4195), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [73973] = 8, + [75939] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7287), 1, - anon_sym_and, - STATE(4068), 1, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(4226), 2, - sym__newline, + ACTIONS(5384), 1, + anon_sym_interface, + ACTIONS(7480), 1, sym__dedent, - STATE(4093), 3, + STATE(4190), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4401), 1, + sym_interface_implementation, + STATE(4196), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74001] = 9, + [75969] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5218), 1, - anon_sym_interface, - ACTIONS(7289), 1, - sym__dedent, - STATE(4073), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4361), 1, - sym_interface_implementation, - STATE(4094), 3, + ACTIONS(7482), 1, + sym_identifier, + ACTIONS(7484), 1, + anon_sym_mutable, + STATE(5458), 1, + sym_access_modifier, + STATE(4197), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74031] = 9, + [75999] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(7406), 1, sym_identifier, - STATE(4241), 1, + STATE(4353), 1, sym_field_initializer, - STATE(4795), 1, + STATE(5077), 1, sym_field_initializers, - STATE(5090), 1, + STATE(5089), 1, sym_long_identifier, - STATE(4095), 3, + STATE(4198), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74061] = 9, + [76029] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(5016), 1, - sym_active_pattern_op_name, - STATE(5059), 1, - sym__expression_block, - STATE(4096), 3, + ACTIONS(6518), 1, + anon_sym_member, + ACTIONS(6524), 1, + anon_sym_val, + STATE(4845), 1, + sym_access_modifier, + STATE(4199), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74091] = 9, + [76059] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7291), 1, - sym_identifier, - ACTIONS(7293), 1, - anon_sym_mutable, - STATE(5072), 1, - sym_access_modifier, - STATE(4097), 3, + STATE(4200), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74121] = 9, + ACTIONS(2695), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + [76083] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(5239), 1, - sym__expression_block, - STATE(5318), 1, - sym_active_pattern_op_name, - STATE(4098), 3, + ACTIONS(4191), 1, + sym__dedent, + ACTIONS(7486), 1, + anon_sym_interface, + STATE(4401), 1, + sym_interface_implementation, + STATE(4201), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74151] = 9, + aux_sym__object_expression_inner_repeat1, + [76111] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(7489), 1, sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4806), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4099), 3, + ACTIONS(7491), 1, + anon_sym_mutable, + STATE(5169), 1, + sym_access_modifier, + STATE(4202), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74181] = 9, + [76141] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7295), 1, + ACTIONS(7493), 1, sym_identifier, - ACTIONS(7297), 1, + ACTIONS(7495), 1, anon_sym_mutable, - STATE(5139), 1, + STATE(4754), 1, sym_access_modifier, - STATE(4100), 3, + STATE(4203), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74211] = 9, + [76171] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(5469), 2, + anon_sym_LPAREN, + anon_sym_LPAREN_STAR_RPAREN, + ACTIONS(5471), 2, + aux_sym__identifier_or_op_token1, sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4744), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4101), 3, + STATE(4204), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74241] = 8, + [76197] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7299), 1, - sym__else, - ACTIONS(7301), 1, - sym__elif, - STATE(4500), 1, - sym_elif_expression, - STATE(4102), 4, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(4969), 1, + sym__expression_block, + STATE(5028), 1, + sym_active_pattern_op_name, + STATE(4205), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__if_then_else_expression_repeat1, - [74269] = 9, + [76227] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(1491), 1, + ts_builtin_sym_end, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, - anon_sym_COLON, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7304), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_primary_constr_args_repeat1, - STATE(4103), 3, + ACTIONS(7497), 1, + anon_sym_namespace, + STATE(4224), 1, + aux_sym_file_repeat2, + STATE(4616), 1, + sym_namespace, + STATE(4206), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74299] = 7, + [76257] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5260), 1, + sym_active_pattern_op_name, + STATE(5330), 1, + sym__expression_block, + STATE(4207), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [76287] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(5298), 2, - anon_sym_LPAREN, - anon_sym_LPAREN_STAR_RPAREN, - ACTIONS(5300), 2, - aux_sym__identifier_or_op_token1, - sym_identifier, - STATE(4104), 3, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7499), 1, + anon_sym_member, + ACTIONS(7501), 1, + anon_sym_val, + STATE(4777), 1, + sym_access_modifier, + STATE(4208), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74325] = 9, + [76317] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6140), 1, + ACTIONS(6314), 1, anon_sym_member, - ACTIONS(6146), 1, + ACTIONS(6320), 1, anon_sym_val, - STATE(4750), 1, + STATE(4905), 1, sym_access_modifier, - STATE(4105), 3, + STATE(4209), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74355] = 9, + [76347] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2646), 1, + anon_sym_COLON_GT, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(5258), 1, - sym_active_pattern_op_name, - STATE(5315), 1, - sym__expression_block, - STATE(4106), 3, + ACTIONS(7503), 1, + anon_sym_COLON, + ACTIONS(7506), 1, + anon_sym_or, + STATE(4369), 1, + aux_sym_static_type_argument_repeat1, + STATE(4210), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74385] = 9, + [76377] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5715), 1, + ACTIONS(7508), 1, anon_sym_member, - ACTIONS(5721), 1, + ACTIONS(7510), 1, anon_sym_val, - STATE(4723), 1, + STATE(4918), 1, sym_access_modifier, - STATE(4107), 3, + STATE(4211), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74415] = 9, + [76407] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6433), 1, - anon_sym_member, - ACTIONS(6439), 1, - anon_sym_val, - STATE(4691), 1, - sym_access_modifier, - STATE(4108), 3, + ACTIONS(7512), 1, + anon_sym_and, + ACTIONS(4337), 2, + sym__newline, + sym__dedent, + STATE(4212), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74445] = 7, + aux_sym__function_or_value_defns_repeat1, + [76433] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7306), 1, - anon_sym_COMMA, - ACTIONS(7309), 2, - anon_sym_GT, - anon_sym_when, - STATE(4109), 4, + ACTIONS(7515), 1, + anon_sym_and, + STATE(4218), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4348), 2, + sym__newline, + sym__dedent, + STATE(4213), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_type_arguments_repeat1, - [74471] = 9, + [76461] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7311), 1, - sym_identifier, - ACTIONS(7313), 1, - anon_sym_mutable, - STATE(4945), 1, - sym_access_modifier, - STATE(4110), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5329), 1, + sym_active_pattern_op_name, + STATE(5411), 1, + sym__expression_block, + STATE(4214), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74501] = 9, + [76491] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4860), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4111), 3, + ACTIONS(7517), 1, + anon_sym_SEMI, + ACTIONS(6530), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(4215), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74531] = 9, + aux_sym_list_pattern_repeat1, + [76517] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7315), 1, + ACTIONS(7520), 1, sym_identifier, - STATE(342), 1, - sym_long_identifier, - STATE(4417), 1, + ACTIONS(7522), 1, + anon_sym_mutable, + STATE(5270), 1, sym_access_modifier, - STATE(4112), 3, + STATE(4216), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74561] = 9, + [76547] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4829), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4113), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5166), 1, + sym_active_pattern_op_name, + STATE(5207), 1, + sym__expression_block, + STATE(4217), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74591] = 9, + [76577] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4684), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4114), 3, + ACTIONS(7515), 1, + anon_sym_and, + STATE(4212), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(4291), 2, + sym__newline, + sym__dedent, + STATE(4218), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74621] = 9, + [76605] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7317), 1, + ACTIONS(7406), 1, sym_identifier, - ACTIONS(7319), 1, - anon_sym_mutable, - STATE(5109), 1, - sym_access_modifier, - STATE(4115), 3, + STATE(4353), 1, + sym_field_initializer, + STATE(4838), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4219), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74651] = 9, + [76635] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(7226), 1, + ACTIONS(7422), 1, sym__indent, - STATE(4930), 1, + STATE(5362), 1, sym_active_pattern_op_name, - STATE(4972), 1, + STATE(5383), 1, sym__expression_block, - STATE(4116), 3, + STATE(4220), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74681] = 9, + [76665] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2603), 1, - anon_sym_COLON_GT, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7321), 1, - anon_sym_COLON, - ACTIONS(7324), 1, - anon_sym_or, - STATE(4151), 1, - aux_sym_static_type_argument_repeat1, - STATE(4117), 3, + ACTIONS(7406), 1, + sym_identifier, + STATE(4353), 1, + sym_field_initializer, + STATE(5046), 1, + sym_field_initializers, + STATE(5089), 1, + sym_long_identifier, + STATE(4221), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74711] = 9, + [76695] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(1700), 1, + ts_builtin_sym_end, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, - sym__indent, - STATE(5190), 1, - sym_active_pattern_op_name, - STATE(5257), 1, - sym__expression_block, - STATE(4118), 3, + ACTIONS(7497), 1, + anon_sym_namespace, + STATE(4224), 1, + aux_sym_file_repeat2, + STATE(4616), 1, + sym_namespace, + STATE(4222), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74741] = 8, + [76725] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7287), 1, - anon_sym_and, - STATE(4093), 1, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(4211), 2, - sym__newline, - sym__dedent, - STATE(4119), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + sym__indent, + STATE(5022), 1, + sym__expression_block, + STATE(5472), 1, + sym_active_pattern_op_name, + STATE(4223), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74769] = 8, + [76755] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4056), 1, - sym__dedent, - ACTIONS(7326), 1, - anon_sym_interface, - STATE(4361), 1, - sym_interface_implementation, - STATE(4120), 4, + ACTIONS(7524), 1, + ts_builtin_sym_end, + ACTIONS(7526), 1, + anon_sym_namespace, + STATE(4616), 1, + sym_namespace, + STATE(4224), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [74797] = 9, + aux_sym_file_repeat2, + [76783] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7329), 1, + ACTIONS(7529), 1, sym_identifier, - ACTIONS(7331), 1, + ACTIONS(7531), 1, anon_sym_mutable, - STATE(5112), 1, + STATE(5264), 1, sym_access_modifier, - STATE(4121), 3, + STATE(4225), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74827] = 9, + [76813] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4076), 1, - sym__dedent, - ACTIONS(5218), 1, - anon_sym_interface, - STATE(4120), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4361), 1, - sym_interface_implementation, - STATE(4122), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7533), 1, + anon_sym_RPAREN, + STATE(5050), 1, + sym__expression_block, + STATE(4226), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74857] = 9, + [76840] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6782), 1, - anon_sym_member, - ACTIONS(6784), 1, - anon_sym_val, - STATE(4709), 1, - sym_access_modifier, - STATE(4123), 3, + ACTIONS(7535), 1, + anon_sym_COMMA, + ACTIONS(7537), 1, + anon_sym_RBRACK, + STATE(4286), 1, + aux_sym_slice_ranges_repeat1, + STATE(4227), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74887] = 9, + [76867] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7333), 1, - sym_identifier, - ACTIONS(7335), 1, - anon_sym_mutable, - STATE(4718), 1, - sym_access_modifier, - STATE(4124), 3, + ACTIONS(7539), 1, + anon_sym_with, + ACTIONS(7541), 1, + anon_sym_finally, + ACTIONS(7543), 1, + sym__newline, + STATE(4228), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74917] = 9, + [76894] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7337), 1, - anon_sym_member, - ACTIONS(7339), 1, - anon_sym_val, - STATE(4707), 1, - sym_access_modifier, - STATE(4125), 3, + ACTIONS(4348), 1, + sym__dedent, + ACTIONS(7545), 1, + anon_sym_and, + STATE(4245), 1, + aux_sym__function_or_value_defns_repeat1, + STATE(4229), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74947] = 9, + [76921] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(4953), 1, - sym_field_initializers, - STATE(5090), 1, - sym_long_identifier, - STATE(4126), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7547), 1, + anon_sym_PIPE_RBRACK, + ACTIONS(7549), 1, + sym__indent, + STATE(5324), 1, + sym__list_element, + STATE(4230), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [74977] = 9, + [76948] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7341), 1, + ACTIONS(7293), 1, sym_identifier, - ACTIONS(7343), 1, - anon_sym_global, - ACTIONS(7345), 1, - anon_sym_rec, - STATE(325), 1, - sym_long_identifier, - STATE(4127), 3, + ACTIONS(7366), 1, + anon_sym_member, + STATE(2199), 1, + sym_member_signature, + STATE(4231), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75007] = 9, + [76975] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - ACTIONS(7226), 1, + ACTIONS(7549), 1, sym__indent, - STATE(5058), 1, - sym_active_pattern_op_name, - STATE(5107), 1, - sym__expression_block, - STATE(4128), 3, + ACTIONS(7551), 1, + anon_sym_RBRACK, + STATE(5328), 1, + sym__list_element, + STATE(4232), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75037] = 7, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [77002] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(7143), 2, - sym__non_escape_char, - anon_sym_BSLASH, - ACTIONS(7145), 2, - sym__simple_string_char, - anon_sym_DQUOTE2, - STATE(4129), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7553), 1, + sym_identifier, + ACTIONS(7555), 1, + anon_sym_RPAREN, + STATE(4189), 1, + sym_simple_pattern, + STATE(4233), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75063] = 9, + [77029] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, - anon_sym_COLON, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7347), 1, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7557), 1, anon_sym_RPAREN, - STATE(4233), 1, - aux_sym_primary_constr_args_repeat1, - STATE(4130), 3, + STATE(5241), 1, + sym__expression_block, + STATE(4234), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75093] = 9, + [77056] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1447), 1, - ts_builtin_sym_end, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7233), 1, - anon_sym_namespace, - STATE(4076), 1, - aux_sym_file_repeat2, - STATE(4449), 1, - sym_namespace, - STATE(4131), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7559), 1, + anon_sym_RPAREN, + STATE(4793), 1, + sym__expression_block, + STATE(4235), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75123] = 9, + [77083] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(4241), 1, - sym_field_initializer, - STATE(5090), 1, - sym_long_identifier, - STATE(5092), 1, - sym_field_initializers, - STATE(4132), 3, + ACTIONS(4337), 1, + sym__dedent, + ACTIONS(7561), 1, + anon_sym_and, + STATE(4236), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75153] = 8, + aux_sym__function_or_value_defns_repeat1, + [77108] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6136), 1, - anon_sym_LPAREN, - ACTIONS(6140), 1, - anon_sym_member, - ACTIONS(7349), 1, - anon_sym_new, - STATE(4133), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(2830), 1, + sym_field_pattern, + STATE(5189), 1, + sym_long_identifier, + STATE(4237), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75180] = 8, + [77135] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7351), 1, - anon_sym_static, - ACTIONS(7353), 1, - anon_sym_member, - STATE(5086), 1, - sym_trait_member_constraint, - STATE(4134), 3, + ACTIONS(7566), 1, + anon_sym_and, + ACTIONS(7568), 1, + anon_sym_GT, + STATE(4365), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(4238), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75207] = 8, + [77162] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7355), 1, - anon_sym_COMMA, - ACTIONS(7357), 1, - anon_sym_RBRACK, - STATE(4190), 1, - aux_sym_slice_ranges_repeat1, - STATE(4135), 3, + ACTIONS(7570), 1, + sym__newline, + ACTIONS(7572), 1, + sym__dedent, + STATE(4262), 1, + aux_sym__list_elements_repeat1, + STATE(4239), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75234] = 8, + [77189] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7359), 1, - anon_sym_RPAREN, - STATE(4994), 1, - sym__expression_block, - STATE(4136), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3804), 1, + sym_field_pattern, + STATE(4756), 1, + sym_long_identifier, + STATE(4240), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75261] = 6, + [77216] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7361), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(4137), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3769), 1, + sym_field_pattern, + STATE(4835), 1, + sym_long_identifier, + STATE(4241), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75284] = 8, + [77243] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7363), 1, - anon_sym_RBRACK, - ACTIONS(7365), 1, - sym__indent, - STATE(5313), 1, - sym__list_element, - STATE(4138), 3, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7576), 1, + anon_sym_or, + STATE(4242), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75311] = 8, + aux_sym_static_type_argument_repeat1, + [77268] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6255), 1, - anon_sym_COMMA, - ACTIONS(7367), 1, - anon_sym_GT, - STATE(4282), 1, - aux_sym_types_repeat1, - STATE(4139), 3, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7579), 1, + anon_sym_PIPE_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4243), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75338] = 8, + [77295] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - sym__dedent, - STATE(4145), 1, - aux_sym_enum_type_cases_repeat1, - STATE(4140), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3425), 1, + sym_field_pattern, + STATE(5154), 1, + sym_long_identifier, + STATE(4244), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75365] = 8, + [77322] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7373), 1, - anon_sym_RPAREN, - STATE(5028), 1, - sym__expression_block, - STATE(4141), 3, + ACTIONS(4291), 1, + sym__dedent, + ACTIONS(7545), 1, + anon_sym_and, + STATE(4236), 1, + aux_sym__function_or_value_defns_repeat1, + STATE(4245), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75392] = 7, + [77349] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7378), 1, - anon_sym_GT, - STATE(4142), 4, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7581), 1, + anon_sym_PIPE_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4246), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - [75417] = 8, + [77376] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7103), 1, - anon_sym_member, - STATE(2136), 1, - sym_member_signature, - STATE(4143), 3, + ACTIONS(4408), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(4247), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75444] = 8, + [77399] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7147), 1, + ACTIONS(7293), 1, sym_identifier, - ACTIONS(7380), 1, + ACTIONS(7583), 1, anon_sym_member, - STATE(3558), 1, + STATE(2185), 1, sym_member_signature, - STATE(4144), 3, + STATE(4248), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75471] = 7, + [77426] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7382), 1, - anon_sym_PIPE, - ACTIONS(7385), 1, - sym__dedent, - STATE(4145), 4, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(7585), 1, + anon_sym_COLON, + STATE(5457), 1, + sym_type_arguments, + STATE(4249), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_enum_type_cases_repeat1, - [75496] = 8, + [77453] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(2985), 1, - sym_field_pattern, - STATE(5368), 1, - sym_long_identifier, - STATE(4146), 3, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7587), 1, + anon_sym_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4250), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75523] = 8, + [77480] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7389), 1, - anon_sym_COMMA, - ACTIONS(7391), 1, - anon_sym_GT, - STATE(4172), 1, - aux_sym_type_attributes_repeat1, - STATE(4147), 3, + ACTIONS(4481), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(4251), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75550] = 8, + [77503] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7393), 1, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7589), 1, anon_sym_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4148), 3, + STATE(5163), 1, + sym__list_element, + STATE(4252), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75577] = 8, + [77530] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7395), 1, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7591), 1, anon_sym_PIPE_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4149), 3, + STATE(5162), 1, + sym__list_element, + STATE(4253), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75604] = 8, + [77557] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(2850), 1, + STATE(3039), 1, sym_field_pattern, - STATE(5240), 1, + STATE(4805), 1, sym_long_identifier, - STATE(4150), 3, + STATE(4254), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75631] = 8, + [77584] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7324), 1, - anon_sym_or, - ACTIONS(7397), 1, - anon_sym_COLON, - STATE(4202), 1, - aux_sym_static_type_argument_repeat1, - STATE(4151), 3, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7593), 1, + anon_sym_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4255), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75658] = 8, + [77611] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7399), 1, - anon_sym_PIPE_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4152), 3, + ACTIONS(6423), 1, + anon_sym_COMMA, + ACTIONS(7595), 1, + anon_sym_GT, + STATE(4371), 1, + aux_sym_types_repeat1, + STATE(4256), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75685] = 8, + [77638] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7401), 1, - anon_sym_GT_RBRACK, - ACTIONS(7403), 1, - sym__newline, - STATE(4174), 1, - aux_sym_attribute_set_repeat1, - STATE(4153), 3, + ACTIONS(7285), 1, + sym_identifier, + ACTIONS(7338), 1, + anon_sym_member, + STATE(3729), 1, + sym_member_signature, + STATE(4257), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75712] = 8, + [77665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7405), 1, - anon_sym_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4154), 3, + ACTIONS(7597), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(4258), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75739] = 8, + [77688] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7147), 1, - sym_identifier, - ACTIONS(7149), 1, - anon_sym_member, - STATE(3533), 1, - sym_member_signature, - STATE(4155), 3, + ACTIONS(7599), 1, + anon_sym_PIPE, + ACTIONS(7601), 1, + sym__dedent, + STATE(4325), 1, + aux_sym_enum_type_cases_repeat1, + STATE(4259), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75766] = 8, + [77715] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7407), 1, - anon_sym_with, - ACTIONS(7409), 1, - anon_sym_finally, - ACTIONS(7411), 1, + ACTIONS(4477), 3, sym__newline, - STATE(4156), 3, + sym__dedent, + anon_sym_and, + STATE(4260), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75793] = 8, + [77738] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, + ACTIONS(7549), 1, sym__indent, - ACTIONS(7413), 1, + ACTIONS(7603), 1, anon_sym_PIPE_RBRACK, - STATE(5014), 1, + STATE(5378), 1, sym__list_element, - STATE(4157), 3, + STATE(4261), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75820] = 8, + [77765] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7415), 1, - anon_sym_RBRACK, - STATE(5015), 1, - sym__list_element, - STATE(4158), 3, + ACTIONS(7605), 1, + sym__newline, + ACTIONS(7608), 1, + sym__dedent, + STATE(4262), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75847] = 8, + aux_sym__list_elements_repeat1, + [77790] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7417), 1, + ACTIONS(7610), 1, sym_identifier, - STATE(5089), 1, + STATE(5452), 1, sym_access_modifier, - STATE(4159), 3, + STATE(4263), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75874] = 8, + [77817] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7283), 1, - sym_identifier, - STATE(5031), 1, - sym_access_modifier, - STATE(4160), 3, + ACTIONS(7612), 1, + anon_sym_RPAREN, + ACTIONS(7614), 1, + anon_sym_COMMA, + STATE(4264), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75901] = 8, + aux_sym_primary_constr_args_repeat1, + [77842] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_GT_RBRACK, - STATE(4174), 1, - aux_sym_attribute_set_repeat1, - STATE(4161), 3, + ACTIONS(7432), 1, + anon_sym_COLON, + ACTIONS(7612), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4265), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75928] = 8, + [77867] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7421), 1, - sym__newline, - ACTIONS(7423), 1, - sym__dedent, - STATE(4283), 1, - aux_sym_field_initializers_repeat1, - STATE(4162), 3, + ACTIONS(7529), 1, + sym_identifier, + STATE(5264), 1, + sym_access_modifier, + STATE(4266), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75955] = 6, + [77894] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7425), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4163), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(2825), 1, + sym_field_pattern, + STATE(5189), 1, + sym_long_identifier, + STATE(4267), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [75978] = 8, + [77921] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7231), 1, + ACTIONS(7285), 1, sym_identifier, - STATE(4630), 1, - sym_field_initializer, - STATE(5090), 1, - sym_long_identifier, - STATE(4164), 3, + ACTIONS(7617), 1, + anon_sym_member, + STATE(3733), 1, + sym_member_signature, + STATE(4268), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76005] = 8, + [77948] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7427), 1, - anon_sym_with, - ACTIONS(7429), 1, - anon_sym_finally, - ACTIONS(7431), 1, - sym__newline, - STATE(4165), 3, + ACTIONS(7619), 1, + sym_identifier, + STATE(5042), 1, + sym_access_modifier, + STATE(4269), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76032] = 8, + [77975] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7433), 1, - anon_sym_member, - STATE(2140), 1, - sym_member_signature, - STATE(4166), 3, + ACTIONS(7621), 1, + anon_sym_COMMA, + ACTIONS(7623), 1, + anon_sym_GT, + STATE(4337), 1, + aux_sym_type_attributes_repeat1, + STATE(4270), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76059] = 6, + [78002] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7435), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(4167), 3, + ACTIONS(7625), 1, + anon_sym_with, + ACTIONS(7627), 1, + anon_sym_finally, + ACTIONS(7629), 1, + sym__newline, + STATE(4271), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76082] = 6, + [78029] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4328), 3, - sym__newline, - sym__dedent, - anon_sym_and, - STATE(4168), 3, + ACTIONS(7520), 1, + sym_identifier, + STATE(5270), 1, + sym_access_modifier, + STATE(4272), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76105] = 8, + [78056] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, + ACTIONS(7549), 1, sym__indent, - ACTIONS(7437), 1, + ACTIONS(7631), 1, + anon_sym_PIPE_RBRACK, + STATE(5256), 1, + sym__list_element, + STATE(4273), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [78083] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7434), 1, anon_sym_RPAREN, - STATE(5228), 1, - sym__expression_block, - STATE(4169), 3, + ACTIONS(7436), 1, + anon_sym_COMMA, + STATE(4264), 1, + aux_sym_primary_constr_args_repeat1, + STATE(4274), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76132] = 8, + [78110] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7439), 1, - sym__newline, - ACTIONS(7441), 1, - sym__dedent, - STATE(4234), 1, - aux_sym_record_fields_repeat1, - STATE(4170), 3, + ACTIONS(7499), 1, + anon_sym_member, + ACTIONS(7633), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_new, + STATE(4275), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76159] = 8, + [78137] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7443), 1, - anon_sym_and, - ACTIONS(7445), 1, - anon_sym_GT, - STATE(4142), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(4171), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7637), 1, + anon_sym_RPAREN, + STATE(5135), 1, + sym__expression_block, + STATE(4276), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76186] = 8, + [78164] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7389), 1, - anon_sym_COMMA, - ACTIONS(7447), 1, - anon_sym_GT, - STATE(4277), 1, - aux_sym_type_attributes_repeat1, - STATE(4172), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7639), 1, + anon_sym_RBRACK, + STATE(5380), 1, + sym__list_element, + STATE(4277), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76213] = 8, + [78191] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7449), 1, - sym_identifier, - STATE(5245), 1, - sym_access_modifier, - STATE(4173), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7641), 1, + anon_sym_RPAREN, + STATE(5298), 1, + sym__expression_block, + STATE(4278), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76240] = 7, + [78218] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7451), 1, - anon_sym_GT_RBRACK, - ACTIONS(7453), 1, - sym__newline, - STATE(4174), 4, + ACTIONS(7414), 1, + sym_identifier, + STATE(5229), 1, + sym_access_modifier, + STATE(4279), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_attribute_set_repeat1, - [76265] = 6, + [78245] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4346), 3, - sym__newline, - sym__dedent, - anon_sym_and, - STATE(4175), 3, + ACTIONS(7470), 1, + anon_sym_RPAREN, + ACTIONS(7553), 1, + sym_identifier, + STATE(4171), 1, + sym_simple_pattern, + STATE(4280), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76288] = 8, + [78272] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7456), 1, - anon_sym_RBRACK, - STATE(4970), 1, - sym__list_element, - STATE(4176), 3, + ACTIONS(7643), 1, + sym__newline, + ACTIONS(7645), 1, + sym__dedent, + STATE(4354), 1, + aux_sym__class_type_body_repeat1, + STATE(4281), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76315] = 8, + [78299] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7458), 1, - anon_sym_PIPE_RBRACK, - STATE(4968), 1, - sym__list_element, - STATE(4177), 3, + ACTIONS(7493), 1, + sym_identifier, + STATE(4754), 1, + sym_access_modifier, + STATE(4282), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76342] = 8, + [78326] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4211), 1, + ACTIONS(7647), 1, + anon_sym_COMMA, + ACTIONS(7650), 1, sym__dedent, - ACTIONS(7460), 1, - anon_sym_and, - STATE(4192), 1, - aux_sym__function_or_value_defns_repeat1, - STATE(4178), 3, + STATE(4283), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76369] = 6, + aux_sym_slice_ranges_repeat1, + [78351] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4294), 3, + ACTIONS(7652), 1, + anon_sym_with, + ACTIONS(7654), 1, + anon_sym_finally, + ACTIONS(7656), 1, sym__newline, - sym__dedent, - anon_sym_and, - STATE(4179), 3, + STATE(4284), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76392] = 8, + [78378] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7462), 1, - anon_sym_COMMA, - ACTIONS(7464), 1, + ACTIONS(4318), 3, + sym__newline, sym__dedent, - STATE(4284), 1, - aux_sym_slice_ranges_repeat1, - STATE(4180), 3, + anon_sym_interface, + STATE(4285), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76419] = 8, + [78401] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7466), 1, - sym_identifier, - STATE(5035), 1, - sym_access_modifier, - STATE(4181), 3, + ACTIONS(7535), 1, + anon_sym_COMMA, + ACTIONS(7658), 1, + anon_sym_RBRACK, + STATE(4313), 1, + aux_sym_slice_ranges_repeat1, + STATE(4286), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76446] = 7, + [78428] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7468), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_STAR, - STATE(4182), 4, + ACTIONS(7316), 1, + sym_identifier, + ACTIONS(7318), 1, + anon_sym_member, + STATE(2168), 1, + sym_member_signature, + STATE(4287), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_arguments_spec_repeat1, - [76471] = 8, + [78455] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7473), 1, - anon_sym_with, - ACTIONS(7475), 1, - anon_sym_finally, - ACTIONS(7477), 1, - sym__newline, - STATE(4183), 3, + ACTIONS(7312), 1, + sym_identifier, + ACTIONS(7314), 1, + anon_sym_member, + STATE(3630), 1, + sym_member_signature, + STATE(4288), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76498] = 7, + [78482] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4181), 1, + ACTIONS(4344), 3, + sym__newline, sym__dedent, - ACTIONS(7479), 1, - anon_sym_and, - STATE(4184), 4, + anon_sym_interface, + STATE(4289), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [76523] = 8, + [78505] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, - sym__newline, - ACTIONS(7482), 1, + ACTIONS(7660), 1, anon_sym_GT_RBRACK, - STATE(4153), 1, + ACTIONS(7662), 1, + sym__newline, + STATE(4387), 1, aux_sym_attribute_set_repeat1, - STATE(4185), 3, + STATE(4290), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76550] = 8, + [78532] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7484), 1, - sym__newline, - ACTIONS(7486), 1, - sym__dedent, - STATE(4272), 1, - aux_sym__class_type_body_repeat1, - STATE(4186), 3, + ACTIONS(7664), 1, + sym_identifier, + STATE(5272), 1, + sym_access_modifier, + STATE(4291), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76577] = 6, + [78559] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4169), 3, - sym__newline, - sym__dedent, - anon_sym_interface, - STATE(4187), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(7666), 1, + anon_sym_COLON, + STATE(4758), 1, + sym_type_arguments, + STATE(4292), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76600] = 8, + [78586] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7434), 1, + anon_sym_RPAREN, + ACTIONS(7553), 1, sym_identifier, - STATE(2753), 1, - sym_field_pattern, - STATE(5305), 1, - sym_long_identifier, - STATE(4188), 3, + STATE(4194), 1, + sym_simple_pattern, + STATE(4293), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76627] = 8, + [78613] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7316), 1, sym_identifier, - STATE(3696), 1, - sym_field_pattern, - STATE(4734), 1, - sym_long_identifier, - STATE(4189), 3, + ACTIONS(7668), 1, + anon_sym_member, + STATE(2166), 1, + sym_member_signature, + STATE(4294), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76654] = 8, + [78640] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7355), 1, + ACTIONS(7436), 1, anon_sym_COMMA, - ACTIONS(7464), 1, - anon_sym_RBRACK, - STATE(4221), 1, - aux_sym_slice_ranges_repeat1, - STATE(4190), 3, + ACTIONS(7478), 1, + anon_sym_RPAREN, + STATE(4264), 1, + aux_sym_primary_constr_args_repeat1, + STATE(4295), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76681] = 8, + [78667] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_RPAREN, - STATE(4263), 1, - aux_sym_primary_constr_args_repeat1, - STATE(4191), 3, + ACTIONS(7670), 1, + anon_sym_with, + ACTIONS(7672), 1, + anon_sym_finally, + ACTIONS(7674), 1, + sym__newline, + STATE(4296), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76708] = 8, + [78694] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4226), 1, + ACTIONS(7676), 1, + sym__newline, + ACTIONS(7678), 1, sym__dedent, - ACTIONS(7460), 1, - anon_sym_and, - STATE(4184), 1, - aux_sym__function_or_value_defns_repeat1, - STATE(4192), 3, + STATE(4361), 1, + aux_sym_field_initializers_repeat1, + STATE(4297), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76735] = 8, + [78721] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7490), 1, - anon_sym_PIPE_RBRACK, - STATE(5312), 1, - sym__list_element, - STATE(4193), 3, + ACTIONS(7662), 1, + sym__newline, + ACTIONS(7680), 1, + anon_sym_GT_RBRACK, + STATE(4346), 1, + aux_sym_attribute_set_repeat1, + STATE(4298), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76762] = 6, + [78748] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4192), 3, + ACTIONS(7643), 1, sym__newline, + ACTIONS(7682), 1, sym__dedent, - anon_sym_interface, - STATE(4194), 3, + STATE(4281), 1, + aux_sym__class_type_body_repeat1, + STATE(4299), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76785] = 8, + [78775] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7261), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(5064), 1, - sym_access_modifier, - STATE(4195), 3, + STATE(2931), 1, + sym_field_pattern, + STATE(5387), 1, + sym_long_identifier, + STATE(4300), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76812] = 8, + [78802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, + ACTIONS(2734), 3, sym__newline, - ACTIONS(7492), 1, - anon_sym_GT_RBRACK, - STATE(4161), 1, - aux_sym_attribute_set_repeat1, - STATE(4196), 3, + anon_sym_with, + anon_sym_finally, + STATE(4301), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76839] = 8, + [78825] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7494), 1, - anon_sym_as, - ACTIONS(7496), 1, + ACTIONS(7684), 1, anon_sym_with, - STATE(4094), 1, - sym__object_members, - STATE(4197), 3, + ACTIONS(7686), 1, + anon_sym_finally, + ACTIONS(7688), 1, + sym__newline, + STATE(4302), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76866] = 8, + [78852] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7347), 1, - anon_sym_RPAREN, - STATE(4263), 1, - aux_sym_primary_constr_args_repeat1, - STATE(4198), 3, + ACTIONS(7662), 1, + sym__newline, + ACTIONS(7690), 1, + anon_sym_GT_RBRACK, + STATE(4290), 1, + aux_sym_attribute_set_repeat1, + STATE(4303), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76893] = 8, + [78879] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7498), 1, + ACTIONS(7692), 1, sym_identifier, - ACTIONS(7500), 1, - anon_sym_RPAREN, - STATE(4086), 1, - sym_simple_pattern, - STATE(4199), 3, + STATE(5372), 1, + sym_access_modifier, + STATE(4304), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76920] = 8, + [78906] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(7502), 1, - anon_sym_COLON, - STATE(4719), 1, - sym_type_arguments, - STATE(4200), 3, + ACTIONS(7662), 1, + sym__newline, + ACTIONS(7694), 1, + anon_sym_GT_RBRACK, + STATE(4315), 1, + aux_sym_attribute_set_repeat1, + STATE(4305), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76947] = 8, + [78933] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7129), 1, + ACTIONS(7696), 1, sym_identifier, - ACTIONS(7131), 1, - anon_sym_member, - STATE(2118), 1, - sym_member_signature, - STATE(4201), 3, + STATE(5413), 1, + sym_access_modifier, + STATE(4306), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [76974] = 7, + [78960] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7504), 1, - anon_sym_COLON, - ACTIONS(7506), 1, - anon_sym_or, - STATE(4202), 4, + ACTIONS(7698), 1, + sym__newline, + ACTIONS(7700), 1, + sym__dedent, + STATE(4381), 1, + aux_sym_record_fields_repeat1, + STATE(4307), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_static_type_argument_repeat1, - [76999] = 8, + [78987] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7509), 1, + ACTIONS(7702), 1, anon_sym_DASH_GT, - ACTIONS(7511), 1, + ACTIONS(7704), 1, anon_sym_STAR, - STATE(4182), 1, + STATE(4340), 1, aux_sym_arguments_spec_repeat1, - STATE(4203), 3, + STATE(4308), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77026] = 8, + [79014] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7513), 1, - anon_sym_PIPE_RBRACK, - STATE(5052), 1, - sym__list_element, - STATE(4204), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3063), 1, + sym_field_pattern, + STATE(4805), 1, + sym_long_identifier, + STATE(4309), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77053] = 8, + [79041] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2523), 1, + anon_sym_EQ, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7515), 1, - anon_sym_RBRACK, - STATE(5053), 1, - sym__list_element, - STATE(4205), 3, + ACTIONS(4897), 1, + anon_sym_DOT, + STATE(2646), 1, + aux_sym_long_identifier_repeat1, + STATE(4310), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77080] = 8, + [79068] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7517), 1, - anon_sym_RPAREN, - STATE(4950), 1, - sym__expression_block, - STATE(4206), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(2798), 1, + sym_field_pattern, + STATE(5189), 1, + sym_long_identifier, + STATE(4311), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77107] = 8, + [79095] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(761), 1, - sym__dedent, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7519), 1, - sym__newline, - STATE(4285), 1, - aux_sym__list_elements_repeat1, - STATE(4207), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7706), 1, + anon_sym_RPAREN, + STATE(5181), 1, + sym__expression_block, + STATE(4312), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77134] = 8, + [79122] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7521), 1, - anon_sym_PIPE_RBRACK, - STATE(5252), 1, - sym__list_element, - STATE(4208), 3, + ACTIONS(7650), 1, + anon_sym_RBRACK, + ACTIONS(7708), 1, + anon_sym_COMMA, + STATE(4313), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77161] = 8, + aux_sym_slice_ranges_repeat1, + [79147] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7291), 1, - sym_identifier, - STATE(5072), 1, - sym_access_modifier, - STATE(4209), 3, + ACTIONS(6310), 1, + anon_sym_LPAREN, + ACTIONS(6314), 1, + anon_sym_member, + ACTIONS(7711), 1, + anon_sym_new, + STATE(4314), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77188] = 8, + [79174] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(7523), 1, - anon_sym_COLON, - STATE(5218), 1, - sym_type_arguments, - STATE(4210), 3, + ACTIONS(7662), 1, + sym__newline, + ACTIONS(7713), 1, + anon_sym_GT_RBRACK, + STATE(4387), 1, + aux_sym_attribute_set_repeat1, + STATE(4315), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77215] = 8, + [79201] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7525), 1, - anon_sym_RBRACK, - STATE(5154), 1, - sym__list_element, - STATE(4211), 3, + ACTIONS(7715), 1, + anon_sym_with, + ACTIONS(7717), 1, + anon_sym_finally, + ACTIONS(7719), 1, + sym__newline, + STATE(4316), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77242] = 8, + [79228] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7265), 1, + ACTIONS(7482), 1, sym_identifier, - STATE(4733), 1, + STATE(5458), 1, sym_access_modifier, - STATE(4212), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [77269] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, - sym__newline, - ACTIONS(7527), 1, - anon_sym_GT_RBRACK, - STATE(4174), 1, - aux_sym_attribute_set_repeat1, - STATE(4213), 3, + STATE(4317), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77296] = 7, + [79255] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2523), 1, + anon_sym_EQ2, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7531), 1, - aux_sym_float_token1, - ACTIONS(7529), 2, - anon_sym_f, - aux_sym_decimal_token1, - STATE(4214), 3, + ACTIONS(4982), 1, + anon_sym_DOT, + STATE(2744), 1, + aux_sym_long_identifier_repeat1, + STATE(4318), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77321] = 8, + [79282] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7533), 1, - sym_identifier, - STATE(5075), 1, - sym_access_modifier, - STATE(4215), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7721), 1, + anon_sym_PIPE_RBRACK, + STATE(5475), 1, + sym__list_element, + STATE(4319), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77348] = 8, + [79309] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, + ACTIONS(7549), 1, sym__indent, - ACTIONS(7535), 1, + ACTIONS(7723), 1, anon_sym_RBRACK, - STATE(5189), 1, + STATE(5106), 1, sym__list_element, - STATE(4216), 3, + STATE(4320), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77375] = 8, + [79336] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3587), 1, - sym_field_pattern, - STATE(5151), 1, - sym_long_identifier, - STATE(4217), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7725), 1, + anon_sym_PIPE_RBRACK, + STATE(5105), 1, + sym__list_element, + STATE(4321), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77402] = 8, + [79363] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7537), 1, - anon_sym_RPAREN, - STATE(5359), 1, - sym__expression_block, - STATE(4218), 3, + ACTIONS(7727), 1, + sym_identifier, + STATE(5056), 1, + sym_access_modifier, + STATE(4322), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77429] = 8, + [79390] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7539), 1, - anon_sym_PIPE_RBRACK, - STATE(5187), 1, - sym__list_element, - STATE(4219), 3, + ACTIONS(7599), 1, + anon_sym_PIPE, + ACTIONS(7729), 1, + sym__dedent, + STATE(4259), 1, + aux_sym_enum_type_cases_repeat1, + STATE(4323), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77456] = 8, + [79417] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, + ACTIONS(7549), 1, sym__indent, - ACTIONS(7541), 1, + ACTIONS(7731), 1, anon_sym_RBRACK, - STATE(5253), 1, + STATE(5474), 1, sym__list_element, - STATE(4220), 3, + STATE(4324), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77483] = 7, + [79444] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7543), 1, - anon_sym_COMMA, - ACTIONS(7546), 1, - anon_sym_RBRACK, - STATE(4221), 4, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7736), 1, + sym__dedent, + STATE(4325), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [77508] = 8, + aux_sym_enum_type_cases_repeat1, + [79469] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7548), 1, - anon_sym_with, - ACTIONS(7550), 1, - anon_sym_finally, - ACTIONS(7552), 1, + ACTIONS(7698), 1, sym__newline, - STATE(4222), 3, + ACTIONS(7738), 1, + sym__dedent, + STATE(4307), 1, + aux_sym_record_fields_repeat1, + STATE(4326), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77535] = 8, + [79496] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7554), 1, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7740), 1, anon_sym_RBRACK, - STATE(5343), 1, - sym__list_element, - STATE(4223), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [77562] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7556), 1, - anon_sym_with, - ACTIONS(7558), 1, - anon_sym_finally, - ACTIONS(7560), 1, - sym__newline, - STATE(4224), 3, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4327), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77589] = 8, + [79523] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7271), 1, - anon_sym_RPAREN, - ACTIONS(7498), 1, + ACTIONS(7312), 1, sym_identifier, - STATE(4130), 1, - sym_simple_pattern, - STATE(4225), 3, + ACTIONS(7742), 1, + anon_sym_member, + STATE(3660), 1, + sym_member_signature, + STATE(4328), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77616] = 8, + [79550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7562), 1, - sym_identifier, - STATE(4967), 1, - sym_access_modifier, - STATE(4226), 3, + ACTIONS(7744), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4329), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77643] = 8, + [79573] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(2868), 1, + STATE(3772), 1, sym_field_pattern, - STATE(5240), 1, + STATE(4835), 1, sym_long_identifier, - STATE(4227), 3, + STATE(4330), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77670] = 8, + [79600] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7564), 1, - anon_sym_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4228), 3, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7746), 1, + anon_sym_static, + ACTIONS(7748), 1, + anon_sym_member, + STATE(5417), 1, + sym_trait_member_constraint, + STATE(4331), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77697] = 8, + [79627] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(2984), 1, - sym_field_pattern, - STATE(4677), 1, - sym_long_identifier, - STATE(4229), 3, + ACTIONS(4327), 3, + sym__newline, + sym__dedent, + anon_sym_interface, + STATE(4332), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77724] = 8, + [79650] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7566), 1, - anon_sym_RPAREN, - STATE(5043), 1, - sym__expression_block, - STATE(4230), 3, + ACTIONS(7750), 1, + anon_sym_as, + ACTIONS(7752), 1, + anon_sym_with, + STATE(4196), 1, + sym__object_members, + STATE(4333), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77751] = 8, + [79677] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7568), 1, - anon_sym_with, - ACTIONS(7570), 1, - anon_sym_finally, - ACTIONS(7572), 1, - sym__newline, - STATE(4231), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7754), 1, + anon_sym_RBRACK, + STATE(5407), 1, + sym__list_element, + STATE(4334), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77778] = 8, + [79704] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7439), 1, - sym__newline, - ACTIONS(7574), 1, - sym__dedent, - STATE(4170), 1, - aux_sym_record_fields_repeat1, - STATE(4232), 3, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7756), 1, + anon_sym_PIPE_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4335), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77805] = 8, + [79731] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7304), 1, - anon_sym_RPAREN, - STATE(4263), 1, - aux_sym_primary_constr_args_repeat1, - STATE(4233), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3039), 1, + sym_field_pattern, + STATE(4871), 1, + sym_long_identifier, + STATE(4336), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77832] = 7, + [79758] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7576), 1, - sym__newline, - ACTIONS(7579), 1, - sym__dedent, - STATE(4234), 4, + ACTIONS(7758), 1, + anon_sym_COMMA, + ACTIONS(7761), 1, + anon_sym_GT, + STATE(4337), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_record_fields_repeat1, - [77857] = 8, + aux_sym_type_attributes_repeat1, + [79783] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, + ACTIONS(7549), 1, sym__indent, - ACTIONS(7581), 1, - anon_sym_RPAREN, - STATE(5083), 1, - sym__expression_block, - STATE(4235), 3, + ACTIONS(7763), 1, + anon_sym_PIPE_RBRACK, + STATE(5406), 1, + sym__list_element, + STATE(4338), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77884] = 8, + [79810] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(3636), 1, + STATE(2954), 1, sym_field_pattern, - STATE(4681), 1, + STATE(5387), 1, sym_long_identifier, - STATE(4236), 3, + STATE(4339), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77911] = 8, + [79837] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6136), 1, - anon_sym_LPAREN, - ACTIONS(6154), 1, - anon_sym_member, - ACTIONS(7583), 1, - anon_sym_new, - STATE(4237), 3, + ACTIONS(7704), 1, + anon_sym_STAR, + ACTIONS(7765), 1, + anon_sym_DASH_GT, + STATE(4389), 1, + aux_sym_arguments_spec_repeat1, + STATE(4340), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77938] = 6, + [79864] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4205), 3, - sym__newline, - sym__dedent, - anon_sym_interface, - STATE(4238), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7767), 1, + anon_sym_RBRACK, + STATE(5030), 1, + sym__list_element, + STATE(4341), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77961] = 8, + [79891] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7511), 1, - anon_sym_STAR, - ACTIONS(7585), 1, - anon_sym_DASH_GT, - STATE(4203), 1, - aux_sym_arguments_spec_repeat1, - STATE(4239), 3, + ACTIONS(7537), 1, + sym__dedent, + ACTIONS(7769), 1, + anon_sym_COMMA, + STATE(4368), 1, + aux_sym_slice_ranges_repeat1, + STATE(4342), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [77988] = 8, + [79918] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7222), 1, - anon_sym_member, - ACTIONS(7583), 1, - anon_sym_new, - ACTIONS(7587), 1, - anon_sym_LPAREN, - STATE(4240), 3, + ACTIONS(7771), 1, + anon_sym_with, + ACTIONS(7773), 1, + anon_sym_finally, + ACTIONS(7775), 1, + sym__newline, + STATE(4343), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78015] = 8, + [79945] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7421), 1, - sym__newline, - ACTIONS(7589), 1, - sym__dedent, - STATE(4162), 1, - aux_sym_field_initializers_repeat1, - STATE(4241), 3, + ACTIONS(6310), 1, + anon_sym_LPAREN, + ACTIONS(6340), 1, + anon_sym_member, + ACTIONS(7635), 1, + anon_sym_new, + STATE(4344), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78042] = 8, + [79972] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3011), 1, - sym_field_pattern, - STATE(5368), 1, - sym_long_identifier, - STATE(4242), 3, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7777), 1, + anon_sym_PIPE_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4345), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78069] = 8, + [79999] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, + ACTIONS(7662), 1, sym__newline, - ACTIONS(7591), 1, + ACTIONS(7779), 1, anon_sym_GT_RBRACK, - STATE(4213), 1, + STATE(4387), 1, aux_sym_attribute_set_repeat1, - STATE(4243), 3, + STATE(4346), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78096] = 8, + [80026] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2475), 1, - anon_sym_EQ, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4757), 1, - anon_sym_DOT, - STATE(2584), 1, - aux_sym_long_identifier_repeat1, - STATE(4244), 3, + ACTIONS(7781), 1, + sym_identifier, + ACTIONS(7783), 1, + anon_sym__, + ACTIONS(7785), 1, + anon_sym_RPAREN, + STATE(4347), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78123] = 8, + [80053] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7593), 1, - anon_sym_with, - ACTIONS(7595), 1, - anon_sym_finally, - ACTIONS(7597), 1, - sym__newline, - STATE(4245), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(2931), 1, + sym_field_pattern, + STATE(5456), 1, + sym_long_identifier, + STATE(4348), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78150] = 8, + [80080] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2475), 1, - anon_sym_EQ2, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4828), 1, - anon_sym_DOT, - STATE(2674), 1, - aux_sym_long_identifier_repeat1, - STATE(4246), 3, + ACTIONS(7466), 1, + sym_identifier, + STATE(5294), 1, + sym_access_modifier, + STATE(4349), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78177] = 8, + [80107] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, + ACTIONS(7422), 1, sym__indent, - ACTIONS(7599), 1, + ACTIONS(7787), 1, anon_sym_RPAREN, - STATE(5176), 1, + STATE(5082), 1, sym__expression_block, - STATE(4247), 3, + STATE(4350), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78204] = 6, + [80134] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2649), 3, - sym__newline, - anon_sym_with, - anon_sym_finally, - STATE(4248), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7789), 1, + anon_sym_PIPE_RBRACK, + STATE(5043), 1, + sym__list_element, + STATE(4351), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78227] = 7, + [80161] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7601), 1, + ACTIONS(7662), 1, sym__newline, - ACTIONS(7604), 1, - sym__dedent, - STATE(4249), 4, + ACTIONS(7791), 1, + anon_sym_GT_RBRACK, + STATE(4387), 1, + aux_sym_attribute_set_repeat1, + STATE(4352), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__class_type_body_repeat1, - [78252] = 8, + [80188] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7357), 1, + ACTIONS(7676), 1, + sym__newline, + ACTIONS(7793), 1, sym__dedent, - ACTIONS(7462), 1, - anon_sym_COMMA, - STATE(4180), 1, - aux_sym_slice_ranges_repeat1, - STATE(4250), 3, + STATE(4297), 1, + aux_sym_field_initializers_repeat1, + STATE(4353), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78279] = 8, + [80215] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7606), 1, - sym_identifier, - STATE(5061), 1, - sym_access_modifier, - STATE(4251), 3, + ACTIONS(7795), 1, + sym__newline, + ACTIONS(7798), 1, + sym__dedent, + STATE(4354), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78306] = 8, + aux_sym__class_type_body_repeat1, + [80240] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7447), 1, sym_identifier, - STATE(2723), 1, - sym_field_pattern, - STATE(5305), 1, - sym_long_identifier, - STATE(4252), 3, + STATE(5300), 1, + sym_access_modifier, + STATE(4355), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78333] = 8, + [80267] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(1015), 1, + sym__dedent, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(7608), 1, - anon_sym_COLON, - STATE(5341), 1, - sym_type_arguments, - STATE(4253), 3, + ACTIONS(7570), 1, + sym__newline, + STATE(4262), 1, + aux_sym__list_elements_repeat1, + STATE(4356), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78360] = 8, + [80294] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3625), 1, - sym_field_pattern, - STATE(4681), 1, - sym_long_identifier, - STATE(4254), 3, + ACTIONS(7800), 1, + anon_sym_with, + ACTIONS(7802), 1, + anon_sym_finally, + ACTIONS(7804), 1, + sym__newline, + STATE(4357), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78387] = 8, + [80321] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7275), 1, - anon_sym_member, - ACTIONS(7349), 1, - anon_sym_new, - ACTIONS(7587), 1, - anon_sym_LPAREN, - STATE(4255), 3, + ACTIONS(7621), 1, + anon_sym_COMMA, + ACTIONS(7806), 1, + anon_sym_GT, + STATE(4270), 1, + aux_sym_type_attributes_repeat1, + STATE(4358), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78414] = 8, + [80348] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7610), 1, - anon_sym_RBRACK, - STATE(5317), 1, - sym__list_element, - STATE(4256), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(3806), 1, + sym_field_pattern, + STATE(4756), 1, + sym_long_identifier, + STATE(4359), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78441] = 8, + [80375] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7612), 1, - anon_sym_PIPE_RBRACK, - STATE(5311), 1, - sym__list_element, - STATE(4257), 3, + ACTIONS(7566), 1, + anon_sym_and, + ACTIONS(7808), 1, + anon_sym_GT, + STATE(4238), 1, + aux_sym_type_argument_constraints_repeat1, + STATE(4360), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78468] = 8, + [80402] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3350), 1, - sym_field_pattern, - STATE(4734), 1, - sym_long_identifier, - STATE(4258), 3, + ACTIONS(7810), 1, + sym__newline, + ACTIONS(7813), 1, + sym__dedent, + STATE(4361), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78495] = 8, + aux_sym_field_initializers_repeat1, + [80427] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7614), 1, - anon_sym_PIPE_RBRACK, - STATE(5103), 1, - sym__list_element, - STATE(4259), 3, + ACTIONS(7564), 1, + sym_identifier, + STATE(2932), 1, + sym_field_pattern, + STATE(5456), 1, + sym_long_identifier, + STATE(4362), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78522] = 8, + [80454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7616), 1, - anon_sym_RBRACK, - STATE(5104), 1, - sym__list_element, - STATE(4260), 3, + ACTIONS(7458), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(4363), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78549] = 8, + [80477] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7329), 1, + ACTIONS(7406), 1, sym_identifier, - STATE(5112), 1, - sym_access_modifier, - STATE(4261), 3, + STATE(4455), 1, + sym_field_initializer, + STATE(5089), 1, + sym_long_identifier, + STATE(4364), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78576] = 8, + [80504] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3442), 1, - sym_field_pattern, - STATE(5151), 1, - sym_long_identifier, - STATE(4262), 3, + ACTIONS(7815), 1, + anon_sym_and, + ACTIONS(7818), 1, + anon_sym_GT, + STATE(4365), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78603] = 7, + aux_sym_type_argument_constraints_repeat1, + [80529] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7618), 1, - anon_sym_RPAREN, - ACTIONS(7620), 1, - anon_sym_COMMA, - STATE(4263), 4, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7820), 1, + anon_sym_PIPE_RBRACK, + STATE(4928), 1, + sym__list_element, + STATE(4366), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_primary_constr_args_repeat1, - [78628] = 8, + [80556] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7254), 1, + ACTIONS(7822), 1, sym_identifier, - STATE(5118), 1, + STATE(5302), 1, sym_access_modifier, - STATE(4264), 3, + STATE(4367), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78655] = 8, + [80583] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7623), 1, - anon_sym_PIPE_RBRACK, - STATE(5378), 1, - sym__list_element, - STATE(4265), 3, + ACTIONS(7658), 1, + sym__dedent, + ACTIONS(7769), 1, + anon_sym_COMMA, + STATE(4283), 1, + aux_sym_slice_ranges_repeat1, + STATE(4368), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78682] = 7, + [80610] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7625), 1, - sym_int, - ACTIONS(7627), 2, - anon_sym_f, - aux_sym_decimal_token1, - STATE(4266), 3, + ACTIONS(7506), 1, + anon_sym_or, + ACTIONS(7824), 1, + anon_sym_COLON, + STATE(4242), 1, + aux_sym_static_type_argument_repeat1, + STATE(4369), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78707] = 7, + [80637] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7269), 1, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(7826), 1, anon_sym_COLON, - ACTIONS(7618), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4267), 3, + STATE(4887), 1, + sym_type_arguments, + STATE(4370), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78732] = 8, + [80664] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7629), 1, - sym_identifier, - STATE(5120), 1, - sym_access_modifier, - STATE(4268), 3, + ACTIONS(6479), 1, + anon_sym_GT, + ACTIONS(7828), 1, + anon_sym_COMMA, + STATE(4371), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78759] = 8, + aux_sym_types_repeat1, + [80689] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7631), 1, - anon_sym_with, - ACTIONS(7633), 1, - anon_sym_finally, - ACTIONS(7635), 1, - sym__newline, - STATE(4269), 3, + ACTIONS(7831), 1, + sym_identifier, + STATE(5232), 1, + sym_access_modifier, + STATE(4372), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78786] = 8, + [80716] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7129), 1, - sym_identifier, - ACTIONS(7637), 1, - anon_sym_member, - STATE(2112), 1, - sym_member_signature, - STATE(4270), 3, + ACTIONS(7662), 1, + sym__newline, + ACTIONS(7833), 1, + anon_sym_GT_RBRACK, + STATE(4352), 1, + aux_sym_attribute_set_repeat1, + STATE(4373), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78813] = 8, + [80743] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, - sym__indent, - ACTIONS(7639), 1, + ACTIONS(7436), 1, + anon_sym_COMMA, + ACTIONS(7835), 1, anon_sym_RPAREN, - STATE(5301), 1, - sym__expression_block, - STATE(4271), 3, + STATE(4264), 1, + aux_sym_primary_constr_args_repeat1, + STATE(4374), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78840] = 8, + [80770] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7484), 1, - sym__newline, - ACTIONS(7641), 1, - sym__dedent, - STATE(4249), 1, - aux_sym__class_type_body_repeat1, - STATE(4272), 3, + ACTIONS(7837), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(4375), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78867] = 8, + [80793] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7347), 1, - anon_sym_RPAREN, - ACTIONS(7498), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(4103), 1, - sym_simple_pattern, - STATE(4273), 3, + STATE(3425), 1, + sym_field_pattern, + STATE(4835), 1, + sym_long_identifier, + STATE(4376), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78894] = 8, + [80820] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, + ACTIONS(7839), 1, + anon_sym_with, + ACTIONS(7841), 1, + anon_sym_finally, + ACTIONS(7843), 1, sym__newline, - ACTIONS(7643), 1, - anon_sym_GT_RBRACK, - STATE(4174), 1, - aux_sym_attribute_set_repeat1, - STATE(4274), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [78921] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7645), 1, - sym__dedent, - STATE(4140), 1, - aux_sym_enum_type_cases_repeat1, - STATE(4275), 3, + STATE(4377), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78948] = 8, + [80847] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(2850), 1, + STATE(3511), 1, sym_field_pattern, - STATE(5179), 1, + STATE(5154), 1, sym_long_identifier, - STATE(4276), 3, + STATE(4378), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [78975] = 7, + [80874] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7647), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_GT, - STATE(4277), 4, + ACTIONS(7564), 1, + sym_identifier, + STATE(3119), 1, + sym_field_pattern, + STATE(4871), 1, + sym_long_identifier, + STATE(4379), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_type_attributes_repeat1, - [79000] = 8, + [80901] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7443), 1, - anon_sym_and, - ACTIONS(7652), 1, - anon_sym_GT, - STATE(4171), 1, - aux_sym_type_argument_constraints_repeat1, - STATE(4278), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7845), 1, + anon_sym_RBRACK, + STATE(5259), 1, + sym__list_element, + STATE(4380), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79027] = 6, + [80928] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7309), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(4279), 3, + ACTIONS(7847), 1, + sym__newline, + ACTIONS(7850), 1, + sym__dedent, + STATE(4381), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79050] = 8, + aux_sym_record_fields_repeat1, + [80953] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7125), 1, - sym_identifier, - ACTIONS(7654), 1, - anon_sym_member, - STATE(3668), 1, - sym_member_signature, - STATE(4280), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7852), 1, + anon_sym_RPAREN, + STATE(5367), 1, + sym__expression_block, + STATE(4382), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79077] = 8, + [80980] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3350), 1, - sym_field_pattern, - STATE(5151), 1, - sym_long_identifier, - STATE(4281), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7854), 1, + anon_sym_RBRACK, + STATE(4934), 1, + sym__list_element, + STATE(4383), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79104] = 7, + [81007] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6332), 1, - anon_sym_GT, - ACTIONS(7656), 1, - anon_sym_COMMA, - STATE(4282), 4, + ACTIONS(7508), 1, + anon_sym_member, + ACTIONS(7633), 1, + anon_sym_LPAREN, + ACTIONS(7711), 1, + anon_sym_new, + STATE(4384), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_types_repeat1, - [79129] = 7, + [81034] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7659), 1, - sym__newline, - ACTIONS(7662), 1, - sym__dedent, - STATE(4283), 4, + ACTIONS(6497), 1, + anon_sym_SEMI, + ACTIONS(7856), 1, + anon_sym_RBRACK, + STATE(4215), 1, + aux_sym_list_pattern_repeat1, + STATE(4385), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_field_initializers_repeat1, - [79154] = 7, + [81061] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7546), 1, - sym__dedent, - ACTIONS(7664), 1, - anon_sym_COMMA, - STATE(4284), 4, + ACTIONS(7564), 1, + sym_identifier, + STATE(3425), 1, + sym_field_pattern, + STATE(4756), 1, + sym_long_identifier, + STATE(4386), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [79179] = 7, + [81088] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7667), 1, + ACTIONS(7858), 1, + anon_sym_GT_RBRACK, + ACTIONS(7860), 1, sym__newline, - ACTIONS(7670), 1, - sym__dedent, - STATE(4285), 4, + STATE(4387), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym__list_elements_repeat1, - [79204] = 8, + aux_sym_attribute_set_repeat1, + [81113] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7672), 1, - anon_sym_PIPE_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4286), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7863), 1, + anon_sym_RPAREN, + STATE(5480), 1, + sym__expression_block, + STATE(4388), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79231] = 8, + [81140] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7519), 1, - sym__newline, - ACTIONS(7674), 1, - sym__dedent, - STATE(4285), 1, - aux_sym__list_elements_repeat1, - STATE(4287), 3, + ACTIONS(7865), 1, + anon_sym_DASH_GT, + ACTIONS(7867), 1, + anon_sym_STAR, + STATE(4389), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79258] = 8, + aux_sym_arguments_spec_repeat1, + [81165] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7676), 1, + ACTIONS(7870), 1, sym_identifier, - ACTIONS(7678), 1, - anon_sym__, - ACTIONS(7680), 1, - anon_sym_RPAREN, - STATE(4288), 3, + STATE(5399), 1, + sym_access_modifier, + STATE(4390), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79285] = 8, + [81192] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(2985), 1, - sym_field_pattern, - STATE(4677), 1, - sym_long_identifier, - STATE(4289), 3, + ACTIONS(7422), 1, + sym__indent, + ACTIONS(7872), 1, + anon_sym_RPAREN, + STATE(5147), 1, + sym__expression_block, + STATE(4391), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79312] = 8, + [81219] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(3765), 1, - sym_field_pattern, - STATE(4734), 1, - sym_long_identifier, - STATE(4290), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7874), 1, + anon_sym_PIPE_RBRACK, + STATE(5200), 1, + sym__list_element, + STATE(4392), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79339] = 8, + [81246] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7403), 1, - sym__newline, - ACTIONS(7682), 1, - anon_sym_GT_RBRACK, - STATE(4274), 1, - aux_sym_attribute_set_repeat1, - STATE(4291), 3, + ACTIONS(7549), 1, + sym__indent, + ACTIONS(7876), 1, + anon_sym_RBRACK, + STATE(5201), 1, + sym__list_element, + STATE(4393), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79366] = 8, + [81273] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3751), 1, + aux_sym_access_modifier_token1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7684), 1, - anon_sym_with, - ACTIONS(7686), 1, - anon_sym_finally, - ACTIONS(7688), 1, - sym__newline, - STATE(4292), 3, + ACTIONS(7424), 1, + sym_identifier, + STATE(5221), 1, + sym_access_modifier, + STATE(4394), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79393] = 8, + [81300] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - sym_identifier, - STATE(5142), 1, - sym_access_modifier, - STATE(4293), 3, + ACTIONS(7878), 1, + anon_sym_with, + ACTIONS(7880), 1, + anon_sym_finally, + ACTIONS(7882), 1, + sym__newline, + STATE(4395), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79420] = 8, + [81327] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7690), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(5298), 1, - sym_access_modifier, - STATE(4294), 3, + STATE(3613), 1, + sym_field_pattern, + STATE(5154), 1, + sym_long_identifier, + STATE(4396), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79447] = 8, + [81354] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(2801), 1, - sym_field_pattern, - STATE(5305), 1, - sym_long_identifier, - STATE(4295), 3, + ACTIONS(5835), 1, + anon_sym_LT2, + ACTIONS(7884), 1, + anon_sym_COLON, + STATE(5254), 1, + sym_type_arguments, + STATE(4397), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79474] = 8, + [81381] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, + ACTIONS(3751), 1, aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7333), 1, + ACTIONS(7489), 1, sym_identifier, - STATE(4718), 1, + STATE(5169), 1, sym_access_modifier, - STATE(4296), 3, + STATE(4398), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79501] = 8, + [81408] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7692), 1, - anon_sym_PIPE_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4297), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1516), 1, + sym__expression_block, + STATE(4399), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79528] = 8, + [81432] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6278), 1, - anon_sym_SEMI, - ACTIONS(7694), 1, - anon_sym_RBRACK, - STATE(4082), 1, - aux_sym_list_pattern_repeat1, - STATE(4298), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1532), 1, + sym__expression_block, + STATE(4400), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79555] = 8, + [81456] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7239), 1, - sym_identifier, - STATE(5148), 1, - sym_access_modifier, - STATE(4299), 3, + ACTIONS(4327), 2, + sym__dedent, + anon_sym_interface, + STATE(4401), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79582] = 8, + [81478] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7226), 1, + ACTIONS(7888), 1, sym__indent, - ACTIONS(7696), 1, - anon_sym_RPAREN, - STATE(5131), 1, + STATE(1526), 1, sym__expression_block, - STATE(4300), 3, + STATE(4402), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79609] = 8, + [81502] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3622), 1, - aux_sym_access_modifier_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7698), 1, - sym_identifier, - STATE(5150), 1, - sym_access_modifier, - STATE(4301), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1739), 1, + sym__expression_block, + STATE(4403), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79636] = 8, + [81526] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, - sym_identifier, - STATE(2848), 1, - sym_field_pattern, - STATE(5179), 1, - sym_long_identifier, - STATE(4302), 3, + ACTIONS(7890), 1, + sym__indent, + STATE(4271), 1, + sym__expression_block, + STATE(4404), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79663] = 8, + [81550] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7700), 1, - anon_sym_with, - ACTIONS(7702), 1, - anon_sym_finally, - ACTIONS(7704), 1, - sym__newline, - STATE(4303), 3, + ACTIONS(7892), 1, + sym__indent, + STATE(4584), 1, + sym__expression_block, + STATE(4405), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79690] = 8, + [81574] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7125), 1, - sym_identifier, - ACTIONS(7135), 1, - anon_sym_member, - STATE(3693), 1, - sym_member_signature, - STATE(4304), 3, + ACTIONS(7894), 1, + sym__indent, + STATE(1008), 1, + sym__expression_block, + STATE(4406), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79717] = 8, + [81598] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7387), 1, + ACTIONS(7896), 1, sym_identifier, - STATE(3350), 1, - sym_field_pattern, - STATE(4681), 1, + STATE(2519), 1, sym_long_identifier, - STATE(4305), 3, + STATE(4407), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79744] = 8, + [81622] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5658), 1, - anon_sym_LT2, - ACTIONS(7706), 1, - anon_sym_COLON, - STATE(5291), 1, - sym_type_arguments, - STATE(4306), 3, + ACTIONS(7898), 1, + anon_sym_with, + ACTIONS(7900), 1, + anon_sym_finally, + STATE(4408), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79771] = 8, + [81646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7365), 1, - sym__indent, - ACTIONS(7708), 1, - anon_sym_PIPE_RBRACK, - STATE(5153), 1, - sym__list_element, - STATE(4307), 3, + ACTIONS(3056), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4409), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79798] = 7, + [81668] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1533), 1, - sym__expression_block, - STATE(4308), 3, + ACTIONS(7902), 1, + anon_sym_SQUOTE2, + ACTIONS(7904), 1, + anon_sym_SQUOTEB, + STATE(4410), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79822] = 7, + [81692] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7712), 1, - sym_identifier, - STATE(3693), 1, - sym_member_signature, - STATE(4309), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5166), 1, + sym_active_pattern_op_name, + STATE(4411), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79846] = 7, + [81716] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6433), 1, - anon_sym_member, - ACTIONS(7714), 1, - anon_sym_new, - STATE(4310), 3, + ACTIONS(7906), 1, + anon_sym_SQUOTE2, + ACTIONS(7908), 1, + anon_sym_SQUOTEB, + STATE(4412), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79870] = 7, + [81740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1258), 1, - sym__expression_block, - STATE(4311), 3, + ACTIONS(2936), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4413), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79894] = 6, + [81762] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4205), 2, - sym__dedent, - anon_sym_interface, - STATE(4312), 3, + ACTIONS(7910), 1, + sym__indent, + STATE(903), 1, + sym__expression_block, + STATE(4414), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79916] = 7, + [81786] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5827), 1, - anon_sym_f, - ACTIONS(7716), 1, - aux_sym_decimal_token1, - STATE(4313), 3, + ACTIONS(7912), 1, + anon_sym_EQ, + ACTIONS(7914), 1, + anon_sym_COLON, + STATE(4415), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79940] = 7, + [81810] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(7916), 1, sym__indent, - STATE(533), 1, + STATE(1162), 1, sym__expression_block, - STATE(4314), 3, + STATE(4416), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79964] = 7, + [81834] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7720), 1, - anon_sym_SQUOTE2, - ACTIONS(7722), 1, - anon_sym_SQUOTEB, - STATE(4315), 3, + ACTIONS(7858), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(4417), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [79988] = 7, + [81856] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(7910), 1, sym__indent, - STATE(534), 1, + STATE(984), 1, sym__expression_block, - STATE(4316), 3, + STATE(4418), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80012] = 7, + [81880] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7724), 1, + ACTIONS(7918), 1, sym__indent, - STATE(1632), 1, + STATE(590), 1, sym__expression_block, - STATE(4317), 3, + STATE(4419), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80036] = 7, + [81904] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, + ACTIONS(7920), 1, sym__indent, - STATE(3669), 1, + STATE(1379), 1, sym__expression_block, - STATE(4318), 3, + STATE(4420), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [81928] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7922), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(4421), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80060] = 7, + [81950] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7924), 1, sym__indent, - STATE(1958), 1, + STATE(1927), 1, sym__expression_block, - STATE(4319), 3, + STATE(4422), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80084] = 7, + [81974] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7730), 1, - anon_sym_SQUOTE2, - ACTIONS(7732), 1, - anon_sym_SQUOTEB, - STATE(4320), 3, + ACTIONS(7926), 1, + sym__indent, + STATE(1333), 1, + sym__expression_block, + STATE(4423), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80108] = 7, + [81998] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, + ACTIONS(7918), 1, sym__indent, - STATE(3695), 1, + STATE(543), 1, sym__expression_block, - STATE(4321), 3, + STATE(4424), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80132] = 7, + [82022] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1960), 1, + STATE(853), 1, sym__expression_block, - STATE(4322), 3, + STATE(4425), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80156] = 6, + [82046] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7734), 2, + ACTIONS(7850), 2, + sym__newline, sym__dedent, - anon_sym_PIPE, - STATE(4323), 3, + STATE(4426), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80178] = 6, + [82068] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7736), 2, - sym__newline, - sym__dedent, - STATE(4324), 3, + ACTIONS(7928), 1, + anon_sym_SQUOTE2, + ACTIONS(7930), 1, + anon_sym_SQUOTEB, + STATE(4427), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80200] = 7, + [82092] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5809), 1, - anon_sym_f, - ACTIONS(7738), 1, - aux_sym_decimal_token1, - STATE(4325), 3, + ACTIONS(7894), 1, + sym__indent, + STATE(920), 1, + sym__expression_block, + STATE(4428), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80224] = 7, + [82116] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, + ACTIONS(7890), 1, sym__indent, - STATE(3515), 1, + STATE(4343), 1, sym__expression_block, - STATE(4326), 3, + STATE(4429), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80248] = 7, + [82140] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7886), 1, sym__indent, - STATE(1634), 1, + STATE(1700), 1, sym__expression_block, - STATE(4327), 3, + STATE(4430), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80272] = 7, + [82164] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7712), 1, - sym_identifier, - STATE(3668), 1, - sym_member_signature, - STATE(4328), 3, + ACTIONS(7932), 1, + anon_sym_with, + ACTIONS(7934), 1, + anon_sym_finally, + STATE(4431), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80296] = 7, + [82188] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, - sym__indent, - STATE(1462), 1, - sym__expression_block, - STATE(4329), 3, + ACTIONS(7936), 1, + anon_sym_SQUOTE2, + ACTIONS(7938), 1, + anon_sym_SQUOTEB, + STATE(4432), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80320] = 7, + [82212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, - sym__indent, - STATE(2438), 1, - sym__expression_block, - STATE(4330), 3, + ACTIONS(7940), 2, + anon_sym_SQUOTE, + anon_sym_CARET, + STATE(4433), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80344] = 7, + [82234] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7744), 1, - anon_sym_SQUOTE2, - ACTIONS(7746), 1, - anon_sym_SQUOTEB, - STATE(4331), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5109), 1, + sym_active_pattern_op_name, + STATE(4434), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80368] = 7, + [82258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(4488), 1, - sym__expression_block, - STATE(4332), 3, + ACTIONS(7818), 2, + anon_sym_and, + anon_sym_GT, + STATE(4435), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80392] = 7, + [82280] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7337), 1, - anon_sym_member, - ACTIONS(7714), 1, - anon_sym_new, - STATE(4333), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5206), 1, + sym_active_pattern_op_name, + STATE(4436), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80416] = 7, + [82304] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, - sym__indent, - STATE(2409), 1, - sym__expression_block, - STATE(4334), 3, + ACTIONS(7942), 1, + anon_sym_with, + ACTIONS(7944), 1, + anon_sym_finally, + STATE(4437), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80440] = 7, + [82328] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1488), 1, + STATE(1112), 1, sym__expression_block, - STATE(4335), 3, + STATE(4438), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80464] = 7, + [82352] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, - sym__indent, - STATE(1610), 1, - sym__expression_block, - STATE(4336), 3, + ACTIONS(7946), 1, + anon_sym_with, + ACTIONS(7948), 1, + anon_sym_finally, + STATE(4439), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80488] = 7, + [82376] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1341), 1, + STATE(1111), 1, sym__expression_block, - STATE(4337), 3, + STATE(4440), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80512] = 7, + [82400] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(4971), 1, - sym_active_pattern_op_name, - STATE(4338), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7924), 1, + sym__indent, + STATE(1902), 1, + sym__expression_block, + STATE(4441), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80536] = 7, + [82424] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5931), 1, - anon_sym_f, - ACTIONS(7750), 1, - aux_sym_decimal_token1, - STATE(4339), 3, + ACTIONS(7910), 1, + sym__indent, + STATE(899), 1, + sym__expression_block, + STATE(4442), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80560] = 7, + [82448] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7752), 1, - anon_sym_SQUOTE2, - ACTIONS(7754), 1, - anon_sym_SQUOTEB, - STATE(4340), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(585), 1, + sym__expression_block, + STATE(4443), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80584] = 7, + [82472] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7756), 1, - anon_sym_SQUOTE2, - ACTIONS(7758), 1, - anon_sym_SQUOTEB, - STATE(4341), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(654), 1, + sym__expression_block, + STATE(4444), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80608] = 7, + [82496] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7760), 1, - anon_sym_with, - ACTIONS(7762), 1, - anon_sym_finally, - STATE(4342), 3, + ACTIONS(7888), 1, + sym__indent, + STATE(1587), 1, + sym__expression_block, + STATE(4445), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80632] = 7, + [82520] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(689), 1, - sym__expression_block, - STATE(4343), 3, + ACTIONS(7950), 1, + anon_sym_COLON, + ACTIONS(7952), 1, + anon_sym_COLON_GT, + STATE(4446), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80656] = 7, + [82544] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7724), 1, + ACTIONS(7954), 1, sym__indent, - STATE(1606), 1, + STATE(1018), 1, sym__expression_block, - STATE(4344), 3, + STATE(4447), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80680] = 7, + [82568] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7764), 1, - anon_sym_SQUOTE2, - ACTIONS(7766), 1, - anon_sym_SQUOTEB, - STATE(4345), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1661), 1, + sym__expression_block, + STATE(4448), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80704] = 6, + [82592] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7604), 2, - sym__newline, - sym__dedent, - STATE(4346), 3, + ACTIONS(7956), 1, + sym__indent, + STATE(1311), 1, + sym__expression_block, + STATE(4449), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80726] = 7, + [82616] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7768), 1, - anon_sym_with, - ACTIONS(7770), 1, - anon_sym_finally, - STATE(4347), 3, + ACTIONS(6609), 2, + anon_sym_and, + anon_sym_GT, + STATE(4450), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80750] = 7, + [82638] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7772), 1, - anon_sym_SQUOTE2, - ACTIONS(7774), 1, - anon_sym_SQUOTEB, - STATE(4348), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1657), 1, + sym__expression_block, + STATE(4451), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80774] = 6, + [82662] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7776), 2, - sym__newline, - sym__dedent, - STATE(4349), 3, + ACTIONS(7886), 1, + sym__indent, + STATE(1593), 1, + sym__expression_block, + STATE(4452), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80796] = 6, + [82686] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6298), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4350), 3, + ACTIONS(7958), 1, + sym__indent, + STATE(1803), 1, + sym__expression_block, + STATE(4453), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80818] = 6, + [82710] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7778), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4351), 3, + ACTIONS(7958), 1, + sym__indent, + STATE(2022), 1, + sym__expression_block, + STATE(4454), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80840] = 7, + [82734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5016), 1, - sym_active_pattern_op_name, - STATE(4352), 3, + ACTIONS(7813), 2, + sym__newline, + sym__dedent, + STATE(4455), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80864] = 7, + [82756] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7780), 1, + ACTIONS(7958), 1, sym__indent, - STATE(856), 1, + STATE(1942), 1, sym__expression_block, - STATE(4353), 3, + STATE(4456), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80888] = 7, + [82780] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7712), 1, - sym_identifier, - STATE(3670), 1, - sym_member_signature, - STATE(4354), 3, + ACTIONS(7958), 1, + sym__indent, + STATE(1941), 1, + sym__expression_block, + STATE(4457), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80912] = 7, + [82804] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, - sym__indent, - STATE(1297), 1, - sym__expression_block, - STATE(4355), 3, + ACTIONS(7960), 1, + anon_sym_SQUOTE2, + ACTIONS(7962), 1, + anon_sym_SQUOTEB, + STATE(4458), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80936] = 7, + [82828] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6084), 1, - anon_sym_f, - ACTIONS(7784), 1, - aux_sym_decimal_token1, - STATE(4356), 3, + ACTIONS(7964), 2, + sym__newline, + sym__dedent, + STATE(4459), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80960] = 7, + [82850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, - sym__indent, - STATE(3672), 1, - sym__expression_block, - STATE(4357), 3, + ACTIONS(7650), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4460), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [80984] = 7, + [82872] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7966), 1, sym__indent, - STATE(1848), 1, + STATE(1733), 1, sym__expression_block, - STATE(4358), 3, + STATE(4461), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81008] = 7, + [82896] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7786), 1, + ACTIONS(7968), 1, anon_sym_SQUOTE2, - ACTIONS(7788), 1, + ACTIONS(7970), 1, anon_sym_SQUOTEB, - STATE(4359), 3, + STATE(4462), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81032] = 7, + [82920] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6154), 1, - anon_sym_member, - ACTIONS(7583), 1, - anon_sym_new, - STATE(4360), 3, + ACTIONS(7972), 2, + sym__dedent, + anon_sym_COMMA, + STATE(4463), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81056] = 6, + [82942] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4169), 2, + ACTIONS(4183), 2, + sym__newline, sym__dedent, - anon_sym_interface, - STATE(4361), 3, + STATE(4464), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81078] = 7, + [82964] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7974), 1, sym__indent, - STATE(1840), 1, + STATE(1828), 1, sym__expression_block, - STATE(4362), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [81102] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7790), 1, - anon_sym_EQ, - ACTIONS(7792), 1, - anon_sym_COLON, - STATE(4363), 3, + STATE(4465), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81126] = 7, + [82988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6114), 1, - anon_sym_f, - ACTIONS(7794), 1, - aux_sym_decimal_token1, - STATE(4364), 3, + ACTIONS(7976), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(4466), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81150] = 7, + [83010] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5907), 1, - anon_sym_f, - ACTIONS(7796), 1, - aux_sym_decimal_token1, - STATE(4365), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5044), 1, + sym_active_pattern_op_name, + STATE(4467), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81174] = 7, + [83034] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7798), 1, - anon_sym_SQUOTE2, - ACTIONS(7800), 1, - anon_sym_SQUOTEB, - STATE(4366), 3, + ACTIONS(7978), 1, + anon_sym_with, + ACTIONS(7980), 1, + anon_sym_finally, + STATE(4468), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81198] = 7, + [83058] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7802), 1, - anon_sym_get, - ACTIONS(7804), 1, - anon_sym_set, - STATE(4367), 3, + ACTIONS(833), 2, + sym__dedent, + anon_sym_COMMA, + STATE(4469), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81222] = 7, + [83080] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, - sym__indent, - STATE(3674), 1, - sym__expression_block, - STATE(4368), 3, + ACTIONS(7736), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4470), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81246] = 7, + [83102] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7982), 1, sym__indent, - STATE(1902), 1, + STATE(2492), 1, sym__expression_block, - STATE(4369), 3, + STATE(4471), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81270] = 7, + [83126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7806), 1, - anon_sym_get, - ACTIONS(7808), 1, - anon_sym_set, - STATE(4370), 3, + ACTIONS(7984), 1, + anon_sym_PIPE, + STATE(4472), 4, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81294] = 7, + aux_sym_active_pattern_op_name_repeat1, + [83148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7728), 1, + ACTIONS(7918), 1, sym__indent, - STATE(1586), 1, + STATE(594), 1, sym__expression_block, - STATE(4371), 3, + STATE(4473), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81318] = 6, + [83172] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4192), 2, - sym__dedent, - anon_sym_interface, - STATE(4372), 3, + ACTIONS(7987), 1, + anon_sym_get, + ACTIONS(7989), 1, + anon_sym_set, + STATE(4474), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81340] = 7, + [83196] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7810), 1, - anon_sym_get, - ACTIONS(7812), 1, - anon_sym_set, - STATE(4373), 3, + ACTIONS(7991), 1, + anon_sym_PIPE, + STATE(4623), 1, + aux_sym_active_pattern_op_name_repeat1, + STATE(4475), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81364] = 7, + [83220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, - sym__indent, - STATE(1353), 1, - sym__expression_block, - STATE(4374), 3, + ACTIONS(7993), 2, + anon_sym_and, + anon_sym_GT, + STATE(4476), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81388] = 7, + [83242] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, - sym__indent, - STATE(1769), 1, - sym__expression_block, - STATE(4375), 3, + ACTIONS(7995), 1, + anon_sym_with, + ACTIONS(7997), 1, + anon_sym_finally, + STATE(4477), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81412] = 7, + [83266] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7816), 1, + ACTIONS(7886), 1, sym__indent, - STATE(1354), 1, + STATE(1706), 1, sym__expression_block, - STATE(4376), 3, + STATE(4478), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81436] = 7, + [83290] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1355), 1, + STATE(1588), 1, sym__expression_block, - STATE(4377), 3, + STATE(4479), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81460] = 7, + [83314] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7818), 1, + ACTIONS(7918), 1, sym__indent, - STATE(1272), 1, + STATE(675), 1, sym__expression_block, - STATE(4378), 3, + STATE(4480), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81484] = 7, + [83338] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, - sym__indent, - STATE(1703), 1, - sym__expression_block, - STATE(4379), 3, + ACTIONS(833), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4481), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81508] = 7, + [83360] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, - sym__indent, - STATE(1308), 1, - sym__expression_block, - STATE(4380), 3, + ACTIONS(7972), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4482), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81532] = 7, + [83382] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7820), 1, - anon_sym__, - STATE(4381), 3, + ACTIONS(8001), 2, + anon_sym_and, + anon_sym_GT, + STATE(4483), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81556] = 7, + [83404] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7822), 1, - anon_sym_get, - ACTIONS(7824), 1, - anon_sym_set, - STATE(4382), 3, + ACTIONS(8003), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4484), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81580] = 7, + [83426] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(4930), 1, - sym_active_pattern_op_name, - STATE(4383), 3, + ACTIONS(7924), 1, + sym__indent, + STATE(1819), 1, + sym__expression_block, + STATE(4485), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81604] = 7, + [83450] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(7916), 1, sym__indent, - STATE(609), 1, + STATE(985), 1, sym__expression_block, - STATE(4384), 3, + STATE(4486), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81628] = 7, + [83474] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, + ACTIONS(8005), 1, sym__indent, - STATE(2107), 1, + STATE(1375), 1, sym__expression_block, - STATE(4385), 3, + STATE(4487), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81652] = 7, + [83498] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7816), 1, + ACTIONS(8005), 1, sym__indent, - STATE(1394), 1, + STATE(1522), 1, sym__expression_block, - STATE(4386), 3, + STATE(4488), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81676] = 7, + [83522] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7828), 1, - anon_sym_get, - ACTIONS(7830), 1, - anon_sym_set, - STATE(4387), 3, + ACTIONS(8007), 1, + sym__indent, + STATE(1372), 1, + sym__expression_block, + STATE(4489), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81700] = 7, + [83546] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7832), 1, - anon_sym_with, - ACTIONS(7834), 1, - anon_sym_finally, - STATE(4388), 3, + ACTIONS(7966), 1, + sym__indent, + STATE(1812), 1, + sym__expression_block, + STATE(4490), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81724] = 7, + [83570] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, + ACTIONS(8005), 1, sym__indent, - STATE(855), 1, + STATE(1362), 1, sym__expression_block, - STATE(4389), 3, + STATE(4491), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81748] = 7, + [83594] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5647), 1, - aux_sym_decimal_token1, - ACTIONS(6092), 1, - anon_sym_f, - STATE(4390), 3, + ACTIONS(8009), 1, + anon_sym_SQUOTE2, + ACTIONS(8011), 1, + anon_sym_SQUOTEB, + STATE(4492), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81772] = 7, + [83618] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7838), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - STATE(4637), 1, - aux_sym_active_pattern_op_name_repeat1, - STATE(4391), 3, + STATE(5260), 1, + sym_active_pattern_op_name, + STATE(4493), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81796] = 7, + [83642] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7840), 1, - anon_sym_SQUOTE2, - ACTIONS(7842), 1, - anon_sym_SQUOTEB, - STATE(4392), 3, + ACTIONS(7999), 1, + sym__indent, + STATE(1543), 1, + sym__expression_block, + STATE(4494), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81820] = 7, + [83666] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7844), 1, - anon_sym_get, - ACTIONS(7846), 1, - anon_sym_set, - STATE(4393), 3, + ACTIONS(2972), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4495), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81844] = 7, + [83688] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(3537), 1, - sym__expression_block, - STATE(4394), 3, + ACTIONS(8013), 1, + anon_sym_get, + ACTIONS(8015), 1, + anon_sym_set, + STATE(4496), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81868] = 7, + [83712] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, - sym__indent, - STATE(1682), 1, - sym__expression_block, - STATE(4395), 3, + ACTIONS(8017), 1, + anon_sym_SQUOTE2, + ACTIONS(8019), 1, + anon_sym_SQUOTEB, + STATE(4497), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81892] = 6, + [83736] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7848), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(4396), 3, + ACTIONS(6652), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4498), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81914] = 7, + [83758] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, + ACTIONS(6278), 1, sym__indent, - STATE(1680), 1, + STATE(4733), 1, sym__expression_block, - STATE(4397), 3, + STATE(4499), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81938] = 7, + [83782] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, + ACTIONS(7916), 1, sym__indent, - STATE(1400), 1, + STATE(857), 1, sym__expression_block, - STATE(4398), 3, + STATE(4500), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81962] = 7, + [83806] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7850), 1, + ACTIONS(8021), 1, anon_sym_get, - ACTIONS(7852), 1, + ACTIONS(8023), 1, anon_sym_set, - STATE(4399), 3, + STATE(4501), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [81986] = 6, + [83830] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7854), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(4400), 3, + ACTIONS(7924), 1, + sym__indent, + STATE(1945), 1, + sym__expression_block, + STATE(4502), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82008] = 6, + [83854] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7546), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4401), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(671), 1, + sym__expression_block, + STATE(4503), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82030] = 7, + [83878] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(8005), 1, sym__indent, - STATE(943), 1, + STATE(1483), 1, sym__expression_block, - STATE(4402), 3, + STATE(4504), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82054] = 7, + [83902] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7858), 1, - anon_sym_get, - ACTIONS(7860), 1, - anon_sym_set, - STATE(4403), 3, + ACTIONS(7553), 1, + sym_identifier, + STATE(4265), 1, + sym_simple_pattern, + STATE(4505), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82078] = 7, + [83926] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7862), 1, + ACTIONS(8025), 1, sym_identifier, - STATE(2118), 1, + STATE(2168), 1, sym_member_signature, - STATE(4404), 3, + STATE(4506), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82102] = 7, + [83950] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5992), 1, - anon_sym_f, - ACTIONS(7864), 1, - aux_sym_decimal_token1, - STATE(4405), 3, + ACTIONS(8027), 1, + anon_sym_SQUOTE2, + ACTIONS(8029), 1, + anon_sym_SQUOTEB, + STATE(4507), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82126] = 7, + [83974] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7866), 1, - anon_sym_with, - ACTIONS(7868), 1, - anon_sym_finally, - STATE(4406), 3, + ACTIONS(4318), 2, + sym__dedent, + anon_sym_interface, + STATE(4508), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82150] = 7, + [83996] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, + ACTIONS(8005), 1, sym__indent, - STATE(902), 1, + STATE(1285), 1, sym__expression_block, - STATE(4407), 3, + STATE(4509), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82174] = 7, + [84020] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7870), 1, - anon_sym_SQUOTE2, - ACTIONS(7872), 1, - anon_sym_SQUOTEB, - STATE(4408), 3, + ACTIONS(7890), 1, + sym__indent, + STATE(4377), 1, + sym__expression_block, + STATE(4510), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82198] = 7, + [84044] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(3560), 1, - sym__expression_block, - STATE(4409), 3, + ACTIONS(2902), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4511), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82222] = 7, + [84066] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7874), 1, - sym_identifier, - STATE(3548), 1, - sym_member_signature, - STATE(4410), 3, + ACTIONS(8031), 1, + anon_sym_SQUOTE2, + ACTIONS(8033), 1, + anon_sym_SQUOTEB, + STATE(4512), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [84090] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7), 1, + sym_line_comment, + ACTIONS(9), 1, + aux_sym_preproc_line_token1, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7958), 1, + sym__indent, + STATE(1919), 1, + sym__expression_block, + STATE(4513), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82246] = 7, + [84114] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6028), 1, - anon_sym_f, - ACTIONS(7876), 1, - aux_sym_decimal_token1, - STATE(4411), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(689), 1, + sym__expression_block, + STATE(4514), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82270] = 7, + [84138] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7814), 1, + ACTIONS(7918), 1, sym__indent, - STATE(1651), 1, + STATE(458), 1, sym__expression_block, - STATE(4412), 3, + STATE(4515), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82294] = 7, + [84162] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, + ACTIONS(8007), 1, sym__indent, - STATE(3567), 1, + STATE(1339), 1, sym__expression_block, - STATE(4413), 3, + STATE(4516), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82318] = 7, + [84186] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5889), 1, - anon_sym_f, - ACTIONS(7878), 1, - aux_sym_decimal_token1, - STATE(4414), 3, + ACTIONS(7982), 1, + sym__indent, + STATE(2188), 1, + sym__expression_block, + STATE(4517), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82342] = 7, + [84210] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5058), 1, - sym_active_pattern_op_name, - STATE(4415), 3, + ACTIONS(8035), 1, + anon_sym_get, + ACTIONS(8037), 1, + anon_sym_set, + STATE(4518), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82366] = 7, + [84234] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7880), 1, - anon_sym_SQUOTE2, - ACTIONS(7882), 1, - anon_sym_SQUOTEB, - STATE(4416), 3, + ACTIONS(8005), 1, + sym__indent, + STATE(1467), 1, + sym__expression_block, + STATE(4519), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82390] = 7, + [84258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7884), 1, - sym_identifier, - STATE(330), 1, - sym_long_identifier, - STATE(4417), 3, + ACTIONS(4526), 2, + sym__newline, + sym__dedent, + STATE(4520), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82414] = 7, + [84280] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, - sym__indent, - STATE(1486), 1, - sym__expression_block, - STATE(4418), 3, + ACTIONS(8039), 1, + anon_sym_SQUOTE2, + ACTIONS(8041), 1, + anon_sym_SQUOTEB, + STATE(4521), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82438] = 7, + [84304] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, - sym__indent, - STATE(1299), 1, - sym__expression_block, - STATE(4419), 3, + ACTIONS(8043), 1, + anon_sym_with, + ACTIONS(8045), 1, + anon_sym_finally, + STATE(4522), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82462] = 7, + [84328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, - sym__indent, - STATE(859), 1, - sym__expression_block, - STATE(4420), 3, + ACTIONS(8047), 2, + anon_sym_and, + anon_sym_GT, + STATE(4523), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82486] = 7, + [84350] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(8005), 1, sym__indent, - STATE(1452), 1, + STATE(1463), 1, sym__expression_block, - STATE(4421), 3, + STATE(4524), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82510] = 7, + [84374] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(7916), 1, sym__indent, - STATE(860), 1, + STATE(1020), 1, sym__expression_block, - STATE(4422), 3, + STATE(4525), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82534] = 7, + [84398] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(2537), 1, - sym__expression_block, - STATE(4423), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5329), 1, + sym_active_pattern_op_name, + STATE(4526), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82558] = 7, + [84422] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, + ACTIONS(7982), 1, sym__indent, - STATE(2423), 1, + STATE(2186), 1, sym__expression_block, - STATE(4424), 3, + STATE(4527), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82582] = 7, + [84446] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7888), 1, - sym__indent, - STATE(1325), 1, - sym__expression_block, - STATE(4425), 3, + ACTIONS(8049), 1, + sym_identifier, + STATE(2187), 1, + sym_member_signature, + STATE(4528), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82606] = 7, + [84470] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(8005), 1, sym__indent, - STATE(1335), 1, + STATE(1369), 1, sym__expression_block, - STATE(4426), 3, + STATE(4529), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82630] = 7, + [84494] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, - sym__indent, - STATE(1379), 1, - sym__expression_block, - STATE(4427), 3, + ACTIONS(8051), 1, + anon_sym_get, + ACTIONS(8053), 1, + anon_sym_set, + STATE(4530), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82654] = 7, + [84518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(903), 1, - sym__expression_block, - STATE(4428), 3, + ACTIONS(7650), 2, + sym__dedent, + anon_sym_COMMA, + STATE(4531), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82678] = 6, + [84540] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7892), 2, - anon_sym_SQUOTE, - anon_sym_CARET, - STATE(4429), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(711), 1, + sym__expression_block, + STATE(4532), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82700] = 7, + [84564] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(8055), 1, sym__indent, - STATE(1469), 1, + STATE(2174), 1, sym__expression_block, - STATE(4430), 3, + STATE(4533), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82724] = 7, + [84588] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6782), 1, - anon_sym_member, - ACTIONS(7894), 1, - anon_sym_new, - STATE(4431), 3, + ACTIONS(7982), 1, + sym__indent, + STATE(2193), 1, + sym__expression_block, + STATE(4534), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82748] = 7, + [84612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(4168), 1, - sym__expression_block, - STATE(4432), 3, + ACTIONS(2964), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4535), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82772] = 7, + [84634] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7874), 1, - sym_identifier, - STATE(3558), 1, - sym_member_signature, - STATE(4433), 3, + ACTIONS(8055), 1, + sym__indent, + STATE(2453), 1, + sym__expression_block, + STATE(4536), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82796] = 7, + [84658] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7896), 1, - sym_identifier, - STATE(327), 1, - sym_long_identifier, - STATE(4434), 3, + ACTIONS(4520), 2, + sym__newline, + sym__dedent, + STATE(4537), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82820] = 7, + [84680] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, + ACTIONS(7886), 1, sym__indent, - STATE(1127), 1, + STATE(1344), 1, sym__expression_block, - STATE(4435), 3, + STATE(4538), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82844] = 7, + [84704] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(3482), 1, - sym__expression_block, - STATE(4436), 3, + ACTIONS(8057), 1, + anon_sym_EQ, + ACTIONS(8059), 1, + anon_sym_COLON, + STATE(4539), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82868] = 7, + [84728] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(7954), 1, sym__indent, - STATE(838), 1, + STATE(855), 1, sym__expression_block, - STATE(4437), 3, + STATE(4540), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82892] = 7, + [84752] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(3556), 1, - sym__expression_block, - STATE(4438), 3, + ACTIONS(8061), 1, + anon_sym_get, + ACTIONS(8063), 1, + anon_sym_set, + STATE(4541), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82916] = 6, + [84776] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7378), 2, - anon_sym_and, - anon_sym_GT, - STATE(4439), 3, + ACTIONS(7892), 1, + sym__indent, + STATE(4590), 1, + sym__expression_block, + STATE(4542), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82938] = 7, + [84800] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(6278), 1, sym__indent, - STATE(518), 1, + STATE(3667), 1, sym__expression_block, - STATE(4440), 3, + STATE(4543), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82962] = 6, + [84824] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6269), 2, - anon_sym_and, - anon_sym_GT, - STATE(4441), 3, + ACTIONS(6340), 1, + anon_sym_member, + ACTIONS(7635), 1, + anon_sym_new, + STATE(4544), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [82984] = 7, + [84848] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7888), 1, - sym__indent, - STATE(1347), 1, - sym__expression_block, - STATE(4442), 3, + ACTIONS(8065), 1, + anon_sym_get, + ACTIONS(8067), 1, + anon_sym_set, + STATE(4545), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83008] = 7, + [84872] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, - sym__indent, - STATE(1009), 1, - sym__expression_block, - STATE(4443), 3, + ACTIONS(8069), 1, + sym_identifier, + STATE(335), 1, + sym_long_identifier, + STATE(4546), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83032] = 7, + [84896] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(8071), 1, sym__indent, - STATE(1408), 1, + STATE(1293), 1, sym__expression_block, - STATE(4444), 3, + STATE(4547), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83056] = 7, + [84920] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, - sym__indent, - STATE(1014), 1, - sym__expression_block, - STATE(4445), 3, + ACTIONS(8073), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4548), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83080] = 7, + [84942] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5871), 1, - anon_sym_f, - ACTIONS(7898), 1, - aux_sym_decimal_token1, - STATE(4446), 3, + ACTIONS(8075), 1, + anon_sym_SQUOTE2, + ACTIONS(8077), 1, + anon_sym_SQUOTEB, + STATE(4549), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83104] = 7, + [84966] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(7954), 1, sym__indent, - STATE(1487), 1, + STATE(960), 1, sym__expression_block, - STATE(4447), 3, + STATE(4550), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83128] = 7, + [84990] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(7958), 1, sym__indent, - STATE(1348), 1, + STATE(1818), 1, sym__expression_block, - STATE(4448), 3, + STATE(4551), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83152] = 6, + [85014] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7900), 2, - ts_builtin_sym_end, - anon_sym_namespace, - STATE(4449), 3, + ACTIONS(8079), 1, + anon_sym_SQUOTE2, + ACTIONS(8081), 1, + anon_sym_SQUOTEB, + STATE(4552), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83174] = 7, + [85038] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, - sym__indent, - STATE(921), 1, - sym__expression_block, - STATE(4450), 3, + ACTIONS(6501), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4553), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83198] = 7, + [85060] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7902), 1, - sym__indent, - STATE(836), 1, - sym__expression_block, - STATE(4451), 3, + ACTIONS(8083), 1, + anon_sym_SQUOTE2, + ACTIONS(8085), 1, + anon_sym_SQUOTEB, + STATE(4554), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83222] = 7, + [85084] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(8087), 1, sym__indent, - STATE(525), 1, + STATE(864), 1, sym__expression_block, - STATE(4452), 3, + STATE(4555), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83246] = 7, + [85108] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7904), 1, - anon_sym_with, - ACTIONS(7906), 1, - anon_sym_finally, - STATE(4453), 3, + ACTIONS(8089), 1, + sym_identifier, + STATE(326), 1, + sym_long_identifier, + STATE(4556), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83270] = 6, + [85132] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4398), 2, - sym__newline, - sym__dedent, - STATE(4454), 3, + ACTIONS(7916), 1, + sym__indent, + STATE(876), 1, + sym__expression_block, + STATE(4557), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83292] = 7, + [85156] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7908), 1, - sym_identifier, - STATE(4458), 1, - sym_enum_type_case, - STATE(4455), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(3665), 1, + sym__expression_block, + STATE(4558), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83316] = 7, + [85180] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7910), 1, - sym_identifier, - STATE(2136), 1, - sym_member_signature, - STATE(4456), 3, + ACTIONS(8091), 1, + anon_sym_get, + ACTIONS(8093), 1, + anon_sym_set, + STATE(4559), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83340] = 7, + [85204] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7912), 1, - anon_sym_SQUOTE2, - ACTIONS(7914), 1, - anon_sym_SQUOTEB, - STATE(4457), 3, + ACTIONS(7974), 1, + sym__indent, + STATE(1817), 1, + sym__expression_block, + STATE(4560), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83364] = 6, + [85228] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7385), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4458), 3, + ACTIONS(8095), 1, + sym__indent, + STATE(851), 1, + sym__expression_block, + STATE(4561), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83386] = 7, + [85252] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5106), 1, - sym_active_pattern_op_name, - STATE(4459), 3, + ACTIONS(8097), 1, + sym_identifier, + STATE(3729), 1, + sym_member_signature, + STATE(4562), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83410] = 7, + [85276] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6140), 1, - anon_sym_member, - ACTIONS(7349), 1, - anon_sym_new, - STATE(4460), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(4251), 1, + sym__expression_block, + STATE(4563), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83434] = 6, + [85300] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7916), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4461), 3, + ACTIONS(8005), 1, + sym__indent, + STATE(1454), 1, + sym__expression_block, + STATE(4564), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83456] = 7, + [85324] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5949), 1, - anon_sym_f, - ACTIONS(7918), 1, - aux_sym_decimal_token1, - STATE(4462), 3, + ACTIONS(7890), 1, + sym__indent, + STATE(4395), 1, + sym__expression_block, + STATE(4565), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83480] = 7, + [85348] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5715), 1, - anon_sym_member, - ACTIONS(7894), 1, - anon_sym_new, - STATE(4463), 3, + ACTIONS(8099), 1, + sym_identifier, + STATE(3664), 1, + sym_member_signature, + STATE(4566), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83504] = 6, + [85372] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(771), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4464), 3, + ACTIONS(6518), 1, + anon_sym_member, + ACTIONS(8101), 1, + anon_sym_new, + STATE(4567), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83526] = 7, + [85396] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(6278), 1, sym__indent, - STATE(1025), 1, + STATE(3663), 1, sym__expression_block, - STATE(4465), 3, + STATE(4568), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83550] = 7, + [85420] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7782), 1, + ACTIONS(7958), 1, sym__indent, - STATE(1540), 1, + STATE(1935), 1, sym__expression_block, - STATE(4466), 3, + STATE(4569), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83574] = 7, + [85444] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7874), 1, - sym_identifier, - STATE(3533), 1, - sym_member_signature, - STATE(4467), 3, + ACTIONS(7508), 1, + anon_sym_member, + ACTIONS(7711), 1, + anon_sym_new, + STATE(4570), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83598] = 7, + [85468] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7956), 1, sym__indent, - STATE(4224), 1, + STATE(1347), 1, sym__expression_block, - STATE(4468), 3, + STATE(4571), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83622] = 7, + [85492] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, + ACTIONS(7956), 1, sym__indent, - STATE(2141), 1, + STATE(1569), 1, sym__expression_block, - STATE(4469), 3, + STATE(4572), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83646] = 7, + [85516] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1329), 1, - sym__expression_block, - STATE(4470), 3, + ACTIONS(3041), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4573), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83670] = 7, + [85538] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1561), 1, - sym__expression_block, - STATE(4471), 3, + ACTIONS(8103), 1, + anon_sym_SQUOTE2, + ACTIONS(8105), 1, + anon_sym_SQUOTEB, + STATE(4574), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83694] = 7, + [85562] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, - sym__indent, - STATE(2124), 1, - sym__expression_block, - STATE(4472), 3, + ACTIONS(8107), 1, + anon_sym_with, + ACTIONS(8109), 1, + anon_sym_finally, + STATE(4575), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83718] = 7, + [85586] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7910), 1, - sym_identifier, - STATE(2140), 1, - sym_member_signature, - STATE(4473), 3, + ACTIONS(8111), 1, + sym__indent, + STATE(844), 1, + sym__expression_block, + STATE(4576), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83742] = 7, + [85610] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7922), 1, + ACTIONS(8113), 1, sym__indent, - STATE(1328), 1, + STATE(1340), 1, sym__expression_block, - STATE(4474), 3, + STATE(4577), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83766] = 7, + [85634] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, + ACTIONS(7982), 1, sym__indent, - STATE(1330), 1, + STATE(2515), 1, sym__expression_block, - STATE(4475), 3, + STATE(4578), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83790] = 7, + [85658] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, - sym__indent, - STATE(1624), 1, - sym__expression_block, - STATE(4476), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5363), 1, + sym_active_pattern_op_name, + STATE(4579), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83814] = 7, + [85682] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7275), 1, - anon_sym_member, - ACTIONS(7349), 1, - anon_sym_new, - STATE(4477), 3, + ACTIONS(7956), 1, + sym__indent, + STATE(1343), 1, + sym__expression_block, + STATE(4580), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83838] = 7, + [85706] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(1104), 1, - sym__expression_block, - STATE(4478), 3, + ACTIONS(8049), 1, + sym_identifier, + STATE(2185), 1, + sym_member_signature, + STATE(4581), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83862] = 7, + [85730] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, + ACTIONS(7958), 1, sym__indent, - STATE(4175), 1, + STATE(1754), 1, sym__expression_block, - STATE(4479), 3, + STATE(4582), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83886] = 7, + [85754] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7954), 1, sym__indent, - STATE(4269), 1, + STATE(843), 1, sym__expression_block, - STATE(4480), 3, + STATE(4583), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83910] = 7, + [85778] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7924), 1, - sym__indent, - STATE(831), 1, - sym__expression_block, - STATE(4481), 3, + ACTIONS(4477), 2, + sym__dedent, + anon_sym_and, + STATE(4584), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83934] = 7, + [85800] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(8055), 1, sym__indent, - STATE(1954), 1, + STATE(2182), 1, sym__expression_block, - STATE(4482), 3, + STATE(4585), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83958] = 7, + [85824] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, - sym__indent, - STATE(839), 1, - sym__expression_block, - STATE(4483), 3, + ACTIONS(4408), 2, + sym__dedent, + anon_sym_and, + STATE(4586), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [83982] = 6, + [85846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4076), 2, - sym__newline, + ACTIONS(3033), 2, sym__dedent, - STATE(4484), 3, + anon_sym_PIPE, + STATE(4587), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84004] = 6, + [85868] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4384), 2, - sym__newline, - sym__dedent, - STATE(4485), 3, + ACTIONS(7982), 1, + sym__indent, + STATE(2159), 1, + sym__expression_block, + STATE(4588), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84026] = 7, + [85892] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7902), 1, + ACTIONS(7956), 1, sym__indent, - STATE(835), 1, + STATE(1529), 1, sym__expression_block, - STATE(4486), 3, + STATE(4589), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84050] = 6, + [85916] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7926), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(4487), 3, + ACTIONS(4481), 2, + sym__dedent, + anon_sym_and, + STATE(4590), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84072] = 6, + [85938] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7928), 2, - sym__newline, - sym__dedent, - STATE(4488), 3, + ACTIONS(7890), 1, + sym__indent, + STATE(4357), 1, + sym__expression_block, + STATE(4591), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84094] = 7, + [85962] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, + ACTIONS(7958), 1, sym__indent, - STATE(4615), 1, + STATE(842), 1, sym__expression_block, - STATE(4489), 3, + STATE(4592), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84118] = 7, + [85986] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(696), 1, - sym__expression_block, - STATE(4490), 3, + ACTIONS(7761), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(4593), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84142] = 7, + [86008] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, + ACTIONS(7918), 1, sym__indent, - STATE(2127), 1, + STATE(2598), 1, sym__expression_block, - STATE(4491), 3, + STATE(4594), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84166] = 7, + [86032] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(561), 1, - sym__expression_block, - STATE(4492), 3, + ACTIONS(8115), 1, + anon_sym_EQ, + ACTIONS(8117), 1, + anon_sym_COLON, + STATE(4595), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84190] = 7, + [86056] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7922), 1, + ACTIONS(7982), 1, sym__indent, - STATE(1317), 1, + STATE(2196), 1, sym__expression_block, - STATE(4493), 3, + STATE(4596), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84214] = 7, + [86080] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1508), 1, - sym__expression_block, - STATE(4494), 3, + ACTIONS(8119), 2, + anon_sym_and, + anon_sym_GT, + STATE(4597), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84238] = 7, + [86102] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7780), 1, + ACTIONS(7918), 1, sym__indent, - STATE(842), 1, + STATE(532), 1, sym__expression_block, - STATE(4495), 3, + STATE(4598), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84262] = 7, + [86126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7910), 1, - sym_identifier, - STATE(2138), 1, - sym_member_signature, - STATE(4496), 3, + ACTIONS(2968), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4599), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84286] = 7, + [86148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, + ACTIONS(8113), 1, sym__indent, - STATE(1507), 1, + STATE(1395), 1, sym__expression_block, - STATE(4497), 3, + STATE(4600), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84310] = 7, + [86172] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7930), 1, - anon_sym_with, - ACTIONS(7932), 1, - anon_sym_finally, - STATE(4498), 3, + ACTIONS(7956), 1, + sym__indent, + STATE(1403), 1, + sym__expression_block, + STATE(4601), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84334] = 7, + [86196] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, + ACTIONS(7956), 1, sym__indent, - STATE(946), 1, + STATE(1404), 1, sym__expression_block, - STATE(4499), 3, + STATE(4602), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84358] = 6, + [86220] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7934), 2, - sym__else, - sym__elif, - STATE(4500), 3, + ACTIONS(7956), 1, + sym__indent, + STATE(1390), 1, + sym__expression_block, + STATE(4603), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84380] = 7, + [86244] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1349), 1, + STATE(1768), 1, sym__expression_block, - STATE(4501), 3, + STATE(4604), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84404] = 7, + [86268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, - sym__indent, - STATE(2134), 1, - sym__expression_block, - STATE(4502), 3, + ACTIONS(3117), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4605), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84428] = 6, + [86290] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7468), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(4503), 3, + ACTIONS(8025), 1, + sym_identifier, + STATE(2160), 1, + sym_member_signature, + STATE(4606), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84450] = 7, + [86314] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - STATE(5157), 1, + STATE(5362), 1, sym_active_pattern_op_name, - STATE(4504), 3, + STATE(4607), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84474] = 7, + [86338] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, - sym__indent, - STATE(947), 1, - sym__expression_block, - STATE(4505), 3, + ACTIONS(7003), 1, + anon_sym_member, + ACTIONS(8121), 1, + anon_sym_new, + STATE(4608), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84498] = 7, + [86362] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, - sym__indent, - STATE(843), 1, - sym__expression_block, - STATE(4506), 3, + ACTIONS(8123), 1, + anon_sym_get, + ACTIONS(8125), 1, + anon_sym_set, + STATE(4609), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84522] = 7, + [86386] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(1041), 1, - sym__expression_block, - STATE(4507), 3, + ACTIONS(8099), 1, + sym_identifier, + STATE(3660), 1, + sym_member_signature, + STATE(4610), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84546] = 6, + [86410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4328), 2, + ACTIONS(3079), 2, sym__dedent, - anon_sym_and, - STATE(4508), 3, + anon_sym_PIPE, + STATE(4611), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84568] = 6, + [86432] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7936), 2, - sym__newline, - sym__dedent, - STATE(4509), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(3594), 1, + sym__expression_block, + STATE(4612), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84590] = 6, + [86456] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4294), 2, + ACTIONS(2950), 2, sym__dedent, - anon_sym_and, - STATE(4510), 3, + anon_sym_PIPE, + STATE(4613), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84612] = 7, + [86478] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, - sym__indent, - STATE(1019), 1, - sym__expression_block, - STATE(4511), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(4935), 1, + sym_active_pattern_op_name, + STATE(4614), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84636] = 6, + [86502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7451), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(4512), 3, + ACTIONS(2932), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4615), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84658] = 7, + [86524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7938), 1, - anon_sym_get, - ACTIONS(7940), 1, - anon_sym_set, - STATE(4513), 3, + ACTIONS(8127), 2, + ts_builtin_sym_end, + anon_sym_namespace, + STATE(4616), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84682] = 7, + [86546] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7496), 1, - anon_sym_with, - STATE(4072), 1, - sym__object_members, - STATE(4514), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(3659), 1, + sym__expression_block, + STATE(4617), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84706] = 7, + [86570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7942), 1, - anon_sym_EQ, - ACTIONS(7944), 1, - anon_sym_COLON, - STATE(4515), 3, + ACTIONS(3029), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4618), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84730] = 7, + [86592] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7946), 1, - anon_sym_do, - ACTIONS(7948), 1, - anon_sym_DASH_GT, - STATE(4516), 3, + ACTIONS(8055), 1, + sym__indent, + STATE(2161), 1, + sym__expression_block, + STATE(4619), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84754] = 6, + [86616] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4346), 2, - sym__dedent, - anon_sym_and, - STATE(4517), 3, + ACTIONS(7781), 1, + sym_identifier, + ACTIONS(8129), 1, + anon_sym__, + STATE(4620), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84776] = 7, + [86640] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7918), 1, sym__indent, - STATE(4222), 1, + STATE(2602), 1, sym__expression_block, - STATE(4518), 3, + STATE(4621), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84800] = 7, + [86664] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, + ACTIONS(7890), 1, sym__indent, - STATE(2132), 1, + STATE(4302), 1, sym__expression_block, - STATE(4519), 3, + STATE(4622), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84824] = 7, + [86688] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, - sym__indent, - STATE(4292), 1, - sym__expression_block, - STATE(4520), 3, + ACTIONS(8131), 1, + anon_sym_PIPE, + STATE(4472), 1, + aux_sym_active_pattern_op_name_repeat1, + STATE(4623), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84848] = 7, + [86712] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7950), 1, - anon_sym_SQUOTE2, - ACTIONS(7952), 1, - anon_sym_SQUOTEB, - STATE(4521), 3, + ACTIONS(7916), 1, + sym__indent, + STATE(877), 1, + sym__expression_block, + STATE(4624), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84872] = 7, + [86736] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(648), 1, - sym__expression_block, - STATE(4522), 3, + ACTIONS(2870), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4625), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84896] = 6, + [86758] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7954), 2, - sym__newline, + ACTIONS(3141), 2, sym__dedent, - STATE(4523), 3, + anon_sym_PIPE, + STATE(4626), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84918] = 7, + [86780] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(2543), 1, - sym__expression_block, - STATE(4524), 3, + ACTIONS(8133), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(4627), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84942] = 7, + [86802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7956), 1, - anon_sym_get, - ACTIONS(7958), 1, - anon_sym_set, - STATE(4525), 3, + ACTIONS(8135), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4628), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84966] = 7, + [86824] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7498), 1, - sym_identifier, - STATE(4267), 1, - sym_simple_pattern, - STATE(4526), 3, + ACTIONS(2918), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4629), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [84990] = 7, + [86846] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(8055), 1, sym__indent, - STATE(850), 1, + STATE(2471), 1, sym__expression_block, - STATE(4527), 3, + STATE(4630), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85014] = 7, + [86870] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, + ACTIONS(2940), 2, + sym__dedent, anon_sym_PIPE, - STATE(5258), 1, - sym_active_pattern_op_name, - STATE(4528), 3, + STATE(4631), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85038] = 7, + [86892] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5967), 1, - anon_sym_f, - ACTIONS(7960), 1, - aux_sym_decimal_token1, - STATE(4529), 3, + ACTIONS(3107), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4632), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85062] = 7, + [86914] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - sym__indent, - STATE(1450), 1, - sym__expression_block, - STATE(4530), 3, + ACTIONS(4344), 2, + sym__dedent, + anon_sym_interface, + STATE(4633), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85086] = 7, + [86936] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7924), 1, sym__indent, - STATE(4245), 1, + STATE(1998), 1, sym__expression_block, - STATE(4531), 3, + STATE(4634), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85110] = 7, + [86960] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, - sym__indent, - STATE(2108), 1, - sym__expression_block, - STATE(4532), 3, + ACTIONS(8137), 2, + anon_sym_and, + anon_sym_GT, + STATE(4635), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85134] = 7, + [86982] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7956), 1, sym__indent, - STATE(1431), 1, + STATE(1517), 1, sym__expression_block, - STATE(4533), 3, + STATE(4636), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85158] = 7, + [87006] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1649), 1, + STATE(1105), 1, sym__expression_block, - STATE(4534), 3, + STATE(4637), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85182] = 6, + [87030] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7529), 2, - anon_sym_f, - aux_sym_decimal_token1, - STATE(4535), 3, + ACTIONS(7892), 1, + sym__indent, + STATE(3748), 1, + sym__expression_block, + STATE(4638), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85204] = 6, + [87054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7962), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4536), 3, + ACTIONS(2858), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4639), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85226] = 7, + [87076] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7964), 1, - anon_sym_with, - ACTIONS(7966), 1, - anon_sym_finally, - STATE(4537), 3, + ACTIONS(7920), 1, + sym__indent, + STATE(1572), 1, + sym__expression_block, + STATE(4640), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85250] = 7, + [87100] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7968), 1, + ACTIONS(7890), 1, sym__indent, - STATE(1411), 1, + STATE(4316), 1, sym__expression_block, - STATE(4538), 3, + STATE(4641), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85274] = 6, + [87124] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7970), 2, - anon_sym_and, - anon_sym_GT, - STATE(4539), 3, + ACTIONS(7920), 1, + sym__indent, + STATE(1680), 1, + sym__expression_block, + STATE(4642), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85296] = 7, + [87148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(8139), 1, sym__indent, - STATE(613), 1, + STATE(1578), 1, sym__expression_block, - STATE(4540), 3, + STATE(4643), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85320] = 7, + [87172] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7920), 1, sym__indent, - STATE(1685), 1, + STATE(1582), 1, sym__expression_block, - STATE(4541), 3, + STATE(4644), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85344] = 7, + [87196] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(7916), 1, sym__indent, - STATE(1334), 1, + STATE(1335), 1, sym__expression_block, - STATE(4542), 3, + STATE(4645), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85368] = 7, + [87220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, - sym__indent, - STATE(2104), 1, - sym__expression_block, - STATE(4543), 3, + ACTIONS(3037), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4646), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85392] = 7, + [87242] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7742), 1, - sym__indent, - STATE(2456), 1, - sym__expression_block, - STATE(4544), 3, + ACTIONS(8141), 1, + anon_sym_with, + ACTIONS(8143), 1, + anon_sym_finally, + STATE(4647), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85416] = 7, + [87266] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7972), 1, - anon_sym_EQ, - ACTIONS(7974), 1, - anon_sym_COLON, - STATE(4545), 3, + ACTIONS(7890), 1, + sym__indent, + STATE(4296), 1, + sym__expression_block, + STATE(4648), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85440] = 7, + [87290] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, - sym__indent, - STATE(1625), 1, - sym__expression_block, - STATE(4546), 3, + ACTIONS(8145), 1, + anon_sym_do, + ACTIONS(8147), 1, + anon_sym_DASH_GT, + STATE(4649), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85464] = 7, + [87314] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7862), 1, - sym_identifier, - STATE(2110), 1, - sym_member_signature, - STATE(4547), 3, + ACTIONS(7954), 1, + sym__indent, + STATE(874), 1, + sym__expression_block, + STATE(4650), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85488] = 7, + [87338] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5190), 1, - sym_active_pattern_op_name, - STATE(4548), 3, + ACTIONS(7752), 1, + anon_sym_with, + STATE(4161), 1, + sym__object_members, + STATE(4651), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85512] = 7, + [87362] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(7920), 1, sym__indent, - STATE(1847), 1, + STATE(1631), 1, sym__expression_block, - STATE(4549), 3, + STATE(4652), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85536] = 7, + [87386] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(542), 1, - sym__expression_block, - STATE(4550), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5472), 1, + sym_active_pattern_op_name, + STATE(4653), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85560] = 7, + [87410] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7976), 1, + ACTIONS(8055), 1, sym__indent, - STATE(893), 1, + STATE(2455), 1, sym__expression_block, - STATE(4551), 3, + STATE(4654), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85584] = 7, + [87434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(1116), 1, - sym__expression_block, - STATE(4552), 3, + ACTIONS(2229), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4655), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85608] = 7, + [87456] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7978), 1, - anon_sym_with, - ACTIONS(7980), 1, - anon_sym_finally, - STATE(4553), 3, + ACTIONS(7798), 2, + sym__newline, + sym__dedent, + STATE(4656), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85632] = 7, + [87478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(1039), 1, - sym__expression_block, - STATE(4554), 3, + ACTIONS(2910), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4657), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85656] = 7, + [87500] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1125), 1, + STATE(1121), 1, sym__expression_block, - STATE(4555), 3, + STATE(4658), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85680] = 7, + [87524] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6066), 1, - anon_sym_f, - ACTIONS(7982), 1, - aux_sym_decimal_token1, - STATE(4556), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(547), 1, + sym__expression_block, + STATE(4659), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85704] = 7, + [87548] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, - sym__indent, - STATE(646), 1, - sym__expression_block, - STATE(4557), 3, + ACTIONS(6314), 1, + anon_sym_member, + ACTIONS(7711), 1, + anon_sym_new, + STATE(4660), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85728] = 7, + [87572] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7968), 1, - sym__indent, - STATE(1384), 1, - sym__expression_block, - STATE(4558), 3, + ACTIONS(8149), 2, + sym__else, + sym__elif, + STATE(4661), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85752] = 7, + [87594] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5318), 1, - sym_active_pattern_op_name, - STATE(4559), 3, + ACTIONS(7954), 1, + sym__indent, + STATE(895), 1, + sym__expression_block, + STATE(4662), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85776] = 7, + [87618] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7984), 1, - anon_sym_SQUOTE2, - ACTIONS(7986), 1, - anon_sym_SQUOTEB, - STATE(4560), 3, + ACTIONS(8139), 1, + sym__indent, + STATE(1580), 1, + sym__expression_block, + STATE(4663), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85800] = 7, + [87642] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7896), 1, - sym_identifier, - STATE(2413), 1, - sym_long_identifier, - STATE(4561), 3, + ACTIONS(8151), 1, + anon_sym_EQ, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(4664), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85824] = 7, + [87666] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7920), 1, sym__indent, - STATE(1706), 1, + STATE(1677), 1, sym__expression_block, - STATE(4562), 3, + STATE(4665), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85848] = 7, + [87690] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, - sym__indent, - STATE(1707), 1, - sym__expression_block, - STATE(4563), 3, + ACTIONS(8155), 2, + anon_sym_COLON, + anon_sym_or, + STATE(4666), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85872] = 7, + [87712] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1381), 1, + STATE(1130), 1, sym__expression_block, - STATE(4564), 3, + STATE(4667), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85896] = 6, + [87736] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7579), 2, - sym__newline, - sym__dedent, - STATE(4565), 3, + ACTIONS(7954), 1, + sym__indent, + STATE(892), 1, + sym__expression_block, + STATE(4668), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85918] = 7, + [87760] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7988), 1, - anon_sym_EQ, - ACTIONS(7990), 1, - anon_sym_COLON, - STATE(4566), 3, + ACTIONS(7954), 1, + sym__indent, + STATE(1055), 1, + sym__expression_block, + STATE(4669), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85942] = 7, + [87784] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7992), 1, - anon_sym_with, - ACTIONS(7994), 1, - anon_sym_finally, - STATE(4567), 3, + ACTIONS(7920), 1, + sym__indent, + STATE(1678), 1, + sym__expression_block, + STATE(4670), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85966] = 7, + [87808] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7996), 1, - anon_sym_get, - ACTIONS(7998), 1, - anon_sym_set, - STATE(4568), 3, + ACTIONS(7920), 1, + sym__indent, + STATE(1574), 1, + sym__expression_block, + STATE(4671), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [85990] = 7, + [87832] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8000), 1, + ACTIONS(8157), 1, anon_sym_SQUOTE2, - ACTIONS(8002), 1, + ACTIONS(8159), 1, anon_sym_SQUOTEB, - STATE(4569), 3, + STATE(4672), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86014] = 7, + [87856] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, + ACTIONS(7892), 1, sym__indent, - STATE(897), 1, + STATE(3732), 1, sym__expression_block, - STATE(4570), 3, + STATE(4673), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86038] = 7, + [87880] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7892), 1, sym__indent, - STATE(4303), 1, + STATE(3638), 1, sym__expression_block, - STATE(4571), 3, + STATE(4674), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86062] = 7, + [87904] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, + ACTIONS(7890), 1, sym__indent, - STATE(2088), 1, + STATE(4284), 1, sym__expression_block, - STATE(4572), 3, + STATE(4675), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86086] = 7, + [87928] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8004), 1, + ACTIONS(8161), 1, anon_sym_SQUOTE2, - ACTIONS(8006), 1, + ACTIONS(8163), 1, anon_sym_SQUOTEB, - STATE(4573), 3, + STATE(4676), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86110] = 7, + [87952] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(8111), 1, sym__indent, - STATE(4156), 1, + STATE(873), 1, sym__expression_block, - STATE(4574), 3, + STATE(4677), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86134] = 7, + [87976] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5243), 1, - sym_active_pattern_op_name, - STATE(4575), 3, + ACTIONS(7918), 1, + sym__indent, + STATE(526), 1, + sym__expression_block, + STATE(4678), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86158] = 7, + [88000] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, - sym__indent, - STATE(2120), 1, - sym__expression_block, - STATE(4576), 3, + ACTIONS(8097), 1, + sym_identifier, + STATE(3733), 1, + sym_member_signature, + STATE(4679), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86182] = 6, + [88024] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7916), 2, - sym__dedent, - anon_sym_COMMA, - STATE(4577), 3, + ACTIONS(8049), 1, + sym_identifier, + STATE(2199), 1, + sym_member_signature, + STATE(4680), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86204] = 7, + [88048] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6048), 1, - anon_sym_f, - ACTIONS(8008), 1, - aux_sym_decimal_token1, - STATE(4578), 3, + ACTIONS(2862), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4681), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86228] = 7, + [88070] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, - sym__indent, - STATE(4508), 1, - sym__expression_block, - STATE(4579), 3, + ACTIONS(8165), 1, + sym_identifier, + STATE(4470), 1, + sym_enum_type_case, + STATE(4682), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86252] = 7, + [88094] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(7958), 1, sym__indent, - STATE(1641), 1, + STATE(1810), 1, sym__expression_block, - STATE(4580), 3, + STATE(4683), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86276] = 7, + [88118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7748), 1, - sym__indent, - STATE(1763), 1, - sym__expression_block, - STATE(4581), 3, + ACTIONS(2999), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4684), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86300] = 6, + [88140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8010), 2, - anon_sym_COLON, - anon_sym_or, - STATE(4582), 3, + ACTIONS(2866), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4685), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86322] = 7, + [88162] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4999), 1, - aux_sym_decimal_token1, - ACTIONS(5835), 1, - anon_sym_f, - STATE(4583), 3, + ACTIONS(7428), 1, + anon_sym_member, + ACTIONS(8101), 1, + anon_sym_new, + STATE(4686), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86346] = 7, + [88186] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(7920), 1, sym__indent, - STATE(1872), 1, + STATE(1830), 1, sym__expression_block, - STATE(4584), 3, + STATE(4687), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86370] = 7, + [88210] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, - sym__indent, - STATE(1875), 1, - sym__expression_block, - STATE(4585), 3, + ACTIONS(8167), 1, + anon_sym_get, + ACTIONS(8169), 1, + anon_sym_set, + STATE(4688), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86394] = 7, + [88234] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7862), 1, - sym_identifier, - STATE(2112), 1, - sym_member_signature, - STATE(4586), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(4459), 1, + sym__expression_block, + STATE(4689), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86418] = 7, + [88258] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, + ACTIONS(7924), 1, sym__indent, - STATE(1017), 1, + STATE(1498), 1, sym__expression_block, - STATE(4587), 3, + STATE(4690), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86442] = 7, + [88282] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, + ACTIONS(7924), 1, sym__indent, - STATE(1356), 1, + STATE(1627), 1, sym__expression_block, - STATE(4588), 3, + STATE(4691), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86466] = 7, + [88306] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, - sym__indent, - STATE(1832), 1, - sym__expression_block, - STATE(4589), 3, + ACTIONS(8099), 1, + sym_identifier, + STATE(3630), 1, + sym_member_signature, + STATE(4692), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86490] = 6, + [88330] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(771), 2, - sym__dedent, - anon_sym_COMMA, - STATE(4590), 3, + ACTIONS(7924), 1, + sym__indent, + STATE(1769), 1, + sym__expression_block, + STATE(4693), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86512] = 6, + [88354] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3000), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4591), 3, + ACTIONS(7982), 1, + sym__indent, + STATE(2468), 1, + sym__expression_block, + STATE(4694), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86534] = 7, + [88378] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8012), 1, + ACTIONS(7910), 1, sym__indent, - STATE(1357), 1, + STATE(1084), 1, sym__expression_block, - STATE(4592), 3, + STATE(4695), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86558] = 7, + [88402] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7856), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1138), 1, + STATE(1411), 1, sym__expression_block, - STATE(4593), 3, + STATE(4696), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86582] = 7, + [88426] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8014), 1, - sym_identifier, - STATE(2468), 1, - sym_long_identifier, - STATE(4594), 3, + ACTIONS(8171), 1, + anon_sym_SQUOTE2, + ACTIONS(8173), 1, + anon_sym_SQUOTEB, + STATE(4697), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86606] = 7, + [88450] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8016), 1, - sym__indent, - STATE(1630), 1, - sym__expression_block, - STATE(4595), 3, + ACTIONS(8175), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4698), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86630] = 7, + [88472] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, - sym__indent, - STATE(1358), 1, - sym__expression_block, - STATE(4596), 3, + ACTIONS(8177), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4699), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86654] = 7, + [88494] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7836), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1302), 1, + STATE(1879), 1, sym__expression_block, - STATE(4597), 3, + STATE(4700), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86678] = 6, + [88518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2225), 2, + ACTIONS(8179), 2, + sym__newline, sym__dedent, - anon_sym_PIPE, - STATE(4598), 3, + STATE(4701), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86700] = 7, + [88540] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(7918), 1, sym__indent, - STATE(615), 1, + STATE(557), 1, sym__expression_block, - STATE(4599), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [86724] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(2896), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4600), 3, + STATE(4702), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86746] = 7, + [88564] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8018), 1, - anon_sym_PIPE, - STATE(4391), 1, - aux_sym_active_pattern_op_name_repeat1, - STATE(4601), 3, + ACTIONS(8087), 1, + sym__indent, + STATE(852), 1, + sym__expression_block, + STATE(4703), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86770] = 6, + [88588] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8020), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4602), 3, + ACTIONS(7499), 1, + anon_sym_member, + ACTIONS(7635), 1, + anon_sym_new, + STATE(4704), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86792] = 6, + [88612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2892), 2, + ACTIONS(8181), 2, + sym__newline, sym__dedent, - anon_sym_PIPE, - STATE(4603), 3, + STATE(4705), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86814] = 7, + [88634] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, + ACTIONS(7916), 1, sym__indent, - STATE(1819), 1, + STATE(979), 1, sym__expression_block, - STATE(4604), 3, + STATE(4706), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86838] = 6, + [88658] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2884), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4605), 3, + ACTIONS(8183), 1, + anon_sym_EQ, + ACTIONS(8185), 1, + anon_sym_COLON, + STATE(4707), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86860] = 6, + [88682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2880), 2, + ACTIONS(2894), 2, sym__dedent, anon_sym_PIPE, - STATE(4606), 3, + STATE(4708), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86882] = 6, + [88704] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2876), 2, + ACTIONS(2890), 2, sym__dedent, anon_sym_PIPE, - STATE(4607), 3, + STATE(4709), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86904] = 6, + [88726] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2872), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4608), 3, + ACTIONS(8187), 1, + sym__indent, + STATE(1412), 1, + sym__expression_block, + STATE(4710), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86926] = 6, + [88750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2868), 2, + ACTIONS(2886), 2, sym__dedent, anon_sym_PIPE, - STATE(4609), 3, + STATE(4711), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86948] = 7, + [88772] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6012), 1, - sym__indent, - STATE(4349), 1, - sym__expression_block, - STATE(4610), 3, + ACTIONS(8089), 1, + sym_identifier, + STATE(2504), 1, + sym_long_identifier, + STATE(4712), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86972] = 6, + [88796] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2864), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4611), 3, + ACTIONS(7916), 1, + sym__indent, + STATE(971), 1, + sym__expression_block, + STATE(4713), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [86994] = 6, + [88820] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2860), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4612), 3, + ACTIONS(5926), 1, + anon_sym_member, + ACTIONS(8121), 1, + anon_sym_new, + STATE(4714), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87016] = 6, + [88844] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2856), 2, + ACTIONS(8189), 2, + sym__newline, sym__dedent, - anon_sym_PIPE, - STATE(4613), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [87038] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, - sym_line_comment, - ACTIONS(9), 1, - aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8022), 2, - anon_sym_and, - anon_sym_GT, - STATE(4614), 3, + STATE(4715), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87060] = 6, + [88866] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8024), 2, - sym__newline, - sym__dedent, - STATE(4615), 3, + ACTIONS(7999), 1, + sym__indent, + STATE(1413), 1, + sym__expression_block, + STATE(4716), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87082] = 7, + [88890] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, + ACTIONS(7916), 1, sym__indent, - STATE(4231), 1, + STATE(856), 1, sym__expression_block, - STATE(4616), 3, + STATE(4717), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87106] = 6, + [88914] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7650), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(4617), 3, + ACTIONS(6278), 1, + sym__indent, + STATE(4260), 1, + sym__expression_block, + STATE(4718), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87128] = 7, + [88938] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8026), 1, - anon_sym_get, - ACTIONS(8028), 1, - anon_sym_set, - STATE(4618), 3, + ACTIONS(7954), 1, + sym__indent, + STATE(1356), 1, + sym__expression_block, + STATE(4719), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87152] = 7, + [88962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8030), 1, - anon_sym_COLON, - ACTIONS(8032), 1, - anon_sym_COLON_GT, - STATE(4619), 3, + ACTIONS(2882), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4720), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87176] = 7, + [88984] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, - sym__indent, - STATE(4165), 1, - sym__expression_block, - STATE(4620), 3, + ACTIONS(4206), 1, + anon_sym_PIPE, + STATE(5028), 1, + sym_active_pattern_op_name, + STATE(4721), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87200] = 7, + [89008] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7726), 1, + ACTIONS(7890), 1, sym__indent, - STATE(4517), 1, + STATE(4228), 1, sym__expression_block, - STATE(4621), 3, + STATE(4722), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87224] = 7, + [89032] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8034), 1, - sym__indent, - STATE(1289), 1, - sym__expression_block, - STATE(4622), 3, + ACTIONS(7865), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(4723), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87248] = 6, + [89054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2852), 2, + ACTIONS(2878), 2, sym__dedent, anon_sym_PIPE, - STATE(4623), 3, + STATE(4724), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87270] = 6, + [89076] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2848), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4624), 3, + ACTIONS(7999), 1, + sym__indent, + STATE(1866), 1, + sym__expression_block, + STATE(4725), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87292] = 6, + [89100] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8036), 2, - anon_sym_f, - aux_sym_decimal_token1, - STATE(4625), 3, + ACTIONS(8191), 1, + anon_sym_with, + ACTIONS(8193), 1, + anon_sym_finally, + STATE(4726), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87314] = 7, + [89124] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7976), 1, - sym__indent, - STATE(999), 1, - sym__expression_block, - STATE(4626), 3, + ACTIONS(8195), 1, + anon_sym_get, + ACTIONS(8197), 1, + anon_sym_set, + STATE(4727), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87338] = 7, + [89148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(938), 1, - sym__expression_block, - STATE(4627), 3, + ACTIONS(2874), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4728), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87362] = 7, + [89170] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7890), 1, - sym__indent, - STATE(858), 1, - sym__expression_block, - STATE(4628), 3, + ACTIONS(8025), 1, + sym_identifier, + STATE(2166), 1, + sym_member_signature, + STATE(4729), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87386] = 7, + [89194] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, + ACTIONS(6278), 1, sym__indent, - STATE(1627), 1, + STATE(4705), 1, sym__expression_block, - STATE(4629), 3, + STATE(4730), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87410] = 6, + [89218] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7662), 2, - sym__newline, - sym__dedent, - STATE(4630), 3, + ACTIONS(7892), 1, + sym__indent, + STATE(3740), 1, + sym__expression_block, + STATE(4731), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87432] = 6, + [89242] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6361), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4631), 3, + ACTIONS(8097), 1, + sym_identifier, + STATE(3743), 1, + sym_member_signature, + STATE(4732), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87454] = 6, + [89266] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8038), 2, - anon_sym_and, - anon_sym_GT, - STATE(4632), 3, + ACTIONS(8199), 2, + sym__newline, + sym__dedent, + STATE(4733), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87476] = 7, + [89288] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8016), 1, + ACTIONS(7918), 1, sym__indent, - STATE(1626), 1, + STATE(569), 1, sym__expression_block, - STATE(4633), 3, + STATE(4734), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87500] = 6, + [89312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7546), 2, + ACTIONS(8201), 2, + sym__newline, sym__dedent, - anon_sym_COMMA, - STATE(4634), 3, + STATE(4735), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87522] = 7, + [89334] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(8187), 1, sym__indent, - STATE(711), 1, + STATE(1418), 1, sym__expression_block, - STATE(4635), 3, + STATE(4736), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87546] = 7, + [89358] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7886), 1, - sym__indent, - STATE(1917), 1, - sym__expression_block, - STATE(4636), 3, + ACTIONS(8203), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4737), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87570] = 6, + [89380] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8040), 1, - anon_sym_PIPE, - STATE(4637), 4, + ACTIONS(7999), 1, + sym__indent, + STATE(1852), 1, + sym__expression_block, + STATE(4738), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - aux_sym_active_pattern_op_name_repeat1, - [87592] = 7, + [89404] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8012), 1, + ACTIONS(8055), 1, sym__indent, - STATE(1361), 1, + STATE(2143), 1, sym__expression_block, - STATE(4638), 3, + STATE(4739), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87616] = 7, + [89428] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, + ACTIONS(7892), 1, sym__indent, - STATE(1805), 1, + STATE(3744), 1, sym__expression_block, - STATE(4639), 3, + STATE(4740), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87640] = 7, + [89452] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1804), 1, + STATE(1851), 1, sym__expression_block, - STATE(4640), 3, + STATE(4741), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87664] = 7, + [89476] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, + ACTIONS(7999), 1, sym__indent, - STATE(1362), 1, + STATE(1420), 1, sym__expression_block, - STATE(4641), 3, + STATE(4742), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87688] = 7, + [89500] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, + ACTIONS(7924), 1, sym__indent, - STATE(2356), 1, + STATE(2061), 1, sym__expression_block, - STATE(4642), 3, + STATE(4743), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87712] = 7, + [89524] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7718), 1, + ACTIONS(8055), 1, sym__indent, - STATE(644), 1, + STATE(2172), 1, sym__expression_block, - STATE(4643), 3, + STATE(4744), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87736] = 6, + [89548] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2844), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4644), 3, + ACTIONS(8205), 1, + anon_sym_get, + ACTIONS(8207), 1, + anon_sym_set, + STATE(4745), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87758] = 6, + [89572] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8043), 2, - anon_sym_and, - anon_sym_GT, - STATE(4645), 3, + ACTIONS(8209), 1, + anon_sym_RBRACK, + STATE(4746), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87780] = 6, + [89593] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2840), 2, + ACTIONS(8211), 1, sym__dedent, - anon_sym_PIPE, - STATE(4646), 3, + STATE(4747), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87802] = 6, + [89614] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2836), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4647), 3, + ACTIONS(8213), 1, + anon_sym_do, + STATE(4748), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87824] = 6, + [89635] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2832), 2, + ACTIONS(8215), 1, sym__dedent, - anon_sym_PIPE, - STATE(4648), 3, + STATE(4749), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87846] = 7, + [89656] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7826), 1, - sym__indent, - STATE(2346), 1, - sym__expression_block, - STATE(4649), 3, + ACTIONS(8217), 1, + sym_identifier, + STATE(4750), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87870] = 6, + [89677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2828), 2, + ACTIONS(8219), 1, sym__dedent, - anon_sym_PIPE, - STATE(4650), 3, + STATE(4751), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87892] = 7, + [89698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8045), 1, - anon_sym_SQUOTE2, - ACTIONS(8047), 1, - anon_sym_SQUOTEB, - STATE(4651), 3, + ACTIONS(8221), 1, + anon_sym_COLON, + STATE(4752), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87916] = 6, + [89719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2800), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4652), 3, + ACTIONS(8223), 1, + anon_sym_COLON, + STATE(4753), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87938] = 7, + [89740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8049), 1, - anon_sym_EQ, - ACTIONS(8051), 1, - anon_sym_COLON, - STATE(4653), 3, + ACTIONS(8225), 1, + sym_identifier, + STATE(4754), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87962] = 6, + [89761] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2786), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4654), 3, + ACTIONS(8227), 1, + anon_sym_member, + STATE(4755), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [87984] = 6, + [89782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2824), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4655), 3, + ACTIONS(8229), 1, + anon_sym_EQ, + STATE(4756), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88006] = 7, + [89803] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7920), 1, - sym__indent, - STATE(4183), 1, - sym__expression_block, - STATE(4656), 3, + ACTIONS(8231), 1, + anon_sym_COLON, + STATE(4757), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88030] = 6, + [89824] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2808), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4657), 3, + ACTIONS(8233), 1, + anon_sym_COLON, + STATE(4758), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88052] = 6, + [89845] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2804), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4658), 3, + ACTIONS(8235), 1, + anon_sym_COLON, + STATE(4759), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88074] = 6, + [89866] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2812), 2, + ACTIONS(8237), 1, sym__dedent, - anon_sym_PIPE, - STATE(4659), 3, + STATE(4760), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88096] = 7, + [89887] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5853), 1, - anon_sym_f, - ACTIONS(8053), 1, - aux_sym_decimal_token1, - STATE(4660), 3, + ACTIONS(8239), 1, + anon_sym_PIPE, + STATE(4761), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88120] = 7, + [89908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5217), 1, - sym_active_pattern_op_name, - STATE(4661), 3, + ACTIONS(8241), 1, + sym_identifier, + STATE(4762), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88144] = 6, + [89929] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2888), 2, + ACTIONS(8243), 1, sym__dedent, - anon_sym_PIPE, - STATE(4662), 3, + STATE(4763), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88166] = 6, + [89950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2816), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4663), 3, + ACTIONS(7003), 1, + anon_sym_member, + STATE(4764), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88188] = 6, + [89971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2778), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4664), 3, + ACTIONS(8245), 1, + sym__indent, + STATE(4765), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88210] = 7, + [89992] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8055), 1, - anon_sym_with, - ACTIONS(8057), 1, - anon_sym_finally, - STATE(4665), 3, + ACTIONS(8247), 1, + anon_sym_COLON, + STATE(4766), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88234] = 6, + [90013] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3034), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4666), 3, + ACTIONS(8249), 1, + anon_sym_RBRACE, + STATE(4767), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88256] = 6, + [90034] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8059), 2, - anon_sym_EQ, + ACTIONS(8251), 1, anon_sym_COLON, - STATE(4667), 3, + STATE(4768), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88278] = 6, + [90055] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8061), 2, + ACTIONS(8253), 1, anon_sym_EQ, - anon_sym_COLON, - STATE(4668), 3, + STATE(4769), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88300] = 6, + [90076] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(3070), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4669), 3, + ACTIONS(8255), 1, + anon_sym_GT, + STATE(4770), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88322] = 7, + [90097] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7222), 1, - anon_sym_member, - ACTIONS(7583), 1, - anon_sym_new, - STATE(4670), 3, + ACTIONS(8257), 1, + anon_sym_and, + STATE(4771), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [90118] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(8259), 1, + aux_sym_preproc_line_token2, + STATE(4772), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88346] = 7, + [90139] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7740), 1, - sym__indent, - STATE(1752), 1, - sym__expression_block, - STATE(4671), 3, + ACTIONS(8261), 1, + anon_sym_EQ, + STATE(4773), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88370] = 6, + [90160] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8063), 2, - anon_sym_and, - anon_sym_GT, - STATE(4672), 3, + ACTIONS(8263), 1, + sym__dedent, + STATE(4774), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88392] = 6, + [90181] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(2954), 2, + ACTIONS(8265), 1, sym__dedent, - anon_sym_PIPE, - STATE(4673), 3, + STATE(4775), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88414] = 6, + [90202] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8065), 1, - anon_sym_GT, - STATE(4674), 3, + ACTIONS(8267), 1, + sym__dedent, + STATE(4776), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88435] = 6, + [90223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8067), 1, - anon_sym_GT, - STATE(4675), 3, + ACTIONS(8269), 1, + anon_sym_member, + STATE(4777), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88456] = 6, + [90244] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8069), 1, - anon_sym_PIPE, - STATE(4676), 3, + ACTIONS(8271), 1, + sym__dedent, + STATE(4778), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88477] = 6, + [90265] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8071), 1, - anon_sym_EQ, - STATE(4677), 3, + ACTIONS(8273), 1, + anon_sym_DASH_GT, + STATE(4779), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88498] = 6, + [90286] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8073), 1, + ACTIONS(8275), 1, sym__triple_quoted_content, - STATE(4678), 3, + STATE(4780), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88519] = 6, + [90307] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8075), 1, + ACTIONS(8277), 1, sym__triple_quoted_content, - STATE(4679), 3, + STATE(4781), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88540] = 6, + [90328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8077), 1, - sym__indent, - STATE(4680), 3, + ACTIONS(8279), 1, + sym_identifier, + STATE(4782), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88561] = 6, + [90349] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8079), 1, - anon_sym_EQ, - STATE(4681), 3, + ACTIONS(8281), 1, + sym_identifier, + STATE(4783), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88582] = 6, + [90370] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8081), 1, - anon_sym_POUNDendif, - STATE(4682), 3, + ACTIONS(8283), 1, + sym_identifier, + STATE(4784), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88603] = 6, + [90391] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8083), 1, - sym__dedent, - STATE(4683), 3, + ACTIONS(8285), 1, + anon_sym_of, + STATE(4785), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88624] = 6, + [90412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8085), 1, - sym__dedent, - STATE(4684), 3, + ACTIONS(8287), 1, + sym__indent, + STATE(4786), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88645] = 6, + [90433] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8087), 1, + ACTIONS(8289), 1, sym_identifier, - STATE(4685), 3, + STATE(4787), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88666] = 6, + [90454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8089), 1, + ACTIONS(8291), 1, sym_identifier, - STATE(4686), 3, + STATE(4788), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88687] = 6, + [90475] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8091), 1, - anon_sym_PIPE, - STATE(4687), 3, + ACTIONS(8293), 1, + sym_identifier, + STATE(4789), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88708] = 6, + [90496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8093), 1, + ACTIONS(8295), 1, anon_sym_GT, - STATE(4688), 3, + STATE(4790), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88729] = 6, + [90517] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8095), 1, - anon_sym_COLON, - STATE(4689), 3, + ACTIONS(8297), 1, + sym_identifier, + STATE(4791), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88750] = 6, + [90538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8097), 1, - anon_sym_DASH_GT, - STATE(4690), 3, + ACTIONS(8299), 1, + sym_identifier, + STATE(4792), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88771] = 6, + [90559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7337), 1, - anon_sym_member, - STATE(4691), 3, + ACTIONS(8301), 1, + anon_sym_RPAREN, + STATE(4793), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88792] = 6, + [90580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8099), 1, + ACTIONS(8303), 1, sym_identifier, - STATE(4692), 3, + STATE(4794), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88813] = 6, + [90601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8101), 1, + ACTIONS(8305), 1, anon_sym_GT, - STATE(4693), 3, + STATE(4795), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88834] = 6, + [90622] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8103), 1, - anon_sym_COLON, - STATE(4694), 3, + ACTIONS(8307), 1, + sym_identifier, + STATE(4796), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88855] = 6, + [90643] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8105), 1, - anon_sym_PIPE, - STATE(4695), 3, + ACTIONS(8309), 1, + anon_sym_RBRACK, + STATE(4797), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88876] = 6, + [90664] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8107), 1, - anon_sym_EQ, - STATE(4696), 3, + ACTIONS(7332), 1, + anon_sym_GT, + STATE(4798), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88897] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [90685] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8109), 1, - aux_sym_preproc_line_token2, - STATE(4697), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8311), 1, + sym_identifier, + STATE(4799), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88918] = 6, + [90706] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8111), 1, - sym__triple_quoted_content, - STATE(4698), 3, + ACTIONS(8313), 1, + sym_identifier, + STATE(4800), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88939] = 6, + [90727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8113), 1, - anon_sym_COLON, - STATE(4699), 3, + ACTIONS(8315), 1, + sym_identifier, + STATE(4801), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88960] = 6, + [90748] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8115), 1, - anon_sym_RBRACE, - STATE(4700), 3, + ACTIONS(8317), 1, + sym_identifier, + STATE(4802), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [88981] = 6, + [90769] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8117), 1, - anon_sym_do, - STATE(4701), 3, + ACTIONS(8319), 1, + sym_identifier, + STATE(4803), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89002] = 6, + [90790] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8119), 1, - anon_sym_COLON, - STATE(4702), 3, + ACTIONS(8321), 1, + anon_sym_RBRACE, + STATE(4804), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89023] = 6, + [90811] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8121), 1, - anon_sym_member, - STATE(4703), 3, + ACTIONS(8323), 1, + anon_sym_EQ, + STATE(4805), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89044] = 6, + [90832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8123), 1, - sym__dedent, - STATE(4704), 3, + ACTIONS(8325), 1, + sym_identifier, + STATE(4806), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89065] = 6, + [90853] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8125), 1, - anon_sym_COLON, - STATE(4705), 3, + ACTIONS(8327), 1, + sym_identifier, + STATE(4807), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89086] = 6, + [90874] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8127), 1, + ACTIONS(8329), 1, sym__dedent, - STATE(4706), 3, + STATE(4808), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89107] = 6, + [90895] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8129), 1, - anon_sym_member, - STATE(4707), 3, + ACTIONS(8331), 1, + anon_sym_EQ, + STATE(4809), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89128] = 6, + [90916] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8131), 1, - anon_sym_COLON, - STATE(4708), 3, + ACTIONS(8333), 1, + anon_sym_PIPE_RBRACE, + STATE(4810), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89149] = 6, + [90937] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8133), 1, - anon_sym_member, - STATE(4709), 3, + ACTIONS(8335), 1, + anon_sym_POUNDendif, + STATE(4811), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89170] = 6, + [90958] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8135), 1, - anon_sym_COLON, - STATE(4710), 3, + ACTIONS(8337), 1, + sym_int, + STATE(4812), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89191] = 6, + [90979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8137), 1, - anon_sym_COLON, - STATE(4711), 3, + ACTIONS(8339), 1, + sym_identifier, + STATE(4813), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89212] = 6, + [91000] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8139), 1, - anon_sym_EQ, - STATE(4712), 3, + ACTIONS(8341), 1, + sym_identifier, + STATE(4814), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89233] = 6, + [91021] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8141), 1, - sym__dedent, - STATE(4713), 3, + ACTIONS(8343), 1, + sym__triple_quoted_content, + STATE(4815), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89254] = 6, + [91042] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8143), 1, - anon_sym_COLON, - STATE(4714), 3, + ACTIONS(8345), 1, + sym__triple_quoted_content, + STATE(4816), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89275] = 6, + [91063] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8145), 1, - anon_sym_COLON, - STATE(4715), 3, + ACTIONS(8347), 1, + sym_identifier, + STATE(4817), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89296] = 6, + [91084] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8147), 1, - anon_sym_COLON, - STATE(4716), 3, + ACTIONS(8349), 1, + sym_identifier, + STATE(4818), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89317] = 6, + [91105] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8149), 1, - anon_sym_do, - STATE(4717), 3, + ACTIONS(8351), 1, + sym_identifier, + STATE(4819), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89338] = 6, + [91126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8151), 1, - sym_identifier, - STATE(4718), 3, + ACTIONS(8353), 1, + anon_sym_GT, + STATE(4820), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89359] = 6, + [91147] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8153), 1, - anon_sym_COLON, - STATE(4719), 3, + ACTIONS(7368), 1, + anon_sym_GT, + STATE(4821), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89380] = 6, + [91168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8155), 1, - anon_sym_COLON, - STATE(4720), 3, + ACTIONS(8355), 1, + anon_sym_do, + STATE(4822), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89401] = 6, + [91189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8157), 1, - sym__indent, - STATE(4721), 3, + ACTIONS(8357), 1, + anon_sym_DASH_GT, + STATE(4823), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89422] = 6, + [91210] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8159), 1, - sym__indent, - STATE(4722), 3, + ACTIONS(8359), 1, + sym_int, + STATE(4824), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89443] = 6, + [91231] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(6782), 1, - anon_sym_member, - STATE(4723), 3, + ACTIONS(8361), 1, + anon_sym_PIPE_RBRACE, + STATE(4825), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89464] = 6, + [91252] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8161), 1, + ACTIONS(8363), 1, sym_identifier, - STATE(4724), 3, + STATE(4826), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89485] = 6, + [91273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8163), 1, - sym__triple_quoted_content, - STATE(4725), 3, + ACTIONS(8365), 1, + anon_sym_EQ, + STATE(4827), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [91294] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(8367), 1, + aux_sym_preproc_line_token2, + STATE(4828), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89506] = 6, + [91315] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8165), 1, - sym__triple_quoted_content, - STATE(4726), 3, + ACTIONS(8369), 1, + sym_identifier, + STATE(4829), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89527] = 6, + [91336] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8167), 1, - anon_sym_DASH_GT, - STATE(4727), 3, + ACTIONS(8371), 1, + anon_sym_GT, + STATE(4830), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89548] = 6, + [91357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8169), 1, - sym_identifier, - STATE(4728), 3, + ACTIONS(7374), 1, + anon_sym_GT, + STATE(4831), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89569] = 6, + [91378] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8171), 1, - anon_sym_PIPE, - STATE(4729), 3, + ACTIONS(8373), 1, + anon_sym_GT, + STATE(4832), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89590] = 6, + [91399] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8173), 1, - sym__dedent, - STATE(4730), 3, + ACTIONS(8375), 1, + anon_sym_POUNDendif, + STATE(4833), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89611] = 6, + [91420] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8175), 1, - anon_sym_DASH_GT, - STATE(4731), 3, + ACTIONS(8377), 1, + sym_identifier, + STATE(4834), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89632] = 6, + [91441] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8177), 1, - sym__dedent, - STATE(4732), 3, + ACTIONS(8379), 1, + anon_sym_EQ, + STATE(4835), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89653] = 6, + [91462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8179), 1, + ACTIONS(8381), 1, sym_identifier, - STATE(4733), 3, + STATE(4836), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89674] = 6, + [91483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8181), 1, - anon_sym_EQ, - STATE(4734), 3, + ACTIONS(8383), 1, + sym__dedent, + STATE(4837), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89695] = 6, + [91504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8183), 1, - anon_sym_EQ, - STATE(4735), 3, + ACTIONS(8385), 1, + sym__dedent, + STATE(4838), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89716] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [91525] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8185), 1, - aux_sym_preproc_line_token2, - STATE(4736), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8387), 1, + anon_sym_GT, + STATE(4839), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89737] = 6, + [91546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8187), 1, - anon_sym_COLON, - STATE(4737), 3, + ACTIONS(7392), 1, + anon_sym_GT, + STATE(4840), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89758] = 6, + [91567] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8189), 1, - anon_sym_and, - STATE(4738), 3, + ACTIONS(8389), 1, + anon_sym_PIPE, + STATE(4841), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89779] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [91588] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8191), 1, - aux_sym_preproc_line_token2, - STATE(4739), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8391), 1, + anon_sym_RBRACE, + STATE(4842), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89800] = 6, + [91609] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8193), 1, - anon_sym_EQ, - STATE(4740), 3, + ACTIONS(8393), 1, + anon_sym_GT, + STATE(4843), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89821] = 6, + [91630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8195), 1, - anon_sym_DASH_GT, - STATE(4741), 3, + ACTIONS(4452), 1, + sym__dedent, + STATE(4844), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89842] = 6, + [91651] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7214), 1, - anon_sym_GT, - STATE(4742), 3, + ACTIONS(7428), 1, + anon_sym_member, + STATE(4845), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89863] = 6, + [91672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8197), 1, - sym__dedent, - STATE(4743), 3, + ACTIONS(8395), 1, + sym__indent, + STATE(4846), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89884] = 6, + [91693] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8199), 1, - sym__dedent, - STATE(4744), 3, + ACTIONS(8397), 1, + sym_identifier, + STATE(4847), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89905] = 6, + [91714] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8201), 1, - sym__triple_quoted_content, - STATE(4745), 3, + ACTIONS(8399), 1, + anon_sym_COLON, + STATE(4848), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89926] = 6, + [91735] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8203), 1, - sym__dedent, - STATE(4746), 3, + ACTIONS(8401), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4849), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89947] = 6, + [91756] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8205), 1, - anon_sym_PIPE, - STATE(4747), 3, + ACTIONS(7255), 1, + anon_sym_GT, + STATE(4850), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89968] = 6, + [91777] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8207), 1, - anon_sym_RPAREN, - STATE(4748), 3, + ACTIONS(8403), 1, + anon_sym_GT, + STATE(4851), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [89989] = 6, + [91798] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8209), 1, - sym_identifier, - STATE(4749), 3, + ACTIONS(7398), 1, + anon_sym_GT, + STATE(4852), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90010] = 6, + [91819] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7275), 1, - anon_sym_member, - STATE(4750), 3, + ACTIONS(8405), 1, + anon_sym_GT, + STATE(4853), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90031] = 6, + [91840] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8211), 1, - sym__dedent, - STATE(4751), 3, + ACTIONS(8407), 1, + anon_sym_PIPE, + STATE(4854), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90052] = 6, + [91861] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8213), 1, - sym_identifier, - STATE(4752), 3, + ACTIONS(8409), 1, + anon_sym_do, + STATE(4855), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90073] = 6, + [91882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8215), 1, - anon_sym_COLON, - STATE(4753), 3, + ACTIONS(8411), 1, + sym__dedent, + STATE(4856), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90094] = 6, + [91903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8217), 1, + ACTIONS(8413), 1, sym_identifier, - STATE(4754), 3, + STATE(4857), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90115] = 6, + [91924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8219), 1, - sym_identifier, - STATE(4755), 3, + ACTIONS(8415), 1, + sym__dedent, + STATE(4858), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90136] = 6, + [91945] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8221), 1, - sym_identifier, - STATE(4756), 3, + ACTIONS(8417), 1, + anon_sym_COLON, + STATE(4859), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90157] = 6, + [91966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7946), 1, - anon_sym_do, - STATE(4757), 3, + ACTIONS(8419), 1, + sym_identifier, + STATE(4860), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90178] = 6, + [91987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8223), 1, - sym_identifier, - STATE(4758), 3, + ACTIONS(8421), 1, + anon_sym_member, + STATE(4861), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90199] = 6, + [92008] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8225), 1, - anon_sym_EQ, - STATE(4759), 3, + ACTIONS(8423), 1, + sym__dedent, + STATE(4862), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90220] = 6, + [92029] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8227), 1, - sym__dedent, - STATE(4760), 3, + ACTIONS(8425), 1, + sym_identifier, + STATE(4863), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90241] = 6, + [92050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8229), 1, + ACTIONS(8427), 1, anon_sym_COLON, - STATE(4761), 3, + STATE(4864), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90262] = 6, + [92071] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8231), 1, - sym_identifier, - STATE(4762), 3, + ACTIONS(8429), 1, + sym__dedent, + STATE(4865), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90283] = 6, + [92092] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8233), 1, - anon_sym_member, - STATE(4763), 3, + ACTIONS(8431), 1, + sym__dedent, + STATE(4866), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90304] = 6, + [92113] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8235), 1, - sym_identifier, - STATE(4764), 3, + ACTIONS(8433), 1, + anon_sym_GT, + STATE(4867), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90325] = 6, + [92134] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8237), 1, - anon_sym_COLON, - STATE(4765), 3, + ACTIONS(7390), 1, + anon_sym_GT, + STATE(4868), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90346] = 6, + [92155] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8239), 1, - sym_identifier, - STATE(4766), 3, + ACTIONS(8435), 1, + anon_sym_COLON, + STATE(4869), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90367] = 6, + [92176] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8241), 1, - sym_identifier, - STATE(4767), 3, + ACTIONS(8437), 1, + anon_sym_COLON, + STATE(4870), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90388] = 6, + [92197] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8243), 1, - sym_identifier, - STATE(4768), 3, + ACTIONS(8439), 1, + anon_sym_EQ, + STATE(4871), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90409] = 6, + [92218] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8245), 1, - sym__dedent, - STATE(4769), 3, + ACTIONS(8441), 1, + anon_sym_GT, + STATE(4872), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90430] = 6, + [92239] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8247), 1, - anon_sym_COLON, - STATE(4770), 3, + ACTIONS(8443), 1, + sym_identifier, + STATE(4873), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90451] = 6, + [92260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8249), 1, - anon_sym_COLON, - STATE(4771), 3, + ACTIONS(8445), 1, + sym_identifier, + STATE(4874), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90472] = 6, + [92281] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8251), 1, - sym_identifier, - STATE(4772), 3, + ACTIONS(8447), 1, + anon_sym_GT, + STATE(4875), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90493] = 6, + [92302] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8253), 1, - sym__dedent, - STATE(4773), 3, + ACTIONS(7382), 1, + anon_sym_GT, + STATE(4876), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90514] = 6, + [92323] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8255), 1, - sym__dedent, - STATE(4774), 3, + ACTIONS(8449), 1, + sym_int, + STATE(4877), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90535] = 6, + [92344] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8257), 1, - anon_sym_PIPE, - STATE(4775), 3, + ACTIONS(8451), 1, + anon_sym_GT, + STATE(4878), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90556] = 6, + [92365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8259), 1, - sym_identifier, - STATE(4776), 3, + ACTIONS(8453), 1, + anon_sym_PIPE, + STATE(4879), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90577] = 6, + [92386] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8261), 1, + ACTIONS(8455), 1, sym__triple_quoted_content, - STATE(4777), 3, + STATE(4880), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90598] = 6, + [92407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8263), 1, + ACTIONS(8457), 1, sym__triple_quoted_content, - STATE(4778), 3, + STATE(4881), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90619] = 6, + [92428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8265), 1, - sym_identifier, - STATE(4779), 3, + ACTIONS(8459), 1, + anon_sym_GT, + STATE(4882), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90640] = 6, + [92449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8267), 1, - sym__dedent, - STATE(4780), 3, + ACTIONS(8461), 1, + sym_identifier, + STATE(4883), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90661] = 6, + [92470] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8269), 1, - sym_identifier, - STATE(4781), 3, + ACTIONS(8463), 1, + sym_int, + STATE(4884), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90682] = 6, + [92491] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8271), 1, + ACTIONS(8465), 1, sym_identifier, - STATE(4782), 3, + STATE(4885), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90703] = 6, + [92512] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8273), 1, + ACTIONS(8467), 1, anon_sym_DASH_GT, - STATE(4783), 3, + STATE(4886), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90724] = 6, + [92533] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8275), 1, - sym_identifier, - STATE(4784), 3, + ACTIONS(8469), 1, + anon_sym_COLON, + STATE(4887), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90745] = 6, + [92554] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8277), 1, - sym_identifier, - STATE(4785), 3, + ACTIONS(8471), 1, + anon_sym_GT, + STATE(4888), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90766] = 6, + [92575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8279), 1, - sym_identifier, - STATE(4786), 3, + ACTIONS(7362), 1, + anon_sym_GT, + STATE(4889), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90787] = 6, + [92596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8281), 1, + ACTIONS(8473), 1, anon_sym_EQ, - STATE(4787), 3, + STATE(4890), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90808] = 6, + [92617] = 6, ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(8283), 1, + ACTIONS(8475), 1, aux_sym_preproc_line_token2, - STATE(4788), 3, + STATE(4891), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90829] = 6, + [92638] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8285), 1, - sym_identifier, - STATE(4789), 3, + ACTIONS(8477), 1, + sym_int, + STATE(4892), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90850] = 6, + [92659] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8287), 1, - sym_identifier, - STATE(4790), 3, + ACTIONS(8479), 1, + anon_sym_GT, + STATE(4893), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90871] = 6, + [92680] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8289), 1, + ACTIONS(8481), 1, sym_identifier, - STATE(4791), 3, + STATE(4894), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90892] = 6, + [92701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8291), 1, - anon_sym_GT, - STATE(4792), 3, + ACTIONS(8483), 1, + sym_int, + STATE(4895), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90913] = 6, + [92722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7202), 1, - anon_sym_GT, - STATE(4793), 3, + ACTIONS(8485), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4896), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90934] = 6, + [92743] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8293), 1, - sym__dedent, - STATE(4794), 3, + ACTIONS(8487), 1, + sym_identifier, + STATE(4897), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90955] = 6, + [92764] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8295), 1, + ACTIONS(8489), 1, sym__dedent, - STATE(4795), 3, + STATE(4898), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90976] = 6, + [92785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8297), 1, - sym_identifier, - STATE(4796), 3, + ACTIONS(8491), 1, + sym__dedent, + STATE(4899), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [90997] = 6, + [92806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8299), 1, - sym_identifier, - STATE(4797), 3, + ACTIONS(8493), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4900), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91018] = 6, + [92827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8301), 1, - anon_sym_PIPE, - STATE(4798), 3, + ACTIONS(8495), 1, + anon_sym_POUNDendif, + STATE(4901), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91039] = 6, + [92848] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8303), 1, - anon_sym_GT, - STATE(4799), 3, + ACTIONS(8497), 1, + anon_sym_PIPE, + STATE(4902), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91060] = 6, + [92869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7206), 1, - anon_sym_GT, - STATE(4800), 3, + ACTIONS(8499), 1, + sym_identifier, + STATE(4903), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91081] = 6, + [92890] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8305), 1, - anon_sym_of, - STATE(4801), 3, + ACTIONS(8501), 1, + anon_sym_RBRACE, + STATE(4904), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91102] = 6, + [92911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8307), 1, - anon_sym_do, - STATE(4802), 3, + ACTIONS(7508), 1, + anon_sym_member, + STATE(4905), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91123] = 6, + [92932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8309), 1, - sym__indent, - STATE(4803), 3, + ACTIONS(8503), 1, + sym_int, + STATE(4906), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91144] = 6, + [92953] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8311), 1, + ACTIONS(8505), 1, anon_sym_GT, - STATE(4804), 3, + STATE(4907), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91165] = 6, + [92974] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8313), 1, - sym__dedent, - STATE(4805), 3, + ACTIONS(8507), 1, + anon_sym_COLON, + STATE(4908), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91186] = 6, + [92995] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8315), 1, + ACTIONS(8509), 1, sym__dedent, - STATE(4806), 3, + STATE(4909), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91207] = 6, + [93016] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8317), 1, - sym_identifier, - STATE(4807), 3, + ACTIONS(8511), 1, + anon_sym_GT, + STATE(4910), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91228] = 6, + [93037] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8319), 1, - sym_identifier, - STATE(4808), 3, + ACTIONS(7344), 1, + anon_sym_GT, + STATE(4911), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91249] = 6, + [93058] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8321), 1, - anon_sym_GT, - STATE(4809), 3, + ACTIONS(8145), 1, + anon_sym_do, + STATE(4912), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91270] = 6, + [93079] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8323), 1, - sym_identifier, - STATE(4810), 3, + ACTIONS(8513), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4913), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91291] = 6, + [93100] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8325), 1, - anon_sym_GT, - STATE(4811), 3, + ACTIONS(8515), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4914), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91312] = 6, + [93121] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8327), 1, - sym__triple_quoted_content, - STATE(4812), 3, + ACTIONS(8517), 1, + sym__dedent, + STATE(4915), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91333] = 6, + [93142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8329), 1, - sym__triple_quoted_content, - STATE(4813), 3, + ACTIONS(8519), 1, + anon_sym_COLON, + STATE(4916), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91354] = 6, + [93163] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8331), 1, - sym_identifier, - STATE(4814), 3, + ACTIONS(8521), 1, + sym_int, + STATE(4917), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91375] = 6, + [93184] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8333), 1, - sym_identifier, - STATE(4815), 3, + ACTIONS(8523), 1, + anon_sym_member, + STATE(4918), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91396] = 6, + [93205] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7177), 1, + ACTIONS(8525), 1, anon_sym_GT, - STATE(4816), 3, + STATE(4919), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91417] = 6, + [93226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8335), 1, - anon_sym_DASH_GT, - STATE(4817), 3, + ACTIONS(8527), 1, + anon_sym_COLON, + STATE(4920), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91438] = 6, + [93247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8337), 1, - anon_sym_GT, - STATE(4818), 3, + ACTIONS(8529), 1, + sym_identifier, + STATE(4921), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91459] = 6, + [93268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7175), 1, - anon_sym_GT, - STATE(4819), 3, + ACTIONS(8531), 1, + sym_identifier, + STATE(4922), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91480] = 6, + [93289] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8339), 1, - anon_sym_GT, - STATE(4820), 3, + ACTIONS(8533), 1, + sym_int, + STATE(4923), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91501] = 6, + [93310] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8341), 1, - anon_sym_EQ, - STATE(4821), 3, + ACTIONS(8535), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4924), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91522] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [93331] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8343), 1, - aux_sym_preproc_line_token2, - STATE(4822), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8537), 1, + anon_sym_COLON, + STATE(4925), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91543] = 6, + [93352] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8345), 1, - sym_identifier, - STATE(4823), 3, + ACTIONS(8539), 1, + anon_sym_COLON, + STATE(4926), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91564] = 6, + [93373] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8347), 1, - sym_identifier, - STATE(4824), 3, + ACTIONS(8541), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4927), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91585] = 6, + [93394] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8349), 1, - anon_sym_GT, - STATE(4825), 3, + ACTIONS(8543), 1, + anon_sym_PIPE_RBRACK, + STATE(4928), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91606] = 6, + [93415] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7109), 1, - anon_sym_GT, - STATE(4826), 3, + ACTIONS(8545), 1, + sym__dedent, + STATE(4929), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91627] = 6, + [93436] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8351), 1, - anon_sym_GT, - STATE(4827), 3, + ACTIONS(8547), 1, + sym_identifier, + STATE(4930), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91648] = 6, + [93457] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8353), 1, + ACTIONS(8549), 1, sym__dedent, - STATE(4828), 3, + STATE(4931), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91669] = 6, + [93478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8355), 1, - sym__dedent, - STATE(4829), 3, + ACTIONS(8551), 1, + sym__triple_quoted_content, + STATE(4932), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91690] = 6, + [93499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8357), 1, - anon_sym_LPAREN, - STATE(4830), 3, + ACTIONS(8553), 1, + sym__triple_quoted_content, + STATE(4933), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91711] = 6, + [93520] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8359), 1, - sym_identifier, - STATE(4831), 3, + ACTIONS(8555), 1, + anon_sym_RBRACK, + STATE(4934), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91732] = 6, + [93541] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8361), 1, - anon_sym_PIPE, - STATE(4832), 3, + ACTIONS(8557), 1, + anon_sym_RPAREN, + STATE(4935), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91753] = 6, + [93562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8363), 1, - sym_identifier, - STATE(4833), 3, + ACTIONS(8559), 1, + sym__dedent, + STATE(4936), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91774] = 6, + [93583] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8365), 1, - anon_sym_GT, - STATE(4834), 3, + ACTIONS(8561), 1, + sym__indent, + STATE(4937), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91795] = 6, + [93604] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8367), 1, - anon_sym_do, - STATE(4835), 3, + ACTIONS(8563), 1, + anon_sym_DASH_GT, + STATE(4938), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91816] = 6, + [93625] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8369), 1, - sym__dedent, - STATE(4836), 3, + ACTIONS(8565), 1, + anon_sym_GT, + STATE(4939), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91837] = 6, + [93646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8371), 1, - anon_sym_EQ, - STATE(4837), 3, + ACTIONS(7330), 1, + anon_sym_GT, + STATE(4940), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91858] = 6, + [93667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8373), 1, - sym__dedent, - STATE(4838), 3, + ACTIONS(8567), 1, + sym_int, + STATE(4941), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91879] = 6, + [93688] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8375), 1, - anon_sym_POUNDendif, - STATE(4839), 3, + ACTIONS(8569), 1, + anon_sym_EQ, + STATE(4942), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91900] = 6, - ACTIONS(3), 1, + [93709] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7212), 1, - anon_sym_GT, - STATE(4840), 3, + ACTIONS(8571), 1, + aux_sym_preproc_line_token2, + STATE(4943), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91921] = 6, + [93730] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8377), 1, - sym_int, - STATE(4841), 3, + ACTIONS(8573), 1, + anon_sym_GT, + STATE(4944), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91942] = 6, + [93751] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8379), 1, - anon_sym_GT, - STATE(4842), 3, + ACTIONS(8575), 1, + sym_identifier, + STATE(4945), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91963] = 6, + [93772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8381), 1, - sym_identifier, - STATE(4843), 3, + ACTIONS(8577), 1, + sym_int, + STATE(4946), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [91984] = 6, + [93793] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8383), 1, - sym_identifier, - STATE(4844), 3, + ACTIONS(8579), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4947), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92005] = 6, + [93814] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8385), 1, - sym__triple_quoted_content, - STATE(4845), 3, + ACTIONS(8581), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4948), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92026] = 6, + [93835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8387), 1, - sym__triple_quoted_content, - STATE(4846), 3, + ACTIONS(8583), 1, + sym__dedent, + STATE(4949), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92047] = 6, + [93856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8389), 1, - anon_sym_GT, - STATE(4847), 3, + ACTIONS(8585), 1, + sym__dedent, + STATE(4950), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92068] = 6, + [93877] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8391), 1, - anon_sym_do, - STATE(4848), 3, + ACTIONS(8587), 1, + anon_sym_set, + STATE(4951), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92089] = 6, + [93898] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8393), 1, - anon_sym_PIPE_RBRACE, - STATE(4849), 3, + ACTIONS(8587), 1, + anon_sym_get, + STATE(4952), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92110] = 6, + [93919] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8395), 1, - anon_sym_DASH_GT, - STATE(4850), 3, + ACTIONS(8589), 1, + anon_sym_PIPE, + STATE(4953), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92131] = 6, + [93940] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7133), 1, - anon_sym_GT, - STATE(4851), 3, + ACTIONS(8591), 1, + sym_identifier, + STATE(4954), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92152] = 6, + [93961] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8397), 1, - anon_sym_GT, - STATE(4852), 3, + ACTIONS(8593), 1, + anon_sym_set, + STATE(4955), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92173] = 6, + [93982] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8399), 1, - anon_sym_COLON, - STATE(4853), 3, + ACTIONS(8593), 1, + anon_sym_get, + STATE(4956), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92194] = 6, + [94003] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8401), 1, - anon_sym_EQ, - STATE(4854), 3, + ACTIONS(8595), 1, + anon_sym_do, + STATE(4957), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92215] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [94024] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8403), 1, - aux_sym_preproc_line_token2, - STATE(4855), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8597), 1, + sym_identifier, + STATE(4958), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92236] = 6, + [94045] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8405), 1, - sym_identifier, - STATE(4856), 3, + ACTIONS(8599), 1, + anon_sym_COLON, + STATE(4959), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92257] = 6, + [94066] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8407), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4857), 3, + ACTIONS(8601), 1, + sym__dedent, + STATE(4960), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92278] = 6, + [94087] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8409), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4858), 3, + ACTIONS(8603), 1, + sym__dedent, + STATE(4961), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92299] = 6, + [94108] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8411), 1, - sym__dedent, - STATE(4859), 3, + ACTIONS(8605), 1, + anon_sym_set, + STATE(4962), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92320] = 6, + [94129] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8413), 1, - sym__dedent, - STATE(4860), 3, + ACTIONS(8605), 1, + anon_sym_get, + STATE(4963), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92341] = 6, + [94150] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8415), 1, - sym_identifier, - STATE(4861), 3, + ACTIONS(8607), 1, + anon_sym_GT, + STATE(4964), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92362] = 6, + [94171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8417), 1, - anon_sym_RBRACE, - STATE(4862), 3, + ACTIONS(7308), 1, + anon_sym_GT, + STATE(4965), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92383] = 6, + [94192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8419), 1, - anon_sym_PIPE, - STATE(4863), 3, + ACTIONS(8609), 1, + sym_int, + STATE(4966), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92404] = 6, + [94213] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8421), 1, - sym__indent, - STATE(4864), 3, + ACTIONS(8611), 1, + sym__triple_quoted_content, + STATE(4967), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92425] = 6, + [94234] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8423), 1, - anon_sym_GT, - STATE(4865), 3, + ACTIONS(8613), 1, + sym__triple_quoted_content, + STATE(4968), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92446] = 6, + [94255] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8425), 1, - anon_sym_do, - STATE(4866), 3, + ACTIONS(8615), 1, + anon_sym_RPAREN, + STATE(4969), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92467] = 6, + [94276] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7187), 1, + ACTIONS(8617), 1, anon_sym_GT, - STATE(4867), 3, + STATE(4970), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92488] = 6, + [94297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8427), 1, - anon_sym_GT, - STATE(4868), 3, + ACTIONS(7499), 1, + anon_sym_member, + STATE(4971), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92509] = 6, + [94318] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8429), 1, - sym__dedent, - STATE(4869), 3, + ACTIONS(8619), 1, + anon_sym_DASH_GT, + STATE(4972), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92530] = 6, + [94339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8431), 1, + ACTIONS(8621), 1, sym_identifier, - STATE(4870), 3, + STATE(4973), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92551] = 6, + [94360] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8433), 1, + ACTIONS(8623), 1, sym_identifier, - STATE(4871), 3, + STATE(4974), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92572] = 6, + [94381] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8435), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4872), 3, + ACTIONS(8625), 1, + sym_int, + STATE(4975), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92593] = 6, + [94402] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8437), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4873), 3, + ACTIONS(8627), 1, + anon_sym_EQ, + STATE(4976), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [94423] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(8629), 1, + aux_sym_preproc_line_token2, + STATE(4977), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92614] = 6, + [94444] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8439), 1, - sym_identifier, - STATE(4874), 3, + ACTIONS(4297), 1, + anon_sym_EQ, + STATE(4978), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92635] = 6, + [94465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8441), 1, - anon_sym_GT, - STATE(4875), 3, + ACTIONS(8631), 1, + sym_identifier, + STATE(4979), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92656] = 6, + [94486] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8443), 1, - sym__triple_quoted_content, - STATE(4876), 3, + ACTIONS(8633), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4980), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92677] = 6, + [94507] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(2734), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8445), 1, - sym__triple_quoted_content, - STATE(4877), 3, + STATE(4981), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92698] = 6, + [94528] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7153), 1, - anon_sym_GT, - STATE(4878), 3, + ACTIONS(8635), 1, + sym_identifier, + STATE(4982), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92719] = 6, + [94549] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8447), 1, - anon_sym_GT, - STATE(4879), 3, + ACTIONS(8637), 1, + sym__dedent, + STATE(4983), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92740] = 6, + [94570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8449), 1, + ACTIONS(8639), 1, sym__dedent, - STATE(4880), 3, + STATE(4984), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92761] = 6, + [94591] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8451), 1, - anon_sym_DASH_GT, - STATE(4881), 3, + ACTIONS(8641), 1, + anon_sym_GT, + STATE(4985), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92782] = 6, + [94612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8453), 1, - sym_identifier, - STATE(4882), 3, + ACTIONS(7291), 1, + anon_sym_GT, + STATE(4986), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92803] = 6, + [94633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8455), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4883), 3, + ACTIONS(8643), 1, + anon_sym_PIPE, + STATE(4987), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92824] = 6, + [94654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8457), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4884), 3, + ACTIONS(8645), 1, + sym_int, + STATE(4988), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92845] = 6, + [94675] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8459), 1, - anon_sym_EQ, - STATE(4885), 3, + ACTIONS(8647), 1, + anon_sym_GT, + STATE(4989), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92866] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [94696] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8461), 1, - aux_sym_preproc_line_token2, - STATE(4886), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8649), 1, + anon_sym_do, + STATE(4990), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92887] = 6, + [94717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8463), 1, - anon_sym_POUNDendif, - STATE(4887), 3, + ACTIONS(8651), 1, + sym_identifier, + STATE(4991), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92908] = 6, + [94738] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8465), 1, - anon_sym_GT, - STATE(4888), 3, + ACTIONS(8653), 1, + anon_sym_EQ, + STATE(4992), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92929] = 6, + [94759] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7079), 1, - anon_sym_GT, - STATE(4889), 3, + ACTIONS(8655), 1, + sym__dedent, + STATE(4993), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92950] = 6, + [94780] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8467), 1, - sym__dedent, - STATE(4890), 3, + ACTIONS(8657), 1, + sym_identifier, + STATE(4994), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92971] = 6, + [94801] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8469), 1, - sym__dedent, - STATE(4891), 3, + ACTIONS(8659), 1, + sym_int, + STATE(4995), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [92992] = 6, + [94822] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8471), 1, - anon_sym_GT, - STATE(4892), 3, + ACTIONS(8661), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4996), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93013] = 6, + [94843] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8473), 1, + ACTIONS(8663), 1, sym_identifier, - STATE(4893), 3, + STATE(4997), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93034] = 6, + [94864] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8475), 1, - anon_sym_PIPE, - STATE(4894), 3, + ACTIONS(8665), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4998), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93055] = 6, + [94885] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8477), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4895), 3, + ACTIONS(8667), 1, + sym_identifier, + STATE(4999), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93076] = 6, + [94906] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8479), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4896), 3, + ACTIONS(8669), 1, + sym__triple_quoted_content, + STATE(5000), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93097] = 6, + [94927] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8481), 1, - anon_sym_do, - STATE(4897), 3, + ACTIONS(8671), 1, + sym__triple_quoted_content, + STATE(5001), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93118] = 6, + [94948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8483), 1, - sym_identifier, - STATE(4898), 3, + ACTIONS(4466), 1, + sym__dedent, + STATE(5002), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93139] = 6, + [94969] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8485), 1, + ACTIONS(8673), 1, anon_sym_GT, - STATE(4899), 3, + STATE(5003), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93160] = 6, + [94990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8487), 1, - sym__dedent, - STATE(4900), 3, + ACTIONS(8675), 1, + anon_sym_GT, + STATE(5004), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93181] = 6, + [95011] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7157), 1, - anon_sym_GT, - STATE(4901), 3, + ACTIONS(8677), 1, + anon_sym_DASH_GT, + STATE(5005), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93202] = 6, + [95032] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8489), 1, + ACTIONS(7281), 1, anon_sym_GT, - STATE(4902), 3, + STATE(5006), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93223] = 6, + [95053] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8491), 1, - sym_identifier, - STATE(4903), 3, + ACTIONS(8679), 1, + sym_int, + STATE(5007), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93244] = 6, + [95074] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8493), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4904), 3, + ACTIONS(8681), 1, + anon_sym_GT, + STATE(5008), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93265] = 6, + [95095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8495), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4905), 3, + ACTIONS(8683), 1, + anon_sym_EQ, + STATE(5009), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [95116] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(8685), 1, + aux_sym_preproc_line_token2, + STATE(5010), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93286] = 6, + [95137] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8497), 1, + ACTIONS(8687), 1, sym_identifier, - STATE(4906), 3, + STATE(5011), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93307] = 6, + [95158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8499), 1, - sym__triple_quoted_content, - STATE(4907), 3, + ACTIONS(8689), 1, + sym_int, + STATE(5012), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93328] = 6, + [95179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8501), 1, - sym__triple_quoted_content, - STATE(4908), 3, + ACTIONS(8691), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5013), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93349] = 6, + [95200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8503), 1, - anon_sym_GT, - STATE(4909), 3, + ACTIONS(8693), 1, + sym__dedent, + STATE(5014), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93370] = 6, + [95221] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7195), 1, - anon_sym_GT, - STATE(4910), 3, + ACTIONS(8695), 1, + sym__dedent, + STATE(5015), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93391] = 6, + [95242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8505), 1, - anon_sym_GT, - STATE(4911), 3, + ACTIONS(8697), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5016), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93412] = 6, + [95263] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8507), 1, - anon_sym_DASH_GT, - STATE(4912), 3, + ACTIONS(8699), 1, + sym_identifier, + STATE(5017), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93433] = 6, + [95284] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8509), 1, - sym_identifier, - STATE(4913), 3, + ACTIONS(8701), 1, + anon_sym_PIPE, + STATE(5018), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93454] = 6, + [95305] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8511), 1, + ACTIONS(8703), 1, sym_identifier, - STATE(4914), 3, + STATE(5019), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93475] = 6, + [95326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8513), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4915), 3, + ACTIONS(8705), 1, + sym__dedent, + STATE(5020), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93496] = 6, + [95347] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8515), 1, - anon_sym_EQ, - STATE(4916), 3, + ACTIONS(8707), 1, + anon_sym_do, + STATE(5021), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93517] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [95368] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_line_token2, - STATE(4917), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8709), 1, + anon_sym_RPAREN, + STATE(5022), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93538] = 6, + [95389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8519), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4918), 3, + ACTIONS(8711), 1, + anon_sym_GT, + STATE(5023), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93559] = 6, + [95410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8521), 1, - sym_identifier, - STATE(4919), 3, + ACTIONS(8713), 1, + sym__dedent, + STATE(5024), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93580] = 6, + [95431] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8523), 1, + ACTIONS(7261), 1, anon_sym_GT, - STATE(4920), 3, + STATE(5025), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93601] = 6, + [95452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8525), 1, - sym__dedent, - STATE(4921), 3, + ACTIONS(8715), 1, + sym_int, + STATE(5026), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93622] = 6, + [95473] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8527), 1, - sym__dedent, - STATE(4922), 3, + ACTIONS(8717), 1, + anon_sym_GT, + STATE(5027), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93643] = 6, + [95494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7113), 1, - anon_sym_GT, - STATE(4923), 3, + ACTIONS(8719), 1, + anon_sym_RPAREN, + STATE(5028), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93664] = 6, + [95515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8529), 1, - anon_sym_GT, - STATE(4924), 3, + ACTIONS(8721), 1, + sym__indent, + STATE(5029), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93685] = 6, + [95536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8531), 1, - anon_sym_PIPE, - STATE(4925), 3, + ACTIONS(8723), 1, + anon_sym_RBRACK, + STATE(5030), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93706] = 6, + [95557] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8533), 1, - sym_identifier, - STATE(4926), 3, + ACTIONS(8725), 1, + sym__triple_quoted_content, + STATE(5031), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93727] = 6, + [95578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8535), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4927), 3, + ACTIONS(8727), 1, + sym__triple_quoted_content, + STATE(5032), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93748] = 6, + [95599] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8537), 1, - anon_sym_do, - STATE(4928), 3, + ACTIONS(8729), 1, + sym_identifier, + STATE(5033), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93769] = 6, + [95620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8539), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4929), 3, + ACTIONS(8731), 1, + anon_sym_DASH_GT, + STATE(5034), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93790] = 6, + [95641] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8541), 1, - anon_sym_RPAREN, - STATE(4930), 3, + ACTIONS(8733), 1, + sym_int, + STATE(5035), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93811] = 6, + [95662] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8543), 1, - sym__dedent, - STATE(4931), 3, + ACTIONS(8735), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5036), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93832] = 6, + [95683] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8545), 1, - sym__indent, - STATE(4932), 3, + ACTIONS(8737), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5037), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93853] = 6, + [95704] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8547), 1, - sym_identifier, - STATE(4933), 3, + ACTIONS(8739), 1, + anon_sym_EQ, + STATE(5038), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93874] = 6, + [95725] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8549), 1, - anon_sym_GT, - STATE(4934), 3, + ACTIONS(8741), 1, + sym_block_comment_content, + STATE(5039), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93895] = 6, + [95746] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8551), 1, - anon_sym_RBRACE, - STATE(4935), 3, + ACTIONS(8743), 1, + sym_int, + STATE(5040), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93916] = 6, - ACTIONS(3), 1, + [95767] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8553), 1, - anon_sym_POUNDendif, - STATE(4936), 3, + ACTIONS(8745), 1, + aux_sym_preproc_line_token2, + STATE(5041), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93937] = 6, + [95788] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7123), 1, - anon_sym_GT, - STATE(4937), 3, + ACTIONS(8747), 1, + sym_identifier, + STATE(5042), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93958] = 6, + [95809] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8555), 1, - sym__triple_quoted_content, - STATE(4938), 3, + ACTIONS(8749), 1, + anon_sym_PIPE_RBRACK, + STATE(5043), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [93979] = 6, + [95830] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8557), 1, - sym__triple_quoted_content, - STATE(4939), 3, + ACTIONS(8751), 1, + anon_sym_RPAREN, + STATE(5044), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94000] = 6, + [95851] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8559), 1, - anon_sym_RBRACK, - STATE(4940), 3, + ACTIONS(8753), 1, + sym__dedent, + STATE(5045), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94021] = 6, + [95872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8561), 1, - anon_sym_COLON, - STATE(4941), 3, + ACTIONS(8755), 1, + sym__dedent, + STATE(5046), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94042] = 6, + [95893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8563), 1, - anon_sym_PIPE_RBRACE, - STATE(4942), 3, + ACTIONS(8757), 1, + sym_identifier, + STATE(5047), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94063] = 6, + [95914] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8565), 1, - anon_sym_DASH_GT, - STATE(4943), 3, + ACTIONS(4335), 1, + anon_sym_EQ, + STATE(5048), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94084] = 6, + [95935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8567), 1, - anon_sym_RBRACE, - STATE(4944), 3, + ACTIONS(8759), 1, + anon_sym_PIPE, + STATE(5049), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94105] = 6, + [95956] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8569), 1, - sym_identifier, - STATE(4945), 3, + ACTIONS(8761), 1, + anon_sym_RPAREN, + STATE(5050), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94126] = 6, + [95977] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8571), 1, + ACTIONS(8763), 1, anon_sym_GT, - STATE(4946), 3, + STATE(5051), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94147] = 6, + [95998] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8573), 1, - anon_sym_EQ, - STATE(4947), 3, + ACTIONS(8765), 1, + anon_sym_do, + STATE(5052), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94168] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [96019] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(8575), 1, - aux_sym_preproc_line_token2, - STATE(4948), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8767), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5053), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94189] = 6, + [96040] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8577), 1, - anon_sym_COLON, - STATE(4949), 3, + ACTIONS(8769), 1, + anon_sym_RBRACK, + STATE(5054), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94210] = 6, + [96061] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8579), 1, - anon_sym_RPAREN, - STATE(4950), 3, + ACTIONS(8771), 1, + sym__dedent, + STATE(5055), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94231] = 6, + [96082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8581), 1, - anon_sym_RBRACK, - STATE(4951), 3, + ACTIONS(8773), 1, + sym_identifier, + STATE(5056), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94252] = 6, + [96103] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8583), 1, - sym__dedent, - STATE(4952), 3, + ACTIONS(8775), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5057), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94273] = 6, + [96124] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8585), 1, + ACTIONS(1003), 1, sym__dedent, - STATE(4953), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + STATE(5058), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94294] = 6, + [96145] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8587), 1, - sym__dedent, - STATE(4954), 3, + ACTIONS(8777), 1, + sym_int, + STATE(5059), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94315] = 6, + [96166] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8589), 1, - sym__dedent, - STATE(4955), 3, + ACTIONS(8779), 1, + sym_identifier, + STATE(5060), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94336] = 6, + [96187] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8591), 1, - anon_sym_PIPE, - STATE(4956), 3, + ACTIONS(8781), 1, + anon_sym_GT, + STATE(5061), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94357] = 6, + [96208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8593), 1, - anon_sym_COLON, - STATE(4957), 3, + ACTIONS(8783), 1, + sym__triple_quoted_content, + STATE(5062), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94378] = 6, + [96229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8595), 1, - sym_identifier, - STATE(4958), 3, + ACTIONS(8785), 1, + sym__triple_quoted_content, + STATE(5063), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94399] = 6, + [96250] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8597), 1, - anon_sym_do, - STATE(4959), 3, + ACTIONS(8787), 1, + anon_sym_RBRACE, + STATE(5064), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94420] = 6, + [96271] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8599), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4960), 3, + ACTIONS(8789), 1, + anon_sym_POUNDendif, + STATE(5065), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94441] = 6, + [96292] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7222), 1, - anon_sym_member, - STATE(4961), 3, + ACTIONS(8791), 1, + anon_sym_POUNDendif, + STATE(5066), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94462] = 6, + [96313] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8601), 1, - sym__dedent, - STATE(4962), 3, + ACTIONS(8793), 1, + anon_sym_DASH_GT, + STATE(5067), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94483] = 6, + [96334] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8603), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4963), 3, + ACTIONS(7273), 1, + anon_sym_GT, + STATE(5068), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94504] = 6, + [96355] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8605), 1, - anon_sym_EQ, - STATE(4964), 3, + ACTIONS(8795), 1, + anon_sym_PIPE, + STATE(5069), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94525] = 6, + [96376] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8607), 1, - sym__triple_quoted_content, - STATE(4965), 3, + ACTIONS(8797), 1, + sym__indent, + STATE(5070), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94546] = 6, + [96397] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8609), 1, - sym__triple_quoted_content, - STATE(4966), 3, + ACTIONS(8799), 1, + anon_sym_EQ, + STATE(5071), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94567] = 6, - ACTIONS(3), 1, + [96418] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8611), 1, - sym_identifier, - STATE(4967), 3, + ACTIONS(8801), 1, + aux_sym_preproc_line_token2, + STATE(5072), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94588] = 6, + [96439] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8613), 1, - anon_sym_PIPE_RBRACK, - STATE(4968), 3, + ACTIONS(8803), 1, + anon_sym_POUNDendif, + STATE(5073), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94609] = 6, + [96460] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8615), 1, - anon_sym_EQ, - STATE(4969), 3, + ACTIONS(8805), 1, + sym_int, + STATE(5074), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94630] = 6, + [96481] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8617), 1, - anon_sym_RBRACK, - STATE(4970), 3, + ACTIONS(8807), 1, + anon_sym_RBRACE, + STATE(5075), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94651] = 6, + [96502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8619), 1, - anon_sym_RPAREN, - STATE(4971), 3, + ACTIONS(8809), 1, + sym__dedent, + STATE(5076), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94672] = 6, + [96523] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8621), 1, - anon_sym_RPAREN, - STATE(4972), 3, + ACTIONS(8811), 1, + sym__dedent, + STATE(5077), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94693] = 6, + [96544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8623), 1, - sym__triple_quoted_content, - STATE(4973), 3, + ACTIONS(8813), 1, + anon_sym_PIPE_RBRACE, + STATE(5078), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94714] = 6, + [96565] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8625), 1, - sym__triple_quoted_content, - STATE(4974), 3, + ACTIONS(8815), 1, + anon_sym_RBRACE, + STATE(5079), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94735] = 6, + [96586] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8627), 1, - sym_identifier, - STATE(4975), 3, + ACTIONS(8817), 1, + anon_sym_PIPE, + STATE(5080), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94756] = 6, + [96607] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8629), 1, - anon_sym_RPAREN, - STATE(4976), 3, + ACTIONS(8819), 1, + anon_sym_GT, + STATE(5081), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94777] = 6, + [96628] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8631), 1, - anon_sym_EQ, - STATE(4977), 3, + ACTIONS(8821), 1, + anon_sym_RPAREN, + STATE(5082), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94798] = 6, + [96649] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8633), 1, - anon_sym_GT, - STATE(4978), 3, + ACTIONS(8823), 1, + anon_sym_do, + STATE(5083), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94819] = 6, + [96670] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8635), 1, - anon_sym_RBRACE, - STATE(4979), 3, + ACTIONS(8825), 1, + anon_sym_GT, + STATE(5084), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94840] = 6, + [96691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8637), 1, - anon_sym_POUNDendif, - STATE(4980), 3, + ACTIONS(8827), 1, + sym__indent, + STATE(5085), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94861] = 6, + [96712] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8639), 1, - sym__triple_quoted_content, - STATE(4981), 3, + ACTIONS(8829), 1, + sym__dedent, + STATE(5086), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94882] = 6, + [96733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8641), 1, - sym__triple_quoted_content, - STATE(4982), 3, + ACTIONS(8831), 1, + anon_sym_RBRACK, + STATE(5087), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94903] = 6, + [96754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8643), 1, - sym__dedent, - STATE(4983), 3, + ACTIONS(8833), 1, + sym_identifier, + STATE(5088), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94924] = 6, + [96775] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3617), 1, + anon_sym_EQ2, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8645), 1, - anon_sym_EQ, - STATE(4984), 3, + STATE(5089), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94945] = 6, + [96796] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8647), 1, - anon_sym_EQ, - STATE(4985), 3, + ACTIONS(8835), 1, + sym__dedent, + STATE(5090), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94966] = 6, + [96817] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7173), 1, - anon_sym_GT, - STATE(4986), 3, + ACTIONS(8837), 1, + anon_sym_COLON, + STATE(5091), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [94987] = 6, + [96838] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8649), 1, - anon_sym_POUNDendif, - STATE(4987), 3, + ACTIONS(8839), 1, + anon_sym_GT, + STATE(5092), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95008] = 6, + [96859] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8651), 1, - anon_sym_PIPE_RBRACE, - STATE(4988), 3, + ACTIONS(8841), 1, + sym__triple_quoted_content, + STATE(5093), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95029] = 6, + [96880] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8653), 1, + ACTIONS(8843), 1, sym__triple_quoted_content, - STATE(4989), 3, + STATE(5094), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95050] = 6, + [96901] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8655), 1, - sym__triple_quoted_content, - STATE(4990), 3, + ACTIONS(4183), 1, + sym__dedent, + STATE(5095), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95071] = 6, + [96922] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8657), 1, - anon_sym_RBRACE, - STATE(4991), 3, + ACTIONS(8845), 1, + sym__dedent, + STATE(5096), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95092] = 6, + [96943] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8659), 1, + ACTIONS(8847), 1, sym_identifier, - STATE(4992), 3, + STATE(5097), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95113] = 6, + [96964] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8661), 1, - anon_sym_GT, - STATE(4993), 3, + ACTIONS(8849), 1, + anon_sym_DASH_GT, + STATE(5098), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95134] = 6, + [96985] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8663), 1, - anon_sym_RPAREN, - STATE(4994), 3, + ACTIONS(8851), 1, + sym_int, + STATE(5099), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95155] = 6, + [97006] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8665), 1, - sym__triple_quoted_content, - STATE(4995), 3, + ACTIONS(8853), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5100), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95176] = 6, + [97027] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8667), 1, - sym__triple_quoted_content, - STATE(4996), 3, + ACTIONS(8855), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5101), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95197] = 6, + [97048] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8669), 1, - anon_sym_GT, - STATE(4997), 3, + ACTIONS(8857), 1, + anon_sym_EQ, + STATE(5102), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95218] = 6, - ACTIONS(3), 1, + [97069] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8671), 1, - sym_identifier, - STATE(4998), 3, + ACTIONS(8859), 1, + aux_sym_preproc_line_token2, + STATE(5103), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95239] = 6, + [97090] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8673), 1, - anon_sym_new, - STATE(4999), 3, + ACTIONS(8861), 1, + sym_int, + STATE(5104), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95260] = 6, + [97111] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8675), 1, - anon_sym_struct, - STATE(5000), 3, + ACTIONS(8863), 1, + anon_sym_PIPE_RBRACK, + STATE(5105), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95281] = 6, + [97132] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8677), 1, - sym__triple_quoted_content, - STATE(5001), 3, + ACTIONS(8865), 1, + anon_sym_RBRACK, + STATE(5106), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95302] = 6, + [97153] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8679), 1, - sym__triple_quoted_content, - STATE(5002), 3, + ACTIONS(8867), 1, + sym__dedent, + STATE(5107), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95323] = 6, + [97174] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8681), 1, - anon_sym_LT2, - STATE(5003), 3, + ACTIONS(8869), 1, + sym__dedent, + STATE(5108), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95344] = 6, + [97195] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4175), 1, - anon_sym_EQ, - STATE(5004), 3, + ACTIONS(8871), 1, + anon_sym_RPAREN, + STATE(5109), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95365] = 6, + [97216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8683), 1, - anon_sym_LT2, - STATE(5005), 3, + ACTIONS(8873), 1, + anon_sym_and, + STATE(5110), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95386] = 6, + [97237] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(5234), 1, - anon_sym_EQ, - STATE(5006), 3, + ACTIONS(8875), 1, + anon_sym_PIPE, + STATE(5111), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95407] = 6, + [97258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8685), 1, - sym__triple_quoted_content, - STATE(5007), 3, + ACTIONS(8877), 1, + sym__dedent, + STATE(5112), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95428] = 6, + [97279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8687), 1, - sym__triple_quoted_content, - STATE(5008), 3, + ACTIONS(8879), 1, + anon_sym_RPAREN, + STATE(5113), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95449] = 6, + [97300] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8689), 1, - sym_identifier, - STATE(5009), 3, + ACTIONS(8881), 1, + anon_sym_do, + STATE(5114), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95470] = 6, + [97321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8691), 1, - anon_sym_GT, - STATE(5010), 3, + ACTIONS(8883), 1, + sym_identifier, + STATE(5115), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95491] = 6, + [97342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8693), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5011), 3, + ACTIONS(8885), 1, + sym_identifier, + STATE(5116), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95512] = 6, + [97363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8695), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5012), 3, + ACTIONS(8887), 1, + sym__indent, + STATE(5117), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95533] = 6, + [97384] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8697), 1, - anon_sym_COLON, - STATE(5013), 3, + ACTIONS(8889), 1, + anon_sym_RPAREN, + STATE(5118), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95554] = 6, + [97405] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8699), 1, - anon_sym_PIPE_RBRACK, - STATE(5014), 3, + ACTIONS(8891), 1, + anon_sym_GT, + STATE(5119), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95575] = 6, + [97426] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8701), 1, - anon_sym_RBRACK, - STATE(5015), 3, + ACTIONS(8893), 1, + sym__triple_quoted_content, + STATE(5120), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95596] = 6, + [97447] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8703), 1, - anon_sym_RPAREN, - STATE(5016), 3, + ACTIONS(8895), 1, + sym__triple_quoted_content, + STATE(5121), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95617] = 6, + [97468] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8705), 1, - anon_sym_RPAREN, - STATE(5017), 3, + ACTIONS(8897), 1, + anon_sym_RBRACE, + STATE(5122), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95638] = 6, + [97489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8707), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5018), 3, + ACTIONS(8899), 1, + anon_sym_POUNDendif, + STATE(5123), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95659] = 6, + [97510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8709), 1, - anon_sym_GT, - STATE(5019), 3, + ACTIONS(8901), 1, + anon_sym_EQ, + STATE(5124), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95680] = 6, + [97531] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8711), 1, - anon_sym_RBRACE, - STATE(5020), 3, + ACTIONS(7304), 1, + anon_sym_GT, + STATE(5125), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95701] = 6, + [97552] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8713), 1, + ACTIONS(8903), 1, anon_sym_POUNDendif, - STATE(5021), 3, + STATE(5126), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95722] = 6, + [97573] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8715), 1, - anon_sym_RBRACE, - STATE(5022), 3, + ACTIONS(8905), 1, + sym_int, + STATE(5127), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95743] = 6, + [97594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7189), 1, - anon_sym_GT, - STATE(5023), 3, + ACTIONS(8907), 1, + sym__triple_quoted_content, + STATE(5128), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95764] = 6, + [97615] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8717), 1, - anon_sym_POUNDendif, - STATE(5024), 3, + ACTIONS(8909), 1, + sym__triple_quoted_content, + STATE(5129), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95785] = 6, + [97636] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8719), 1, + ACTIONS(8911), 1, anon_sym_PIPE_RBRACE, - STATE(5025), 3, + STATE(5130), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95806] = 6, + [97657] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8721), 1, - anon_sym_RBRACE, - STATE(5026), 3, + ACTIONS(8913), 1, + sym_identifier, + STATE(5131), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95827] = 6, + [97678] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8723), 1, - anon_sym_GT, - STATE(5027), 3, + ACTIONS(8915), 1, + anon_sym_EQ, + STATE(5132), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95848] = 6, + [97699] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8725), 1, - anon_sym_RPAREN, - STATE(5028), 3, + ACTIONS(8917), 1, + anon_sym_RBRACE, + STATE(5133), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95869] = 6, + [97720] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8727), 1, - anon_sym_RBRACE, - STATE(5029), 3, + ACTIONS(8919), 1, + anon_sym_GT, + STATE(5134), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95890] = 6, + [97741] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8729), 1, - anon_sym_RBRACK, - STATE(5030), 3, + ACTIONS(8921), 1, + anon_sym_RPAREN, + STATE(5135), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95911] = 6, + [97762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8731), 1, - sym_identifier, - STATE(5031), 3, + ACTIONS(8923), 1, + sym__triple_quoted_content, + STATE(5136), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95932] = 6, + [97783] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8733), 1, - anon_sym_COLON, - STATE(5032), 3, + ACTIONS(8925), 1, + sym__triple_quoted_content, + STATE(5137), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95953] = 6, + [97804] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8735), 1, - sym__indent, - STATE(5033), 3, + ACTIONS(8927), 1, + anon_sym_GT, + STATE(5138), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95974] = 6, + [97825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8737), 1, - sym_identifier, - STATE(5034), 3, + ACTIONS(8929), 1, + anon_sym_RBRACK, + STATE(5139), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [95995] = 6, + [97846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8739), 1, - sym_identifier, - STATE(5035), 3, + ACTIONS(8931), 1, + anon_sym_EQ, + STATE(5140), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96016] = 6, + [97867] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8741), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5036), 3, + ACTIONS(8933), 1, + sym__dedent, + STATE(5141), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96037] = 6, + [97888] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4221), 1, - anon_sym_EQ, - STATE(5037), 3, + ACTIONS(8935), 1, + anon_sym_SQUOTET, + STATE(5142), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96058] = 6, + [97909] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8743), 1, - sym_identifier, - STATE(5038), 3, + ACTIONS(8937), 1, + anon_sym_RBRACK, + STATE(5143), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96079] = 6, + [97930] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8745), 1, - sym_block_comment_content, - STATE(5039), 3, + ACTIONS(8939), 1, + sym__triple_quoted_content, + STATE(5144), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96100] = 6, + [97951] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8747), 1, - sym_int, - STATE(5040), 3, + ACTIONS(8941), 1, + sym__triple_quoted_content, + STATE(5145), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96121] = 6, + [97972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8749), 1, - sym_identifier, - STATE(5041), 3, + ACTIONS(8943), 1, + anon_sym_GT, + STATE(5146), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96142] = 6, + [97993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8751), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5042), 3, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(5147), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96163] = 6, + [98014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8753), 1, - anon_sym_RPAREN, - STATE(5043), 3, + ACTIONS(8947), 1, + anon_sym_EQ, + STATE(5148), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96184] = 6, + [98035] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8755), 1, - anon_sym_EQ, - STATE(5044), 3, + ACTIONS(8949), 1, + sym_identifier, + STATE(5149), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96205] = 6, + [98056] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8757), 1, - sym__indent, - STATE(5045), 3, + ACTIONS(8951), 1, + sym_int, + STATE(5150), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96226] = 6, + [98077] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8759), 1, - sym__indent, - STATE(5046), 3, + ACTIONS(8953), 1, + sym__triple_quoted_content, + STATE(5151), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96247] = 6, + [98098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8761), 1, - sym__indent, - STATE(5047), 3, + ACTIONS(8955), 1, + sym__triple_quoted_content, + STATE(5152), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96268] = 6, + [98119] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8763), 1, - sym__indent, - STATE(5048), 3, + ACTIONS(8957), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5153), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96289] = 6, + [98140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8765), 1, - anon_sym_GT, - STATE(5049), 3, + ACTIONS(8959), 1, + anon_sym_EQ, + STATE(5154), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96310] = 6, + [98161] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8767), 1, - sym__indent, - STATE(5050), 3, + ACTIONS(8961), 1, + anon_sym_EQ, + STATE(5155), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96331] = 6, + [98182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8769), 1, - sym_identifier, - STATE(5051), 3, + ACTIONS(8963), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5156), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96352] = 6, + [98203] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8771), 1, - anon_sym_PIPE_RBRACK, - STATE(5052), 3, + ACTIONS(8965), 1, + anon_sym_GT, + STATE(5157), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96373] = 6, + [98224] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8773), 1, - anon_sym_RBRACK, - STATE(5053), 3, + ACTIONS(8967), 1, + sym__triple_quoted_content, + STATE(5158), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96394] = 6, + [98245] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8775), 1, - sym__indent, - STATE(5054), 3, + ACTIONS(8969), 1, + sym__triple_quoted_content, + STATE(5159), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96415] = 6, + [98266] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8777), 1, - anon_sym_RBRACK, - STATE(5055), 3, + ACTIONS(8971), 1, + anon_sym_EQ, + STATE(5160), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96436] = 6, + [98287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8779), 1, - anon_sym_EQ, - STATE(5056), 3, + ACTIONS(8973), 1, + anon_sym_COLON, + STATE(5161), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96457] = 6, + [98308] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8781), 1, - sym__indent, - STATE(5057), 3, + ACTIONS(8975), 1, + anon_sym_PIPE_RBRACK, + STATE(5162), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96478] = 6, + [98329] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8783), 1, - anon_sym_RPAREN, - STATE(5058), 3, + ACTIONS(8977), 1, + anon_sym_RBRACK, + STATE(5163), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96499] = 6, + [98350] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8785), 1, - anon_sym_RPAREN, - STATE(5059), 3, + ACTIONS(8979), 1, + sym__triple_quoted_content, + STATE(5164), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96520] = 6, + [98371] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8787), 1, - sym_identifier, - STATE(5060), 3, + ACTIONS(8981), 1, + sym__triple_quoted_content, + STATE(5165), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96541] = 6, + [98392] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8789), 1, - sym_identifier, - STATE(5061), 3, + ACTIONS(8983), 1, + anon_sym_RPAREN, + STATE(5166), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96562] = 6, + [98413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8791), 1, - sym__indent, - STATE(5062), 3, + ACTIONS(8985), 1, + anon_sym_RPAREN, + STATE(5167), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96583] = 6, + [98434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8793), 1, + ACTIONS(8987), 1, sym_identifier, - STATE(5063), 3, + STATE(5168), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96604] = 6, + [98455] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8795), 1, + ACTIONS(8989), 1, sym_identifier, - STATE(5064), 3, + STATE(5169), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96625] = 6, + [98476] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8797), 1, - sym__indent, - STATE(5065), 3, + ACTIONS(8991), 1, + sym_identifier, + STATE(5170), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96646] = 6, + [98497] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8799), 1, - anon_sym_COLON, - STATE(5066), 3, + ACTIONS(8993), 1, + anon_sym_GT, + STATE(5171), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96667] = 6, + [98518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8801), 1, - sym__indent, - STATE(5067), 3, + ACTIONS(8995), 1, + anon_sym_RBRACE, + STATE(5172), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96688] = 6, + [98539] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8803), 1, - anon_sym_GT, - STATE(5068), 3, + ACTIONS(8997), 1, + anon_sym_POUNDendif, + STATE(5173), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96709] = 6, + [98560] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8805), 1, - anon_sym_RBRACE, - STATE(5069), 3, + ACTIONS(7346), 1, + anon_sym_GT, + STATE(5174), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96730] = 6, + [98581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8807), 1, + ACTIONS(8999), 1, anon_sym_POUNDendif, - STATE(5070), 3, + STATE(5175), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96751] = 6, + [98602] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8809), 1, - sym__indent, - STATE(5071), 3, + ACTIONS(9001), 1, + sym_int, + STATE(5176), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96772] = 6, + [98623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8811), 1, + ACTIONS(9003), 1, sym_identifier, - STATE(5072), 3, + STATE(5177), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96793] = 6, + [98644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7169), 1, - anon_sym_GT, - STATE(5073), 3, + ACTIONS(9005), 1, + anon_sym_PIPE_RBRACE, + STATE(5178), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96814] = 6, + [98665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8813), 1, - sym__dedent, - STATE(5074), 3, + ACTIONS(9007), 1, + anon_sym_RBRACE, + STATE(5179), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96835] = 6, + [98686] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8815), 1, - sym_identifier, - STATE(5075), 3, + ACTIONS(9009), 1, + anon_sym_GT, + STATE(5180), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96856] = 6, + [98707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8817), 1, - anon_sym_POUNDendif, - STATE(5076), 3, + ACTIONS(9011), 1, + anon_sym_RPAREN, + STATE(5181), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96877] = 6, - ACTIONS(3), 1, + [98728] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(2999), 1, + aux_sym_preproc_line_token2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8819), 1, - anon_sym_member, - STATE(5077), 3, + STATE(5182), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96898] = 6, + [98749] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8821), 1, - sym_identifier, - STATE(5078), 3, + ACTIONS(9013), 1, + anon_sym_GT, + STATE(5183), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96919] = 6, - ACTIONS(3), 1, + [98770] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(2936), 1, + aux_sym_preproc_line_token2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8823), 1, - anon_sym_PIPE_RBRACE, - STATE(5079), 3, + STATE(5184), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96940] = 6, + [98791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8825), 1, - anon_sym_PIPE, - STATE(5080), 3, + ACTIONS(9015), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5185), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96961] = 6, - ACTIONS(3), 1, + [98812] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(2968), 1, + aux_sym_preproc_line_token2, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + STATE(5186), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [98833] = 6, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(8827), 1, - anon_sym_RBRACE, - STATE(5081), 3, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(2902), 1, + aux_sym_preproc_line_token2, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + STATE(5187), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [96982] = 6, + [98854] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8829), 1, - anon_sym_GT, - STATE(5082), 3, + ACTIONS(9017), 1, + anon_sym_DASH_GT, + STATE(5188), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97003] = 6, + [98875] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8831), 1, - anon_sym_RPAREN, - STATE(5083), 3, + ACTIONS(9019), 1, + anon_sym_EQ, + STATE(5189), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97024] = 6, + [98896] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8833), 1, - anon_sym_GT, - STATE(5084), 3, + ACTIONS(9021), 1, + sym_identifier, + STATE(5190), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97045] = 6, + [98917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8835), 1, - anon_sym_RBRACK, - STATE(5085), 3, + ACTIONS(9023), 1, + sym_int, + STATE(5191), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97066] = 6, + [98938] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(5086), 3, + ACTIONS(9025), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5192), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97087] = 6, + [98959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8839), 1, - sym__indent, - STATE(5087), 3, + ACTIONS(9027), 1, + anon_sym_EQ, + STATE(5193), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97108] = 6, + [98980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8841), 1, - anon_sym_COLON, - STATE(5088), 3, + ACTIONS(9029), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5194), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97129] = 6, + [99001] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8843), 1, - sym_identifier, - STATE(5089), 3, + ACTIONS(9031), 1, + anon_sym_RBRACE, + STATE(5195), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97150] = 6, + [99022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3454), 1, - anon_sym_EQ2, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(5090), 3, + ACTIONS(9033), 1, + anon_sym_PIPE_RBRACE, + STATE(5196), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97171] = 6, + [99043] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8845), 1, + ACTIONS(9035), 1, sym_identifier, - STATE(5091), 3, + STATE(5197), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97192] = 6, + [99064] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8847), 1, - sym__dedent, - STATE(5092), 3, + ACTIONS(9037), 1, + sym_identifier, + STATE(5198), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97213] = 6, + [99085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8849), 1, - sym_identifier, - STATE(5093), 3, + ACTIONS(9039), 1, + sym__dedent, + STATE(5199), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97234] = 6, + [99106] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8851), 1, - sym_identifier, - STATE(5094), 3, + ACTIONS(9041), 1, + anon_sym_PIPE_RBRACK, + STATE(5200), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97255] = 6, + [99127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8853), 1, - anon_sym_RBRACE, - STATE(5095), 3, + ACTIONS(9043), 1, + anon_sym_RBRACK, + STATE(5201), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97276] = 6, + [99148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8855), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5096), 3, + ACTIONS(9045), 1, + sym__indent, + STATE(5202), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97297] = 6, + [99169] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8857), 1, - anon_sym_get, - STATE(5097), 3, + ACTIONS(9047), 1, + sym__indent, + STATE(5203), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97318] = 6, + [99190] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8859), 1, + ACTIONS(9049), 1, sym__indent, - STATE(5098), 3, + STATE(5204), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97339] = 6, + [99211] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8861), 1, + ACTIONS(9051), 1, sym__indent, - STATE(5099), 3, + STATE(5205), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97360] = 6, + [99232] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8863), 1, - sym__dedent, - STATE(5100), 3, + ACTIONS(9053), 1, + anon_sym_RPAREN, + STATE(5206), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97381] = 6, + [99253] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8865), 1, - anon_sym_set, - STATE(5101), 3, + ACTIONS(9055), 1, + anon_sym_RPAREN, + STATE(5207), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97402] = 6, + [99274] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8865), 1, - anon_sym_get, - STATE(5102), 3, + ACTIONS(9057), 1, + sym_identifier, + STATE(5208), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97423] = 6, + [99295] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8867), 1, - anon_sym_PIPE_RBRACK, - STATE(5103), 3, + ACTIONS(9059), 1, + anon_sym_COLON, + STATE(5209), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97444] = 6, + [99316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8869), 1, - anon_sym_RBRACK, - STATE(5104), 3, + ACTIONS(7400), 1, + anon_sym_GT, + STATE(5210), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97465] = 6, + [99337] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8871), 1, + ACTIONS(9061), 1, sym__indent, - STATE(5105), 3, + STATE(5211), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97486] = 6, + [99358] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8873), 1, - anon_sym_RPAREN, - STATE(5106), 3, + ACTIONS(9063), 1, + anon_sym_POUNDendif, + STATE(5212), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97507] = 6, + [99379] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8875), 1, - anon_sym_RPAREN, - STATE(5107), 3, + ACTIONS(9065), 1, + anon_sym_EQ, + STATE(5213), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97528] = 6, + [99400] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8877), 1, - sym_identifier, - STATE(5108), 3, + ACTIONS(9067), 1, + sym__indent, + STATE(5214), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97549] = 6, + [99421] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8879), 1, - sym_identifier, - STATE(5109), 3, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(5215), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97570] = 6, + [99442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(891), 1, - sym__dedent, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(5110), 3, + ACTIONS(9071), 1, + anon_sym_DASH_GT, + STATE(5216), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97591] = 6, + [99463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8881), 1, - anon_sym_unit, - STATE(5111), 3, + ACTIONS(9073), 1, + sym_identifier, + STATE(5217), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97612] = 6, + [99484] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8883), 1, - sym_identifier, - STATE(5112), 3, + ACTIONS(7404), 1, + anon_sym_GT, + STATE(5218), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97633] = 6, + [99505] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8885), 1, + ACTIONS(9075), 1, sym__indent, - STATE(5113), 3, + STATE(5219), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97654] = 6, + [99526] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8887), 1, + ACTIONS(9077), 1, sym__dedent, - STATE(5114), 3, + STATE(5220), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97675] = 6, + [99547] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8889), 1, - sym__indent, - STATE(5115), 3, + ACTIONS(9079), 1, + sym_identifier, + STATE(5221), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97696] = 6, + [99568] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8891), 1, - anon_sym_GT, - STATE(5116), 3, + ACTIONS(9081), 1, + sym__indent, + STATE(5222), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97717] = 6, + [99589] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8893), 1, - anon_sym_RBRACE, - STATE(5117), 3, + ACTIONS(9083), 1, + anon_sym_GT, + STATE(5223), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97738] = 6, + [99610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8895), 1, - sym_identifier, - STATE(5118), 3, + ACTIONS(9085), 1, + sym__indent, + STATE(5224), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97759] = 6, + [99631] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8897), 1, - anon_sym_POUNDendif, - STATE(5119), 3, + ACTIONS(9087), 1, + anon_sym_RBRACE, + STATE(5225), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97780] = 6, + [99652] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8899), 1, - sym_identifier, - STATE(5120), 3, + ACTIONS(9089), 1, + sym__indent, + STATE(5226), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97801] = 6, + [99673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7085), 1, - anon_sym_GT, - STATE(5121), 3, + ACTIONS(9091), 1, + anon_sym_POUNDendif, + STATE(5227), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97822] = 6, + [99694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8901), 1, - anon_sym_POUNDendif, - STATE(5122), 3, + ACTIONS(9093), 1, + sym__indent, + STATE(5228), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97843] = 6, + [99715] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8903), 1, + ACTIONS(9095), 1, sym_identifier, - STATE(5123), 3, + STATE(5229), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97864] = 6, + [99736] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8905), 1, - anon_sym_COLON, - STATE(5124), 3, + ACTIONS(9097), 1, + anon_sym_PIPE, + STATE(5230), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97885] = 6, + [99757] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8907), 1, - anon_sym_PIPE_RBRACE, - STATE(5125), 3, + ACTIONS(9099), 1, + sym__dedent, + STATE(5231), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97906] = 6, + [99778] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8909), 1, + ACTIONS(9101), 1, sym_identifier, - STATE(5126), 3, + STATE(5232), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97927] = 6, + [99799] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8911), 1, - sym_identifier, - STATE(5127), 3, + ACTIONS(9103), 1, + sym__indent, + STATE(5233), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97948] = 6, + [99820] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8913), 1, - anon_sym_POUNDendif, - STATE(5128), 3, + ACTIONS(9105), 1, + anon_sym_RBRACK, + STATE(5234), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97969] = 6, + [99841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8915), 1, - anon_sym_GT, - STATE(5129), 3, + ACTIONS(9107), 1, + sym_identifier, + STATE(5235), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [97990] = 6, + [99862] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8917), 1, - sym__indent, - STATE(5130), 3, + ACTIONS(9109), 1, + anon_sym_POUNDendif, + STATE(5236), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98011] = 6, + [99883] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8919), 1, - anon_sym_RPAREN, - STATE(5131), 3, + ACTIONS(9111), 1, + sym_int, + STATE(5237), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98032] = 6, + [99904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8921), 1, - anon_sym_GT, - STATE(5132), 3, + ACTIONS(9113), 1, + anon_sym_PIPE_RBRACE, + STATE(5238), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98053] = 6, + [99925] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8923), 1, - anon_sym_RBRACK, - STATE(5133), 3, + ACTIONS(9115), 1, + anon_sym_RBRACE, + STATE(5239), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98074] = 6, + [99946] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8925), 1, - sym_identifier, - STATE(5134), 3, + ACTIONS(9117), 1, + anon_sym_GT, + STATE(5240), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98095] = 6, + [99967] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8927), 1, - sym__indent, - STATE(5135), 3, + ACTIONS(9119), 1, + anon_sym_RPAREN, + STATE(5241), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98116] = 6, + [99988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8929), 1, - anon_sym_COLON, - STATE(5136), 3, + ACTIONS(9121), 1, + anon_sym_GT, + STATE(5242), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98137] = 6, + [100009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8931), 1, - sym__dedent, - STATE(5137), 3, + ACTIONS(9123), 1, + anon_sym_RBRACK, + STATE(5243), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98158] = 6, + [100030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8933), 1, - anon_sym_set, - STATE(5138), 3, + ACTIONS(9125), 1, + sym_identifier, + STATE(5244), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98179] = 6, + [100051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8935), 1, + ACTIONS(9127), 1, sym_identifier, - STATE(5139), 3, + STATE(5245), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98200] = 6, + [100072] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8933), 1, - anon_sym_get, - STATE(5140), 3, + ACTIONS(9129), 1, + sym_identifier, + STATE(5246), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98221] = 6, + [100093] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8937), 1, - anon_sym_DASH_GT, - STATE(5141), 3, + ACTIONS(9131), 1, + sym_identifier, + STATE(5247), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98242] = 6, + [100114] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8939), 1, - sym_identifier, - STATE(5142), 3, + ACTIONS(9133), 1, + sym_int, + STATE(5248), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98263] = 6, + [100135] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8941), 1, - sym__indent, - STATE(5143), 3, + ACTIONS(9135), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5249), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98284] = 6, + [100156] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8943), 1, - anon_sym_COLON, - STATE(5144), 3, + ACTIONS(9137), 1, + sym__indent, + STATE(5250), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98305] = 6, + [100177] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8945), 1, + ACTIONS(9139), 1, sym__indent, - STATE(5145), 3, + STATE(5251), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98326] = 6, + [100198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8947), 1, - anon_sym_SQUOTET, - STATE(5146), 3, + ACTIONS(9141), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5252), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98347] = 6, + [100219] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8949), 1, - sym_identifier, - STATE(5147), 3, + ACTIONS(9143), 1, + anon_sym_get, + STATE(5253), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98368] = 6, + [100240] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8951), 1, - sym_identifier, - STATE(5148), 3, + ACTIONS(9145), 1, + anon_sym_COLON, + STATE(5254), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98389] = 6, + [100261] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8953), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5149), 3, + ACTIONS(9147), 1, + anon_sym_LPAREN, + STATE(5255), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98410] = 6, + [100282] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8955), 1, - sym_identifier, - STATE(5150), 3, + ACTIONS(9149), 1, + anon_sym_PIPE_RBRACK, + STATE(5256), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98431] = 6, + [100303] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8957), 1, - anon_sym_EQ, - STATE(5151), 3, + ACTIONS(9151), 1, + sym__indent, + STATE(5257), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98452] = 6, + [100324] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8959), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5152), 3, + ACTIONS(9153), 1, + anon_sym_EQ, + STATE(5258), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98473] = 6, + [100345] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8961), 1, - anon_sym_PIPE_RBRACK, - STATE(5153), 3, + ACTIONS(9155), 1, + anon_sym_RBRACK, + STATE(5259), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98494] = 6, + [100366] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8963), 1, - anon_sym_RBRACK, - STATE(5154), 3, + ACTIONS(9157), 1, + anon_sym_RPAREN, + STATE(5260), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98515] = 6, + [100387] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8965), 1, + ACTIONS(9159), 1, sym_identifier, - STATE(5155), 3, + STATE(5261), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98536] = 6, + [100408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8967), 1, - sym_identifier, - STATE(5156), 3, + ACTIONS(9161), 1, + anon_sym_RPAREN, + STATE(5262), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98557] = 6, + [100429] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8969), 1, - anon_sym_RPAREN, - STATE(5157), 3, + ACTIONS(9163), 1, + sym_identifier, + STATE(5263), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98578] = 6, + [100450] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8971), 1, - anon_sym_RPAREN, - STATE(5158), 3, + ACTIONS(9165), 1, + sym_identifier, + STATE(5264), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98599] = 6, + [100471] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8973), 1, + ACTIONS(9167), 1, sym__indent, - STATE(5159), 3, + STATE(5265), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98620] = 6, + [100492] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8975), 1, - anon_sym_RPAREN, - STATE(5160), 3, + ACTIONS(9169), 1, + anon_sym_GT, + STATE(5266), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98641] = 6, + [100513] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8977), 1, - sym_identifier, - STATE(5161), 3, + ACTIONS(9171), 1, + sym__indent, + STATE(5267), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98662] = 6, + [100534] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - sym__indent, - STATE(5162), 3, + ACTIONS(9173), 1, + sym__dedent, + STATE(5268), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98683] = 6, + [100555] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8857), 1, + ACTIONS(9143), 1, anon_sym_set, - STATE(5163), 3, + STATE(5269), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98704] = 6, + [100576] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8981), 1, - anon_sym_GT, - STATE(5164), 3, + ACTIONS(9175), 1, + sym_identifier, + STATE(5270), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98725] = 6, + [100597] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8983), 1, - anon_sym_RBRACE, - STATE(5165), 3, + ACTIONS(9177), 1, + anon_sym_GT, + STATE(5271), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98746] = 6, + [100618] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8985), 1, - anon_sym_POUNDendif, - STATE(5166), 3, + ACTIONS(9179), 1, + sym_identifier, + STATE(5272), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98767] = 6, + [100639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7139), 1, - anon_sym_GT, - STATE(5167), 3, + ACTIONS(9181), 1, + anon_sym_RBRACE, + STATE(5273), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98788] = 6, + [100660] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8987), 1, + ACTIONS(9183), 1, anon_sym_POUNDendif, - STATE(5168), 3, + STATE(5274), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98809] = 6, + [100681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8989), 1, - sym_identifier, - STATE(5169), 3, + ACTIONS(9185), 1, + anon_sym_COLON, + STATE(5275), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98830] = 6, + [100702] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8991), 1, - sym_identifier, - STATE(5170), 3, + ACTIONS(7302), 1, + anon_sym_GT, + STATE(5276), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98851] = 6, + [100723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8993), 1, - anon_sym_PIPE_RBRACE, - STATE(5171), 3, + ACTIONS(9187), 1, + anon_sym_POUNDendif, + STATE(5277), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98872] = 6, + [100744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8995), 1, - anon_sym_RBRACE, - STATE(5172), 3, + ACTIONS(9189), 1, + sym_identifier, + STATE(5278), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98893] = 6, + [100765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8997), 1, - sym__indent, - STATE(5173), 3, + ACTIONS(9191), 1, + sym_identifier, + STATE(5279), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98914] = 6, + [100786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(8999), 1, - anon_sym_GT, - STATE(5174), 3, + ACTIONS(9193), 1, + sym_int, + STATE(5280), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98935] = 6, + [100807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9001), 1, - sym__indent, - STATE(5175), 3, + ACTIONS(9195), 1, + sym_identifier, + STATE(5281), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98956] = 6, + [100828] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9003), 1, - anon_sym_RPAREN, - STATE(5176), 3, + ACTIONS(9197), 1, + sym__indent, + STATE(5282), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98977] = 6, + [100849] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9005), 1, - anon_sym_GT, - STATE(5177), 3, + ACTIONS(9199), 1, + sym__dedent, + STATE(5283), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [98998] = 6, + [100870] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9007), 1, - anon_sym_RBRACK, - STATE(5178), 3, + ACTIONS(9201), 1, + anon_sym_PIPE_RBRACE, + STATE(5284), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99019] = 6, + [100891] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9009), 1, - anon_sym_EQ, - STATE(5179), 3, + ACTIONS(9203), 1, + anon_sym_RBRACE, + STATE(5285), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99040] = 6, + [100912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9011), 1, - sym_identifier, - STATE(5180), 3, + ACTIONS(9205), 1, + anon_sym_POUNDendif, + STATE(5286), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99061] = 6, + [100933] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9013), 1, - anon_sym_EQ, - STATE(5181), 3, + ACTIONS(9207), 1, + sym__indent, + STATE(5287), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99082] = 6, + [100954] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9015), 1, - sym_identifier, - STATE(5182), 3, + ACTIONS(9209), 1, + sym__indent, + STATE(5288), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99103] = 6, + [100975] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9017), 1, - sym_identifier, - STATE(5183), 3, + ACTIONS(9211), 1, + anon_sym_RBRACE, + STATE(5289), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99124] = 6, + [100996] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9019), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5184), 3, + ACTIONS(9213), 1, + anon_sym_GT, + STATE(5290), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99145] = 6, + [101017] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9021), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5185), 3, + ACTIONS(9215), 1, + sym_identifier, + STATE(5291), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99166] = 6, - ACTIONS(3), 1, + [101038] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9023), 1, - sym__indent, - STATE(5186), 3, + ACTIONS(9217), 1, + aux_sym_preproc_line_token2, + STATE(5292), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99187] = 6, + [101059] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9025), 1, - anon_sym_PIPE_RBRACK, - STATE(5187), 3, + ACTIONS(9219), 1, + anon_sym_GT, + STATE(5293), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99208] = 6, + [101080] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9027), 1, - sym__indent, - STATE(5188), 3, + ACTIONS(9221), 1, + sym_identifier, + STATE(5294), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99229] = 6, + [101101] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9029), 1, - anon_sym_RBRACK, - STATE(5189), 3, + ACTIONS(9223), 1, + sym__indent, + STATE(5295), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99250] = 6, - ACTIONS(3), 1, + [101122] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9031), 1, - anon_sym_RPAREN, - STATE(5190), 3, + ACTIONS(9225), 1, + aux_sym_preproc_line_token2, + STATE(5296), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99271] = 6, + [101143] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9033), 1, - anon_sym_RPAREN, - STATE(5191), 3, + ACTIONS(9227), 1, + sym__indent, + STATE(5297), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99292] = 6, + [101164] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9035), 1, - sym_identifier, - STATE(5192), 3, + ACTIONS(9229), 1, + anon_sym_RPAREN, + STATE(5298), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99313] = 6, + [101185] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4360), 1, - sym__dedent, - STATE(5193), 3, + ACTIONS(9231), 1, + sym_int, + STATE(5299), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99334] = 6, + [101206] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9037), 1, - anon_sym_get, - STATE(5194), 3, + ACTIONS(9233), 1, + sym_identifier, + STATE(5300), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99355] = 6, + [101227] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9039), 1, - sym_identifier, - STATE(5195), 3, + ACTIONS(9235), 1, + anon_sym_GT, + STATE(5301), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99376] = 6, + [101248] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9041), 1, + ACTIONS(9237), 1, sym_identifier, - STATE(5196), 3, + STATE(5302), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99397] = 6, + [101269] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9037), 1, - anon_sym_set, - STATE(5197), 3, + ACTIONS(9239), 1, + anon_sym_RBRACE, + STATE(5303), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99418] = 6, + [101290] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9043), 1, - anon_sym_get, - STATE(5198), 3, + ACTIONS(9241), 1, + sym_identifier, + STATE(5304), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99439] = 6, + [101311] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9045), 1, - sym__indent, - STATE(5199), 3, + ACTIONS(9243), 1, + sym__dedent, + STATE(5305), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99460] = 6, + [101332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9047), 1, - sym__indent, - STATE(5200), 3, + ACTIONS(9245), 1, + sym__dedent, + STATE(5306), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99481] = 6, + [101353] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9049), 1, - sym__indent, - STATE(5201), 3, + ACTIONS(9247), 1, + sym_identifier, + STATE(5307), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99502] = 6, + [101374] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9043), 1, - anon_sym_set, - STATE(5202), 3, + ACTIONS(9249), 1, + sym_identifier, + STATE(5308), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99523] = 6, + [101395] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9051), 1, - sym__indent, - STATE(5203), 3, + ACTIONS(9251), 1, + anon_sym_set, + STATE(5309), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99544] = 6, + [101416] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9053), 1, - anon_sym_and, - STATE(5204), 3, + ACTIONS(9251), 1, + anon_sym_get, + STATE(5310), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99565] = 6, + [101437] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9055), 1, - anon_sym_get, - STATE(5205), 3, + ACTIONS(9253), 1, + sym__indent, + STATE(5311), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99586] = 6, + [101458] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9055), 1, - anon_sym_set, - STATE(5206), 3, + ACTIONS(9255), 1, + sym_identifier, + STATE(5312), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99607] = 6, + [101479] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9057), 1, - sym_identifier, - STATE(5207), 3, + ACTIONS(9257), 1, + sym_int, + STATE(5313), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99628] = 6, + [101500] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9059), 1, - sym_identifier, - STATE(5208), 3, + ACTIONS(9259), 1, + sym__indent, + STATE(5314), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99649] = 6, + [101521] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9061), 1, - sym_identifier, - STATE(5209), 3, + ACTIONS(9261), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5315), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99670] = 6, + [101542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(1700), 1, + ts_builtin_sym_end, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9063), 1, - sym__dedent, - STATE(5210), 3, + STATE(5316), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99691] = 6, + [101563] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9065), 1, - sym__dedent, - STATE(5211), 3, + ACTIONS(9263), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5317), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99712] = 6, + [101584] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9067), 1, - sym__indent, - STATE(5212), 3, + ACTIONS(9265), 1, + anon_sym_set, + STATE(5318), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99733] = 6, + [101605] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9069), 1, - anon_sym_GT, - STATE(5213), 3, + ACTIONS(9265), 1, + anon_sym_get, + STATE(5319), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99754] = 6, + [101626] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9071), 1, - sym__indent, - STATE(5214), 3, + ACTIONS(9267), 1, + anon_sym_set, + STATE(5320), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99775] = 6, + [101647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1859), 1, - ts_builtin_sym_end, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(5215), 3, + ACTIONS(9269), 1, + sym_identifier, + STATE(5321), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99796] = 6, + [101668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9073), 1, - anon_sym_RBRACE, - STATE(5216), 3, + ACTIONS(9271), 1, + sym_identifier, + STATE(5322), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99817] = 6, + [101689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9075), 1, - anon_sym_RPAREN, - STATE(5217), 3, + ACTIONS(9267), 1, + anon_sym_get, + STATE(5323), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99838] = 6, + [101710] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9077), 1, - anon_sym_COLON, - STATE(5218), 3, + ACTIONS(9273), 1, + anon_sym_PIPE_RBRACK, + STATE(5324), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99859] = 6, + [101731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7191), 1, - anon_sym_GT, - STATE(5219), 3, + ACTIONS(9275), 1, + sym__indent, + STATE(5325), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99880] = 6, + [101752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9079), 1, - anon_sym_POUNDendif, - STATE(5220), 3, + ACTIONS(9277), 1, + sym__indent, + STATE(5326), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99901] = 6, + [101773] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9081), 1, - sym_identifier, - STATE(5221), 3, + ACTIONS(9279), 1, + sym__indent, + STATE(5327), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99922] = 6, + [101794] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(5222), 3, + ACTIONS(9281), 1, + anon_sym_RBRACK, + STATE(5328), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99943] = 6, + [101815] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9085), 1, - anon_sym_PIPE_RBRACE, - STATE(5223), 3, + ACTIONS(9283), 1, + anon_sym_RPAREN, + STATE(5329), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99964] = 6, + [101836] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9087), 1, - anon_sym_RBRACE, - STATE(5224), 3, + ACTIONS(9285), 1, + anon_sym_RPAREN, + STATE(5330), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [99985] = 6, + [101857] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9089), 1, - sym__indent, - STATE(5225), 3, + ACTIONS(9287), 1, + sym_identifier, + STATE(5331), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100006] = 6, + [101878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9091), 1, - anon_sym_GT, - STATE(5226), 3, + ACTIONS(9289), 1, + anon_sym_COLON, + STATE(5332), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100027] = 6, - ACTIONS(3), 1, + [101899] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(7), 1, + ACTIONS(215), 1, sym_line_comment, - ACTIONS(9), 1, + ACTIONS(6308), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9093), 1, - sym__indent, - STATE(5227), 3, + ACTIONS(9291), 1, + aux_sym_preproc_line_token2, + STATE(5333), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100048] = 6, + [101920] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9095), 1, - anon_sym_RPAREN, - STATE(5228), 3, + ACTIONS(9293), 1, + sym_identifier, + STATE(5334), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100069] = 6, + [101941] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9097), 1, - anon_sym_GT, - STATE(5229), 3, + ACTIONS(9295), 1, + sym_identifier, + STATE(5335), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100090] = 6, + [101962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9099), 1, + ACTIONS(9297), 1, sym_identifier, - STATE(5230), 3, + STATE(5336), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100111] = 6, + [101983] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9101), 1, - sym__indent, - STATE(5231), 3, + ACTIONS(9299), 1, + anon_sym_COLON, + STATE(5337), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100132] = 6, + [102004] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9103), 1, - sym_identifier, - STATE(5232), 3, + ACTIONS(9301), 1, + sym__indent, + STATE(5338), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100153] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [102025] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(9105), 1, - aux_sym_preproc_line_token2, - STATE(5233), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9303), 1, + sym_int, + STATE(5339), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100174] = 6, + [102046] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9107), 1, - sym_identifier, - STATE(5234), 3, + ACTIONS(9305), 1, + sym__indent, + STATE(5340), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100195] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [102067] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(9109), 1, - aux_sym_preproc_line_token2, - STATE(5235), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9307), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5341), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100216] = 6, + [102088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9111), 1, - sym__indent, - STATE(5236), 3, + ACTIONS(9309), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5342), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100237] = 6, + [102109] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9113), 1, - sym__indent, - STATE(5237), 3, + ACTIONS(9311), 1, + anon_sym_COLON, + STATE(5343), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100258] = 6, + [102130] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9115), 1, - anon_sym_RBRACK, - STATE(5238), 3, + ACTIONS(9313), 1, + sym_identifier, + STATE(5344), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100279] = 6, + [102151] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9117), 1, - anon_sym_RPAREN, - STATE(5239), 3, + ACTIONS(9315), 1, + anon_sym_unit, + STATE(5345), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100300] = 6, + [102172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9119), 1, - anon_sym_EQ, - STATE(5240), 3, + ACTIONS(9317), 1, + anon_sym_GT, + STATE(5346), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100321] = 6, + [102193] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9121), 1, + ACTIONS(9319), 1, sym_identifier, - STATE(5241), 3, + STATE(5347), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100342] = 6, + [102214] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9123), 1, - anon_sym_EQ, - STATE(5242), 3, + ACTIONS(9321), 1, + sym_identifier, + STATE(5348), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100363] = 6, + [102235] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9125), 1, - anon_sym_RPAREN, - STATE(5243), 3, + ACTIONS(9323), 1, + anon_sym_RBRACE, + STATE(5349), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100384] = 6, + [102256] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9127), 1, - anon_sym_EQ, - STATE(5244), 3, + ACTIONS(9325), 1, + anon_sym_POUNDendif, + STATE(5350), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100405] = 6, + [102277] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9129), 1, - sym_identifier, - STATE(5245), 3, + ACTIONS(9327), 1, + sym__indent, + STATE(5351), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100426] = 6, + [102298] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9131), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5246), 3, + ACTIONS(7322), 1, + anon_sym_GT, + STATE(5352), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100447] = 6, + [102319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9133), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5247), 3, + ACTIONS(9329), 1, + sym__indent, + STATE(5353), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100468] = 6, + [102340] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9135), 1, - anon_sym_EQ, - STATE(5248), 3, + ACTIONS(9331), 1, + sym__dedent, + STATE(5354), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100489] = 6, + [102361] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(2649), 1, - anon_sym_RPAREN, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(5249), 3, + ACTIONS(9333), 1, + anon_sym_POUNDendif, + STATE(5355), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100510] = 6, + [102382] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9137), 1, - sym__indent, - STATE(5250), 3, + ACTIONS(9335), 1, + sym_int, + STATE(5356), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100531] = 6, + [102403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9139), 1, - sym__indent, - STATE(5251), 3, + ACTIONS(9337), 1, + sym__dedent, + STATE(5357), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100552] = 6, + [102424] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9141), 1, - anon_sym_PIPE_RBRACK, - STATE(5252), 3, + ACTIONS(9339), 1, + anon_sym_COLON, + STATE(5358), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100573] = 6, + [102445] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9143), 1, - anon_sym_RBRACK, - STATE(5253), 3, + ACTIONS(9341), 1, + anon_sym_PIPE_RBRACE, + STATE(5359), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100594] = 6, + [102466] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4352), 1, - sym__dedent, - STATE(5254), 3, + ACTIONS(9343), 1, + sym_identifier, + STATE(5360), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100615] = 6, + [102487] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9145), 1, - sym__indent, - STATE(5255), 3, + ACTIONS(9345), 1, + sym_identifier, + STATE(5361), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100636] = 6, + [102508] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9147), 1, - sym__indent, - STATE(5256), 3, + ACTIONS(9347), 1, + anon_sym_RPAREN, + STATE(5362), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100657] = 6, + [102529] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9149), 1, + ACTIONS(9349), 1, anon_sym_RPAREN, - STATE(5257), 3, + STATE(5363), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100678] = 6, + [102550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9151), 1, - anon_sym_RPAREN, - STATE(5258), 3, + ACTIONS(9351), 1, + sym__indent, + STATE(5364), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100699] = 6, + [102571] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9153), 1, - sym_identifier, - STATE(5259), 3, + ACTIONS(9353), 1, + anon_sym_GT, + STATE(5365), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100720] = 6, + [102592] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9155), 1, + ACTIONS(9355), 1, sym__indent, - STATE(5260), 3, + STATE(5366), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100741] = 6, + [102613] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9157), 1, - sym__indent, - STATE(5261), 3, + ACTIONS(9357), 1, + anon_sym_RPAREN, + STATE(5367), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100762] = 6, + [102634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9159), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5262), 3, + ACTIONS(9359), 1, + anon_sym_GT, + STATE(5368), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100783] = 6, + [102655] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9161), 1, - anon_sym_get, - STATE(5263), 3, + ACTIONS(9361), 1, + anon_sym_DASH_GT, + STATE(5369), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100804] = 6, + [102676] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9161), 1, - anon_sym_set, - STATE(5264), 3, + ACTIONS(9363), 1, + anon_sym_RBRACK, + STATE(5370), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100825] = 6, + [102697] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9163), 1, - sym__indent, - STATE(5265), 3, + ACTIONS(9365), 1, + anon_sym_EQ, + STATE(5371), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100846] = 6, + [102718] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9165), 1, - sym__indent, - STATE(5266), 3, + ACTIONS(9367), 1, + sym_identifier, + STATE(5372), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100867] = 6, + [102739] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9167), 1, - anon_sym_get, - STATE(5267), 3, + ACTIONS(9369), 1, + sym_identifier, + STATE(5373), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100888] = 6, + [102760] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9169), 1, - sym__indent, - STATE(5268), 3, + ACTIONS(9371), 1, + sym_identifier, + STATE(5374), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100909] = 6, + [102781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9167), 1, - anon_sym_set, - STATE(5269), 3, + ACTIONS(9373), 1, + anon_sym_RPAREN, + STATE(5375), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100930] = 6, + [102802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9171), 1, - sym__indent, - STATE(5270), 3, + ACTIONS(9375), 1, + anon_sym_get, + STATE(5376), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100951] = 6, + [102823] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9173), 1, + ACTIONS(9377), 1, sym__indent, - STATE(5271), 3, + STATE(5377), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100972] = 6, + [102844] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9175), 1, - anon_sym_get, - STATE(5272), 3, + ACTIONS(9379), 1, + anon_sym_PIPE_RBRACK, + STATE(5378), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [100993] = 6, + [102865] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9175), 1, - anon_sym_set, - STATE(5273), 3, + ACTIONS(9381), 1, + sym__indent, + STATE(5379), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101014] = 6, + [102886] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9177), 1, - sym__dedent, - STATE(5274), 3, + ACTIONS(9383), 1, + anon_sym_RBRACK, + STATE(5380), 3, + sym_xml_doc, + sym_block_comment, + sym_preproc_line, + [102907] = 6, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(213), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(215), 1, + sym_line_comment, + ACTIONS(6308), 1, + aux_sym_preproc_line_token1, + ACTIONS(9385), 1, + aux_sym_xml_doc_token1, + STATE(5381), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101035] = 6, + [102928] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9179), 1, - sym__indent, - STATE(5275), 3, + ACTIONS(9387), 1, + sym_identifier, + STATE(5382), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101056] = 6, + [102949] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9181), 1, - sym__indent, - STATE(5276), 3, + ACTIONS(9389), 1, + anon_sym_RPAREN, + STATE(5383), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101077] = 6, + [102970] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9183), 1, - sym__dedent, - STATE(5277), 3, + ACTIONS(9391), 1, + sym_identifier, + STATE(5384), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101098] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [102991] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(9185), 1, - aux_sym_preproc_line_token2, - STATE(5278), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9393), 1, + sym_identifier, + STATE(5385), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101119] = 6, + [103012] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9187), 1, + ACTIONS(9395), 1, sym_identifier, - STATE(5279), 3, + STATE(5386), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101140] = 6, + [103033] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9189), 1, - sym__indent, - STATE(5280), 3, + ACTIONS(9397), 1, + anon_sym_EQ, + STATE(5387), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101161] = 6, + [103054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9191), 1, - sym__indent, - STATE(5281), 3, + ACTIONS(9399), 1, + sym_identifier, + STATE(5388), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101182] = 6, + [103075] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9193), 1, - anon_sym_GT, - STATE(5282), 3, + ACTIONS(9401), 1, + sym_identifier, + STATE(5389), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101203] = 6, + [103096] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9195), 1, - sym_int, - STATE(5283), 3, + ACTIONS(9403), 1, + sym__indent, + STATE(5390), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101224] = 6, + [103117] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9197), 1, - anon_sym_RBRACE, - STATE(5284), 3, + ACTIONS(9405), 1, + sym__indent, + STATE(5391), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101245] = 6, + [103138] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9199), 1, - sym__indent, - STATE(5285), 3, + ACTIONS(9375), 1, + anon_sym_set, + STATE(5392), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101266] = 6, + [103159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9201), 1, - sym__indent, - STATE(5286), 3, + ACTIONS(9407), 1, + anon_sym_get, + STATE(5393), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101287] = 6, + [103180] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9203), 1, - anon_sym_POUNDendif, - STATE(5287), 3, + ACTIONS(9409), 1, + sym__dedent, + STATE(5394), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101308] = 6, + [103201] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9205), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5288), 3, + ACTIONS(9407), 1, + anon_sym_set, + STATE(5395), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101329] = 6, + [103222] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9207), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5289), 3, + ACTIONS(9411), 1, + anon_sym_EQ, + STATE(5396), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101350] = 6, + [103243] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9209), 1, - anon_sym_GT, - STATE(5290), 3, + ACTIONS(9413), 1, + sym_identifier, + STATE(5397), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101371] = 6, + [103264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9211), 1, - anon_sym_COLON, - STATE(5291), 3, + ACTIONS(9415), 1, + anon_sym_EQ, + STATE(5398), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101392] = 6, + [103285] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9213), 1, - sym__dedent, - STATE(5292), 3, + ACTIONS(9417), 1, + sym_identifier, + STATE(5399), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101413] = 6, + [103306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7181), 1, - anon_sym_GT, - STATE(5293), 3, + ACTIONS(9419), 1, + sym_int, + STATE(5400), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101434] = 6, + [103327] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9215), 1, - anon_sym_POUNDendif, - STATE(5294), 3, + ACTIONS(9421), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5401), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101455] = 6, + [103348] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9217), 1, - anon_sym_PIPE_RBRACE, - STATE(5295), 3, + ACTIONS(9423), 1, + anon_sym_EQ, + STATE(5402), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101476] = 6, + [103369] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9219), 1, - anon_sym_RBRACE, - STATE(5296), 3, + ACTIONS(9425), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5403), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101497] = 6, + [103390] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9221), 1, - sym_identifier, - STATE(5297), 3, + ACTIONS(9427), 1, + sym__indent, + STATE(5404), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101518] = 6, + [103411] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9223), 1, - sym_identifier, - STATE(5298), 3, + ACTIONS(9429), 1, + sym__indent, + STATE(5405), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101539] = 6, + [103432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9225), 1, - sym__indent, - STATE(5299), 3, + ACTIONS(9431), 1, + anon_sym_PIPE_RBRACK, + STATE(5406), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101560] = 6, + [103453] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9227), 1, - anon_sym_GT, - STATE(5300), 3, + ACTIONS(9433), 1, + anon_sym_RBRACK, + STATE(5407), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101581] = 6, + [103474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9229), 1, - anon_sym_RPAREN, - STATE(5301), 3, + ACTIONS(9435), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5408), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101602] = 6, + [103495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9231), 1, - anon_sym_GT, - STATE(5302), 3, + ACTIONS(9437), 1, + sym__indent, + STATE(5409), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101623] = 6, + [103516] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9233), 1, - anon_sym_RBRACK, - STATE(5303), 3, + ACTIONS(9439), 1, + sym__indent, + STATE(5410), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101644] = 6, + [103537] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9235), 1, - sym_identifier, - STATE(5304), 3, + ACTIONS(9441), 1, + anon_sym_RPAREN, + STATE(5411), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101665] = 6, + [103558] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9237), 1, - anon_sym_EQ, - STATE(5305), 3, + ACTIONS(9443), 1, + sym_identifier, + STATE(5412), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101686] = 6, + [103579] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9239), 1, - anon_sym_EQ, - STATE(5306), 3, + ACTIONS(9445), 1, + sym_identifier, + STATE(5413), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101707] = 6, + [103600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9241), 1, - sym_identifier, - STATE(5307), 3, + ACTIONS(9447), 1, + sym__indent, + STATE(5414), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101728] = 6, + [103621] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9243), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5308), 3, + ACTIONS(9449), 1, + sym__indent, + STATE(5415), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101749] = 6, + [103642] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9245), 1, - anon_sym_DASH_GT, - STATE(5309), 3, + ACTIONS(9451), 1, + anon_sym_COLON, + STATE(5416), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101770] = 6, + [103663] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9247), 1, - anon_sym_GT, - STATE(5310), 3, + ACTIONS(9453), 1, + anon_sym_RPAREN, + STATE(5417), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101791] = 6, + [103684] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9249), 1, - anon_sym_PIPE_RBRACK, - STATE(5311), 3, + ACTIONS(9455), 1, + sym_identifier, + STATE(5418), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101812] = 6, + [103705] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9251), 1, - anon_sym_PIPE_RBRACK, - STATE(5312), 3, + ACTIONS(9457), 1, + sym__indent, + STATE(5419), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101833] = 6, + [103726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9253), 1, - anon_sym_RBRACK, - STATE(5313), 3, + ACTIONS(9459), 1, + sym__indent, + STATE(5420), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101854] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [103747] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(9255), 1, - aux_sym_xml_doc_token1, - STATE(5314), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9461), 1, + anon_sym_new, + STATE(5421), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101875] = 6, + [103768] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9257), 1, - anon_sym_RPAREN, - STATE(5315), 3, + ACTIONS(9463), 1, + sym_identifier, + STATE(5422), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101896] = 6, + [103789] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9259), 1, - sym_identifier, - STATE(5316), 3, + ACTIONS(9465), 1, + anon_sym_struct, + STATE(5423), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101917] = 6, + [103810] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9261), 1, - anon_sym_RBRACK, - STATE(5317), 3, + ACTIONS(9467), 1, + sym__indent, + STATE(5424), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101938] = 6, + [103831] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9263), 1, - anon_sym_RPAREN, - STATE(5318), 3, + ACTIONS(9469), 1, + sym__indent, + STATE(5425), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101959] = 6, + [103852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9265), 1, - anon_sym_RPAREN, - STATE(5319), 3, + ACTIONS(9471), 1, + anon_sym_LT2, + STATE(5426), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [101980] = 6, + [103873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9267), 1, - sym_identifier, - STATE(5320), 3, + ACTIONS(9473), 1, + anon_sym_LT2, + STATE(5427), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102001] = 6, + [103894] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(4076), 1, - sym__dedent, - STATE(5321), 3, + ACTIONS(9475), 1, + anon_sym_member, + STATE(5428), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102022] = 6, + [103915] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9269), 1, - anon_sym_get, - STATE(5322), 3, + ACTIONS(9477), 1, + sym__indent, + STATE(5429), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102043] = 6, + [103936] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9269), 1, - anon_sym_set, - STATE(5323), 3, + ACTIONS(9479), 1, + sym__indent, + STATE(5430), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102064] = 6, + [103957] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9271), 1, - sym__dedent, - STATE(5324), 3, + ACTIONS(5404), 1, + anon_sym_EQ, + STATE(5431), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102085] = 6, + [103978] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9273), 1, - anon_sym_get, - STATE(5325), 3, + ACTIONS(9481), 1, + anon_sym_COLON, + STATE(5432), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102106] = 6, + [103999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9275), 1, - sym_identifier, - STATE(5326), 3, + ACTIONS(9483), 1, + anon_sym_get, + STATE(5433), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102127] = 6, + [104020] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9273), 1, - anon_sym_set, - STATE(5327), 3, + ACTIONS(9485), 1, + sym__indent, + STATE(5434), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102148] = 6, + [104041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9277), 1, - anon_sym_get, - STATE(5328), 3, + ACTIONS(9487), 1, + sym__indent, + STATE(5435), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102169] = 6, + [104062] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9277), 1, + ACTIONS(9483), 1, anon_sym_set, - STATE(5329), 3, + STATE(5436), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102190] = 6, + [104083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9279), 1, - sym__dedent, - STATE(5330), 3, + ACTIONS(9489), 1, + sym_identifier, + STATE(5437), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102211] = 6, + [104104] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9281), 1, - anon_sym_COLON, - STATE(5331), 3, + ACTIONS(9491), 1, + sym_identifier, + STATE(5438), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102232] = 6, + [104125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9283), 1, - sym__dedent, - STATE(5332), 3, + ACTIONS(9493), 1, + sym__indent, + STATE(5439), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102253] = 6, + [104146] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9285), 1, - sym_identifier, - STATE(5333), 3, + ACTIONS(9495), 1, + sym__indent, + STATE(5440), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102274] = 6, + [104167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9287), 1, - sym__dedent, - STATE(5334), 3, + ACTIONS(9497), 1, + anon_sym_get, + STATE(5441), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102295] = 6, + [104188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9289), 1, - sym__dedent, - STATE(5335), 3, + ACTIONS(9497), 1, + anon_sym_set, + STATE(5442), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102316] = 6, + [104209] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9291), 1, + ACTIONS(9499), 1, anon_sym_COLON, - STATE(5336), 3, + STATE(5443), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102337] = 6, + [104230] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9293), 1, - anon_sym_GT, - STATE(5337), 3, + ACTIONS(9501), 1, + anon_sym_get, + STATE(5444), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102358] = 6, + [104251] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9295), 1, - anon_sym_RBRACE, - STATE(5338), 3, + ACTIONS(9501), 1, + anon_sym_set, + STATE(5445), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102379] = 6, + [104272] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9297), 1, - anon_sym_POUNDendif, - STATE(5339), 3, + ACTIONS(9503), 1, + sym__dedent, + STATE(5446), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102400] = 6, + [104293] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9299), 1, - sym_identifier, - STATE(5340), 3, + ACTIONS(9505), 1, + sym__dedent, + STATE(5447), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102421] = 6, + [104314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9301), 1, + ACTIONS(9507), 1, anon_sym_COLON, - STATE(5341), 3, + STATE(5448), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102442] = 6, + [104335] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9303), 1, - anon_sym_STAR_RPAREN, - STATE(5342), 3, + ACTIONS(9509), 1, + anon_sym_GT, + STATE(5449), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102463] = 6, + [104356] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9305), 1, - anon_sym_RBRACK, - STATE(5343), 3, + ACTIONS(9511), 1, + anon_sym_RBRACE, + STATE(5450), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102484] = 6, + [104377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9307), 1, - sym__dedent, - STATE(5344), 3, + ACTIONS(9513), 1, + anon_sym_POUNDendif, + STATE(5451), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102505] = 6, + [104398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9309), 1, - sym__dedent, - STATE(5345), 3, + ACTIONS(9515), 1, + sym_identifier, + STATE(5452), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102526] = 6, + [104419] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9311), 1, - sym__dedent, - STATE(5346), 3, + ACTIONS(9517), 1, + sym__indent, + STATE(5453), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102547] = 6, + [104440] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9313), 1, - sym__dedent, - STATE(5347), 3, + ACTIONS(9519), 1, + anon_sym_COLON, + STATE(5454), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102568] = 6, + [104461] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(1447), 1, - ts_builtin_sym_end, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - STATE(5348), 3, + ACTIONS(9521), 1, + anon_sym_STAR_RPAREN, + STATE(5455), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102589] = 6, + [104482] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(7220), 1, - anon_sym_GT, - STATE(5349), 3, + ACTIONS(9523), 1, + anon_sym_EQ, + STATE(5456), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102610] = 6, + [104503] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9315), 1, - ts_builtin_sym_end, - STATE(5350), 3, + ACTIONS(9525), 1, + anon_sym_COLON, + STATE(5457), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102631] = 6, + [104524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9317), 1, + ACTIONS(9527), 1, sym_identifier, - STATE(5351), 3, + STATE(5458), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102652] = 6, + [104545] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9319), 1, - anon_sym_POUNDendif, - STATE(5352), 3, + ACTIONS(7370), 1, + anon_sym_GT, + STATE(5459), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102673] = 6, + [104566] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9321), 1, - sym__triple_quoted_content, - STATE(5353), 3, + ACTIONS(9529), 1, + anon_sym_POUNDendif, + STATE(5460), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102694] = 6, + [104587] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(1491), 1, + ts_builtin_sym_end, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9323), 1, - sym__triple_quoted_content, - STATE(5354), 3, + STATE(5461), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102715] = 6, + [104608] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9325), 1, - anon_sym_PIPE_RBRACE, - STATE(5355), 3, + ACTIONS(9531), 1, + sym_int, + STATE(5462), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102736] = 6, + [104629] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9327), 1, - anon_sym_RBRACE, - STATE(5356), 3, + ACTIONS(9533), 1, + ts_builtin_sym_end, + STATE(5463), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102757] = 6, + [104650] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9329), 1, + ACTIONS(9535), 1, sym_identifier, - STATE(5357), 3, + STATE(5464), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102778] = 6, + [104671] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9331), 1, - anon_sym_GT, - STATE(5358), 3, + ACTIONS(9537), 1, + anon_sym_RBRACE, + STATE(5465), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102799] = 6, + [104692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9333), 1, - anon_sym_RPAREN, - STATE(5359), 3, + ACTIONS(9539), 1, + sym__triple_quoted_content, + STATE(5466), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102820] = 6, + [104713] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9335), 1, - sym_identifier, - STATE(5360), 3, + ACTIONS(9541), 1, + sym__triple_quoted_content, + STATE(5467), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102841] = 6, + [104734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9337), 1, - anon_sym_GT, - STATE(5361), 3, + ACTIONS(9543), 1, + sym_identifier, + STATE(5468), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102862] = 6, + [104755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9339), 1, - anon_sym_RBRACK, - STATE(5362), 3, + ACTIONS(9545), 1, + anon_sym_PIPE_RBRACE, + STATE(5469), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102883] = 6, + [104776] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9341), 1, - sym__indent, - STATE(5363), 3, + ACTIONS(9547), 1, + anon_sym_RBRACE, + STATE(5470), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102904] = 6, + [104797] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9343), 1, - sym__indent, - STATE(5364), 3, + ACTIONS(9549), 1, + anon_sym_RPAREN, + STATE(5471), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102925] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [104818] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(2888), 1, - aux_sym_preproc_line_token2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(5365), 3, - sym_xml_doc, - sym_block_comment, - sym_preproc_line, - [102946] = 6, - ACTIONS(5), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(123), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, - sym_line_comment, - ACTIONS(3000), 1, - aux_sym_preproc_line_token2, - ACTIONS(6128), 1, - aux_sym_preproc_line_token1, - STATE(5366), 3, + ACTIONS(9551), 1, + anon_sym_RPAREN, + STATE(5472), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102967] = 6, + [104839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9345), 1, + ACTIONS(9553), 1, sym_identifier, - STATE(5367), 3, + STATE(5473), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [102988] = 6, + [104860] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9347), 1, - anon_sym_EQ, - STATE(5368), 3, + ACTIONS(9555), 1, + anon_sym_RBRACK, + STATE(5474), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103009] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [104881] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(2816), 1, - aux_sym_preproc_line_token2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(5369), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9557), 1, + anon_sym_PIPE_RBRACK, + STATE(5475), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103030] = 6, + [104902] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9349), 1, - anon_sym_EQ, - STATE(5370), 3, + ACTIONS(9559), 1, + sym__indent, + STATE(5476), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103051] = 6, + [104923] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9351), 1, - anon_sym_EQ, - STATE(5371), 3, + ACTIONS(9561), 1, + sym__indent, + STATE(5477), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103072] = 6, + [104944] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9353), 1, - sym_identifier, - STATE(5372), 3, + ACTIONS(9563), 1, + sym__indent, + STATE(5478), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103093] = 6, + [104965] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9355), 1, - sym_identifier, - STATE(5373), 3, + ACTIONS(9565), 1, + anon_sym_GT, + STATE(5479), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103114] = 6, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(123), 1, + [104986] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(125), 1, + ACTIONS(7), 1, sym_line_comment, - ACTIONS(2954), 1, - aux_sym_preproc_line_token2, - ACTIONS(6128), 1, + ACTIONS(9), 1, aux_sym_preproc_line_token1, - STATE(5374), 3, + ACTIONS(3818), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9567), 1, + anon_sym_RPAREN, + STATE(5480), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103135] = 6, + [105007] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9357), 1, - sym_identifier, - STATE(5375), 3, + ACTIONS(9569), 1, + anon_sym_GT, + STATE(5481), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103156] = 6, + [105028] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9359), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5376), 3, + ACTIONS(9571), 1, + anon_sym_RBRACK, + STATE(5482), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103177] = 6, + [105049] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9361), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5377), 3, + ACTIONS(9573), 1, + anon_sym_COLON, + STATE(5483), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103198] = 6, + [105070] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(7), 1, sym_line_comment, ACTIONS(9), 1, aux_sym_preproc_line_token1, - ACTIONS(3655), 1, + ACTIONS(3818), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - anon_sym_PIPE_RBRACK, - STATE(5378), 3, + ACTIONS(9575), 1, + anon_sym_EQ, + STATE(5484), 3, sym_xml_doc, sym_block_comment, sym_preproc_line, - [103219] = 1, - ACTIONS(9365), 1, + [105091] = 1, + ACTIONS(9577), 1, ts_builtin_sym_end, - [103223] = 1, - ACTIONS(9367), 1, + [105095] = 1, + ACTIONS(9579), 1, ts_builtin_sym_end, - [103227] = 1, - ACTIONS(9369), 1, + [105099] = 1, + ACTIONS(9581), 1, ts_builtin_sym_end, - [103231] = 1, - ACTIONS(9371), 1, + [105103] = 1, + ACTIONS(9583), 1, ts_builtin_sym_end, - [103235] = 1, - ACTIONS(9373), 1, + [105107] = 1, + ACTIONS(9585), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2534)] = 0, - [SMALL_STATE(2535)] = 81, - [SMALL_STATE(2536)] = 164, - [SMALL_STATE(2537)] = 247, - [SMALL_STATE(2538)] = 325, - [SMALL_STATE(2539)] = 405, - [SMALL_STATE(2540)] = 565, - [SMALL_STATE(2541)] = 643, - [SMALL_STATE(2542)] = 723, - [SMALL_STATE(2543)] = 801, - [SMALL_STATE(2544)] = 879, - [SMALL_STATE(2545)] = 1039, - [SMALL_STATE(2546)] = 1116, - [SMALL_STATE(2547)] = 1193, - [SMALL_STATE(2548)] = 1270, - [SMALL_STATE(2549)] = 1347, - [SMALL_STATE(2550)] = 1424, - [SMALL_STATE(2551)] = 1501, - [SMALL_STATE(2552)] = 1623, - [SMALL_STATE(2553)] = 1745, - [SMALL_STATE(2554)] = 1867, - [SMALL_STATE(2555)] = 1982, - [SMALL_STATE(2556)] = 2099, - [SMALL_STATE(2557)] = 2215, - [SMALL_STATE(2558)] = 2331, - [SMALL_STATE(2559)] = 2447, - [SMALL_STATE(2560)] = 2563, - [SMALL_STATE(2561)] = 2679, - [SMALL_STATE(2562)] = 2795, - [SMALL_STATE(2563)] = 2911, - [SMALL_STATE(2564)] = 3027, - [SMALL_STATE(2565)] = 3143, - [SMALL_STATE(2566)] = 3259, - [SMALL_STATE(2567)] = 3375, - [SMALL_STATE(2568)] = 3489, - [SMALL_STATE(2569)] = 3605, - [SMALL_STATE(2570)] = 3721, - [SMALL_STATE(2571)] = 3837, - [SMALL_STATE(2572)] = 3934, - [SMALL_STATE(2573)] = 4027, - [SMALL_STATE(2574)] = 4119, - [SMALL_STATE(2575)] = 4209, - [SMALL_STATE(2576)] = 4291, - [SMALL_STATE(2577)] = 4364, - [SMALL_STATE(2578)] = 4437, - [SMALL_STATE(2579)] = 4510, - [SMALL_STATE(2580)] = 4583, - [SMALL_STATE(2581)] = 4656, - [SMALL_STATE(2582)] = 4729, - [SMALL_STATE(2583)] = 4802, - [SMALL_STATE(2584)] = 4875, - [SMALL_STATE(2585)] = 4936, - [SMALL_STATE(2586)] = 4997, - [SMALL_STATE(2587)] = 5070, - [SMALL_STATE(2588)] = 5129, - [SMALL_STATE(2589)] = 5202, - [SMALL_STATE(2590)] = 5275, - [SMALL_STATE(2591)] = 5348, - [SMALL_STATE(2592)] = 5408, - [SMALL_STATE(2593)] = 5466, - [SMALL_STATE(2594)] = 5526, - [SMALL_STATE(2595)] = 5610, - [SMALL_STATE(2596)] = 5670, - [SMALL_STATE(2597)] = 5728, - [SMALL_STATE(2598)] = 5784, - [SMALL_STATE(2599)] = 5844, - [SMALL_STATE(2600)] = 5899, - [SMALL_STATE(2601)] = 5958, - [SMALL_STATE(2602)] = 6013, - [SMALL_STATE(2603)] = 6070, - [SMALL_STATE(2604)] = 6125, - [SMALL_STATE(2605)] = 6180, - [SMALL_STATE(2606)] = 6235, - [SMALL_STATE(2607)] = 6290, - [SMALL_STATE(2608)] = 6345, - [SMALL_STATE(2609)] = 6400, - [SMALL_STATE(2610)] = 6455, - [SMALL_STATE(2611)] = 6510, - [SMALL_STATE(2612)] = 6565, - [SMALL_STATE(2613)] = 6620, - [SMALL_STATE(2614)] = 6675, - [SMALL_STATE(2615)] = 6730, - [SMALL_STATE(2616)] = 6787, - [SMALL_STATE(2617)] = 6842, - [SMALL_STATE(2618)] = 6897, - [SMALL_STATE(2619)] = 6952, - [SMALL_STATE(2620)] = 7007, - [SMALL_STATE(2621)] = 7062, - [SMALL_STATE(2622)] = 7117, - [SMALL_STATE(2623)] = 7172, - [SMALL_STATE(2624)] = 7231, - [SMALL_STATE(2625)] = 7286, - [SMALL_STATE(2626)] = 7343, - [SMALL_STATE(2627)] = 7398, - [SMALL_STATE(2628)] = 7453, - [SMALL_STATE(2629)] = 7508, - [SMALL_STATE(2630)] = 7563, - [SMALL_STATE(2631)] = 7618, - [SMALL_STATE(2632)] = 7673, - [SMALL_STATE(2633)] = 7728, - [SMALL_STATE(2634)] = 7783, - [SMALL_STATE(2635)] = 7840, - [SMALL_STATE(2636)] = 7895, - [SMALL_STATE(2637)] = 7950, - [SMALL_STATE(2638)] = 8005, - [SMALL_STATE(2639)] = 8060, - [SMALL_STATE(2640)] = 8115, - [SMALL_STATE(2641)] = 8170, - [SMALL_STATE(2642)] = 8225, - [SMALL_STATE(2643)] = 8280, - [SMALL_STATE(2644)] = 8335, - [SMALL_STATE(2645)] = 8389, - [SMALL_STATE(2646)] = 8443, - [SMALL_STATE(2647)] = 8497, - [SMALL_STATE(2648)] = 8551, - [SMALL_STATE(2649)] = 8605, - [SMALL_STATE(2650)] = 8659, - [SMALL_STATE(2651)] = 8713, - [SMALL_STATE(2652)] = 8767, - [SMALL_STATE(2653)] = 8821, - [SMALL_STATE(2654)] = 8877, - [SMALL_STATE(2655)] = 8931, - [SMALL_STATE(2656)] = 8985, - [SMALL_STATE(2657)] = 9039, - [SMALL_STATE(2658)] = 9093, - [SMALL_STATE(2659)] = 9149, - [SMALL_STATE(2660)] = 9203, - [SMALL_STATE(2661)] = 9257, - [SMALL_STATE(2662)] = 9311, - [SMALL_STATE(2663)] = 9365, - [SMALL_STATE(2664)] = 9419, - [SMALL_STATE(2665)] = 9473, - [SMALL_STATE(2666)] = 9527, - [SMALL_STATE(2667)] = 9584, - [SMALL_STATE(2668)] = 9659, - [SMALL_STATE(2669)] = 9714, - [SMALL_STATE(2670)] = 9781, - [SMALL_STATE(2671)] = 9836, - [SMALL_STATE(2672)] = 9911, - [SMALL_STATE(2673)] = 9986, - [SMALL_STATE(2674)] = 10061, - [SMALL_STATE(2675)] = 10118, - [SMALL_STATE(2676)] = 10175, - [SMALL_STATE(2677)] = 10250, - [SMALL_STATE(2678)] = 10308, - [SMALL_STATE(2679)] = 10366, - [SMALL_STATE(2680)] = 10426, - [SMALL_STATE(2681)] = 10484, - [SMALL_STATE(2682)] = 10542, - [SMALL_STATE(2683)] = 10594, - [SMALL_STATE(2684)] = 10652, - [SMALL_STATE(2685)] = 10710, - [SMALL_STATE(2686)] = 10768, - [SMALL_STATE(2687)] = 10826, - [SMALL_STATE(2688)] = 10884, - [SMALL_STATE(2689)] = 10936, - [SMALL_STATE(2690)] = 10994, - [SMALL_STATE(2691)] = 11050, - [SMALL_STATE(2692)] = 11103, - [SMALL_STATE(2693)] = 11154, - [SMALL_STATE(2694)] = 11219, - [SMALL_STATE(2695)] = 11270, - [SMALL_STATE(2696)] = 11355, - [SMALL_STATE(2697)] = 11406, - [SMALL_STATE(2698)] = 11457, - [SMALL_STATE(2699)] = 11508, - [SMALL_STATE(2700)] = 11559, - [SMALL_STATE(2701)] = 11610, - [SMALL_STATE(2702)] = 11665, - [SMALL_STATE(2703)] = 11716, - [SMALL_STATE(2704)] = 11801, - [SMALL_STATE(2705)] = 11852, - [SMALL_STATE(2706)] = 11903, - [SMALL_STATE(2707)] = 11954, - [SMALL_STATE(2708)] = 12005, - [SMALL_STATE(2709)] = 12056, - [SMALL_STATE(2710)] = 12111, - [SMALL_STATE(2711)] = 12162, - [SMALL_STATE(2712)] = 12213, - [SMALL_STATE(2713)] = 12264, - [SMALL_STATE(2714)] = 12315, - [SMALL_STATE(2715)] = 12366, - [SMALL_STATE(2716)] = 12417, - [SMALL_STATE(2717)] = 12472, - [SMALL_STATE(2718)] = 12527, - [SMALL_STATE(2719)] = 12578, - [SMALL_STATE(2720)] = 12629, - [SMALL_STATE(2721)] = 12680, - [SMALL_STATE(2722)] = 12731, - [SMALL_STATE(2723)] = 12786, - [SMALL_STATE(2724)] = 12839, - [SMALL_STATE(2725)] = 12890, - [SMALL_STATE(2726)] = 12975, - [SMALL_STATE(2727)] = 13026, - [SMALL_STATE(2728)] = 13077, - [SMALL_STATE(2729)] = 13132, - [SMALL_STATE(2730)] = 13197, - [SMALL_STATE(2731)] = 13262, - [SMALL_STATE(2732)] = 13317, - [SMALL_STATE(2733)] = 13372, - [SMALL_STATE(2734)] = 13425, - [SMALL_STATE(2735)] = 13480, - [SMALL_STATE(2736)] = 13565, - [SMALL_STATE(2737)] = 13616, - [SMALL_STATE(2738)] = 13701, - [SMALL_STATE(2739)] = 13786, - [SMALL_STATE(2740)] = 13885, - [SMALL_STATE(2741)] = 13938, - [SMALL_STATE(2742)] = 14003, - [SMALL_STATE(2743)] = 14054, - [SMALL_STATE(2744)] = 14105, - [SMALL_STATE(2745)] = 14158, - [SMALL_STATE(2746)] = 14257, - [SMALL_STATE(2747)] = 14308, - [SMALL_STATE(2748)] = 14359, - [SMALL_STATE(2749)] = 14438, - [SMALL_STATE(2750)] = 14489, - [SMALL_STATE(2751)] = 14574, - [SMALL_STATE(2752)] = 14627, - [SMALL_STATE(2753)] = 14712, - [SMALL_STATE(2754)] = 14767, - [SMALL_STATE(2755)] = 14818, - [SMALL_STATE(2756)] = 14868, - [SMALL_STATE(2757)] = 14918, - [SMALL_STATE(2758)] = 14972, - [SMALL_STATE(2759)] = 15054, - [SMALL_STATE(2760)] = 15104, - [SMALL_STATE(2761)] = 15154, - [SMALL_STATE(2762)] = 15204, - [SMALL_STATE(2763)] = 15258, - [SMALL_STATE(2764)] = 15308, - [SMALL_STATE(2765)] = 15360, - [SMALL_STATE(2766)] = 15424, - [SMALL_STATE(2767)] = 15488, - [SMALL_STATE(2768)] = 15538, - [SMALL_STATE(2769)] = 15588, - [SMALL_STATE(2770)] = 15638, - [SMALL_STATE(2771)] = 15688, - [SMALL_STATE(2772)] = 15738, - [SMALL_STATE(2773)] = 15788, - [SMALL_STATE(2774)] = 15838, - [SMALL_STATE(2775)] = 15888, - [SMALL_STATE(2776)] = 15938, - [SMALL_STATE(2777)] = 15988, - [SMALL_STATE(2778)] = 16038, - [SMALL_STATE(2779)] = 16088, - [SMALL_STATE(2780)] = 16138, - [SMALL_STATE(2781)] = 16188, - [SMALL_STATE(2782)] = 16238, - [SMALL_STATE(2783)] = 16288, - [SMALL_STATE(2784)] = 16338, - [SMALL_STATE(2785)] = 16388, - [SMALL_STATE(2786)] = 16438, - [SMALL_STATE(2787)] = 16488, - [SMALL_STATE(2788)] = 16538, - [SMALL_STATE(2789)] = 16634, - [SMALL_STATE(2790)] = 16684, - [SMALL_STATE(2791)] = 16738, - [SMALL_STATE(2792)] = 16788, - [SMALL_STATE(2793)] = 16838, - [SMALL_STATE(2794)] = 16888, - [SMALL_STATE(2795)] = 16938, - [SMALL_STATE(2796)] = 16988, - [SMALL_STATE(2797)] = 17052, - [SMALL_STATE(2798)] = 17102, - [SMALL_STATE(2799)] = 17152, - [SMALL_STATE(2800)] = 17202, - [SMALL_STATE(2801)] = 17252, - [SMALL_STATE(2802)] = 17302, - [SMALL_STATE(2803)] = 17352, - [SMALL_STATE(2804)] = 17402, - [SMALL_STATE(2805)] = 17452, - [SMALL_STATE(2806)] = 17502, - [SMALL_STATE(2807)] = 17584, - [SMALL_STATE(2808)] = 17634, - [SMALL_STATE(2809)] = 17716, - [SMALL_STATE(2810)] = 17798, - [SMALL_STATE(2811)] = 17848, - [SMALL_STATE(2812)] = 17902, - [SMALL_STATE(2813)] = 17954, - [SMALL_STATE(2814)] = 18018, - [SMALL_STATE(2815)] = 18068, - [SMALL_STATE(2816)] = 18118, - [SMALL_STATE(2817)] = 18168, - [SMALL_STATE(2818)] = 18218, - [SMALL_STATE(2819)] = 18268, - [SMALL_STATE(2820)] = 18318, - [SMALL_STATE(2821)] = 18368, - [SMALL_STATE(2822)] = 18418, - [SMALL_STATE(2823)] = 18468, - [SMALL_STATE(2824)] = 18532, - [SMALL_STATE(2825)] = 18586, - [SMALL_STATE(2826)] = 18666, - [SMALL_STATE(2827)] = 18717, - [SMALL_STATE(2828)] = 18765, - [SMALL_STATE(2829)] = 18827, - [SMALL_STATE(2830)] = 18875, - [SMALL_STATE(2831)] = 18923, - [SMALL_STATE(2832)] = 18971, - [SMALL_STATE(2833)] = 19019, - [SMALL_STATE(2834)] = 19067, - [SMALL_STATE(2835)] = 19115, - [SMALL_STATE(2836)] = 19163, - [SMALL_STATE(2837)] = 19225, - [SMALL_STATE(2838)] = 19273, - [SMALL_STATE(2839)] = 19321, - [SMALL_STATE(2840)] = 19383, - [SMALL_STATE(2841)] = 19435, - [SMALL_STATE(2842)] = 19483, - [SMALL_STATE(2843)] = 19535, - [SMALL_STATE(2844)] = 19583, - [SMALL_STATE(2845)] = 19631, - [SMALL_STATE(2846)] = 19683, - [SMALL_STATE(2847)] = 19745, - [SMALL_STATE(2848)] = 19821, - [SMALL_STATE(2849)] = 19871, - [SMALL_STATE(2850)] = 19919, - [SMALL_STATE(2851)] = 19967, - [SMALL_STATE(2852)] = 20029, - [SMALL_STATE(2853)] = 20079, - [SMALL_STATE(2854)] = 20131, - [SMALL_STATE(2855)] = 20179, - [SMALL_STATE(2856)] = 20227, - [SMALL_STATE(2857)] = 20275, - [SMALL_STATE(2858)] = 20323, - [SMALL_STATE(2859)] = 20371, - [SMALL_STATE(2860)] = 20419, - [SMALL_STATE(2861)] = 20481, - [SMALL_STATE(2862)] = 20529, - [SMALL_STATE(2863)] = 20577, - [SMALL_STATE(2864)] = 20625, - [SMALL_STATE(2865)] = 20677, - [SMALL_STATE(2866)] = 20739, - [SMALL_STATE(2867)] = 20787, - [SMALL_STATE(2868)] = 20837, - [SMALL_STATE(2869)] = 20887, - [SMALL_STATE(2870)] = 20939, - [SMALL_STATE(2871)] = 20987, - [SMALL_STATE(2872)] = 21049, - [SMALL_STATE(2873)] = 21097, - [SMALL_STATE(2874)] = 21147, - [SMALL_STATE(2875)] = 21197, - [SMALL_STATE(2876)] = 21247, - [SMALL_STATE(2877)] = 21295, - [SMALL_STATE(2878)] = 21347, - [SMALL_STATE(2879)] = 21395, - [SMALL_STATE(2880)] = 21443, - [SMALL_STATE(2881)] = 21491, - [SMALL_STATE(2882)] = 21543, - [SMALL_STATE(2883)] = 21595, - [SMALL_STATE(2884)] = 21657, - [SMALL_STATE(2885)] = 21705, - [SMALL_STATE(2886)] = 21753, - [SMALL_STATE(2887)] = 21803, - [SMALL_STATE(2888)] = 21851, - [SMALL_STATE(2889)] = 21899, - [SMALL_STATE(2890)] = 21947, - [SMALL_STATE(2891)] = 21995, - [SMALL_STATE(2892)] = 22043, - [SMALL_STATE(2893)] = 22091, - [SMALL_STATE(2894)] = 22139, - [SMALL_STATE(2895)] = 22187, - [SMALL_STATE(2896)] = 22239, - [SMALL_STATE(2897)] = 22287, - [SMALL_STATE(2898)] = 22335, - [SMALL_STATE(2899)] = 22383, - [SMALL_STATE(2900)] = 22431, - [SMALL_STATE(2901)] = 22479, - [SMALL_STATE(2902)] = 22531, - [SMALL_STATE(2903)] = 22579, - [SMALL_STATE(2904)] = 22641, - [SMALL_STATE(2905)] = 22691, - [SMALL_STATE(2906)] = 22739, - [SMALL_STATE(2907)] = 22787, - [SMALL_STATE(2908)] = 22835, - [SMALL_STATE(2909)] = 22887, - [SMALL_STATE(2910)] = 22938, - [SMALL_STATE(2911)] = 23029, - [SMALL_STATE(2912)] = 23120, - [SMALL_STATE(2913)] = 23168, - [SMALL_STATE(2914)] = 23253, - [SMALL_STATE(2915)] = 23298, - [SMALL_STATE(2916)] = 23383, - [SMALL_STATE(2917)] = 23428, - [SMALL_STATE(2918)] = 23473, - [SMALL_STATE(2919)] = 23532, - [SMALL_STATE(2920)] = 23577, - [SMALL_STATE(2921)] = 23662, - [SMALL_STATE(2922)] = 23707, - [SMALL_STATE(2923)] = 23792, - [SMALL_STATE(2924)] = 23837, - [SMALL_STATE(2925)] = 23882, - [SMALL_STATE(2926)] = 23946, - [SMALL_STATE(2927)] = 24010, - [SMALL_STATE(2928)] = 24074, - [SMALL_STATE(2929)] = 24138, - [SMALL_STATE(2930)] = 24202, - [SMALL_STATE(2931)] = 24266, - [SMALL_STATE(2932)] = 24330, - [SMALL_STATE(2933)] = 24394, - [SMALL_STATE(2934)] = 24458, - [SMALL_STATE(2935)] = 24522, - [SMALL_STATE(2936)] = 24570, - [SMALL_STATE(2937)] = 24634, - [SMALL_STATE(2938)] = 24698, - [SMALL_STATE(2939)] = 24762, - [SMALL_STATE(2940)] = 24810, - [SMALL_STATE(2941)] = 24874, - [SMALL_STATE(2942)] = 24918, - [SMALL_STATE(2943)] = 24966, - [SMALL_STATE(2944)] = 25030, - [SMALL_STATE(2945)] = 25094, - [SMALL_STATE(2946)] = 25158, - [SMALL_STATE(2947)] = 25204, - [SMALL_STATE(2948)] = 25268, - [SMALL_STATE(2949)] = 25332, - [SMALL_STATE(2950)] = 25396, - [SMALL_STATE(2951)] = 25460, - [SMALL_STATE(2952)] = 25524, - [SMALL_STATE(2953)] = 25585, - [SMALL_STATE(2954)] = 25646, - [SMALL_STATE(2955)] = 25691, - [SMALL_STATE(2956)] = 25740, - [SMALL_STATE(2957)] = 25797, - [SMALL_STATE(2958)] = 25856, - [SMALL_STATE(2959)] = 25915, - [SMALL_STATE(2960)] = 25976, - [SMALL_STATE(2961)] = 26035, - [SMALL_STATE(2962)] = 26094, - [SMALL_STATE(2963)] = 26155, - [SMALL_STATE(2964)] = 26202, - [SMALL_STATE(2965)] = 26263, - [SMALL_STATE(2966)] = 26322, - [SMALL_STATE(2967)] = 26381, - [SMALL_STATE(2968)] = 26442, - [SMALL_STATE(2969)] = 26491, - [SMALL_STATE(2970)] = 26534, - [SMALL_STATE(2971)] = 26595, - [SMALL_STATE(2972)] = 26656, - [SMALL_STATE(2973)] = 26717, - [SMALL_STATE(2974)] = 26776, - [SMALL_STATE(2975)] = 26835, - [SMALL_STATE(2976)] = 26894, - [SMALL_STATE(2977)] = 26955, - [SMALL_STATE(2978)] = 27012, - [SMALL_STATE(2979)] = 27073, - [SMALL_STATE(2980)] = 27134, - [SMALL_STATE(2981)] = 27195, - [SMALL_STATE(2982)] = 27242, - [SMALL_STATE(2983)] = 27301, - [SMALL_STATE(2984)] = 27362, - [SMALL_STATE(2985)] = 27409, - [SMALL_STATE(2986)] = 27452, - [SMALL_STATE(2987)] = 27513, - [SMALL_STATE(2988)] = 27574, - [SMALL_STATE(2989)] = 27638, - [SMALL_STATE(2990)] = 27680, - [SMALL_STATE(2991)] = 27722, - [SMALL_STATE(2992)] = 27764, - [SMALL_STATE(2993)] = 27822, - [SMALL_STATE(2994)] = 27864, - [SMALL_STATE(2995)] = 27928, - [SMALL_STATE(2996)] = 27992, - [SMALL_STATE(2997)] = 28034, - [SMALL_STATE(2998)] = 28098, - [SMALL_STATE(2999)] = 28140, - [SMALL_STATE(3000)] = 28196, - [SMALL_STATE(3001)] = 28238, - [SMALL_STATE(3002)] = 28280, - [SMALL_STATE(3003)] = 28336, - [SMALL_STATE(3004)] = 28380, - [SMALL_STATE(3005)] = 28422, - [SMALL_STATE(3006)] = 28464, - [SMALL_STATE(3007)] = 28506, - [SMALL_STATE(3008)] = 28548, - [SMALL_STATE(3009)] = 28590, - [SMALL_STATE(3010)] = 28632, - [SMALL_STATE(3011)] = 28674, - [SMALL_STATE(3012)] = 28720, - [SMALL_STATE(3013)] = 28762, - [SMALL_STATE(3014)] = 28804, - [SMALL_STATE(3015)] = 28880, - [SMALL_STATE(3016)] = 28926, - [SMALL_STATE(3017)] = 28968, - [SMALL_STATE(3018)] = 29044, - [SMALL_STATE(3019)] = 29090, - [SMALL_STATE(3020)] = 29132, - [SMALL_STATE(3021)] = 29174, - [SMALL_STATE(3022)] = 29216, - [SMALL_STATE(3023)] = 29258, - [SMALL_STATE(3024)] = 29300, - [SMALL_STATE(3025)] = 29342, - [SMALL_STATE(3026)] = 29384, - [SMALL_STATE(3027)] = 29432, - [SMALL_STATE(3028)] = 29474, - [SMALL_STATE(3029)] = 29516, - [SMALL_STATE(3030)] = 29558, - [SMALL_STATE(3031)] = 29600, - [SMALL_STATE(3032)] = 29642, - [SMALL_STATE(3033)] = 29684, - [SMALL_STATE(3034)] = 29726, - [SMALL_STATE(3035)] = 29768, - [SMALL_STATE(3036)] = 29826, - [SMALL_STATE(3037)] = 29868, - [SMALL_STATE(3038)] = 29910, - [SMALL_STATE(3039)] = 29986, - [SMALL_STATE(3040)] = 30028, - [SMALL_STATE(3041)] = 30074, - [SMALL_STATE(3042)] = 30116, - [SMALL_STATE(3043)] = 30162, - [SMALL_STATE(3044)] = 30206, - [SMALL_STATE(3045)] = 30248, - [SMALL_STATE(3046)] = 30306, - [SMALL_STATE(3047)] = 30348, - [SMALL_STATE(3048)] = 30390, - [SMALL_STATE(3049)] = 30434, - [SMALL_STATE(3050)] = 30480, - [SMALL_STATE(3051)] = 30544, - [SMALL_STATE(3052)] = 30586, - [SMALL_STATE(3053)] = 30650, - [SMALL_STATE(3054)] = 30692, - [SMALL_STATE(3055)] = 30756, - [SMALL_STATE(3056)] = 30820, - [SMALL_STATE(3057)] = 30878, - [SMALL_STATE(3058)] = 30936, - [SMALL_STATE(3059)] = 30978, - [SMALL_STATE(3060)] = 31020, - [SMALL_STATE(3061)] = 31075, - [SMALL_STATE(3062)] = 31130, - [SMALL_STATE(3063)] = 31185, - [SMALL_STATE(3064)] = 31240, - [SMALL_STATE(3065)] = 31295, - [SMALL_STATE(3066)] = 31350, - [SMALL_STATE(3067)] = 31405, - [SMALL_STATE(3068)] = 31460, - [SMALL_STATE(3069)] = 31515, - [SMALL_STATE(3070)] = 31570, - [SMALL_STATE(3071)] = 31625, - [SMALL_STATE(3072)] = 31680, - [SMALL_STATE(3073)] = 31735, - [SMALL_STATE(3074)] = 31790, - [SMALL_STATE(3075)] = 31845, - [SMALL_STATE(3076)] = 31900, - [SMALL_STATE(3077)] = 31955, - [SMALL_STATE(3078)] = 32010, - [SMALL_STATE(3079)] = 32065, - [SMALL_STATE(3080)] = 32120, - [SMALL_STATE(3081)] = 32175, - [SMALL_STATE(3082)] = 32230, - [SMALL_STATE(3083)] = 32285, - [SMALL_STATE(3084)] = 32340, - [SMALL_STATE(3085)] = 32395, - [SMALL_STATE(3086)] = 32450, - [SMALL_STATE(3087)] = 32507, - [SMALL_STATE(3088)] = 32562, - [SMALL_STATE(3089)] = 32617, - [SMALL_STATE(3090)] = 32672, - [SMALL_STATE(3091)] = 32727, - [SMALL_STATE(3092)] = 32768, - [SMALL_STATE(3093)] = 32823, - [SMALL_STATE(3094)] = 32880, - [SMALL_STATE(3095)] = 32935, - [SMALL_STATE(3096)] = 32990, - [SMALL_STATE(3097)] = 33045, - [SMALL_STATE(3098)] = 33100, - [SMALL_STATE(3099)] = 33155, - [SMALL_STATE(3100)] = 33210, - [SMALL_STATE(3101)] = 33265, - [SMALL_STATE(3102)] = 33306, - [SMALL_STATE(3103)] = 33361, - [SMALL_STATE(3104)] = 33416, - [SMALL_STATE(3105)] = 33471, - [SMALL_STATE(3106)] = 33528, - [SMALL_STATE(3107)] = 33583, - [SMALL_STATE(3108)] = 33638, - [SMALL_STATE(3109)] = 33693, - [SMALL_STATE(3110)] = 33748, - [SMALL_STATE(3111)] = 33803, - [SMALL_STATE(3112)] = 33858, - [SMALL_STATE(3113)] = 33913, - [SMALL_STATE(3114)] = 33968, - [SMALL_STATE(3115)] = 34009, - [SMALL_STATE(3116)] = 34064, - [SMALL_STATE(3117)] = 34119, - [SMALL_STATE(3118)] = 34174, - [SMALL_STATE(3119)] = 34229, - [SMALL_STATE(3120)] = 34284, - [SMALL_STATE(3121)] = 34325, - [SMALL_STATE(3122)] = 34366, - [SMALL_STATE(3123)] = 34421, - [SMALL_STATE(3124)] = 34462, - [SMALL_STATE(3125)] = 34517, - [SMALL_STATE(3126)] = 34572, - [SMALL_STATE(3127)] = 34627, - [SMALL_STATE(3128)] = 34682, - [SMALL_STATE(3129)] = 34737, - [SMALL_STATE(3130)] = 34792, - [SMALL_STATE(3131)] = 34847, - [SMALL_STATE(3132)] = 34902, - [SMALL_STATE(3133)] = 34945, - [SMALL_STATE(3134)] = 35000, - [SMALL_STATE(3135)] = 35055, - [SMALL_STATE(3136)] = 35110, - [SMALL_STATE(3137)] = 35165, - [SMALL_STATE(3138)] = 35210, - [SMALL_STATE(3139)] = 35265, - [SMALL_STATE(3140)] = 35320, - [SMALL_STATE(3141)] = 35375, - [SMALL_STATE(3142)] = 35430, - [SMALL_STATE(3143)] = 35473, - [SMALL_STATE(3144)] = 35528, - [SMALL_STATE(3145)] = 35583, - [SMALL_STATE(3146)] = 35638, - [SMALL_STATE(3147)] = 35679, - [SMALL_STATE(3148)] = 35734, - [SMALL_STATE(3149)] = 35789, - [SMALL_STATE(3150)] = 35844, - [SMALL_STATE(3151)] = 35899, - [SMALL_STATE(3152)] = 35954, - [SMALL_STATE(3153)] = 36009, - [SMALL_STATE(3154)] = 36050, - [SMALL_STATE(3155)] = 36105, - [SMALL_STATE(3156)] = 36160, - [SMALL_STATE(3157)] = 36203, - [SMALL_STATE(3158)] = 36258, - [SMALL_STATE(3159)] = 36303, - [SMALL_STATE(3160)] = 36358, - [SMALL_STATE(3161)] = 36413, - [SMALL_STATE(3162)] = 36468, - [SMALL_STATE(3163)] = 36523, - [SMALL_STATE(3164)] = 36566, - [SMALL_STATE(3165)] = 36621, - [SMALL_STATE(3166)] = 36676, - [SMALL_STATE(3167)] = 36731, - [SMALL_STATE(3168)] = 36786, - [SMALL_STATE(3169)] = 36841, - [SMALL_STATE(3170)] = 36896, - [SMALL_STATE(3171)] = 36953, - [SMALL_STATE(3172)] = 37008, - [SMALL_STATE(3173)] = 37063, - [SMALL_STATE(3174)] = 37118, - [SMALL_STATE(3175)] = 37173, - [SMALL_STATE(3176)] = 37228, - [SMALL_STATE(3177)] = 37285, - [SMALL_STATE(3178)] = 37340, - [SMALL_STATE(3179)] = 37395, - [SMALL_STATE(3180)] = 37450, - [SMALL_STATE(3181)] = 37505, - [SMALL_STATE(3182)] = 37560, - [SMALL_STATE(3183)] = 37615, - [SMALL_STATE(3184)] = 37670, - [SMALL_STATE(3185)] = 37725, - [SMALL_STATE(3186)] = 37780, - [SMALL_STATE(3187)] = 37835, - [SMALL_STATE(3188)] = 37890, - [SMALL_STATE(3189)] = 37945, - [SMALL_STATE(3190)] = 38000, - [SMALL_STATE(3191)] = 38055, - [SMALL_STATE(3192)] = 38110, - [SMALL_STATE(3193)] = 38165, - [SMALL_STATE(3194)] = 38220, - [SMALL_STATE(3195)] = 38275, - [SMALL_STATE(3196)] = 38330, - [SMALL_STATE(3197)] = 38385, - [SMALL_STATE(3198)] = 38440, - [SMALL_STATE(3199)] = 38495, - [SMALL_STATE(3200)] = 38550, - [SMALL_STATE(3201)] = 38605, - [SMALL_STATE(3202)] = 38660, - [SMALL_STATE(3203)] = 38701, - [SMALL_STATE(3204)] = 38756, - [SMALL_STATE(3205)] = 38811, - [SMALL_STATE(3206)] = 38866, - [SMALL_STATE(3207)] = 38921, - [SMALL_STATE(3208)] = 38976, - [SMALL_STATE(3209)] = 39031, - [SMALL_STATE(3210)] = 39086, - [SMALL_STATE(3211)] = 39141, - [SMALL_STATE(3212)] = 39196, - [SMALL_STATE(3213)] = 39251, - [SMALL_STATE(3214)] = 39306, - [SMALL_STATE(3215)] = 39361, - [SMALL_STATE(3216)] = 39416, - [SMALL_STATE(3217)] = 39471, - [SMALL_STATE(3218)] = 39526, - [SMALL_STATE(3219)] = 39581, - [SMALL_STATE(3220)] = 39636, - [SMALL_STATE(3221)] = 39691, - [SMALL_STATE(3222)] = 39746, - [SMALL_STATE(3223)] = 39801, - [SMALL_STATE(3224)] = 39856, - [SMALL_STATE(3225)] = 39911, - [SMALL_STATE(3226)] = 39966, - [SMALL_STATE(3227)] = 40021, - [SMALL_STATE(3228)] = 40076, - [SMALL_STATE(3229)] = 40131, - [SMALL_STATE(3230)] = 40186, - [SMALL_STATE(3231)] = 40233, - [SMALL_STATE(3232)] = 40288, - [SMALL_STATE(3233)] = 40343, - [SMALL_STATE(3234)] = 40398, - [SMALL_STATE(3235)] = 40453, - [SMALL_STATE(3236)] = 40508, - [SMALL_STATE(3237)] = 40563, - [SMALL_STATE(3238)] = 40618, - [SMALL_STATE(3239)] = 40673, - [SMALL_STATE(3240)] = 40728, - [SMALL_STATE(3241)] = 40783, - [SMALL_STATE(3242)] = 40838, - [SMALL_STATE(3243)] = 40893, - [SMALL_STATE(3244)] = 40948, - [SMALL_STATE(3245)] = 41003, - [SMALL_STATE(3246)] = 41058, - [SMALL_STATE(3247)] = 41113, - [SMALL_STATE(3248)] = 41168, - [SMALL_STATE(3249)] = 41223, - [SMALL_STATE(3250)] = 41278, - [SMALL_STATE(3251)] = 41333, - [SMALL_STATE(3252)] = 41388, - [SMALL_STATE(3253)] = 41443, - [SMALL_STATE(3254)] = 41498, - [SMALL_STATE(3255)] = 41553, - [SMALL_STATE(3256)] = 41608, - [SMALL_STATE(3257)] = 41663, - [SMALL_STATE(3258)] = 41718, - [SMALL_STATE(3259)] = 41773, - [SMALL_STATE(3260)] = 41828, - [SMALL_STATE(3261)] = 41883, - [SMALL_STATE(3262)] = 41938, - [SMALL_STATE(3263)] = 41993, - [SMALL_STATE(3264)] = 42048, - [SMALL_STATE(3265)] = 42103, - [SMALL_STATE(3266)] = 42158, - [SMALL_STATE(3267)] = 42213, - [SMALL_STATE(3268)] = 42268, - [SMALL_STATE(3269)] = 42323, - [SMALL_STATE(3270)] = 42378, - [SMALL_STATE(3271)] = 42418, - [SMALL_STATE(3272)] = 42474, - [SMALL_STATE(3273)] = 42530, - [SMALL_STATE(3274)] = 42596, - [SMALL_STATE(3275)] = 42636, - [SMALL_STATE(3276)] = 42676, - [SMALL_STATE(3277)] = 42732, - [SMALL_STATE(3278)] = 42788, - [SMALL_STATE(3279)] = 42844, - [SMALL_STATE(3280)] = 42884, - [SMALL_STATE(3281)] = 42924, - [SMALL_STATE(3282)] = 42992, - [SMALL_STATE(3283)] = 43032, - [SMALL_STATE(3284)] = 43072, - [SMALL_STATE(3285)] = 43112, - [SMALL_STATE(3286)] = 43152, - [SMALL_STATE(3287)] = 43192, - [SMALL_STATE(3288)] = 43232, - [SMALL_STATE(3289)] = 43272, - [SMALL_STATE(3290)] = 43314, - [SMALL_STATE(3291)] = 43354, - [SMALL_STATE(3292)] = 43394, - [SMALL_STATE(3293)] = 43434, - [SMALL_STATE(3294)] = 43502, - [SMALL_STATE(3295)] = 43542, - [SMALL_STATE(3296)] = 43582, - [SMALL_STATE(3297)] = 43622, - [SMALL_STATE(3298)] = 43662, - [SMALL_STATE(3299)] = 43704, - [SMALL_STATE(3300)] = 43744, - [SMALL_STATE(3301)] = 43784, - [SMALL_STATE(3302)] = 43824, - [SMALL_STATE(3303)] = 43867, - [SMALL_STATE(3304)] = 43908, - [SMALL_STATE(3305)] = 43975, - [SMALL_STATE(3306)] = 44042, - [SMALL_STATE(3307)] = 44107, - [SMALL_STATE(3308)] = 44150, - [SMALL_STATE(3309)] = 44204, - [SMALL_STATE(3310)] = 44242, - [SMALL_STATE(3311)] = 44306, - [SMALL_STATE(3312)] = 44348, - [SMALL_STATE(3313)] = 44402, - [SMALL_STATE(3314)] = 44456, - [SMALL_STATE(3315)] = 44494, - [SMALL_STATE(3316)] = 44548, - [SMALL_STATE(3317)] = 44602, - [SMALL_STATE(3318)] = 44640, - [SMALL_STATE(3319)] = 44704, - [SMALL_STATE(3320)] = 44768, - [SMALL_STATE(3321)] = 44822, - [SMALL_STATE(3322)] = 44876, - [SMALL_STATE(3323)] = 44930, - [SMALL_STATE(3324)] = 44994, - [SMALL_STATE(3325)] = 45048, - [SMALL_STATE(3326)] = 45102, - [SMALL_STATE(3327)] = 45154, - [SMALL_STATE(3328)] = 45208, - [SMALL_STATE(3329)] = 45272, - [SMALL_STATE(3330)] = 45309, - [SMALL_STATE(3331)] = 45346, - [SMALL_STATE(3332)] = 45385, - [SMALL_STATE(3333)] = 45422, - [SMALL_STATE(3334)] = 45465, - [SMALL_STATE(3335)] = 45502, - [SMALL_STATE(3336)] = 45539, - [SMALL_STATE(3337)] = 45580, - [SMALL_STATE(3338)] = 45617, - [SMALL_STATE(3339)] = 45656, - [SMALL_STATE(3340)] = 45697, - [SMALL_STATE(3341)] = 45738, - [SMALL_STATE(3342)] = 45775, - [SMALL_STATE(3343)] = 45812, - [SMALL_STATE(3344)] = 45851, - [SMALL_STATE(3345)] = 45888, - [SMALL_STATE(3346)] = 45927, - [SMALL_STATE(3347)] = 45964, - [SMALL_STATE(3348)] = 46005, - [SMALL_STATE(3349)] = 46044, - [SMALL_STATE(3350)] = 46081, - [SMALL_STATE(3351)] = 46118, - [SMALL_STATE(3352)] = 46155, - [SMALL_STATE(3353)] = 46192, - [SMALL_STATE(3354)] = 46229, - [SMALL_STATE(3355)] = 46266, - [SMALL_STATE(3356)] = 46305, - [SMALL_STATE(3357)] = 46342, - [SMALL_STATE(3358)] = 46379, - [SMALL_STATE(3359)] = 46418, - [SMALL_STATE(3360)] = 46479, - [SMALL_STATE(3361)] = 46516, - [SMALL_STATE(3362)] = 46557, - [SMALL_STATE(3363)] = 46596, - [SMALL_STATE(3364)] = 46637, - [SMALL_STATE(3365)] = 46674, - [SMALL_STATE(3366)] = 46711, - [SMALL_STATE(3367)] = 46748, - [SMALL_STATE(3368)] = 46785, - [SMALL_STATE(3369)] = 46822, - [SMALL_STATE(3370)] = 46859, - [SMALL_STATE(3371)] = 46896, - [SMALL_STATE(3372)] = 46933, - [SMALL_STATE(3373)] = 46970, - [SMALL_STATE(3374)] = 47007, - [SMALL_STATE(3375)] = 47044, - [SMALL_STATE(3376)] = 47081, - [SMALL_STATE(3377)] = 47118, - [SMALL_STATE(3378)] = 47155, - [SMALL_STATE(3379)] = 47192, - [SMALL_STATE(3380)] = 47233, - [SMALL_STATE(3381)] = 47270, - [SMALL_STATE(3382)] = 47307, - [SMALL_STATE(3383)] = 47344, - [SMALL_STATE(3384)] = 47381, - [SMALL_STATE(3385)] = 47422, - [SMALL_STATE(3386)] = 47459, - [SMALL_STATE(3387)] = 47496, - [SMALL_STATE(3388)] = 47533, - [SMALL_STATE(3389)] = 47570, - [SMALL_STATE(3390)] = 47607, - [SMALL_STATE(3391)] = 47644, - [SMALL_STATE(3392)] = 47681, - [SMALL_STATE(3393)] = 47718, - [SMALL_STATE(3394)] = 47755, - [SMALL_STATE(3395)] = 47792, - [SMALL_STATE(3396)] = 47829, - [SMALL_STATE(3397)] = 47887, - [SMALL_STATE(3398)] = 47925, - [SMALL_STATE(3399)] = 47961, - [SMALL_STATE(3400)] = 47999, - [SMALL_STATE(3401)] = 48051, - [SMALL_STATE(3402)] = 48103, - [SMALL_STATE(3403)] = 48155, - [SMALL_STATE(3404)] = 48207, - [SMALL_STATE(3405)] = 48243, - [SMALL_STATE(3406)] = 48283, - [SMALL_STATE(3407)] = 48321, - [SMALL_STATE(3408)] = 48355, - [SMALL_STATE(3409)] = 48393, - [SMALL_STATE(3410)] = 48429, - [SMALL_STATE(3411)] = 48465, - [SMALL_STATE(3412)] = 48503, - [SMALL_STATE(3413)] = 48541, - [SMALL_STATE(3414)] = 48579, - [SMALL_STATE(3415)] = 48619, - [SMALL_STATE(3416)] = 48655, - [SMALL_STATE(3417)] = 48691, - [SMALL_STATE(3418)] = 48727, - [SMALL_STATE(3419)] = 48765, - [SMALL_STATE(3420)] = 48800, - [SMALL_STATE(3421)] = 48839, - [SMALL_STATE(3422)] = 48872, - [SMALL_STATE(3423)] = 48919, - [SMALL_STATE(3424)] = 48956, - [SMALL_STATE(3425)] = 48995, - [SMALL_STATE(3426)] = 49030, - [SMALL_STATE(3427)] = 49069, - [SMALL_STATE(3428)] = 49108, - [SMALL_STATE(3429)] = 49143, - [SMALL_STATE(3430)] = 49178, - [SMALL_STATE(3431)] = 49225, - [SMALL_STATE(3432)] = 49262, - [SMALL_STATE(3433)] = 49297, - [SMALL_STATE(3434)] = 49332, - [SMALL_STATE(3435)] = 49367, - [SMALL_STATE(3436)] = 49404, - [SMALL_STATE(3437)] = 49437, - [SMALL_STATE(3438)] = 49476, - [SMALL_STATE(3439)] = 49511, - [SMALL_STATE(3440)] = 49546, - [SMALL_STATE(3441)] = 49581, - [SMALL_STATE(3442)] = 49616, - [SMALL_STATE(3443)] = 49653, - [SMALL_STATE(3444)] = 49686, - [SMALL_STATE(3445)] = 49721, - [SMALL_STATE(3446)] = 49754, - [SMALL_STATE(3447)] = 49789, - [SMALL_STATE(3448)] = 49828, - [SMALL_STATE(3449)] = 49863, - [SMALL_STATE(3450)] = 49898, - [SMALL_STATE(3451)] = 49937, - [SMALL_STATE(3452)] = 49972, - [SMALL_STATE(3453)] = 50007, - [SMALL_STATE(3454)] = 50042, - [SMALL_STATE(3455)] = 50077, - [SMALL_STATE(3456)] = 50112, - [SMALL_STATE(3457)] = 50147, - [SMALL_STATE(3458)] = 50182, - [SMALL_STATE(3459)] = 50229, - [SMALL_STATE(3460)] = 50268, - [SMALL_STATE(3461)] = 50303, - [SMALL_STATE(3462)] = 50338, - [SMALL_STATE(3463)] = 50373, - [SMALL_STATE(3464)] = 50428, - [SMALL_STATE(3465)] = 50463, - [SMALL_STATE(3466)] = 50498, - [SMALL_STATE(3467)] = 50533, - [SMALL_STATE(3468)] = 50570, - [SMALL_STATE(3469)] = 50617, - [SMALL_STATE(3470)] = 50654, - [SMALL_STATE(3471)] = 50689, - [SMALL_STATE(3472)] = 50726, - [SMALL_STATE(3473)] = 50780, - [SMALL_STATE(3474)] = 50834, - [SMALL_STATE(3475)] = 50866, - [SMALL_STATE(3476)] = 50920, - [SMALL_STATE(3477)] = 50974, - [SMALL_STATE(3478)] = 51028, - [SMALL_STATE(3479)] = 51082, - [SMALL_STATE(3480)] = 51136, - [SMALL_STATE(3481)] = 51170, - [SMALL_STATE(3482)] = 51204, - [SMALL_STATE(3483)] = 51238, - [SMALL_STATE(3484)] = 51292, - [SMALL_STATE(3485)] = 51346, - [SMALL_STATE(3486)] = 51400, - [SMALL_STATE(3487)] = 51436, - [SMALL_STATE(3488)] = 51490, - [SMALL_STATE(3489)] = 51524, - [SMALL_STATE(3490)] = 51560, - [SMALL_STATE(3491)] = 51614, - [SMALL_STATE(3492)] = 51648, - [SMALL_STATE(3493)] = 51682, - [SMALL_STATE(3494)] = 51734, - [SMALL_STATE(3495)] = 51788, - [SMALL_STATE(3496)] = 51822, - [SMALL_STATE(3497)] = 51860, - [SMALL_STATE(3498)] = 51894, - [SMALL_STATE(3499)] = 51948, - [SMALL_STATE(3500)] = 52002, - [SMALL_STATE(3501)] = 52056, - [SMALL_STATE(3502)] = 52090, - [SMALL_STATE(3503)] = 52144, - [SMALL_STATE(3504)] = 52178, - [SMALL_STATE(3505)] = 52212, - [SMALL_STATE(3506)] = 52266, - [SMALL_STATE(3507)] = 52300, - [SMALL_STATE(3508)] = 52331, - [SMALL_STATE(3509)] = 52372, - [SMALL_STATE(3510)] = 52403, - [SMALL_STATE(3511)] = 52434, - [SMALL_STATE(3512)] = 52465, - [SMALL_STATE(3513)] = 52496, - [SMALL_STATE(3514)] = 52529, - [SMALL_STATE(3515)] = 52562, - [SMALL_STATE(3516)] = 52595, - [SMALL_STATE(3517)] = 52636, - [SMALL_STATE(3518)] = 52685, - [SMALL_STATE(3519)] = 52726, - [SMALL_STATE(3520)] = 52767, - [SMALL_STATE(3521)] = 52816, - [SMALL_STATE(3522)] = 52857, - [SMALL_STATE(3523)] = 52898, - [SMALL_STATE(3524)] = 52939, - [SMALL_STATE(3525)] = 52980, - [SMALL_STATE(3526)] = 53013, - [SMALL_STATE(3527)] = 53046, - [SMALL_STATE(3528)] = 53087, - [SMALL_STATE(3529)] = 53128, - [SMALL_STATE(3530)] = 53169, - [SMALL_STATE(3531)] = 53208, - [SMALL_STATE(3532)] = 53249, - [SMALL_STATE(3533)] = 53282, - [SMALL_STATE(3534)] = 53313, - [SMALL_STATE(3535)] = 53346, - [SMALL_STATE(3536)] = 53381, - [SMALL_STATE(3537)] = 53412, - [SMALL_STATE(3538)] = 53443, - [SMALL_STATE(3539)] = 53484, - [SMALL_STATE(3540)] = 53515, - [SMALL_STATE(3541)] = 53552, - [SMALL_STATE(3542)] = 53593, - [SMALL_STATE(3543)] = 53624, - [SMALL_STATE(3544)] = 53671, - [SMALL_STATE(3545)] = 53712, - [SMALL_STATE(3546)] = 53745, - [SMALL_STATE(3547)] = 53786, - [SMALL_STATE(3548)] = 53827, - [SMALL_STATE(3549)] = 53858, - [SMALL_STATE(3550)] = 53891, - [SMALL_STATE(3551)] = 53932, - [SMALL_STATE(3552)] = 53973, - [SMALL_STATE(3553)] = 54014, - [SMALL_STATE(3554)] = 54061, - [SMALL_STATE(3555)] = 54102, - [SMALL_STATE(3556)] = 54133, - [SMALL_STATE(3557)] = 54164, - [SMALL_STATE(3558)] = 54197, - [SMALL_STATE(3559)] = 54228, - [SMALL_STATE(3560)] = 54261, - [SMALL_STATE(3561)] = 54292, - [SMALL_STATE(3562)] = 54325, - [SMALL_STATE(3563)] = 54366, - [SMALL_STATE(3564)] = 54407, - [SMALL_STATE(3565)] = 54448, - [SMALL_STATE(3566)] = 54489, - [SMALL_STATE(3567)] = 54530, - [SMALL_STATE(3568)] = 54561, - [SMALL_STATE(3569)] = 54602, - [SMALL_STATE(3570)] = 54643, - [SMALL_STATE(3571)] = 54676, - [SMALL_STATE(3572)] = 54717, - [SMALL_STATE(3573)] = 54758, - [SMALL_STATE(3574)] = 54799, - [SMALL_STATE(3575)] = 54846, - [SMALL_STATE(3576)] = 54893, - [SMALL_STATE(3577)] = 54940, - [SMALL_STATE(3578)] = 54981, - [SMALL_STATE(3579)] = 55014, - [SMALL_STATE(3580)] = 55055, - [SMALL_STATE(3581)] = 55088, - [SMALL_STATE(3582)] = 55129, - [SMALL_STATE(3583)] = 55170, - [SMALL_STATE(3584)] = 55221, - [SMALL_STATE(3585)] = 55262, - [SMALL_STATE(3586)] = 55295, - [SMALL_STATE(3587)] = 55336, - [SMALL_STATE(3588)] = 55373, - [SMALL_STATE(3589)] = 55414, - [SMALL_STATE(3590)] = 55462, - [SMALL_STATE(3591)] = 55496, - [SMALL_STATE(3592)] = 55542, - [SMALL_STATE(3593)] = 55590, - [SMALL_STATE(3594)] = 55636, - [SMALL_STATE(3595)] = 55670, - [SMALL_STATE(3596)] = 55710, - [SMALL_STATE(3597)] = 55756, - [SMALL_STATE(3598)] = 55796, - [SMALL_STATE(3599)] = 55844, - [SMALL_STATE(3600)] = 55884, - [SMALL_STATE(3601)] = 55928, - [SMALL_STATE(3602)] = 55962, - [SMALL_STATE(3603)] = 56010, - [SMALL_STATE(3604)] = 56054, - [SMALL_STATE(3605)] = 56088, - [SMALL_STATE(3606)] = 56124, - [SMALL_STATE(3607)] = 56164, - [SMALL_STATE(3608)] = 56210, - [SMALL_STATE(3609)] = 56258, - [SMALL_STATE(3610)] = 56304, - [SMALL_STATE(3611)] = 56344, - [SMALL_STATE(3612)] = 56388, - [SMALL_STATE(3613)] = 56428, - [SMALL_STATE(3614)] = 56468, - [SMALL_STATE(3615)] = 56502, - [SMALL_STATE(3616)] = 56538, - [SMALL_STATE(3617)] = 56572, - [SMALL_STATE(3618)] = 56606, - [SMALL_STATE(3619)] = 56646, - [SMALL_STATE(3620)] = 56680, - [SMALL_STATE(3621)] = 56724, - [SMALL_STATE(3622)] = 56768, - [SMALL_STATE(3623)] = 56812, - [SMALL_STATE(3624)] = 56860, - [SMALL_STATE(3625)] = 56900, - [SMALL_STATE(3626)] = 56934, - [SMALL_STATE(3627)] = 56968, - [SMALL_STATE(3628)] = 57016, - [SMALL_STATE(3629)] = 57048, - [SMALL_STATE(3630)] = 57082, - [SMALL_STATE(3631)] = 57122, - [SMALL_STATE(3632)] = 57162, - [SMALL_STATE(3633)] = 57202, - [SMALL_STATE(3634)] = 57248, - [SMALL_STATE(3635)] = 57288, - [SMALL_STATE(3636)] = 57328, - [SMALL_STATE(3637)] = 57364, - [SMALL_STATE(3638)] = 57404, - [SMALL_STATE(3639)] = 57444, - [SMALL_STATE(3640)] = 57484, - [SMALL_STATE(3641)] = 57524, - [SMALL_STATE(3642)] = 57572, - [SMALL_STATE(3643)] = 57620, - [SMALL_STATE(3644)] = 57666, - [SMALL_STATE(3645)] = 57706, - [SMALL_STATE(3646)] = 57744, - [SMALL_STATE(3647)] = 57790, - [SMALL_STATE(3648)] = 57826, - [SMALL_STATE(3649)] = 57866, - [SMALL_STATE(3650)] = 57914, - [SMALL_STATE(3651)] = 57962, - [SMALL_STATE(3652)] = 57996, - [SMALL_STATE(3653)] = 58030, - [SMALL_STATE(3654)] = 58078, - [SMALL_STATE(3655)] = 58126, - [SMALL_STATE(3656)] = 58166, - [SMALL_STATE(3657)] = 58202, - [SMALL_STATE(3658)] = 58246, - [SMALL_STATE(3659)] = 58286, - [SMALL_STATE(3660)] = 58326, - [SMALL_STATE(3661)] = 58366, - [SMALL_STATE(3662)] = 58406, - [SMALL_STATE(3663)] = 58450, - [SMALL_STATE(3664)] = 58480, - [SMALL_STATE(3665)] = 58514, - [SMALL_STATE(3666)] = 58554, - [SMALL_STATE(3667)] = 58584, - [SMALL_STATE(3668)] = 58624, - [SMALL_STATE(3669)] = 58654, - [SMALL_STATE(3670)] = 58684, - [SMALL_STATE(3671)] = 58714, - [SMALL_STATE(3672)] = 58762, - [SMALL_STATE(3673)] = 58792, - [SMALL_STATE(3674)] = 58822, - [SMALL_STATE(3675)] = 58852, - [SMALL_STATE(3676)] = 58892, - [SMALL_STATE(3677)] = 58936, - [SMALL_STATE(3678)] = 58970, - [SMALL_STATE(3679)] = 59010, - [SMALL_STATE(3680)] = 59050, - [SMALL_STATE(3681)] = 59088, - [SMALL_STATE(3682)] = 59128, - [SMALL_STATE(3683)] = 59158, - [SMALL_STATE(3684)] = 59188, - [SMALL_STATE(3685)] = 59218, - [SMALL_STATE(3686)] = 59264, - [SMALL_STATE(3687)] = 59294, - [SMALL_STATE(3688)] = 59324, - [SMALL_STATE(3689)] = 59370, - [SMALL_STATE(3690)] = 59410, - [SMALL_STATE(3691)] = 59440, - [SMALL_STATE(3692)] = 59480, - [SMALL_STATE(3693)] = 59520, - [SMALL_STATE(3694)] = 59550, - [SMALL_STATE(3695)] = 59584, - [SMALL_STATE(3696)] = 59614, - [SMALL_STATE(3697)] = 59649, - [SMALL_STATE(3698)] = 59686, - [SMALL_STATE(3699)] = 59729, - [SMALL_STATE(3700)] = 59774, - [SMALL_STATE(3701)] = 59819, - [SMALL_STATE(3702)] = 59856, - [SMALL_STATE(3703)] = 59899, - [SMALL_STATE(3704)] = 59942, - [SMALL_STATE(3705)] = 59979, - [SMALL_STATE(3706)] = 60024, - [SMALL_STATE(3707)] = 60067, - [SMALL_STATE(3708)] = 60110, - [SMALL_STATE(3709)] = 60153, - [SMALL_STATE(3710)] = 60198, - [SMALL_STATE(3711)] = 60243, - [SMALL_STATE(3712)] = 60286, - [SMALL_STATE(3713)] = 60329, - [SMALL_STATE(3714)] = 60372, - [SMALL_STATE(3715)] = 60417, - [SMALL_STATE(3716)] = 60462, - [SMALL_STATE(3717)] = 60507, - [SMALL_STATE(3718)] = 60550, - [SMALL_STATE(3719)] = 60587, - [SMALL_STATE(3720)] = 60630, - [SMALL_STATE(3721)] = 60673, - [SMALL_STATE(3722)] = 60718, - [SMALL_STATE(3723)] = 60761, - [SMALL_STATE(3724)] = 60804, - [SMALL_STATE(3725)] = 60849, - [SMALL_STATE(3726)] = 60882, - [SMALL_STATE(3727)] = 60915, - [SMALL_STATE(3728)] = 60958, - [SMALL_STATE(3729)] = 61003, - [SMALL_STATE(3730)] = 61048, - [SMALL_STATE(3731)] = 61093, - [SMALL_STATE(3732)] = 61136, - [SMALL_STATE(3733)] = 61181, - [SMALL_STATE(3734)] = 61210, - [SMALL_STATE(3735)] = 61253, - [SMALL_STATE(3736)] = 61298, - [SMALL_STATE(3737)] = 61343, - [SMALL_STATE(3738)] = 61380, - [SMALL_STATE(3739)] = 61409, - [SMALL_STATE(3740)] = 61440, - [SMALL_STATE(3741)] = 61485, - [SMALL_STATE(3742)] = 61528, - [SMALL_STATE(3743)] = 61571, - [SMALL_STATE(3744)] = 61616, - [SMALL_STATE(3745)] = 61659, - [SMALL_STATE(3746)] = 61704, - [SMALL_STATE(3747)] = 61749, - [SMALL_STATE(3748)] = 61792, - [SMALL_STATE(3749)] = 61837, - [SMALL_STATE(3750)] = 61880, - [SMALL_STATE(3751)] = 61913, - [SMALL_STATE(3752)] = 61958, - [SMALL_STATE(3753)] = 62003, - [SMALL_STATE(3754)] = 62048, - [SMALL_STATE(3755)] = 62091, - [SMALL_STATE(3756)] = 62134, - [SMALL_STATE(3757)] = 62179, - [SMALL_STATE(3758)] = 62224, - [SMALL_STATE(3759)] = 62261, - [SMALL_STATE(3760)] = 62306, - [SMALL_STATE(3761)] = 62351, - [SMALL_STATE(3762)] = 62384, - [SMALL_STATE(3763)] = 62429, - [SMALL_STATE(3764)] = 62474, - [SMALL_STATE(3765)] = 62507, - [SMALL_STATE(3766)] = 62540, - [SMALL_STATE(3767)] = 62583, - [SMALL_STATE(3768)] = 62618, - [SMALL_STATE(3769)] = 62661, - [SMALL_STATE(3770)] = 62706, - [SMALL_STATE(3771)] = 62751, - [SMALL_STATE(3772)] = 62796, - [SMALL_STATE(3773)] = 62841, - [SMALL_STATE(3774)] = 62886, - [SMALL_STATE(3775)] = 62917, - [SMALL_STATE(3776)] = 62962, - [SMALL_STATE(3777)] = 62997, - [SMALL_STATE(3778)] = 63040, - [SMALL_STATE(3779)] = 63083, - [SMALL_STATE(3780)] = 63116, - [SMALL_STATE(3781)] = 63161, - [SMALL_STATE(3782)] = 63204, - [SMALL_STATE(3783)] = 63249, - [SMALL_STATE(3784)] = 63294, - [SMALL_STATE(3785)] = 63331, - [SMALL_STATE(3786)] = 63364, - [SMALL_STATE(3787)] = 63407, - [SMALL_STATE(3788)] = 63452, - [SMALL_STATE(3789)] = 63485, - [SMALL_STATE(3790)] = 63528, - [SMALL_STATE(3791)] = 63571, - [SMALL_STATE(3792)] = 63604, - [SMALL_STATE(3793)] = 63649, - [SMALL_STATE(3794)] = 63682, - [SMALL_STATE(3795)] = 63725, - [SMALL_STATE(3796)] = 63770, - [SMALL_STATE(3797)] = 63813, - [SMALL_STATE(3798)] = 63858, - [SMALL_STATE(3799)] = 63903, - [SMALL_STATE(3800)] = 63940, - [SMALL_STATE(3801)] = 63975, - [SMALL_STATE(3802)] = 64020, - [SMALL_STATE(3803)] = 64065, - [SMALL_STATE(3804)] = 64110, - [SMALL_STATE(3805)] = 64153, - [SMALL_STATE(3806)] = 64188, - [SMALL_STATE(3807)] = 64231, - [SMALL_STATE(3808)] = 64274, - [SMALL_STATE(3809)] = 64307, - [SMALL_STATE(3810)] = 64340, - [SMALL_STATE(3811)] = 64373, - [SMALL_STATE(3812)] = 64402, - [SMALL_STATE(3813)] = 64447, - [SMALL_STATE(3814)] = 64492, - [SMALL_STATE(3815)] = 64525, - [SMALL_STATE(3816)] = 64567, - [SMALL_STATE(3817)] = 64597, - [SMALL_STATE(3818)] = 64625, - [SMALL_STATE(3819)] = 64667, - [SMALL_STATE(3820)] = 64709, - [SMALL_STATE(3821)] = 64737, - [SMALL_STATE(3822)] = 64779, - [SMALL_STATE(3823)] = 64821, - [SMALL_STATE(3824)] = 64849, - [SMALL_STATE(3825)] = 64891, - [SMALL_STATE(3826)] = 64923, - [SMALL_STATE(3827)] = 64965, - [SMALL_STATE(3828)] = 65007, - [SMALL_STATE(3829)] = 65037, - [SMALL_STATE(3830)] = 65067, - [SMALL_STATE(3831)] = 65109, - [SMALL_STATE(3832)] = 65151, - [SMALL_STATE(3833)] = 65179, - [SMALL_STATE(3834)] = 65221, - [SMALL_STATE(3835)] = 65255, - [SMALL_STATE(3836)] = 65297, - [SMALL_STATE(3837)] = 65327, - [SMALL_STATE(3838)] = 65357, - [SMALL_STATE(3839)] = 65399, - [SMALL_STATE(3840)] = 65441, - [SMALL_STATE(3841)] = 65483, - [SMALL_STATE(3842)] = 65525, - [SMALL_STATE(3843)] = 65567, - [SMALL_STATE(3844)] = 65609, - [SMALL_STATE(3845)] = 65651, - [SMALL_STATE(3846)] = 65681, - [SMALL_STATE(3847)] = 65723, - [SMALL_STATE(3848)] = 65765, - [SMALL_STATE(3849)] = 65793, - [SMALL_STATE(3850)] = 65823, - [SMALL_STATE(3851)] = 65851, - [SMALL_STATE(3852)] = 65893, - [SMALL_STATE(3853)] = 65935, - [SMALL_STATE(3854)] = 65977, - [SMALL_STATE(3855)] = 66017, - [SMALL_STATE(3856)] = 66049, - [SMALL_STATE(3857)] = 66081, - [SMALL_STATE(3858)] = 66109, - [SMALL_STATE(3859)] = 66141, - [SMALL_STATE(3860)] = 66169, - [SMALL_STATE(3861)] = 66201, - [SMALL_STATE(3862)] = 66243, - [SMALL_STATE(3863)] = 66285, - [SMALL_STATE(3864)] = 66313, - [SMALL_STATE(3865)] = 66343, - [SMALL_STATE(3866)] = 66377, - [SMALL_STATE(3867)] = 66407, - [SMALL_STATE(3868)] = 66449, - [SMALL_STATE(3869)] = 66491, - [SMALL_STATE(3870)] = 66521, - [SMALL_STATE(3871)] = 66561, - [SMALL_STATE(3872)] = 66601, - [SMALL_STATE(3873)] = 66629, - [SMALL_STATE(3874)] = 66671, - [SMALL_STATE(3875)] = 66713, - [SMALL_STATE(3876)] = 66755, - [SMALL_STATE(3877)] = 66797, - [SMALL_STATE(3878)] = 66839, - [SMALL_STATE(3879)] = 66876, - [SMALL_STATE(3880)] = 66915, - [SMALL_STATE(3881)] = 66954, - [SMALL_STATE(3882)] = 66991, - [SMALL_STATE(3883)] = 67030, - [SMALL_STATE(3884)] = 67067, - [SMALL_STATE(3885)] = 67106, - [SMALL_STATE(3886)] = 67143, - [SMALL_STATE(3887)] = 67182, - [SMALL_STATE(3888)] = 67219, - [SMALL_STATE(3889)] = 67248, - [SMALL_STATE(3890)] = 67287, - [SMALL_STATE(3891)] = 67326, - [SMALL_STATE(3892)] = 67365, - [SMALL_STATE(3893)] = 67402, - [SMALL_STATE(3894)] = 67441, - [SMALL_STATE(3895)] = 67478, - [SMALL_STATE(3896)] = 67517, - [SMALL_STATE(3897)] = 67554, - [SMALL_STATE(3898)] = 67591, - [SMALL_STATE(3899)] = 67628, - [SMALL_STATE(3900)] = 67665, - [SMALL_STATE(3901)] = 67702, - [SMALL_STATE(3902)] = 67739, - [SMALL_STATE(3903)] = 67776, - [SMALL_STATE(3904)] = 67813, - [SMALL_STATE(3905)] = 67850, - [SMALL_STATE(3906)] = 67887, - [SMALL_STATE(3907)] = 67926, - [SMALL_STATE(3908)] = 67965, - [SMALL_STATE(3909)] = 68002, - [SMALL_STATE(3910)] = 68041, - [SMALL_STATE(3911)] = 68078, - [SMALL_STATE(3912)] = 68115, - [SMALL_STATE(3913)] = 68152, - [SMALL_STATE(3914)] = 68187, - [SMALL_STATE(3915)] = 68224, - [SMALL_STATE(3916)] = 68263, - [SMALL_STATE(3917)] = 68300, - [SMALL_STATE(3918)] = 68339, - [SMALL_STATE(3919)] = 68376, - [SMALL_STATE(3920)] = 68415, - [SMALL_STATE(3921)] = 68454, - [SMALL_STATE(3922)] = 68491, - [SMALL_STATE(3923)] = 68528, - [SMALL_STATE(3924)] = 68567, - [SMALL_STATE(3925)] = 68604, - [SMALL_STATE(3926)] = 68643, - [SMALL_STATE(3927)] = 68680, - [SMALL_STATE(3928)] = 68717, - [SMALL_STATE(3929)] = 68754, - [SMALL_STATE(3930)] = 68791, - [SMALL_STATE(3931)] = 68828, - [SMALL_STATE(3932)] = 68865, - [SMALL_STATE(3933)] = 68902, - [SMALL_STATE(3934)] = 68941, - [SMALL_STATE(3935)] = 68970, - [SMALL_STATE(3936)] = 69009, - [SMALL_STATE(3937)] = 69038, - [SMALL_STATE(3938)] = 69075, - [SMALL_STATE(3939)] = 69112, - [SMALL_STATE(3940)] = 69148, - [SMALL_STATE(3941)] = 69182, - [SMALL_STATE(3942)] = 69216, - [SMALL_STATE(3943)] = 69244, - [SMALL_STATE(3944)] = 69278, - [SMALL_STATE(3945)] = 69306, - [SMALL_STATE(3946)] = 69340, - [SMALL_STATE(3947)] = 69372, - [SMALL_STATE(3948)] = 69405, - [SMALL_STATE(3949)] = 69438, - [SMALL_STATE(3950)] = 69471, - [SMALL_STATE(3951)] = 69504, - [SMALL_STATE(3952)] = 69535, - [SMALL_STATE(3953)] = 69568, - [SMALL_STATE(3954)] = 69597, - [SMALL_STATE(3955)] = 69630, - [SMALL_STATE(3956)] = 69663, - [SMALL_STATE(3957)] = 69694, - [SMALL_STATE(3958)] = 69727, - [SMALL_STATE(3959)] = 69758, - [SMALL_STATE(3960)] = 69791, - [SMALL_STATE(3961)] = 69824, - [SMALL_STATE(3962)] = 69857, - [SMALL_STATE(3963)] = 69890, - [SMALL_STATE(3964)] = 69923, - [SMALL_STATE(3965)] = 69956, - [SMALL_STATE(3966)] = 69985, - [SMALL_STATE(3967)] = 70018, - [SMALL_STATE(3968)] = 70051, - [SMALL_STATE(3969)] = 70084, - [SMALL_STATE(3970)] = 70117, - [SMALL_STATE(3971)] = 70150, - [SMALL_STATE(3972)] = 70183, - [SMALL_STATE(3973)] = 70214, - [SMALL_STATE(3974)] = 70243, - [SMALL_STATE(3975)] = 70272, - [SMALL_STATE(3976)] = 70303, - [SMALL_STATE(3977)] = 70336, - [SMALL_STATE(3978)] = 70365, - [SMALL_STATE(3979)] = 70398, - [SMALL_STATE(3980)] = 70431, - [SMALL_STATE(3981)] = 70464, - [SMALL_STATE(3982)] = 70497, - [SMALL_STATE(3983)] = 70526, - [SMALL_STATE(3984)] = 70557, - [SMALL_STATE(3985)] = 70590, - [SMALL_STATE(3986)] = 70619, - [SMALL_STATE(3987)] = 70650, - [SMALL_STATE(3988)] = 70683, - [SMALL_STATE(3989)] = 70716, - [SMALL_STATE(3990)] = 70749, - [SMALL_STATE(3991)] = 70782, - [SMALL_STATE(3992)] = 70815, - [SMALL_STATE(3993)] = 70842, - [SMALL_STATE(3994)] = 70875, - [SMALL_STATE(3995)] = 70906, - [SMALL_STATE(3996)] = 70939, - [SMALL_STATE(3997)] = 70972, - [SMALL_STATE(3998)] = 71003, - [SMALL_STATE(3999)] = 71036, - [SMALL_STATE(4000)] = 71069, - [SMALL_STATE(4001)] = 71102, - [SMALL_STATE(4002)] = 71131, - [SMALL_STATE(4003)] = 71164, - [SMALL_STATE(4004)] = 71195, - [SMALL_STATE(4005)] = 71228, - [SMALL_STATE(4006)] = 71261, - [SMALL_STATE(4007)] = 71290, - [SMALL_STATE(4008)] = 71323, - [SMALL_STATE(4009)] = 71356, - [SMALL_STATE(4010)] = 71389, - [SMALL_STATE(4011)] = 71418, - [SMALL_STATE(4012)] = 71451, - [SMALL_STATE(4013)] = 71484, - [SMALL_STATE(4014)] = 71515, - [SMALL_STATE(4015)] = 71546, - [SMALL_STATE(4016)] = 71579, - [SMALL_STATE(4017)] = 71612, - [SMALL_STATE(4018)] = 71645, - [SMALL_STATE(4019)] = 71678, - [SMALL_STATE(4020)] = 71711, - [SMALL_STATE(4021)] = 71742, - [SMALL_STATE(4022)] = 71773, - [SMALL_STATE(4023)] = 71806, - [SMALL_STATE(4024)] = 71837, - [SMALL_STATE(4025)] = 71870, - [SMALL_STATE(4026)] = 71903, - [SMALL_STATE(4027)] = 71932, - [SMALL_STATE(4028)] = 71965, - [SMALL_STATE(4029)] = 71998, - [SMALL_STATE(4030)] = 72031, - [SMALL_STATE(4031)] = 72064, - [SMALL_STATE(4032)] = 72097, - [SMALL_STATE(4033)] = 72130, - [SMALL_STATE(4034)] = 72157, - [SMALL_STATE(4035)] = 72190, - [SMALL_STATE(4036)] = 72223, - [SMALL_STATE(4037)] = 72256, - [SMALL_STATE(4038)] = 72289, - [SMALL_STATE(4039)] = 72318, - [SMALL_STATE(4040)] = 72351, - [SMALL_STATE(4041)] = 72380, - [SMALL_STATE(4042)] = 72409, - [SMALL_STATE(4043)] = 72442, - [SMALL_STATE(4044)] = 72475, - [SMALL_STATE(4045)] = 72506, - [SMALL_STATE(4046)] = 72537, - [SMALL_STATE(4047)] = 72570, - [SMALL_STATE(4048)] = 72603, - [SMALL_STATE(4049)] = 72632, - [SMALL_STATE(4050)] = 72665, - [SMALL_STATE(4051)] = 72698, - [SMALL_STATE(4052)] = 72731, - [SMALL_STATE(4053)] = 72764, - [SMALL_STATE(4054)] = 72797, - [SMALL_STATE(4055)] = 72830, - [SMALL_STATE(4056)] = 72863, - [SMALL_STATE(4057)] = 72892, - [SMALL_STATE(4058)] = 72925, - [SMALL_STATE(4059)] = 72958, - [SMALL_STATE(4060)] = 72991, - [SMALL_STATE(4061)] = 73022, - [SMALL_STATE(4062)] = 73055, - [SMALL_STATE(4063)] = 73088, - [SMALL_STATE(4064)] = 73117, - [SMALL_STATE(4065)] = 73146, - [SMALL_STATE(4066)] = 73179, - [SMALL_STATE(4067)] = 73209, - [SMALL_STATE(4068)] = 73239, - [SMALL_STATE(4069)] = 73265, - [SMALL_STATE(4070)] = 73295, - [SMALL_STATE(4071)] = 73325, - [SMALL_STATE(4072)] = 73355, - [SMALL_STATE(4073)] = 73385, - [SMALL_STATE(4074)] = 73415, - [SMALL_STATE(4075)] = 73443, - [SMALL_STATE(4076)] = 73473, - [SMALL_STATE(4077)] = 73501, - [SMALL_STATE(4078)] = 73531, - [SMALL_STATE(4079)] = 73561, - [SMALL_STATE(4080)] = 73591, - [SMALL_STATE(4081)] = 73621, - [SMALL_STATE(4082)] = 73651, - [SMALL_STATE(4083)] = 73677, - [SMALL_STATE(4084)] = 73707, - [SMALL_STATE(4085)] = 73737, - [SMALL_STATE(4086)] = 73767, - [SMALL_STATE(4087)] = 73797, - [SMALL_STATE(4088)] = 73827, - [SMALL_STATE(4089)] = 73857, - [SMALL_STATE(4090)] = 73887, - [SMALL_STATE(4091)] = 73917, - [SMALL_STATE(4092)] = 73947, - [SMALL_STATE(4093)] = 73973, - [SMALL_STATE(4094)] = 74001, - [SMALL_STATE(4095)] = 74031, - [SMALL_STATE(4096)] = 74061, - [SMALL_STATE(4097)] = 74091, - [SMALL_STATE(4098)] = 74121, - [SMALL_STATE(4099)] = 74151, - [SMALL_STATE(4100)] = 74181, - [SMALL_STATE(4101)] = 74211, - [SMALL_STATE(4102)] = 74241, - [SMALL_STATE(4103)] = 74269, - [SMALL_STATE(4104)] = 74299, - [SMALL_STATE(4105)] = 74325, - [SMALL_STATE(4106)] = 74355, - [SMALL_STATE(4107)] = 74385, - [SMALL_STATE(4108)] = 74415, - [SMALL_STATE(4109)] = 74445, - [SMALL_STATE(4110)] = 74471, - [SMALL_STATE(4111)] = 74501, - [SMALL_STATE(4112)] = 74531, - [SMALL_STATE(4113)] = 74561, - [SMALL_STATE(4114)] = 74591, - [SMALL_STATE(4115)] = 74621, - [SMALL_STATE(4116)] = 74651, - [SMALL_STATE(4117)] = 74681, - [SMALL_STATE(4118)] = 74711, - [SMALL_STATE(4119)] = 74741, - [SMALL_STATE(4120)] = 74769, - [SMALL_STATE(4121)] = 74797, - [SMALL_STATE(4122)] = 74827, - [SMALL_STATE(4123)] = 74857, - [SMALL_STATE(4124)] = 74887, - [SMALL_STATE(4125)] = 74917, - [SMALL_STATE(4126)] = 74947, - [SMALL_STATE(4127)] = 74977, - [SMALL_STATE(4128)] = 75007, - [SMALL_STATE(4129)] = 75037, - [SMALL_STATE(4130)] = 75063, - [SMALL_STATE(4131)] = 75093, - [SMALL_STATE(4132)] = 75123, - [SMALL_STATE(4133)] = 75153, - [SMALL_STATE(4134)] = 75180, - [SMALL_STATE(4135)] = 75207, - [SMALL_STATE(4136)] = 75234, - [SMALL_STATE(4137)] = 75261, - [SMALL_STATE(4138)] = 75284, - [SMALL_STATE(4139)] = 75311, - [SMALL_STATE(4140)] = 75338, - [SMALL_STATE(4141)] = 75365, - [SMALL_STATE(4142)] = 75392, - [SMALL_STATE(4143)] = 75417, - [SMALL_STATE(4144)] = 75444, - [SMALL_STATE(4145)] = 75471, - [SMALL_STATE(4146)] = 75496, - [SMALL_STATE(4147)] = 75523, - [SMALL_STATE(4148)] = 75550, - [SMALL_STATE(4149)] = 75577, - [SMALL_STATE(4150)] = 75604, - [SMALL_STATE(4151)] = 75631, - [SMALL_STATE(4152)] = 75658, - [SMALL_STATE(4153)] = 75685, - [SMALL_STATE(4154)] = 75712, - [SMALL_STATE(4155)] = 75739, - [SMALL_STATE(4156)] = 75766, - [SMALL_STATE(4157)] = 75793, - [SMALL_STATE(4158)] = 75820, - [SMALL_STATE(4159)] = 75847, - [SMALL_STATE(4160)] = 75874, - [SMALL_STATE(4161)] = 75901, - [SMALL_STATE(4162)] = 75928, - [SMALL_STATE(4163)] = 75955, - [SMALL_STATE(4164)] = 75978, - [SMALL_STATE(4165)] = 76005, - [SMALL_STATE(4166)] = 76032, - [SMALL_STATE(4167)] = 76059, - [SMALL_STATE(4168)] = 76082, - [SMALL_STATE(4169)] = 76105, - [SMALL_STATE(4170)] = 76132, - [SMALL_STATE(4171)] = 76159, - [SMALL_STATE(4172)] = 76186, - [SMALL_STATE(4173)] = 76213, - [SMALL_STATE(4174)] = 76240, - [SMALL_STATE(4175)] = 76265, - [SMALL_STATE(4176)] = 76288, - [SMALL_STATE(4177)] = 76315, - [SMALL_STATE(4178)] = 76342, - [SMALL_STATE(4179)] = 76369, - [SMALL_STATE(4180)] = 76392, - [SMALL_STATE(4181)] = 76419, - [SMALL_STATE(4182)] = 76446, - [SMALL_STATE(4183)] = 76471, - [SMALL_STATE(4184)] = 76498, - [SMALL_STATE(4185)] = 76523, - [SMALL_STATE(4186)] = 76550, - [SMALL_STATE(4187)] = 76577, - [SMALL_STATE(4188)] = 76600, - [SMALL_STATE(4189)] = 76627, - [SMALL_STATE(4190)] = 76654, - [SMALL_STATE(4191)] = 76681, - [SMALL_STATE(4192)] = 76708, - [SMALL_STATE(4193)] = 76735, - [SMALL_STATE(4194)] = 76762, - [SMALL_STATE(4195)] = 76785, - [SMALL_STATE(4196)] = 76812, - [SMALL_STATE(4197)] = 76839, - [SMALL_STATE(4198)] = 76866, - [SMALL_STATE(4199)] = 76893, - [SMALL_STATE(4200)] = 76920, - [SMALL_STATE(4201)] = 76947, - [SMALL_STATE(4202)] = 76974, - [SMALL_STATE(4203)] = 76999, - [SMALL_STATE(4204)] = 77026, - [SMALL_STATE(4205)] = 77053, - [SMALL_STATE(4206)] = 77080, - [SMALL_STATE(4207)] = 77107, - [SMALL_STATE(4208)] = 77134, - [SMALL_STATE(4209)] = 77161, - [SMALL_STATE(4210)] = 77188, - [SMALL_STATE(4211)] = 77215, - [SMALL_STATE(4212)] = 77242, - [SMALL_STATE(4213)] = 77269, - [SMALL_STATE(4214)] = 77296, - [SMALL_STATE(4215)] = 77321, - [SMALL_STATE(4216)] = 77348, - [SMALL_STATE(4217)] = 77375, - [SMALL_STATE(4218)] = 77402, - [SMALL_STATE(4219)] = 77429, - [SMALL_STATE(4220)] = 77456, - [SMALL_STATE(4221)] = 77483, - [SMALL_STATE(4222)] = 77508, - [SMALL_STATE(4223)] = 77535, - [SMALL_STATE(4224)] = 77562, - [SMALL_STATE(4225)] = 77589, - [SMALL_STATE(4226)] = 77616, - [SMALL_STATE(4227)] = 77643, - [SMALL_STATE(4228)] = 77670, - [SMALL_STATE(4229)] = 77697, - [SMALL_STATE(4230)] = 77724, - [SMALL_STATE(4231)] = 77751, - [SMALL_STATE(4232)] = 77778, - [SMALL_STATE(4233)] = 77805, - [SMALL_STATE(4234)] = 77832, - [SMALL_STATE(4235)] = 77857, - [SMALL_STATE(4236)] = 77884, - [SMALL_STATE(4237)] = 77911, - [SMALL_STATE(4238)] = 77938, - [SMALL_STATE(4239)] = 77961, - [SMALL_STATE(4240)] = 77988, - [SMALL_STATE(4241)] = 78015, - [SMALL_STATE(4242)] = 78042, - [SMALL_STATE(4243)] = 78069, - [SMALL_STATE(4244)] = 78096, - [SMALL_STATE(4245)] = 78123, - [SMALL_STATE(4246)] = 78150, - [SMALL_STATE(4247)] = 78177, - [SMALL_STATE(4248)] = 78204, - [SMALL_STATE(4249)] = 78227, - [SMALL_STATE(4250)] = 78252, - [SMALL_STATE(4251)] = 78279, - [SMALL_STATE(4252)] = 78306, - [SMALL_STATE(4253)] = 78333, - [SMALL_STATE(4254)] = 78360, - [SMALL_STATE(4255)] = 78387, - [SMALL_STATE(4256)] = 78414, - [SMALL_STATE(4257)] = 78441, - [SMALL_STATE(4258)] = 78468, - [SMALL_STATE(4259)] = 78495, - [SMALL_STATE(4260)] = 78522, - [SMALL_STATE(4261)] = 78549, - [SMALL_STATE(4262)] = 78576, - [SMALL_STATE(4263)] = 78603, - [SMALL_STATE(4264)] = 78628, - [SMALL_STATE(4265)] = 78655, - [SMALL_STATE(4266)] = 78682, - [SMALL_STATE(4267)] = 78707, - [SMALL_STATE(4268)] = 78732, - [SMALL_STATE(4269)] = 78759, - [SMALL_STATE(4270)] = 78786, - [SMALL_STATE(4271)] = 78813, - [SMALL_STATE(4272)] = 78840, - [SMALL_STATE(4273)] = 78867, - [SMALL_STATE(4274)] = 78894, - [SMALL_STATE(4275)] = 78921, - [SMALL_STATE(4276)] = 78948, - [SMALL_STATE(4277)] = 78975, - [SMALL_STATE(4278)] = 79000, - [SMALL_STATE(4279)] = 79027, - [SMALL_STATE(4280)] = 79050, - [SMALL_STATE(4281)] = 79077, - [SMALL_STATE(4282)] = 79104, - [SMALL_STATE(4283)] = 79129, - [SMALL_STATE(4284)] = 79154, - [SMALL_STATE(4285)] = 79179, - [SMALL_STATE(4286)] = 79204, - [SMALL_STATE(4287)] = 79231, - [SMALL_STATE(4288)] = 79258, - [SMALL_STATE(4289)] = 79285, - [SMALL_STATE(4290)] = 79312, - [SMALL_STATE(4291)] = 79339, - [SMALL_STATE(4292)] = 79366, - [SMALL_STATE(4293)] = 79393, - [SMALL_STATE(4294)] = 79420, - [SMALL_STATE(4295)] = 79447, - [SMALL_STATE(4296)] = 79474, - [SMALL_STATE(4297)] = 79501, - [SMALL_STATE(4298)] = 79528, - [SMALL_STATE(4299)] = 79555, - [SMALL_STATE(4300)] = 79582, - [SMALL_STATE(4301)] = 79609, - [SMALL_STATE(4302)] = 79636, - [SMALL_STATE(4303)] = 79663, - [SMALL_STATE(4304)] = 79690, - [SMALL_STATE(4305)] = 79717, - [SMALL_STATE(4306)] = 79744, - [SMALL_STATE(4307)] = 79771, - [SMALL_STATE(4308)] = 79798, - [SMALL_STATE(4309)] = 79822, - [SMALL_STATE(4310)] = 79846, - [SMALL_STATE(4311)] = 79870, - [SMALL_STATE(4312)] = 79894, - [SMALL_STATE(4313)] = 79916, - [SMALL_STATE(4314)] = 79940, - [SMALL_STATE(4315)] = 79964, - [SMALL_STATE(4316)] = 79988, - [SMALL_STATE(4317)] = 80012, - [SMALL_STATE(4318)] = 80036, - [SMALL_STATE(4319)] = 80060, - [SMALL_STATE(4320)] = 80084, - [SMALL_STATE(4321)] = 80108, - [SMALL_STATE(4322)] = 80132, - [SMALL_STATE(4323)] = 80156, - [SMALL_STATE(4324)] = 80178, - [SMALL_STATE(4325)] = 80200, - [SMALL_STATE(4326)] = 80224, - [SMALL_STATE(4327)] = 80248, - [SMALL_STATE(4328)] = 80272, - [SMALL_STATE(4329)] = 80296, - [SMALL_STATE(4330)] = 80320, - [SMALL_STATE(4331)] = 80344, - [SMALL_STATE(4332)] = 80368, - [SMALL_STATE(4333)] = 80392, - [SMALL_STATE(4334)] = 80416, - [SMALL_STATE(4335)] = 80440, - [SMALL_STATE(4336)] = 80464, - [SMALL_STATE(4337)] = 80488, - [SMALL_STATE(4338)] = 80512, - [SMALL_STATE(4339)] = 80536, - [SMALL_STATE(4340)] = 80560, - [SMALL_STATE(4341)] = 80584, - [SMALL_STATE(4342)] = 80608, - [SMALL_STATE(4343)] = 80632, - [SMALL_STATE(4344)] = 80656, - [SMALL_STATE(4345)] = 80680, - [SMALL_STATE(4346)] = 80704, - [SMALL_STATE(4347)] = 80726, - [SMALL_STATE(4348)] = 80750, - [SMALL_STATE(4349)] = 80774, - [SMALL_STATE(4350)] = 80796, - [SMALL_STATE(4351)] = 80818, - [SMALL_STATE(4352)] = 80840, - [SMALL_STATE(4353)] = 80864, - [SMALL_STATE(4354)] = 80888, - [SMALL_STATE(4355)] = 80912, - [SMALL_STATE(4356)] = 80936, - [SMALL_STATE(4357)] = 80960, - [SMALL_STATE(4358)] = 80984, - [SMALL_STATE(4359)] = 81008, - [SMALL_STATE(4360)] = 81032, - [SMALL_STATE(4361)] = 81056, - [SMALL_STATE(4362)] = 81078, - [SMALL_STATE(4363)] = 81102, - [SMALL_STATE(4364)] = 81126, - [SMALL_STATE(4365)] = 81150, - [SMALL_STATE(4366)] = 81174, - [SMALL_STATE(4367)] = 81198, - [SMALL_STATE(4368)] = 81222, - [SMALL_STATE(4369)] = 81246, - [SMALL_STATE(4370)] = 81270, - [SMALL_STATE(4371)] = 81294, - [SMALL_STATE(4372)] = 81318, - [SMALL_STATE(4373)] = 81340, - [SMALL_STATE(4374)] = 81364, - [SMALL_STATE(4375)] = 81388, - [SMALL_STATE(4376)] = 81412, - [SMALL_STATE(4377)] = 81436, - [SMALL_STATE(4378)] = 81460, - [SMALL_STATE(4379)] = 81484, - [SMALL_STATE(4380)] = 81508, - [SMALL_STATE(4381)] = 81532, - [SMALL_STATE(4382)] = 81556, - [SMALL_STATE(4383)] = 81580, - [SMALL_STATE(4384)] = 81604, - [SMALL_STATE(4385)] = 81628, - [SMALL_STATE(4386)] = 81652, - [SMALL_STATE(4387)] = 81676, - [SMALL_STATE(4388)] = 81700, - [SMALL_STATE(4389)] = 81724, - [SMALL_STATE(4390)] = 81748, - [SMALL_STATE(4391)] = 81772, - [SMALL_STATE(4392)] = 81796, - [SMALL_STATE(4393)] = 81820, - [SMALL_STATE(4394)] = 81844, - [SMALL_STATE(4395)] = 81868, - [SMALL_STATE(4396)] = 81892, - [SMALL_STATE(4397)] = 81914, - [SMALL_STATE(4398)] = 81938, - [SMALL_STATE(4399)] = 81962, - [SMALL_STATE(4400)] = 81986, - [SMALL_STATE(4401)] = 82008, - [SMALL_STATE(4402)] = 82030, - [SMALL_STATE(4403)] = 82054, - [SMALL_STATE(4404)] = 82078, - [SMALL_STATE(4405)] = 82102, - [SMALL_STATE(4406)] = 82126, - [SMALL_STATE(4407)] = 82150, - [SMALL_STATE(4408)] = 82174, - [SMALL_STATE(4409)] = 82198, - [SMALL_STATE(4410)] = 82222, - [SMALL_STATE(4411)] = 82246, - [SMALL_STATE(4412)] = 82270, - [SMALL_STATE(4413)] = 82294, - [SMALL_STATE(4414)] = 82318, - [SMALL_STATE(4415)] = 82342, - [SMALL_STATE(4416)] = 82366, - [SMALL_STATE(4417)] = 82390, - [SMALL_STATE(4418)] = 82414, - [SMALL_STATE(4419)] = 82438, - [SMALL_STATE(4420)] = 82462, - [SMALL_STATE(4421)] = 82486, - [SMALL_STATE(4422)] = 82510, - [SMALL_STATE(4423)] = 82534, - [SMALL_STATE(4424)] = 82558, - [SMALL_STATE(4425)] = 82582, - [SMALL_STATE(4426)] = 82606, - [SMALL_STATE(4427)] = 82630, - [SMALL_STATE(4428)] = 82654, - [SMALL_STATE(4429)] = 82678, - [SMALL_STATE(4430)] = 82700, - [SMALL_STATE(4431)] = 82724, - [SMALL_STATE(4432)] = 82748, - [SMALL_STATE(4433)] = 82772, - [SMALL_STATE(4434)] = 82796, - [SMALL_STATE(4435)] = 82820, - [SMALL_STATE(4436)] = 82844, - [SMALL_STATE(4437)] = 82868, - [SMALL_STATE(4438)] = 82892, - [SMALL_STATE(4439)] = 82916, - [SMALL_STATE(4440)] = 82938, - [SMALL_STATE(4441)] = 82962, - [SMALL_STATE(4442)] = 82984, - [SMALL_STATE(4443)] = 83008, - [SMALL_STATE(4444)] = 83032, - [SMALL_STATE(4445)] = 83056, - [SMALL_STATE(4446)] = 83080, - [SMALL_STATE(4447)] = 83104, - [SMALL_STATE(4448)] = 83128, - [SMALL_STATE(4449)] = 83152, - [SMALL_STATE(4450)] = 83174, - [SMALL_STATE(4451)] = 83198, - [SMALL_STATE(4452)] = 83222, - [SMALL_STATE(4453)] = 83246, - [SMALL_STATE(4454)] = 83270, - [SMALL_STATE(4455)] = 83292, - [SMALL_STATE(4456)] = 83316, - [SMALL_STATE(4457)] = 83340, - [SMALL_STATE(4458)] = 83364, - [SMALL_STATE(4459)] = 83386, - [SMALL_STATE(4460)] = 83410, - [SMALL_STATE(4461)] = 83434, - [SMALL_STATE(4462)] = 83456, - [SMALL_STATE(4463)] = 83480, - [SMALL_STATE(4464)] = 83504, - [SMALL_STATE(4465)] = 83526, - [SMALL_STATE(4466)] = 83550, - [SMALL_STATE(4467)] = 83574, - [SMALL_STATE(4468)] = 83598, - [SMALL_STATE(4469)] = 83622, - [SMALL_STATE(4470)] = 83646, - [SMALL_STATE(4471)] = 83670, - [SMALL_STATE(4472)] = 83694, - [SMALL_STATE(4473)] = 83718, - [SMALL_STATE(4474)] = 83742, - [SMALL_STATE(4475)] = 83766, - [SMALL_STATE(4476)] = 83790, - [SMALL_STATE(4477)] = 83814, - [SMALL_STATE(4478)] = 83838, - [SMALL_STATE(4479)] = 83862, - [SMALL_STATE(4480)] = 83886, - [SMALL_STATE(4481)] = 83910, - [SMALL_STATE(4482)] = 83934, - [SMALL_STATE(4483)] = 83958, - [SMALL_STATE(4484)] = 83982, - [SMALL_STATE(4485)] = 84004, - [SMALL_STATE(4486)] = 84026, - [SMALL_STATE(4487)] = 84050, - [SMALL_STATE(4488)] = 84072, - [SMALL_STATE(4489)] = 84094, - [SMALL_STATE(4490)] = 84118, - [SMALL_STATE(4491)] = 84142, - [SMALL_STATE(4492)] = 84166, - [SMALL_STATE(4493)] = 84190, - [SMALL_STATE(4494)] = 84214, - [SMALL_STATE(4495)] = 84238, - [SMALL_STATE(4496)] = 84262, - [SMALL_STATE(4497)] = 84286, - [SMALL_STATE(4498)] = 84310, - [SMALL_STATE(4499)] = 84334, - [SMALL_STATE(4500)] = 84358, - [SMALL_STATE(4501)] = 84380, - [SMALL_STATE(4502)] = 84404, - [SMALL_STATE(4503)] = 84428, - [SMALL_STATE(4504)] = 84450, - [SMALL_STATE(4505)] = 84474, - [SMALL_STATE(4506)] = 84498, - [SMALL_STATE(4507)] = 84522, - [SMALL_STATE(4508)] = 84546, - [SMALL_STATE(4509)] = 84568, - [SMALL_STATE(4510)] = 84590, - [SMALL_STATE(4511)] = 84612, - [SMALL_STATE(4512)] = 84636, - [SMALL_STATE(4513)] = 84658, - [SMALL_STATE(4514)] = 84682, - [SMALL_STATE(4515)] = 84706, - [SMALL_STATE(4516)] = 84730, - [SMALL_STATE(4517)] = 84754, - [SMALL_STATE(4518)] = 84776, - [SMALL_STATE(4519)] = 84800, - [SMALL_STATE(4520)] = 84824, - [SMALL_STATE(4521)] = 84848, - [SMALL_STATE(4522)] = 84872, - [SMALL_STATE(4523)] = 84896, - [SMALL_STATE(4524)] = 84918, - [SMALL_STATE(4525)] = 84942, - [SMALL_STATE(4526)] = 84966, - [SMALL_STATE(4527)] = 84990, - [SMALL_STATE(4528)] = 85014, - [SMALL_STATE(4529)] = 85038, - [SMALL_STATE(4530)] = 85062, - [SMALL_STATE(4531)] = 85086, - [SMALL_STATE(4532)] = 85110, - [SMALL_STATE(4533)] = 85134, - [SMALL_STATE(4534)] = 85158, - [SMALL_STATE(4535)] = 85182, - [SMALL_STATE(4536)] = 85204, - [SMALL_STATE(4537)] = 85226, - [SMALL_STATE(4538)] = 85250, - [SMALL_STATE(4539)] = 85274, - [SMALL_STATE(4540)] = 85296, - [SMALL_STATE(4541)] = 85320, - [SMALL_STATE(4542)] = 85344, - [SMALL_STATE(4543)] = 85368, - [SMALL_STATE(4544)] = 85392, - [SMALL_STATE(4545)] = 85416, - [SMALL_STATE(4546)] = 85440, - [SMALL_STATE(4547)] = 85464, - [SMALL_STATE(4548)] = 85488, - [SMALL_STATE(4549)] = 85512, - [SMALL_STATE(4550)] = 85536, - [SMALL_STATE(4551)] = 85560, - [SMALL_STATE(4552)] = 85584, - [SMALL_STATE(4553)] = 85608, - [SMALL_STATE(4554)] = 85632, - [SMALL_STATE(4555)] = 85656, - [SMALL_STATE(4556)] = 85680, - [SMALL_STATE(4557)] = 85704, - [SMALL_STATE(4558)] = 85728, - [SMALL_STATE(4559)] = 85752, - [SMALL_STATE(4560)] = 85776, - [SMALL_STATE(4561)] = 85800, - [SMALL_STATE(4562)] = 85824, - [SMALL_STATE(4563)] = 85848, - [SMALL_STATE(4564)] = 85872, - [SMALL_STATE(4565)] = 85896, - [SMALL_STATE(4566)] = 85918, - [SMALL_STATE(4567)] = 85942, - [SMALL_STATE(4568)] = 85966, - [SMALL_STATE(4569)] = 85990, - [SMALL_STATE(4570)] = 86014, - [SMALL_STATE(4571)] = 86038, - [SMALL_STATE(4572)] = 86062, - [SMALL_STATE(4573)] = 86086, - [SMALL_STATE(4574)] = 86110, - [SMALL_STATE(4575)] = 86134, - [SMALL_STATE(4576)] = 86158, - [SMALL_STATE(4577)] = 86182, - [SMALL_STATE(4578)] = 86204, - [SMALL_STATE(4579)] = 86228, - [SMALL_STATE(4580)] = 86252, - [SMALL_STATE(4581)] = 86276, - [SMALL_STATE(4582)] = 86300, - [SMALL_STATE(4583)] = 86322, - [SMALL_STATE(4584)] = 86346, - [SMALL_STATE(4585)] = 86370, - [SMALL_STATE(4586)] = 86394, - [SMALL_STATE(4587)] = 86418, - [SMALL_STATE(4588)] = 86442, - [SMALL_STATE(4589)] = 86466, - [SMALL_STATE(4590)] = 86490, - [SMALL_STATE(4591)] = 86512, - [SMALL_STATE(4592)] = 86534, - [SMALL_STATE(4593)] = 86558, - [SMALL_STATE(4594)] = 86582, - [SMALL_STATE(4595)] = 86606, - [SMALL_STATE(4596)] = 86630, - [SMALL_STATE(4597)] = 86654, - [SMALL_STATE(4598)] = 86678, - [SMALL_STATE(4599)] = 86700, - [SMALL_STATE(4600)] = 86724, - [SMALL_STATE(4601)] = 86746, - [SMALL_STATE(4602)] = 86770, - [SMALL_STATE(4603)] = 86792, - [SMALL_STATE(4604)] = 86814, - [SMALL_STATE(4605)] = 86838, - [SMALL_STATE(4606)] = 86860, - [SMALL_STATE(4607)] = 86882, - [SMALL_STATE(4608)] = 86904, - [SMALL_STATE(4609)] = 86926, - [SMALL_STATE(4610)] = 86948, - [SMALL_STATE(4611)] = 86972, - [SMALL_STATE(4612)] = 86994, - [SMALL_STATE(4613)] = 87016, - [SMALL_STATE(4614)] = 87038, - [SMALL_STATE(4615)] = 87060, - [SMALL_STATE(4616)] = 87082, - [SMALL_STATE(4617)] = 87106, - [SMALL_STATE(4618)] = 87128, - [SMALL_STATE(4619)] = 87152, - [SMALL_STATE(4620)] = 87176, - [SMALL_STATE(4621)] = 87200, - [SMALL_STATE(4622)] = 87224, - [SMALL_STATE(4623)] = 87248, - [SMALL_STATE(4624)] = 87270, - [SMALL_STATE(4625)] = 87292, - [SMALL_STATE(4626)] = 87314, - [SMALL_STATE(4627)] = 87338, - [SMALL_STATE(4628)] = 87362, - [SMALL_STATE(4629)] = 87386, - [SMALL_STATE(4630)] = 87410, - [SMALL_STATE(4631)] = 87432, - [SMALL_STATE(4632)] = 87454, - [SMALL_STATE(4633)] = 87476, - [SMALL_STATE(4634)] = 87500, - [SMALL_STATE(4635)] = 87522, - [SMALL_STATE(4636)] = 87546, - [SMALL_STATE(4637)] = 87570, - [SMALL_STATE(4638)] = 87592, - [SMALL_STATE(4639)] = 87616, - [SMALL_STATE(4640)] = 87640, - [SMALL_STATE(4641)] = 87664, - [SMALL_STATE(4642)] = 87688, - [SMALL_STATE(4643)] = 87712, - [SMALL_STATE(4644)] = 87736, - [SMALL_STATE(4645)] = 87758, - [SMALL_STATE(4646)] = 87780, - [SMALL_STATE(4647)] = 87802, - [SMALL_STATE(4648)] = 87824, - [SMALL_STATE(4649)] = 87846, - [SMALL_STATE(4650)] = 87870, - [SMALL_STATE(4651)] = 87892, - [SMALL_STATE(4652)] = 87916, - [SMALL_STATE(4653)] = 87938, - [SMALL_STATE(4654)] = 87962, - [SMALL_STATE(4655)] = 87984, - [SMALL_STATE(4656)] = 88006, - [SMALL_STATE(4657)] = 88030, - [SMALL_STATE(4658)] = 88052, - [SMALL_STATE(4659)] = 88074, - [SMALL_STATE(4660)] = 88096, - [SMALL_STATE(4661)] = 88120, - [SMALL_STATE(4662)] = 88144, - [SMALL_STATE(4663)] = 88166, - [SMALL_STATE(4664)] = 88188, - [SMALL_STATE(4665)] = 88210, - [SMALL_STATE(4666)] = 88234, - [SMALL_STATE(4667)] = 88256, - [SMALL_STATE(4668)] = 88278, - [SMALL_STATE(4669)] = 88300, - [SMALL_STATE(4670)] = 88322, - [SMALL_STATE(4671)] = 88346, - [SMALL_STATE(4672)] = 88370, - [SMALL_STATE(4673)] = 88392, - [SMALL_STATE(4674)] = 88414, - [SMALL_STATE(4675)] = 88435, - [SMALL_STATE(4676)] = 88456, - [SMALL_STATE(4677)] = 88477, - [SMALL_STATE(4678)] = 88498, - [SMALL_STATE(4679)] = 88519, - [SMALL_STATE(4680)] = 88540, - [SMALL_STATE(4681)] = 88561, - [SMALL_STATE(4682)] = 88582, - [SMALL_STATE(4683)] = 88603, - [SMALL_STATE(4684)] = 88624, - [SMALL_STATE(4685)] = 88645, - [SMALL_STATE(4686)] = 88666, - [SMALL_STATE(4687)] = 88687, - [SMALL_STATE(4688)] = 88708, - [SMALL_STATE(4689)] = 88729, - [SMALL_STATE(4690)] = 88750, - [SMALL_STATE(4691)] = 88771, - [SMALL_STATE(4692)] = 88792, - [SMALL_STATE(4693)] = 88813, - [SMALL_STATE(4694)] = 88834, - [SMALL_STATE(4695)] = 88855, - [SMALL_STATE(4696)] = 88876, - [SMALL_STATE(4697)] = 88897, - [SMALL_STATE(4698)] = 88918, - [SMALL_STATE(4699)] = 88939, - [SMALL_STATE(4700)] = 88960, - [SMALL_STATE(4701)] = 88981, - [SMALL_STATE(4702)] = 89002, - [SMALL_STATE(4703)] = 89023, - [SMALL_STATE(4704)] = 89044, - [SMALL_STATE(4705)] = 89065, - [SMALL_STATE(4706)] = 89086, - [SMALL_STATE(4707)] = 89107, - [SMALL_STATE(4708)] = 89128, - [SMALL_STATE(4709)] = 89149, - [SMALL_STATE(4710)] = 89170, - [SMALL_STATE(4711)] = 89191, - [SMALL_STATE(4712)] = 89212, - [SMALL_STATE(4713)] = 89233, - [SMALL_STATE(4714)] = 89254, - [SMALL_STATE(4715)] = 89275, - [SMALL_STATE(4716)] = 89296, - [SMALL_STATE(4717)] = 89317, - [SMALL_STATE(4718)] = 89338, - [SMALL_STATE(4719)] = 89359, - [SMALL_STATE(4720)] = 89380, - [SMALL_STATE(4721)] = 89401, - [SMALL_STATE(4722)] = 89422, - [SMALL_STATE(4723)] = 89443, - [SMALL_STATE(4724)] = 89464, - [SMALL_STATE(4725)] = 89485, - [SMALL_STATE(4726)] = 89506, - [SMALL_STATE(4727)] = 89527, - [SMALL_STATE(4728)] = 89548, - [SMALL_STATE(4729)] = 89569, - [SMALL_STATE(4730)] = 89590, - [SMALL_STATE(4731)] = 89611, - [SMALL_STATE(4732)] = 89632, - [SMALL_STATE(4733)] = 89653, - [SMALL_STATE(4734)] = 89674, - [SMALL_STATE(4735)] = 89695, - [SMALL_STATE(4736)] = 89716, - [SMALL_STATE(4737)] = 89737, - [SMALL_STATE(4738)] = 89758, - [SMALL_STATE(4739)] = 89779, - [SMALL_STATE(4740)] = 89800, - [SMALL_STATE(4741)] = 89821, - [SMALL_STATE(4742)] = 89842, - [SMALL_STATE(4743)] = 89863, - [SMALL_STATE(4744)] = 89884, - [SMALL_STATE(4745)] = 89905, - [SMALL_STATE(4746)] = 89926, - [SMALL_STATE(4747)] = 89947, - [SMALL_STATE(4748)] = 89968, - [SMALL_STATE(4749)] = 89989, - [SMALL_STATE(4750)] = 90010, - [SMALL_STATE(4751)] = 90031, - [SMALL_STATE(4752)] = 90052, - [SMALL_STATE(4753)] = 90073, - [SMALL_STATE(4754)] = 90094, - [SMALL_STATE(4755)] = 90115, - [SMALL_STATE(4756)] = 90136, - [SMALL_STATE(4757)] = 90157, - [SMALL_STATE(4758)] = 90178, - [SMALL_STATE(4759)] = 90199, - [SMALL_STATE(4760)] = 90220, - [SMALL_STATE(4761)] = 90241, - [SMALL_STATE(4762)] = 90262, - [SMALL_STATE(4763)] = 90283, - [SMALL_STATE(4764)] = 90304, - [SMALL_STATE(4765)] = 90325, - [SMALL_STATE(4766)] = 90346, - [SMALL_STATE(4767)] = 90367, - [SMALL_STATE(4768)] = 90388, - [SMALL_STATE(4769)] = 90409, - [SMALL_STATE(4770)] = 90430, - [SMALL_STATE(4771)] = 90451, - [SMALL_STATE(4772)] = 90472, - [SMALL_STATE(4773)] = 90493, - [SMALL_STATE(4774)] = 90514, - [SMALL_STATE(4775)] = 90535, - [SMALL_STATE(4776)] = 90556, - [SMALL_STATE(4777)] = 90577, - [SMALL_STATE(4778)] = 90598, - [SMALL_STATE(4779)] = 90619, - [SMALL_STATE(4780)] = 90640, - [SMALL_STATE(4781)] = 90661, - [SMALL_STATE(4782)] = 90682, - [SMALL_STATE(4783)] = 90703, - [SMALL_STATE(4784)] = 90724, - [SMALL_STATE(4785)] = 90745, - [SMALL_STATE(4786)] = 90766, - [SMALL_STATE(4787)] = 90787, - [SMALL_STATE(4788)] = 90808, - [SMALL_STATE(4789)] = 90829, - [SMALL_STATE(4790)] = 90850, - [SMALL_STATE(4791)] = 90871, - [SMALL_STATE(4792)] = 90892, - [SMALL_STATE(4793)] = 90913, - [SMALL_STATE(4794)] = 90934, - [SMALL_STATE(4795)] = 90955, - [SMALL_STATE(4796)] = 90976, - [SMALL_STATE(4797)] = 90997, - [SMALL_STATE(4798)] = 91018, - [SMALL_STATE(4799)] = 91039, - [SMALL_STATE(4800)] = 91060, - [SMALL_STATE(4801)] = 91081, - [SMALL_STATE(4802)] = 91102, - [SMALL_STATE(4803)] = 91123, - [SMALL_STATE(4804)] = 91144, - [SMALL_STATE(4805)] = 91165, - [SMALL_STATE(4806)] = 91186, - [SMALL_STATE(4807)] = 91207, - [SMALL_STATE(4808)] = 91228, - [SMALL_STATE(4809)] = 91249, - [SMALL_STATE(4810)] = 91270, - [SMALL_STATE(4811)] = 91291, - [SMALL_STATE(4812)] = 91312, - [SMALL_STATE(4813)] = 91333, - [SMALL_STATE(4814)] = 91354, - [SMALL_STATE(4815)] = 91375, - [SMALL_STATE(4816)] = 91396, - [SMALL_STATE(4817)] = 91417, - [SMALL_STATE(4818)] = 91438, - [SMALL_STATE(4819)] = 91459, - [SMALL_STATE(4820)] = 91480, - [SMALL_STATE(4821)] = 91501, - [SMALL_STATE(4822)] = 91522, - [SMALL_STATE(4823)] = 91543, - [SMALL_STATE(4824)] = 91564, - [SMALL_STATE(4825)] = 91585, - [SMALL_STATE(4826)] = 91606, - [SMALL_STATE(4827)] = 91627, - [SMALL_STATE(4828)] = 91648, - [SMALL_STATE(4829)] = 91669, - [SMALL_STATE(4830)] = 91690, - [SMALL_STATE(4831)] = 91711, - [SMALL_STATE(4832)] = 91732, - [SMALL_STATE(4833)] = 91753, - [SMALL_STATE(4834)] = 91774, - [SMALL_STATE(4835)] = 91795, - [SMALL_STATE(4836)] = 91816, - [SMALL_STATE(4837)] = 91837, - [SMALL_STATE(4838)] = 91858, - [SMALL_STATE(4839)] = 91879, - [SMALL_STATE(4840)] = 91900, - [SMALL_STATE(4841)] = 91921, - [SMALL_STATE(4842)] = 91942, - [SMALL_STATE(4843)] = 91963, - [SMALL_STATE(4844)] = 91984, - [SMALL_STATE(4845)] = 92005, - [SMALL_STATE(4846)] = 92026, - [SMALL_STATE(4847)] = 92047, - [SMALL_STATE(4848)] = 92068, - [SMALL_STATE(4849)] = 92089, - [SMALL_STATE(4850)] = 92110, - [SMALL_STATE(4851)] = 92131, - [SMALL_STATE(4852)] = 92152, - [SMALL_STATE(4853)] = 92173, - [SMALL_STATE(4854)] = 92194, - [SMALL_STATE(4855)] = 92215, - [SMALL_STATE(4856)] = 92236, - [SMALL_STATE(4857)] = 92257, - [SMALL_STATE(4858)] = 92278, - [SMALL_STATE(4859)] = 92299, - [SMALL_STATE(4860)] = 92320, - [SMALL_STATE(4861)] = 92341, - [SMALL_STATE(4862)] = 92362, - [SMALL_STATE(4863)] = 92383, - [SMALL_STATE(4864)] = 92404, - [SMALL_STATE(4865)] = 92425, - [SMALL_STATE(4866)] = 92446, - [SMALL_STATE(4867)] = 92467, - [SMALL_STATE(4868)] = 92488, - [SMALL_STATE(4869)] = 92509, - [SMALL_STATE(4870)] = 92530, - [SMALL_STATE(4871)] = 92551, - [SMALL_STATE(4872)] = 92572, - [SMALL_STATE(4873)] = 92593, - [SMALL_STATE(4874)] = 92614, - [SMALL_STATE(4875)] = 92635, - [SMALL_STATE(4876)] = 92656, - [SMALL_STATE(4877)] = 92677, - [SMALL_STATE(4878)] = 92698, - [SMALL_STATE(4879)] = 92719, - [SMALL_STATE(4880)] = 92740, - [SMALL_STATE(4881)] = 92761, - [SMALL_STATE(4882)] = 92782, - [SMALL_STATE(4883)] = 92803, - [SMALL_STATE(4884)] = 92824, - [SMALL_STATE(4885)] = 92845, - [SMALL_STATE(4886)] = 92866, - [SMALL_STATE(4887)] = 92887, - [SMALL_STATE(4888)] = 92908, - [SMALL_STATE(4889)] = 92929, - [SMALL_STATE(4890)] = 92950, - [SMALL_STATE(4891)] = 92971, - [SMALL_STATE(4892)] = 92992, - [SMALL_STATE(4893)] = 93013, - [SMALL_STATE(4894)] = 93034, - [SMALL_STATE(4895)] = 93055, - [SMALL_STATE(4896)] = 93076, - [SMALL_STATE(4897)] = 93097, - [SMALL_STATE(4898)] = 93118, - [SMALL_STATE(4899)] = 93139, - [SMALL_STATE(4900)] = 93160, - [SMALL_STATE(4901)] = 93181, - [SMALL_STATE(4902)] = 93202, - [SMALL_STATE(4903)] = 93223, - [SMALL_STATE(4904)] = 93244, - [SMALL_STATE(4905)] = 93265, - [SMALL_STATE(4906)] = 93286, - [SMALL_STATE(4907)] = 93307, - [SMALL_STATE(4908)] = 93328, - [SMALL_STATE(4909)] = 93349, - [SMALL_STATE(4910)] = 93370, - [SMALL_STATE(4911)] = 93391, - [SMALL_STATE(4912)] = 93412, - [SMALL_STATE(4913)] = 93433, - [SMALL_STATE(4914)] = 93454, - [SMALL_STATE(4915)] = 93475, - [SMALL_STATE(4916)] = 93496, - [SMALL_STATE(4917)] = 93517, - [SMALL_STATE(4918)] = 93538, - [SMALL_STATE(4919)] = 93559, - [SMALL_STATE(4920)] = 93580, - [SMALL_STATE(4921)] = 93601, - [SMALL_STATE(4922)] = 93622, - [SMALL_STATE(4923)] = 93643, - [SMALL_STATE(4924)] = 93664, - [SMALL_STATE(4925)] = 93685, - [SMALL_STATE(4926)] = 93706, - [SMALL_STATE(4927)] = 93727, - [SMALL_STATE(4928)] = 93748, - [SMALL_STATE(4929)] = 93769, - [SMALL_STATE(4930)] = 93790, - [SMALL_STATE(4931)] = 93811, - [SMALL_STATE(4932)] = 93832, - [SMALL_STATE(4933)] = 93853, - [SMALL_STATE(4934)] = 93874, - [SMALL_STATE(4935)] = 93895, - [SMALL_STATE(4936)] = 93916, - [SMALL_STATE(4937)] = 93937, - [SMALL_STATE(4938)] = 93958, - [SMALL_STATE(4939)] = 93979, - [SMALL_STATE(4940)] = 94000, - [SMALL_STATE(4941)] = 94021, - [SMALL_STATE(4942)] = 94042, - [SMALL_STATE(4943)] = 94063, - [SMALL_STATE(4944)] = 94084, - [SMALL_STATE(4945)] = 94105, - [SMALL_STATE(4946)] = 94126, - [SMALL_STATE(4947)] = 94147, - [SMALL_STATE(4948)] = 94168, - [SMALL_STATE(4949)] = 94189, - [SMALL_STATE(4950)] = 94210, - [SMALL_STATE(4951)] = 94231, - [SMALL_STATE(4952)] = 94252, - [SMALL_STATE(4953)] = 94273, - [SMALL_STATE(4954)] = 94294, - [SMALL_STATE(4955)] = 94315, - [SMALL_STATE(4956)] = 94336, - [SMALL_STATE(4957)] = 94357, - [SMALL_STATE(4958)] = 94378, - [SMALL_STATE(4959)] = 94399, - [SMALL_STATE(4960)] = 94420, - [SMALL_STATE(4961)] = 94441, - [SMALL_STATE(4962)] = 94462, - [SMALL_STATE(4963)] = 94483, - [SMALL_STATE(4964)] = 94504, - [SMALL_STATE(4965)] = 94525, - [SMALL_STATE(4966)] = 94546, - [SMALL_STATE(4967)] = 94567, - [SMALL_STATE(4968)] = 94588, - [SMALL_STATE(4969)] = 94609, - [SMALL_STATE(4970)] = 94630, - [SMALL_STATE(4971)] = 94651, - [SMALL_STATE(4972)] = 94672, - [SMALL_STATE(4973)] = 94693, - [SMALL_STATE(4974)] = 94714, - [SMALL_STATE(4975)] = 94735, - [SMALL_STATE(4976)] = 94756, - [SMALL_STATE(4977)] = 94777, - [SMALL_STATE(4978)] = 94798, - [SMALL_STATE(4979)] = 94819, - [SMALL_STATE(4980)] = 94840, - [SMALL_STATE(4981)] = 94861, - [SMALL_STATE(4982)] = 94882, - [SMALL_STATE(4983)] = 94903, - [SMALL_STATE(4984)] = 94924, - [SMALL_STATE(4985)] = 94945, - [SMALL_STATE(4986)] = 94966, - [SMALL_STATE(4987)] = 94987, - [SMALL_STATE(4988)] = 95008, - [SMALL_STATE(4989)] = 95029, - [SMALL_STATE(4990)] = 95050, - [SMALL_STATE(4991)] = 95071, - [SMALL_STATE(4992)] = 95092, - [SMALL_STATE(4993)] = 95113, - [SMALL_STATE(4994)] = 95134, - [SMALL_STATE(4995)] = 95155, - [SMALL_STATE(4996)] = 95176, - [SMALL_STATE(4997)] = 95197, - [SMALL_STATE(4998)] = 95218, - [SMALL_STATE(4999)] = 95239, - [SMALL_STATE(5000)] = 95260, - [SMALL_STATE(5001)] = 95281, - [SMALL_STATE(5002)] = 95302, - [SMALL_STATE(5003)] = 95323, - [SMALL_STATE(5004)] = 95344, - [SMALL_STATE(5005)] = 95365, - [SMALL_STATE(5006)] = 95386, - [SMALL_STATE(5007)] = 95407, - [SMALL_STATE(5008)] = 95428, - [SMALL_STATE(5009)] = 95449, - [SMALL_STATE(5010)] = 95470, - [SMALL_STATE(5011)] = 95491, - [SMALL_STATE(5012)] = 95512, - [SMALL_STATE(5013)] = 95533, - [SMALL_STATE(5014)] = 95554, - [SMALL_STATE(5015)] = 95575, - [SMALL_STATE(5016)] = 95596, - [SMALL_STATE(5017)] = 95617, - [SMALL_STATE(5018)] = 95638, - [SMALL_STATE(5019)] = 95659, - [SMALL_STATE(5020)] = 95680, - [SMALL_STATE(5021)] = 95701, - [SMALL_STATE(5022)] = 95722, - [SMALL_STATE(5023)] = 95743, - [SMALL_STATE(5024)] = 95764, - [SMALL_STATE(5025)] = 95785, - [SMALL_STATE(5026)] = 95806, - [SMALL_STATE(5027)] = 95827, - [SMALL_STATE(5028)] = 95848, - [SMALL_STATE(5029)] = 95869, - [SMALL_STATE(5030)] = 95890, - [SMALL_STATE(5031)] = 95911, - [SMALL_STATE(5032)] = 95932, - [SMALL_STATE(5033)] = 95953, - [SMALL_STATE(5034)] = 95974, - [SMALL_STATE(5035)] = 95995, - [SMALL_STATE(5036)] = 96016, - [SMALL_STATE(5037)] = 96037, - [SMALL_STATE(5038)] = 96058, - [SMALL_STATE(5039)] = 96079, - [SMALL_STATE(5040)] = 96100, - [SMALL_STATE(5041)] = 96121, - [SMALL_STATE(5042)] = 96142, - [SMALL_STATE(5043)] = 96163, - [SMALL_STATE(5044)] = 96184, - [SMALL_STATE(5045)] = 96205, - [SMALL_STATE(5046)] = 96226, - [SMALL_STATE(5047)] = 96247, - [SMALL_STATE(5048)] = 96268, - [SMALL_STATE(5049)] = 96289, - [SMALL_STATE(5050)] = 96310, - [SMALL_STATE(5051)] = 96331, - [SMALL_STATE(5052)] = 96352, - [SMALL_STATE(5053)] = 96373, - [SMALL_STATE(5054)] = 96394, - [SMALL_STATE(5055)] = 96415, - [SMALL_STATE(5056)] = 96436, - [SMALL_STATE(5057)] = 96457, - [SMALL_STATE(5058)] = 96478, - [SMALL_STATE(5059)] = 96499, - [SMALL_STATE(5060)] = 96520, - [SMALL_STATE(5061)] = 96541, - [SMALL_STATE(5062)] = 96562, - [SMALL_STATE(5063)] = 96583, - [SMALL_STATE(5064)] = 96604, - [SMALL_STATE(5065)] = 96625, - [SMALL_STATE(5066)] = 96646, - [SMALL_STATE(5067)] = 96667, - [SMALL_STATE(5068)] = 96688, - [SMALL_STATE(5069)] = 96709, - [SMALL_STATE(5070)] = 96730, - [SMALL_STATE(5071)] = 96751, - [SMALL_STATE(5072)] = 96772, - [SMALL_STATE(5073)] = 96793, - [SMALL_STATE(5074)] = 96814, - [SMALL_STATE(5075)] = 96835, - [SMALL_STATE(5076)] = 96856, - [SMALL_STATE(5077)] = 96877, - [SMALL_STATE(5078)] = 96898, - [SMALL_STATE(5079)] = 96919, - [SMALL_STATE(5080)] = 96940, - [SMALL_STATE(5081)] = 96961, - [SMALL_STATE(5082)] = 96982, - [SMALL_STATE(5083)] = 97003, - [SMALL_STATE(5084)] = 97024, - [SMALL_STATE(5085)] = 97045, - [SMALL_STATE(5086)] = 97066, - [SMALL_STATE(5087)] = 97087, - [SMALL_STATE(5088)] = 97108, - [SMALL_STATE(5089)] = 97129, - [SMALL_STATE(5090)] = 97150, - [SMALL_STATE(5091)] = 97171, - [SMALL_STATE(5092)] = 97192, - [SMALL_STATE(5093)] = 97213, - [SMALL_STATE(5094)] = 97234, - [SMALL_STATE(5095)] = 97255, - [SMALL_STATE(5096)] = 97276, - [SMALL_STATE(5097)] = 97297, - [SMALL_STATE(5098)] = 97318, - [SMALL_STATE(5099)] = 97339, - [SMALL_STATE(5100)] = 97360, - [SMALL_STATE(5101)] = 97381, - [SMALL_STATE(5102)] = 97402, - [SMALL_STATE(5103)] = 97423, - [SMALL_STATE(5104)] = 97444, - [SMALL_STATE(5105)] = 97465, - [SMALL_STATE(5106)] = 97486, - [SMALL_STATE(5107)] = 97507, - [SMALL_STATE(5108)] = 97528, - [SMALL_STATE(5109)] = 97549, - [SMALL_STATE(5110)] = 97570, - [SMALL_STATE(5111)] = 97591, - [SMALL_STATE(5112)] = 97612, - [SMALL_STATE(5113)] = 97633, - [SMALL_STATE(5114)] = 97654, - [SMALL_STATE(5115)] = 97675, - [SMALL_STATE(5116)] = 97696, - [SMALL_STATE(5117)] = 97717, - [SMALL_STATE(5118)] = 97738, - [SMALL_STATE(5119)] = 97759, - [SMALL_STATE(5120)] = 97780, - [SMALL_STATE(5121)] = 97801, - [SMALL_STATE(5122)] = 97822, - [SMALL_STATE(5123)] = 97843, - [SMALL_STATE(5124)] = 97864, - [SMALL_STATE(5125)] = 97885, - [SMALL_STATE(5126)] = 97906, - [SMALL_STATE(5127)] = 97927, - [SMALL_STATE(5128)] = 97948, - [SMALL_STATE(5129)] = 97969, - [SMALL_STATE(5130)] = 97990, - [SMALL_STATE(5131)] = 98011, - [SMALL_STATE(5132)] = 98032, - [SMALL_STATE(5133)] = 98053, - [SMALL_STATE(5134)] = 98074, - [SMALL_STATE(5135)] = 98095, - [SMALL_STATE(5136)] = 98116, - [SMALL_STATE(5137)] = 98137, - [SMALL_STATE(5138)] = 98158, - [SMALL_STATE(5139)] = 98179, - [SMALL_STATE(5140)] = 98200, - [SMALL_STATE(5141)] = 98221, - [SMALL_STATE(5142)] = 98242, - [SMALL_STATE(5143)] = 98263, - [SMALL_STATE(5144)] = 98284, - [SMALL_STATE(5145)] = 98305, - [SMALL_STATE(5146)] = 98326, - [SMALL_STATE(5147)] = 98347, - [SMALL_STATE(5148)] = 98368, - [SMALL_STATE(5149)] = 98389, - [SMALL_STATE(5150)] = 98410, - [SMALL_STATE(5151)] = 98431, - [SMALL_STATE(5152)] = 98452, - [SMALL_STATE(5153)] = 98473, - [SMALL_STATE(5154)] = 98494, - [SMALL_STATE(5155)] = 98515, - [SMALL_STATE(5156)] = 98536, - [SMALL_STATE(5157)] = 98557, - [SMALL_STATE(5158)] = 98578, - [SMALL_STATE(5159)] = 98599, - [SMALL_STATE(5160)] = 98620, - [SMALL_STATE(5161)] = 98641, - [SMALL_STATE(5162)] = 98662, - [SMALL_STATE(5163)] = 98683, - [SMALL_STATE(5164)] = 98704, - [SMALL_STATE(5165)] = 98725, - [SMALL_STATE(5166)] = 98746, - [SMALL_STATE(5167)] = 98767, - [SMALL_STATE(5168)] = 98788, - [SMALL_STATE(5169)] = 98809, - [SMALL_STATE(5170)] = 98830, - [SMALL_STATE(5171)] = 98851, - [SMALL_STATE(5172)] = 98872, - [SMALL_STATE(5173)] = 98893, - [SMALL_STATE(5174)] = 98914, - [SMALL_STATE(5175)] = 98935, - [SMALL_STATE(5176)] = 98956, - [SMALL_STATE(5177)] = 98977, - [SMALL_STATE(5178)] = 98998, - [SMALL_STATE(5179)] = 99019, - [SMALL_STATE(5180)] = 99040, - [SMALL_STATE(5181)] = 99061, - [SMALL_STATE(5182)] = 99082, - [SMALL_STATE(5183)] = 99103, - [SMALL_STATE(5184)] = 99124, - [SMALL_STATE(5185)] = 99145, - [SMALL_STATE(5186)] = 99166, - [SMALL_STATE(5187)] = 99187, - [SMALL_STATE(5188)] = 99208, - [SMALL_STATE(5189)] = 99229, - [SMALL_STATE(5190)] = 99250, - [SMALL_STATE(5191)] = 99271, - [SMALL_STATE(5192)] = 99292, - [SMALL_STATE(5193)] = 99313, - [SMALL_STATE(5194)] = 99334, - [SMALL_STATE(5195)] = 99355, - [SMALL_STATE(5196)] = 99376, - [SMALL_STATE(5197)] = 99397, - [SMALL_STATE(5198)] = 99418, - [SMALL_STATE(5199)] = 99439, - [SMALL_STATE(5200)] = 99460, - [SMALL_STATE(5201)] = 99481, - [SMALL_STATE(5202)] = 99502, - [SMALL_STATE(5203)] = 99523, - [SMALL_STATE(5204)] = 99544, - [SMALL_STATE(5205)] = 99565, - [SMALL_STATE(5206)] = 99586, - [SMALL_STATE(5207)] = 99607, - [SMALL_STATE(5208)] = 99628, - [SMALL_STATE(5209)] = 99649, - [SMALL_STATE(5210)] = 99670, - [SMALL_STATE(5211)] = 99691, - [SMALL_STATE(5212)] = 99712, - [SMALL_STATE(5213)] = 99733, - [SMALL_STATE(5214)] = 99754, - [SMALL_STATE(5215)] = 99775, - [SMALL_STATE(5216)] = 99796, - [SMALL_STATE(5217)] = 99817, - [SMALL_STATE(5218)] = 99838, - [SMALL_STATE(5219)] = 99859, - [SMALL_STATE(5220)] = 99880, - [SMALL_STATE(5221)] = 99901, - [SMALL_STATE(5222)] = 99922, - [SMALL_STATE(5223)] = 99943, - [SMALL_STATE(5224)] = 99964, - [SMALL_STATE(5225)] = 99985, - [SMALL_STATE(5226)] = 100006, - [SMALL_STATE(5227)] = 100027, - [SMALL_STATE(5228)] = 100048, - [SMALL_STATE(5229)] = 100069, - [SMALL_STATE(5230)] = 100090, - [SMALL_STATE(5231)] = 100111, - [SMALL_STATE(5232)] = 100132, - [SMALL_STATE(5233)] = 100153, - [SMALL_STATE(5234)] = 100174, - [SMALL_STATE(5235)] = 100195, - [SMALL_STATE(5236)] = 100216, - [SMALL_STATE(5237)] = 100237, - [SMALL_STATE(5238)] = 100258, - [SMALL_STATE(5239)] = 100279, - [SMALL_STATE(5240)] = 100300, - [SMALL_STATE(5241)] = 100321, - [SMALL_STATE(5242)] = 100342, - [SMALL_STATE(5243)] = 100363, - [SMALL_STATE(5244)] = 100384, - [SMALL_STATE(5245)] = 100405, - [SMALL_STATE(5246)] = 100426, - [SMALL_STATE(5247)] = 100447, - [SMALL_STATE(5248)] = 100468, - [SMALL_STATE(5249)] = 100489, - [SMALL_STATE(5250)] = 100510, - [SMALL_STATE(5251)] = 100531, - [SMALL_STATE(5252)] = 100552, - [SMALL_STATE(5253)] = 100573, - [SMALL_STATE(5254)] = 100594, - [SMALL_STATE(5255)] = 100615, - [SMALL_STATE(5256)] = 100636, - [SMALL_STATE(5257)] = 100657, - [SMALL_STATE(5258)] = 100678, - [SMALL_STATE(5259)] = 100699, - [SMALL_STATE(5260)] = 100720, - [SMALL_STATE(5261)] = 100741, - [SMALL_STATE(5262)] = 100762, - [SMALL_STATE(5263)] = 100783, - [SMALL_STATE(5264)] = 100804, - [SMALL_STATE(5265)] = 100825, - [SMALL_STATE(5266)] = 100846, - [SMALL_STATE(5267)] = 100867, - [SMALL_STATE(5268)] = 100888, - [SMALL_STATE(5269)] = 100909, - [SMALL_STATE(5270)] = 100930, - [SMALL_STATE(5271)] = 100951, - [SMALL_STATE(5272)] = 100972, - [SMALL_STATE(5273)] = 100993, - [SMALL_STATE(5274)] = 101014, - [SMALL_STATE(5275)] = 101035, - [SMALL_STATE(5276)] = 101056, - [SMALL_STATE(5277)] = 101077, - [SMALL_STATE(5278)] = 101098, - [SMALL_STATE(5279)] = 101119, - [SMALL_STATE(5280)] = 101140, - [SMALL_STATE(5281)] = 101161, - [SMALL_STATE(5282)] = 101182, - [SMALL_STATE(5283)] = 101203, - [SMALL_STATE(5284)] = 101224, - [SMALL_STATE(5285)] = 101245, - [SMALL_STATE(5286)] = 101266, - [SMALL_STATE(5287)] = 101287, - [SMALL_STATE(5288)] = 101308, - [SMALL_STATE(5289)] = 101329, - [SMALL_STATE(5290)] = 101350, - [SMALL_STATE(5291)] = 101371, - [SMALL_STATE(5292)] = 101392, - [SMALL_STATE(5293)] = 101413, - [SMALL_STATE(5294)] = 101434, - [SMALL_STATE(5295)] = 101455, - [SMALL_STATE(5296)] = 101476, - [SMALL_STATE(5297)] = 101497, - [SMALL_STATE(5298)] = 101518, - [SMALL_STATE(5299)] = 101539, - [SMALL_STATE(5300)] = 101560, - [SMALL_STATE(5301)] = 101581, - [SMALL_STATE(5302)] = 101602, - [SMALL_STATE(5303)] = 101623, - [SMALL_STATE(5304)] = 101644, - [SMALL_STATE(5305)] = 101665, - [SMALL_STATE(5306)] = 101686, - [SMALL_STATE(5307)] = 101707, - [SMALL_STATE(5308)] = 101728, - [SMALL_STATE(5309)] = 101749, - [SMALL_STATE(5310)] = 101770, - [SMALL_STATE(5311)] = 101791, - [SMALL_STATE(5312)] = 101812, - [SMALL_STATE(5313)] = 101833, - [SMALL_STATE(5314)] = 101854, - [SMALL_STATE(5315)] = 101875, - [SMALL_STATE(5316)] = 101896, - [SMALL_STATE(5317)] = 101917, - [SMALL_STATE(5318)] = 101938, - [SMALL_STATE(5319)] = 101959, - [SMALL_STATE(5320)] = 101980, - [SMALL_STATE(5321)] = 102001, - [SMALL_STATE(5322)] = 102022, - [SMALL_STATE(5323)] = 102043, - [SMALL_STATE(5324)] = 102064, - [SMALL_STATE(5325)] = 102085, - [SMALL_STATE(5326)] = 102106, - [SMALL_STATE(5327)] = 102127, - [SMALL_STATE(5328)] = 102148, - [SMALL_STATE(5329)] = 102169, - [SMALL_STATE(5330)] = 102190, - [SMALL_STATE(5331)] = 102211, - [SMALL_STATE(5332)] = 102232, - [SMALL_STATE(5333)] = 102253, - [SMALL_STATE(5334)] = 102274, - [SMALL_STATE(5335)] = 102295, - [SMALL_STATE(5336)] = 102316, - [SMALL_STATE(5337)] = 102337, - [SMALL_STATE(5338)] = 102358, - [SMALL_STATE(5339)] = 102379, - [SMALL_STATE(5340)] = 102400, - [SMALL_STATE(5341)] = 102421, - [SMALL_STATE(5342)] = 102442, - [SMALL_STATE(5343)] = 102463, - [SMALL_STATE(5344)] = 102484, - [SMALL_STATE(5345)] = 102505, - [SMALL_STATE(5346)] = 102526, - [SMALL_STATE(5347)] = 102547, - [SMALL_STATE(5348)] = 102568, - [SMALL_STATE(5349)] = 102589, - [SMALL_STATE(5350)] = 102610, - [SMALL_STATE(5351)] = 102631, - [SMALL_STATE(5352)] = 102652, - [SMALL_STATE(5353)] = 102673, - [SMALL_STATE(5354)] = 102694, - [SMALL_STATE(5355)] = 102715, - [SMALL_STATE(5356)] = 102736, - [SMALL_STATE(5357)] = 102757, - [SMALL_STATE(5358)] = 102778, - [SMALL_STATE(5359)] = 102799, - [SMALL_STATE(5360)] = 102820, - [SMALL_STATE(5361)] = 102841, - [SMALL_STATE(5362)] = 102862, - [SMALL_STATE(5363)] = 102883, - [SMALL_STATE(5364)] = 102904, - [SMALL_STATE(5365)] = 102925, - [SMALL_STATE(5366)] = 102946, - [SMALL_STATE(5367)] = 102967, - [SMALL_STATE(5368)] = 102988, - [SMALL_STATE(5369)] = 103009, - [SMALL_STATE(5370)] = 103030, - [SMALL_STATE(5371)] = 103051, - [SMALL_STATE(5372)] = 103072, - [SMALL_STATE(5373)] = 103093, - [SMALL_STATE(5374)] = 103114, - [SMALL_STATE(5375)] = 103135, - [SMALL_STATE(5376)] = 103156, - [SMALL_STATE(5377)] = 103177, - [SMALL_STATE(5378)] = 103198, - [SMALL_STATE(5379)] = 103219, - [SMALL_STATE(5380)] = 103223, - [SMALL_STATE(5381)] = 103227, - [SMALL_STATE(5382)] = 103231, - [SMALL_STATE(5383)] = 103235, + [SMALL_STATE(2592)] = 0, + [SMALL_STATE(2593)] = 81, + [SMALL_STATE(2594)] = 164, + [SMALL_STATE(2595)] = 247, + [SMALL_STATE(2596)] = 327, + [SMALL_STATE(2597)] = 407, + [SMALL_STATE(2598)] = 485, + [SMALL_STATE(2599)] = 563, + [SMALL_STATE(2600)] = 641, + [SMALL_STATE(2601)] = 801, + [SMALL_STATE(2602)] = 961, + [SMALL_STATE(2603)] = 1039, + [SMALL_STATE(2604)] = 1116, + [SMALL_STATE(2605)] = 1193, + [SMALL_STATE(2606)] = 1270, + [SMALL_STATE(2607)] = 1347, + [SMALL_STATE(2608)] = 1424, + [SMALL_STATE(2609)] = 1501, + [SMALL_STATE(2610)] = 1623, + [SMALL_STATE(2611)] = 1745, + [SMALL_STATE(2612)] = 1867, + [SMALL_STATE(2613)] = 1984, + [SMALL_STATE(2614)] = 2099, + [SMALL_STATE(2615)] = 2215, + [SMALL_STATE(2616)] = 2331, + [SMALL_STATE(2617)] = 2447, + [SMALL_STATE(2618)] = 2563, + [SMALL_STATE(2619)] = 2677, + [SMALL_STATE(2620)] = 2793, + [SMALL_STATE(2621)] = 2909, + [SMALL_STATE(2622)] = 3025, + [SMALL_STATE(2623)] = 3141, + [SMALL_STATE(2624)] = 3257, + [SMALL_STATE(2625)] = 3373, + [SMALL_STATE(2626)] = 3489, + [SMALL_STATE(2627)] = 3605, + [SMALL_STATE(2628)] = 3721, + [SMALL_STATE(2629)] = 3837, + [SMALL_STATE(2630)] = 3934, + [SMALL_STATE(2631)] = 4027, + [SMALL_STATE(2632)] = 4119, + [SMALL_STATE(2633)] = 4209, + [SMALL_STATE(2634)] = 4269, + [SMALL_STATE(2635)] = 4351, + [SMALL_STATE(2636)] = 4408, + [SMALL_STATE(2637)] = 4481, + [SMALL_STATE(2638)] = 4554, + [SMALL_STATE(2639)] = 4613, + [SMALL_STATE(2640)] = 4686, + [SMALL_STATE(2641)] = 4759, + [SMALL_STATE(2642)] = 4832, + [SMALL_STATE(2643)] = 4905, + [SMALL_STATE(2644)] = 4966, + [SMALL_STATE(2645)] = 5039, + [SMALL_STATE(2646)] = 5112, + [SMALL_STATE(2647)] = 5173, + [SMALL_STATE(2648)] = 5246, + [SMALL_STATE(2649)] = 5319, + [SMALL_STATE(2650)] = 5392, + [SMALL_STATE(2651)] = 5465, + [SMALL_STATE(2652)] = 5526, + [SMALL_STATE(2653)] = 5583, + [SMALL_STATE(2654)] = 5642, + [SMALL_STATE(2655)] = 5698, + [SMALL_STATE(2656)] = 5782, + [SMALL_STATE(2657)] = 5842, + [SMALL_STATE(2658)] = 5902, + [SMALL_STATE(2659)] = 5962, + [SMALL_STATE(2660)] = 6020, + [SMALL_STATE(2661)] = 6080, + [SMALL_STATE(2662)] = 6138, + [SMALL_STATE(2663)] = 6193, + [SMALL_STATE(2664)] = 6248, + [SMALL_STATE(2665)] = 6303, + [SMALL_STATE(2666)] = 6358, + [SMALL_STATE(2667)] = 6413, + [SMALL_STATE(2668)] = 6468, + [SMALL_STATE(2669)] = 6523, + [SMALL_STATE(2670)] = 6578, + [SMALL_STATE(2671)] = 6633, + [SMALL_STATE(2672)] = 6688, + [SMALL_STATE(2673)] = 6743, + [SMALL_STATE(2674)] = 6798, + [SMALL_STATE(2675)] = 6853, + [SMALL_STATE(2676)] = 6908, + [SMALL_STATE(2677)] = 6963, + [SMALL_STATE(2678)] = 7018, + [SMALL_STATE(2679)] = 7073, + [SMALL_STATE(2680)] = 7128, + [SMALL_STATE(2681)] = 7185, + [SMALL_STATE(2682)] = 7240, + [SMALL_STATE(2683)] = 7297, + [SMALL_STATE(2684)] = 7352, + [SMALL_STATE(2685)] = 7411, + [SMALL_STATE(2686)] = 7466, + [SMALL_STATE(2687)] = 7525, + [SMALL_STATE(2688)] = 7580, + [SMALL_STATE(2689)] = 7635, + [SMALL_STATE(2690)] = 7690, + [SMALL_STATE(2691)] = 7747, + [SMALL_STATE(2692)] = 7802, + [SMALL_STATE(2693)] = 7857, + [SMALL_STATE(2694)] = 7912, + [SMALL_STATE(2695)] = 7969, + [SMALL_STATE(2696)] = 8024, + [SMALL_STATE(2697)] = 8079, + [SMALL_STATE(2698)] = 8134, + [SMALL_STATE(2699)] = 8189, + [SMALL_STATE(2700)] = 8244, + [SMALL_STATE(2701)] = 8299, + [SMALL_STATE(2702)] = 8354, + [SMALL_STATE(2703)] = 8409, + [SMALL_STATE(2704)] = 8464, + [SMALL_STATE(2705)] = 8519, + [SMALL_STATE(2706)] = 8574, + [SMALL_STATE(2707)] = 8629, + [SMALL_STATE(2708)] = 8683, + [SMALL_STATE(2709)] = 8737, + [SMALL_STATE(2710)] = 8793, + [SMALL_STATE(2711)] = 8847, + [SMALL_STATE(2712)] = 8901, + [SMALL_STATE(2713)] = 8955, + [SMALL_STATE(2714)] = 9009, + [SMALL_STATE(2715)] = 9063, + [SMALL_STATE(2716)] = 9117, + [SMALL_STATE(2717)] = 9171, + [SMALL_STATE(2718)] = 9225, + [SMALL_STATE(2719)] = 9279, + [SMALL_STATE(2720)] = 9335, + [SMALL_STATE(2721)] = 9389, + [SMALL_STATE(2722)] = 9443, + [SMALL_STATE(2723)] = 9499, + [SMALL_STATE(2724)] = 9553, + [SMALL_STATE(2725)] = 9607, + [SMALL_STATE(2726)] = 9661, + [SMALL_STATE(2727)] = 9715, + [SMALL_STATE(2728)] = 9769, + [SMALL_STATE(2729)] = 9823, + [SMALL_STATE(2730)] = 9877, + [SMALL_STATE(2731)] = 9930, + [SMALL_STATE(2732)] = 9987, + [SMALL_STATE(2733)] = 10044, + [SMALL_STATE(2734)] = 10097, + [SMALL_STATE(2735)] = 10172, + [SMALL_STATE(2736)] = 10247, + [SMALL_STATE(2737)] = 10302, + [SMALL_STATE(2738)] = 10377, + [SMALL_STATE(2739)] = 10432, + [SMALL_STATE(2740)] = 10487, + [SMALL_STATE(2741)] = 10554, + [SMALL_STATE(2742)] = 10611, + [SMALL_STATE(2743)] = 10686, + [SMALL_STATE(2744)] = 10741, + [SMALL_STATE(2745)] = 10798, + [SMALL_STATE(2746)] = 10873, + [SMALL_STATE(2747)] = 10931, + [SMALL_STATE(2748)] = 10989, + [SMALL_STATE(2749)] = 11047, + [SMALL_STATE(2750)] = 11103, + [SMALL_STATE(2751)] = 11163, + [SMALL_STATE(2752)] = 11215, + [SMALL_STATE(2753)] = 11273, + [SMALL_STATE(2754)] = 11325, + [SMALL_STATE(2755)] = 11383, + [SMALL_STATE(2756)] = 11441, + [SMALL_STATE(2757)] = 11495, + [SMALL_STATE(2758)] = 11551, + [SMALL_STATE(2759)] = 11609, + [SMALL_STATE(2760)] = 11667, + [SMALL_STATE(2761)] = 11725, + [SMALL_STATE(2762)] = 11777, + [SMALL_STATE(2763)] = 11835, + [SMALL_STATE(2764)] = 11887, + [SMALL_STATE(2765)] = 11938, + [SMALL_STATE(2766)] = 11989, + [SMALL_STATE(2767)] = 12042, + [SMALL_STATE(2768)] = 12097, + [SMALL_STATE(2769)] = 12152, + [SMALL_STATE(2770)] = 12217, + [SMALL_STATE(2771)] = 12272, + [SMALL_STATE(2772)] = 12327, + [SMALL_STATE(2773)] = 12378, + [SMALL_STATE(2774)] = 12433, + [SMALL_STATE(2775)] = 12486, + [SMALL_STATE(2776)] = 12551, + [SMALL_STATE(2777)] = 12616, + [SMALL_STATE(2778)] = 12667, + [SMALL_STATE(2779)] = 12722, + [SMALL_STATE(2780)] = 12773, + [SMALL_STATE(2781)] = 12824, + [SMALL_STATE(2782)] = 12879, + [SMALL_STATE(2783)] = 12930, + [SMALL_STATE(2784)] = 12981, + [SMALL_STATE(2785)] = 13032, + [SMALL_STATE(2786)] = 13083, + [SMALL_STATE(2787)] = 13134, + [SMALL_STATE(2788)] = 13185, + [SMALL_STATE(2789)] = 13236, + [SMALL_STATE(2790)] = 13287, + [SMALL_STATE(2791)] = 13338, + [SMALL_STATE(2792)] = 13389, + [SMALL_STATE(2793)] = 13440, + [SMALL_STATE(2794)] = 13491, + [SMALL_STATE(2795)] = 13542, + [SMALL_STATE(2796)] = 13593, + [SMALL_STATE(2797)] = 13644, + [SMALL_STATE(2798)] = 13743, + [SMALL_STATE(2799)] = 13798, + [SMALL_STATE(2800)] = 13849, + [SMALL_STATE(2801)] = 13934, + [SMALL_STATE(2802)] = 13985, + [SMALL_STATE(2803)] = 14038, + [SMALL_STATE(2804)] = 14089, + [SMALL_STATE(2805)] = 14140, + [SMALL_STATE(2806)] = 14193, + [SMALL_STATE(2807)] = 14244, + [SMALL_STATE(2808)] = 14329, + [SMALL_STATE(2809)] = 14380, + [SMALL_STATE(2810)] = 14431, + [SMALL_STATE(2811)] = 14482, + [SMALL_STATE(2812)] = 14547, + [SMALL_STATE(2813)] = 14600, + [SMALL_STATE(2814)] = 14685, + [SMALL_STATE(2815)] = 14770, + [SMALL_STATE(2816)] = 14821, + [SMALL_STATE(2817)] = 14876, + [SMALL_STATE(2818)] = 14975, + [SMALL_STATE(2819)] = 15054, + [SMALL_STATE(2820)] = 15139, + [SMALL_STATE(2821)] = 15190, + [SMALL_STATE(2822)] = 15275, + [SMALL_STATE(2823)] = 15360, + [SMALL_STATE(2824)] = 15411, + [SMALL_STATE(2825)] = 15496, + [SMALL_STATE(2826)] = 15549, + [SMALL_STATE(2827)] = 15602, + [SMALL_STATE(2828)] = 15657, + [SMALL_STATE(2829)] = 15708, + [SMALL_STATE(2830)] = 15758, + [SMALL_STATE(2831)] = 15808, + [SMALL_STATE(2832)] = 15858, + [SMALL_STATE(2833)] = 15908, + [SMALL_STATE(2834)] = 15962, + [SMALL_STATE(2835)] = 16014, + [SMALL_STATE(2836)] = 16064, + [SMALL_STATE(2837)] = 16114, + [SMALL_STATE(2838)] = 16168, + [SMALL_STATE(2839)] = 16220, + [SMALL_STATE(2840)] = 16270, + [SMALL_STATE(2841)] = 16352, + [SMALL_STATE(2842)] = 16416, + [SMALL_STATE(2843)] = 16466, + [SMALL_STATE(2844)] = 16530, + [SMALL_STATE(2845)] = 16580, + [SMALL_STATE(2846)] = 16630, + [SMALL_STATE(2847)] = 16680, + [SMALL_STATE(2848)] = 16734, + [SMALL_STATE(2849)] = 16816, + [SMALL_STATE(2850)] = 16866, + [SMALL_STATE(2851)] = 16930, + [SMALL_STATE(2852)] = 16980, + [SMALL_STATE(2853)] = 17034, + [SMALL_STATE(2854)] = 17088, + [SMALL_STATE(2855)] = 17138, + [SMALL_STATE(2856)] = 17190, + [SMALL_STATE(2857)] = 17254, + [SMALL_STATE(2858)] = 17304, + [SMALL_STATE(2859)] = 17354, + [SMALL_STATE(2860)] = 17404, + [SMALL_STATE(2861)] = 17454, + [SMALL_STATE(2862)] = 17536, + [SMALL_STATE(2863)] = 17618, + [SMALL_STATE(2864)] = 17698, + [SMALL_STATE(2865)] = 17748, + [SMALL_STATE(2866)] = 17798, + [SMALL_STATE(2867)] = 17852, + [SMALL_STATE(2868)] = 17902, + [SMALL_STATE(2869)] = 17952, + [SMALL_STATE(2870)] = 18048, + [SMALL_STATE(2871)] = 18098, + [SMALL_STATE(2872)] = 18148, + [SMALL_STATE(2873)] = 18198, + [SMALL_STATE(2874)] = 18248, + [SMALL_STATE(2875)] = 18298, + [SMALL_STATE(2876)] = 18348, + [SMALL_STATE(2877)] = 18398, + [SMALL_STATE(2878)] = 18448, + [SMALL_STATE(2879)] = 18498, + [SMALL_STATE(2880)] = 18548, + [SMALL_STATE(2881)] = 18598, + [SMALL_STATE(2882)] = 18648, + [SMALL_STATE(2883)] = 18698, + [SMALL_STATE(2884)] = 18748, + [SMALL_STATE(2885)] = 18798, + [SMALL_STATE(2886)] = 18848, + [SMALL_STATE(2887)] = 18898, + [SMALL_STATE(2888)] = 18948, + [SMALL_STATE(2889)] = 18998, + [SMALL_STATE(2890)] = 19048, + [SMALL_STATE(2891)] = 19098, + [SMALL_STATE(2892)] = 19148, + [SMALL_STATE(2893)] = 19198, + [SMALL_STATE(2894)] = 19248, + [SMALL_STATE(2895)] = 19298, + [SMALL_STATE(2896)] = 19348, + [SMALL_STATE(2897)] = 19398, + [SMALL_STATE(2898)] = 19448, + [SMALL_STATE(2899)] = 19512, + [SMALL_STATE(2900)] = 19562, + [SMALL_STATE(2901)] = 19612, + [SMALL_STATE(2902)] = 19662, + [SMALL_STATE(2903)] = 19712, + [SMALL_STATE(2904)] = 19762, + [SMALL_STATE(2905)] = 19813, + [SMALL_STATE(2906)] = 19861, + [SMALL_STATE(2907)] = 19909, + [SMALL_STATE(2908)] = 19957, + [SMALL_STATE(2909)] = 20005, + [SMALL_STATE(2910)] = 20053, + [SMALL_STATE(2911)] = 20101, + [SMALL_STATE(2912)] = 20149, + [SMALL_STATE(2913)] = 20197, + [SMALL_STATE(2914)] = 20247, + [SMALL_STATE(2915)] = 20295, + [SMALL_STATE(2916)] = 20345, + [SMALL_STATE(2917)] = 20393, + [SMALL_STATE(2918)] = 20445, + [SMALL_STATE(2919)] = 20493, + [SMALL_STATE(2920)] = 20543, + [SMALL_STATE(2921)] = 20591, + [SMALL_STATE(2922)] = 20643, + [SMALL_STATE(2923)] = 20691, + [SMALL_STATE(2924)] = 20739, + [SMALL_STATE(2925)] = 20787, + [SMALL_STATE(2926)] = 20835, + [SMALL_STATE(2927)] = 20883, + [SMALL_STATE(2928)] = 20935, + [SMALL_STATE(2929)] = 20997, + [SMALL_STATE(2930)] = 21049, + [SMALL_STATE(2931)] = 21097, + [SMALL_STATE(2932)] = 21145, + [SMALL_STATE(2933)] = 21195, + [SMALL_STATE(2934)] = 21247, + [SMALL_STATE(2935)] = 21297, + [SMALL_STATE(2936)] = 21345, + [SMALL_STATE(2937)] = 21397, + [SMALL_STATE(2938)] = 21445, + [SMALL_STATE(2939)] = 21507, + [SMALL_STATE(2940)] = 21557, + [SMALL_STATE(2941)] = 21619, + [SMALL_STATE(2942)] = 21671, + [SMALL_STATE(2943)] = 21719, + [SMALL_STATE(2944)] = 21781, + [SMALL_STATE(2945)] = 21843, + [SMALL_STATE(2946)] = 21891, + [SMALL_STATE(2947)] = 21939, + [SMALL_STATE(2948)] = 21987, + [SMALL_STATE(2949)] = 22035, + [SMALL_STATE(2950)] = 22083, + [SMALL_STATE(2951)] = 22131, + [SMALL_STATE(2952)] = 22179, + [SMALL_STATE(2953)] = 22227, + [SMALL_STATE(2954)] = 22275, + [SMALL_STATE(2955)] = 22325, + [SMALL_STATE(2956)] = 22373, + [SMALL_STATE(2957)] = 22421, + [SMALL_STATE(2958)] = 22483, + [SMALL_STATE(2959)] = 22533, + [SMALL_STATE(2960)] = 22581, + [SMALL_STATE(2961)] = 22633, + [SMALL_STATE(2962)] = 22681, + [SMALL_STATE(2963)] = 22733, + [SMALL_STATE(2964)] = 22781, + [SMALL_STATE(2965)] = 22829, + [SMALL_STATE(2966)] = 22881, + [SMALL_STATE(2967)] = 22943, + [SMALL_STATE(2968)] = 22991, + [SMALL_STATE(2969)] = 23039, + [SMALL_STATE(2970)] = 23087, + [SMALL_STATE(2971)] = 23135, + [SMALL_STATE(2972)] = 23183, + [SMALL_STATE(2973)] = 23259, + [SMALL_STATE(2974)] = 23321, + [SMALL_STATE(2975)] = 23369, + [SMALL_STATE(2976)] = 23417, + [SMALL_STATE(2977)] = 23465, + [SMALL_STATE(2978)] = 23527, + [SMALL_STATE(2979)] = 23575, + [SMALL_STATE(2980)] = 23637, + [SMALL_STATE(2981)] = 23689, + [SMALL_STATE(2982)] = 23739, + [SMALL_STATE(2983)] = 23787, + [SMALL_STATE(2984)] = 23835, + [SMALL_STATE(2985)] = 23883, + [SMALL_STATE(2986)] = 23935, + [SMALL_STATE(2987)] = 23983, + [SMALL_STATE(2988)] = 24074, + [SMALL_STATE(2989)] = 24165, + [SMALL_STATE(2990)] = 24216, + [SMALL_STATE(2991)] = 24264, + [SMALL_STATE(2992)] = 24349, + [SMALL_STATE(2993)] = 24434, + [SMALL_STATE(2994)] = 24479, + [SMALL_STATE(2995)] = 24524, + [SMALL_STATE(2996)] = 24569, + [SMALL_STATE(2997)] = 24628, + [SMALL_STATE(2998)] = 24675, + [SMALL_STATE(2999)] = 24720, + [SMALL_STATE(3000)] = 24765, + [SMALL_STATE(3001)] = 24810, + [SMALL_STATE(3002)] = 24895, + [SMALL_STATE(3003)] = 24980, + [SMALL_STATE(3004)] = 25025, + [SMALL_STATE(3005)] = 25089, + [SMALL_STATE(3006)] = 25135, + [SMALL_STATE(3007)] = 25183, + [SMALL_STATE(3008)] = 25247, + [SMALL_STATE(3009)] = 25291, + [SMALL_STATE(3010)] = 25337, + [SMALL_STATE(3011)] = 25401, + [SMALL_STATE(3012)] = 25465, + [SMALL_STATE(3013)] = 25529, + [SMALL_STATE(3014)] = 25593, + [SMALL_STATE(3015)] = 25637, + [SMALL_STATE(3016)] = 25701, + [SMALL_STATE(3017)] = 25765, + [SMALL_STATE(3018)] = 25829, + [SMALL_STATE(3019)] = 25893, + [SMALL_STATE(3020)] = 25957, + [SMALL_STATE(3021)] = 26021, + [SMALL_STATE(3022)] = 26085, + [SMALL_STATE(3023)] = 26133, + [SMALL_STATE(3024)] = 26197, + [SMALL_STATE(3025)] = 26261, + [SMALL_STATE(3026)] = 26305, + [SMALL_STATE(3027)] = 26369, + [SMALL_STATE(3028)] = 26433, + [SMALL_STATE(3029)] = 26497, + [SMALL_STATE(3030)] = 26545, + [SMALL_STATE(3031)] = 26609, + [SMALL_STATE(3032)] = 26657, + [SMALL_STATE(3033)] = 26721, + [SMALL_STATE(3034)] = 26785, + [SMALL_STATE(3035)] = 26849, + [SMALL_STATE(3036)] = 26908, + [SMALL_STATE(3037)] = 26967, + [SMALL_STATE(3038)] = 27016, + [SMALL_STATE(3039)] = 27077, + [SMALL_STATE(3040)] = 27120, + [SMALL_STATE(3041)] = 27177, + [SMALL_STATE(3042)] = 27238, + [SMALL_STATE(3043)] = 27299, + [SMALL_STATE(3044)] = 27348, + [SMALL_STATE(3045)] = 27409, + [SMALL_STATE(3046)] = 27468, + [SMALL_STATE(3047)] = 27527, + [SMALL_STATE(3048)] = 27588, + [SMALL_STATE(3049)] = 27649, + [SMALL_STATE(3050)] = 27710, + [SMALL_STATE(3051)] = 27771, + [SMALL_STATE(3052)] = 27832, + [SMALL_STATE(3053)] = 27879, + [SMALL_STATE(3054)] = 27940, + [SMALL_STATE(3055)] = 27999, + [SMALL_STATE(3056)] = 28060, + [SMALL_STATE(3057)] = 28119, + [SMALL_STATE(3058)] = 28178, + [SMALL_STATE(3059)] = 28239, + [SMALL_STATE(3060)] = 28282, + [SMALL_STATE(3061)] = 28343, + [SMALL_STATE(3062)] = 28402, + [SMALL_STATE(3063)] = 28463, + [SMALL_STATE(3064)] = 28510, + [SMALL_STATE(3065)] = 28569, + [SMALL_STATE(3066)] = 28616, + [SMALL_STATE(3067)] = 28661, + [SMALL_STATE(3068)] = 28718, + [SMALL_STATE(3069)] = 28779, + [SMALL_STATE(3070)] = 28840, + [SMALL_STATE(3071)] = 28899, + [SMALL_STATE(3072)] = 28941, + [SMALL_STATE(3073)] = 28987, + [SMALL_STATE(3074)] = 29051, + [SMALL_STATE(3075)] = 29115, + [SMALL_STATE(3076)] = 29191, + [SMALL_STATE(3077)] = 29249, + [SMALL_STATE(3078)] = 29305, + [SMALL_STATE(3079)] = 29363, + [SMALL_STATE(3080)] = 29407, + [SMALL_STATE(3081)] = 29453, + [SMALL_STATE(3082)] = 29497, + [SMALL_STATE(3083)] = 29539, + [SMALL_STATE(3084)] = 29581, + [SMALL_STATE(3085)] = 29623, + [SMALL_STATE(3086)] = 29669, + [SMALL_STATE(3087)] = 29713, + [SMALL_STATE(3088)] = 29777, + [SMALL_STATE(3089)] = 29823, + [SMALL_STATE(3090)] = 29865, + [SMALL_STATE(3091)] = 29907, + [SMALL_STATE(3092)] = 29949, + [SMALL_STATE(3093)] = 29991, + [SMALL_STATE(3094)] = 30039, + [SMALL_STATE(3095)] = 30081, + [SMALL_STATE(3096)] = 30123, + [SMALL_STATE(3097)] = 30181, + [SMALL_STATE(3098)] = 30223, + [SMALL_STATE(3099)] = 30265, + [SMALL_STATE(3100)] = 30321, + [SMALL_STATE(3101)] = 30379, + [SMALL_STATE(3102)] = 30421, + [SMALL_STATE(3103)] = 30497, + [SMALL_STATE(3104)] = 30561, + [SMALL_STATE(3105)] = 30603, + [SMALL_STATE(3106)] = 30645, + [SMALL_STATE(3107)] = 30709, + [SMALL_STATE(3108)] = 30751, + [SMALL_STATE(3109)] = 30793, + [SMALL_STATE(3110)] = 30835, + [SMALL_STATE(3111)] = 30877, + [SMALL_STATE(3112)] = 30919, + [SMALL_STATE(3113)] = 30983, + [SMALL_STATE(3114)] = 31059, + [SMALL_STATE(3115)] = 31101, + [SMALL_STATE(3116)] = 31143, + [SMALL_STATE(3117)] = 31185, + [SMALL_STATE(3118)] = 31227, + [SMALL_STATE(3119)] = 31269, + [SMALL_STATE(3120)] = 31315, + [SMALL_STATE(3121)] = 31357, + [SMALL_STATE(3122)] = 31399, + [SMALL_STATE(3123)] = 31441, + [SMALL_STATE(3124)] = 31483, + [SMALL_STATE(3125)] = 31525, + [SMALL_STATE(3126)] = 31567, + [SMALL_STATE(3127)] = 31609, + [SMALL_STATE(3128)] = 31651, + [SMALL_STATE(3129)] = 31693, + [SMALL_STATE(3130)] = 31735, + [SMALL_STATE(3131)] = 31777, + [SMALL_STATE(3132)] = 31819, + [SMALL_STATE(3133)] = 31861, + [SMALL_STATE(3134)] = 31919, + [SMALL_STATE(3135)] = 31961, + [SMALL_STATE(3136)] = 32007, + [SMALL_STATE(3137)] = 32049, + [SMALL_STATE(3138)] = 32091, + [SMALL_STATE(3139)] = 32155, + [SMALL_STATE(3140)] = 32197, + [SMALL_STATE(3141)] = 32239, + [SMALL_STATE(3142)] = 32281, + [SMALL_STATE(3143)] = 32345, + [SMALL_STATE(3144)] = 32400, + [SMALL_STATE(3145)] = 32455, + [SMALL_STATE(3146)] = 32510, + [SMALL_STATE(3147)] = 32565, + [SMALL_STATE(3148)] = 32620, + [SMALL_STATE(3149)] = 32675, + [SMALL_STATE(3150)] = 32730, + [SMALL_STATE(3151)] = 32785, + [SMALL_STATE(3152)] = 32832, + [SMALL_STATE(3153)] = 32887, + [SMALL_STATE(3154)] = 32942, + [SMALL_STATE(3155)] = 32997, + [SMALL_STATE(3156)] = 33052, + [SMALL_STATE(3157)] = 33107, + [SMALL_STATE(3158)] = 33148, + [SMALL_STATE(3159)] = 33203, + [SMALL_STATE(3160)] = 33258, + [SMALL_STATE(3161)] = 33313, + [SMALL_STATE(3162)] = 33368, + [SMALL_STATE(3163)] = 33423, + [SMALL_STATE(3164)] = 33478, + [SMALL_STATE(3165)] = 33533, + [SMALL_STATE(3166)] = 33588, + [SMALL_STATE(3167)] = 33643, + [SMALL_STATE(3168)] = 33698, + [SMALL_STATE(3169)] = 33753, + [SMALL_STATE(3170)] = 33808, + [SMALL_STATE(3171)] = 33863, + [SMALL_STATE(3172)] = 33918, + [SMALL_STATE(3173)] = 33973, + [SMALL_STATE(3174)] = 34028, + [SMALL_STATE(3175)] = 34069, + [SMALL_STATE(3176)] = 34124, + [SMALL_STATE(3177)] = 34179, + [SMALL_STATE(3178)] = 34234, + [SMALL_STATE(3179)] = 34289, + [SMALL_STATE(3180)] = 34344, + [SMALL_STATE(3181)] = 34399, + [SMALL_STATE(3182)] = 34454, + [SMALL_STATE(3183)] = 34509, + [SMALL_STATE(3184)] = 34564, + [SMALL_STATE(3185)] = 34619, + [SMALL_STATE(3186)] = 34674, + [SMALL_STATE(3187)] = 34729, + [SMALL_STATE(3188)] = 34784, + [SMALL_STATE(3189)] = 34839, + [SMALL_STATE(3190)] = 34882, + [SMALL_STATE(3191)] = 34937, + [SMALL_STATE(3192)] = 34992, + [SMALL_STATE(3193)] = 35047, + [SMALL_STATE(3194)] = 35102, + [SMALL_STATE(3195)] = 35157, + [SMALL_STATE(3196)] = 35212, + [SMALL_STATE(3197)] = 35267, + [SMALL_STATE(3198)] = 35322, + [SMALL_STATE(3199)] = 35377, + [SMALL_STATE(3200)] = 35432, + [SMALL_STATE(3201)] = 35487, + [SMALL_STATE(3202)] = 35542, + [SMALL_STATE(3203)] = 35597, + [SMALL_STATE(3204)] = 35652, + [SMALL_STATE(3205)] = 35707, + [SMALL_STATE(3206)] = 35762, + [SMALL_STATE(3207)] = 35817, + [SMALL_STATE(3208)] = 35872, + [SMALL_STATE(3209)] = 35927, + [SMALL_STATE(3210)] = 35968, + [SMALL_STATE(3211)] = 36023, + [SMALL_STATE(3212)] = 36078, + [SMALL_STATE(3213)] = 36133, + [SMALL_STATE(3214)] = 36188, + [SMALL_STATE(3215)] = 36243, + [SMALL_STATE(3216)] = 36298, + [SMALL_STATE(3217)] = 36353, + [SMALL_STATE(3218)] = 36398, + [SMALL_STATE(3219)] = 36453, + [SMALL_STATE(3220)] = 36508, + [SMALL_STATE(3221)] = 36563, + [SMALL_STATE(3222)] = 36618, + [SMALL_STATE(3223)] = 36673, + [SMALL_STATE(3224)] = 36728, + [SMALL_STATE(3225)] = 36783, + [SMALL_STATE(3226)] = 36838, + [SMALL_STATE(3227)] = 36893, + [SMALL_STATE(3228)] = 36948, + [SMALL_STATE(3229)] = 37003, + [SMALL_STATE(3230)] = 37060, + [SMALL_STATE(3231)] = 37115, + [SMALL_STATE(3232)] = 37170, + [SMALL_STATE(3233)] = 37225, + [SMALL_STATE(3234)] = 37280, + [SMALL_STATE(3235)] = 37321, + [SMALL_STATE(3236)] = 37376, + [SMALL_STATE(3237)] = 37431, + [SMALL_STATE(3238)] = 37486, + [SMALL_STATE(3239)] = 37541, + [SMALL_STATE(3240)] = 37596, + [SMALL_STATE(3241)] = 37651, + [SMALL_STATE(3242)] = 37706, + [SMALL_STATE(3243)] = 37761, + [SMALL_STATE(3244)] = 37816, + [SMALL_STATE(3245)] = 37871, + [SMALL_STATE(3246)] = 37926, + [SMALL_STATE(3247)] = 37981, + [SMALL_STATE(3248)] = 38022, + [SMALL_STATE(3249)] = 38077, + [SMALL_STATE(3250)] = 38132, + [SMALL_STATE(3251)] = 38187, + [SMALL_STATE(3252)] = 38242, + [SMALL_STATE(3253)] = 38297, + [SMALL_STATE(3254)] = 38352, + [SMALL_STATE(3255)] = 38407, + [SMALL_STATE(3256)] = 38462, + [SMALL_STATE(3257)] = 38517, + [SMALL_STATE(3258)] = 38572, + [SMALL_STATE(3259)] = 38627, + [SMALL_STATE(3260)] = 38682, + [SMALL_STATE(3261)] = 38737, + [SMALL_STATE(3262)] = 38792, + [SMALL_STATE(3263)] = 38847, + [SMALL_STATE(3264)] = 38902, + [SMALL_STATE(3265)] = 38957, + [SMALL_STATE(3266)] = 39012, + [SMALL_STATE(3267)] = 39067, + [SMALL_STATE(3268)] = 39122, + [SMALL_STATE(3269)] = 39163, + [SMALL_STATE(3270)] = 39218, + [SMALL_STATE(3271)] = 39273, + [SMALL_STATE(3272)] = 39328, + [SMALL_STATE(3273)] = 39383, + [SMALL_STATE(3274)] = 39438, + [SMALL_STATE(3275)] = 39493, + [SMALL_STATE(3276)] = 39548, + [SMALL_STATE(3277)] = 39603, + [SMALL_STATE(3278)] = 39658, + [SMALL_STATE(3279)] = 39699, + [SMALL_STATE(3280)] = 39754, + [SMALL_STATE(3281)] = 39809, + [SMALL_STATE(3282)] = 39850, + [SMALL_STATE(3283)] = 39905, + [SMALL_STATE(3284)] = 39960, + [SMALL_STATE(3285)] = 40015, + [SMALL_STATE(3286)] = 40070, + [SMALL_STATE(3287)] = 40125, + [SMALL_STATE(3288)] = 40180, + [SMALL_STATE(3289)] = 40221, + [SMALL_STATE(3290)] = 40276, + [SMALL_STATE(3291)] = 40331, + [SMALL_STATE(3292)] = 40388, + [SMALL_STATE(3293)] = 40443, + [SMALL_STATE(3294)] = 40498, + [SMALL_STATE(3295)] = 40553, + [SMALL_STATE(3296)] = 40608, + [SMALL_STATE(3297)] = 40663, + [SMALL_STATE(3298)] = 40706, + [SMALL_STATE(3299)] = 40761, + [SMALL_STATE(3300)] = 40816, + [SMALL_STATE(3301)] = 40871, + [SMALL_STATE(3302)] = 40926, + [SMALL_STATE(3303)] = 40981, + [SMALL_STATE(3304)] = 41036, + [SMALL_STATE(3305)] = 41091, + [SMALL_STATE(3306)] = 41146, + [SMALL_STATE(3307)] = 41191, + [SMALL_STATE(3308)] = 41246, + [SMALL_STATE(3309)] = 41301, + [SMALL_STATE(3310)] = 41358, + [SMALL_STATE(3311)] = 41413, + [SMALL_STATE(3312)] = 41468, + [SMALL_STATE(3313)] = 41523, + [SMALL_STATE(3314)] = 41578, + [SMALL_STATE(3315)] = 41633, + [SMALL_STATE(3316)] = 41688, + [SMALL_STATE(3317)] = 41743, + [SMALL_STATE(3318)] = 41798, + [SMALL_STATE(3319)] = 41853, + [SMALL_STATE(3320)] = 41908, + [SMALL_STATE(3321)] = 41963, + [SMALL_STATE(3322)] = 42018, + [SMALL_STATE(3323)] = 42073, + [SMALL_STATE(3324)] = 42128, + [SMALL_STATE(3325)] = 42183, + [SMALL_STATE(3326)] = 42238, + [SMALL_STATE(3327)] = 42293, + [SMALL_STATE(3328)] = 42348, + [SMALL_STATE(3329)] = 42405, + [SMALL_STATE(3330)] = 42460, + [SMALL_STATE(3331)] = 42515, + [SMALL_STATE(3332)] = 42570, + [SMALL_STATE(3333)] = 42625, + [SMALL_STATE(3334)] = 42680, + [SMALL_STATE(3335)] = 42735, + [SMALL_STATE(3336)] = 42790, + [SMALL_STATE(3337)] = 42845, + [SMALL_STATE(3338)] = 42900, + [SMALL_STATE(3339)] = 42955, + [SMALL_STATE(3340)] = 43010, + [SMALL_STATE(3341)] = 43065, + [SMALL_STATE(3342)] = 43120, + [SMALL_STATE(3343)] = 43175, + [SMALL_STATE(3344)] = 43230, + [SMALL_STATE(3345)] = 43285, + [SMALL_STATE(3346)] = 43340, + [SMALL_STATE(3347)] = 43395, + [SMALL_STATE(3348)] = 43438, + [SMALL_STATE(3349)] = 43495, + [SMALL_STATE(3350)] = 43550, + [SMALL_STATE(3351)] = 43605, + [SMALL_STATE(3352)] = 43648, + [SMALL_STATE(3353)] = 43703, + [SMALL_STATE(3354)] = 43771, + [SMALL_STATE(3355)] = 43811, + [SMALL_STATE(3356)] = 43867, + [SMALL_STATE(3357)] = 43909, + [SMALL_STATE(3358)] = 43949, + [SMALL_STATE(3359)] = 43991, + [SMALL_STATE(3360)] = 44031, + [SMALL_STATE(3361)] = 44071, + [SMALL_STATE(3362)] = 44111, + [SMALL_STATE(3363)] = 44151, + [SMALL_STATE(3364)] = 44207, + [SMALL_STATE(3365)] = 44263, + [SMALL_STATE(3366)] = 44303, + [SMALL_STATE(3367)] = 44359, + [SMALL_STATE(3368)] = 44399, + [SMALL_STATE(3369)] = 44439, + [SMALL_STATE(3370)] = 44479, + [SMALL_STATE(3371)] = 44519, + [SMALL_STATE(3372)] = 44585, + [SMALL_STATE(3373)] = 44625, + [SMALL_STATE(3374)] = 44681, + [SMALL_STATE(3375)] = 44721, + [SMALL_STATE(3376)] = 44761, + [SMALL_STATE(3377)] = 44801, + [SMALL_STATE(3378)] = 44841, + [SMALL_STATE(3379)] = 44881, + [SMALL_STATE(3380)] = 44949, + [SMALL_STATE(3381)] = 44989, + [SMALL_STATE(3382)] = 45031, + [SMALL_STATE(3383)] = 45073, + [SMALL_STATE(3384)] = 45113, + [SMALL_STATE(3385)] = 45153, + [SMALL_STATE(3386)] = 45193, + [SMALL_STATE(3387)] = 45233, + [SMALL_STATE(3388)] = 45272, + [SMALL_STATE(3389)] = 45311, + [SMALL_STATE(3390)] = 45378, + [SMALL_STATE(3391)] = 45421, + [SMALL_STATE(3392)] = 45462, + [SMALL_STATE(3393)] = 45505, + [SMALL_STATE(3394)] = 45548, + [SMALL_STATE(3395)] = 45615, + [SMALL_STATE(3396)] = 45680, + [SMALL_STATE(3397)] = 45744, + [SMALL_STATE(3398)] = 45798, + [SMALL_STATE(3399)] = 45852, + [SMALL_STATE(3400)] = 45906, + [SMALL_STATE(3401)] = 45944, + [SMALL_STATE(3402)] = 45998, + [SMALL_STATE(3403)] = 46062, + [SMALL_STATE(3404)] = 46116, + [SMALL_STATE(3405)] = 46180, + [SMALL_STATE(3406)] = 46234, + [SMALL_STATE(3407)] = 46288, + [SMALL_STATE(3408)] = 46342, + [SMALL_STATE(3409)] = 46396, + [SMALL_STATE(3410)] = 46448, + [SMALL_STATE(3411)] = 46512, + [SMALL_STATE(3412)] = 46550, + [SMALL_STATE(3413)] = 46588, + [SMALL_STATE(3414)] = 46642, + [SMALL_STATE(3415)] = 46706, + [SMALL_STATE(3416)] = 46748, + [SMALL_STATE(3417)] = 46802, + [SMALL_STATE(3418)] = 46843, + [SMALL_STATE(3419)] = 46880, + [SMALL_STATE(3420)] = 46917, + [SMALL_STATE(3421)] = 46956, + [SMALL_STATE(3422)] = 46993, + [SMALL_STATE(3423)] = 47030, + [SMALL_STATE(3424)] = 47073, + [SMALL_STATE(3425)] = 47110, + [SMALL_STATE(3426)] = 47147, + [SMALL_STATE(3427)] = 47184, + [SMALL_STATE(3428)] = 47221, + [SMALL_STATE(3429)] = 47258, + [SMALL_STATE(3430)] = 47295, + [SMALL_STATE(3431)] = 47332, + [SMALL_STATE(3432)] = 47373, + [SMALL_STATE(3433)] = 47410, + [SMALL_STATE(3434)] = 47451, + [SMALL_STATE(3435)] = 47488, + [SMALL_STATE(3436)] = 47527, + [SMALL_STATE(3437)] = 47568, + [SMALL_STATE(3438)] = 47629, + [SMALL_STATE(3439)] = 47666, + [SMALL_STATE(3440)] = 47703, + [SMALL_STATE(3441)] = 47742, + [SMALL_STATE(3442)] = 47779, + [SMALL_STATE(3443)] = 47816, + [SMALL_STATE(3444)] = 47853, + [SMALL_STATE(3445)] = 47892, + [SMALL_STATE(3446)] = 47929, + [SMALL_STATE(3447)] = 47966, + [SMALL_STATE(3448)] = 48005, + [SMALL_STATE(3449)] = 48042, + [SMALL_STATE(3450)] = 48079, + [SMALL_STATE(3451)] = 48116, + [SMALL_STATE(3452)] = 48157, + [SMALL_STATE(3453)] = 48194, + [SMALL_STATE(3454)] = 48231, + [SMALL_STATE(3455)] = 48268, + [SMALL_STATE(3456)] = 48305, + [SMALL_STATE(3457)] = 48342, + [SMALL_STATE(3458)] = 48379, + [SMALL_STATE(3459)] = 48416, + [SMALL_STATE(3460)] = 48453, + [SMALL_STATE(3461)] = 48490, + [SMALL_STATE(3462)] = 48527, + [SMALL_STATE(3463)] = 48564, + [SMALL_STATE(3464)] = 48601, + [SMALL_STATE(3465)] = 48638, + [SMALL_STATE(3466)] = 48677, + [SMALL_STATE(3467)] = 48714, + [SMALL_STATE(3468)] = 48751, + [SMALL_STATE(3469)] = 48788, + [SMALL_STATE(3470)] = 48825, + [SMALL_STATE(3471)] = 48862, + [SMALL_STATE(3472)] = 48899, + [SMALL_STATE(3473)] = 48938, + [SMALL_STATE(3474)] = 48975, + [SMALL_STATE(3475)] = 49012, + [SMALL_STATE(3476)] = 49053, + [SMALL_STATE(3477)] = 49090, + [SMALL_STATE(3478)] = 49131, + [SMALL_STATE(3479)] = 49172, + [SMALL_STATE(3480)] = 49209, + [SMALL_STATE(3481)] = 49248, + [SMALL_STATE(3482)] = 49285, + [SMALL_STATE(3483)] = 49322, + [SMALL_STATE(3484)] = 49359, + [SMALL_STATE(3485)] = 49397, + [SMALL_STATE(3486)] = 49449, + [SMALL_STATE(3487)] = 49487, + [SMALL_STATE(3488)] = 49539, + [SMALL_STATE(3489)] = 49577, + [SMALL_STATE(3490)] = 49629, + [SMALL_STATE(3491)] = 49669, + [SMALL_STATE(3492)] = 49705, + [SMALL_STATE(3493)] = 49743, + [SMALL_STATE(3494)] = 49781, + [SMALL_STATE(3495)] = 49821, + [SMALL_STATE(3496)] = 49857, + [SMALL_STATE(3497)] = 49895, + [SMALL_STATE(3498)] = 49933, + [SMALL_STATE(3499)] = 49969, + [SMALL_STATE(3500)] = 50005, + [SMALL_STATE(3501)] = 50039, + [SMALL_STATE(3502)] = 50075, + [SMALL_STATE(3503)] = 50127, + [SMALL_STATE(3504)] = 50165, + [SMALL_STATE(3505)] = 50201, + [SMALL_STATE(3506)] = 50237, + [SMALL_STATE(3507)] = 50295, + [SMALL_STATE(3508)] = 50330, + [SMALL_STATE(3509)] = 50369, + [SMALL_STATE(3510)] = 50416, + [SMALL_STATE(3511)] = 50455, + [SMALL_STATE(3512)] = 50492, + [SMALL_STATE(3513)] = 50527, + [SMALL_STATE(3514)] = 50562, + [SMALL_STATE(3515)] = 50597, + [SMALL_STATE(3516)] = 50632, + [SMALL_STATE(3517)] = 50671, + [SMALL_STATE(3518)] = 50706, + [SMALL_STATE(3519)] = 50741, + [SMALL_STATE(3520)] = 50776, + [SMALL_STATE(3521)] = 50831, + [SMALL_STATE(3522)] = 50866, + [SMALL_STATE(3523)] = 50901, + [SMALL_STATE(3524)] = 50940, + [SMALL_STATE(3525)] = 50975, + [SMALL_STATE(3526)] = 51012, + [SMALL_STATE(3527)] = 51049, + [SMALL_STATE(3528)] = 51086, + [SMALL_STATE(3529)] = 51133, + [SMALL_STATE(3530)] = 51166, + [SMALL_STATE(3531)] = 51201, + [SMALL_STATE(3532)] = 51236, + [SMALL_STATE(3533)] = 51275, + [SMALL_STATE(3534)] = 51308, + [SMALL_STATE(3535)] = 51343, + [SMALL_STATE(3536)] = 51382, + [SMALL_STATE(3537)] = 51417, + [SMALL_STATE(3538)] = 51456, + [SMALL_STATE(3539)] = 51493, + [SMALL_STATE(3540)] = 51528, + [SMALL_STATE(3541)] = 51563, + [SMALL_STATE(3542)] = 51598, + [SMALL_STATE(3543)] = 51633, + [SMALL_STATE(3544)] = 51670, + [SMALL_STATE(3545)] = 51705, + [SMALL_STATE(3546)] = 51740, + [SMALL_STATE(3547)] = 51773, + [SMALL_STATE(3548)] = 51808, + [SMALL_STATE(3549)] = 51847, + [SMALL_STATE(3550)] = 51880, + [SMALL_STATE(3551)] = 51915, + [SMALL_STATE(3552)] = 51950, + [SMALL_STATE(3553)] = 51997, + [SMALL_STATE(3554)] = 52032, + [SMALL_STATE(3555)] = 52067, + [SMALL_STATE(3556)] = 52102, + [SMALL_STATE(3557)] = 52139, + [SMALL_STATE(3558)] = 52186, + [SMALL_STATE(3559)] = 52221, + [SMALL_STATE(3560)] = 52256, + [SMALL_STATE(3561)] = 52310, + [SMALL_STATE(3562)] = 52344, + [SMALL_STATE(3563)] = 52398, + [SMALL_STATE(3564)] = 52452, + [SMALL_STATE(3565)] = 52486, + [SMALL_STATE(3566)] = 52520, + [SMALL_STATE(3567)] = 52574, + [SMALL_STATE(3568)] = 52608, + [SMALL_STATE(3569)] = 52642, + [SMALL_STATE(3570)] = 52676, + [SMALL_STATE(3571)] = 52710, + [SMALL_STATE(3572)] = 52764, + [SMALL_STATE(3573)] = 52798, + [SMALL_STATE(3574)] = 52852, + [SMALL_STATE(3575)] = 52906, + [SMALL_STATE(3576)] = 52960, + [SMALL_STATE(3577)] = 53014, + [SMALL_STATE(3578)] = 53068, + [SMALL_STATE(3579)] = 53102, + [SMALL_STATE(3580)] = 53156, + [SMALL_STATE(3581)] = 53192, + [SMALL_STATE(3582)] = 53246, + [SMALL_STATE(3583)] = 53300, + [SMALL_STATE(3584)] = 53354, + [SMALL_STATE(3585)] = 53388, + [SMALL_STATE(3586)] = 53442, + [SMALL_STATE(3587)] = 53496, + [SMALL_STATE(3588)] = 53532, + [SMALL_STATE(3589)] = 53566, + [SMALL_STATE(3590)] = 53620, + [SMALL_STATE(3591)] = 53672, + [SMALL_STATE(3592)] = 53726, + [SMALL_STATE(3593)] = 53758, + [SMALL_STATE(3594)] = 53796, + [SMALL_STATE(3595)] = 53830, + [SMALL_STATE(3596)] = 53871, + [SMALL_STATE(3597)] = 53920, + [SMALL_STATE(3598)] = 53961, + [SMALL_STATE(3599)] = 54002, + [SMALL_STATE(3600)] = 54049, + [SMALL_STATE(3601)] = 54090, + [SMALL_STATE(3602)] = 54131, + [SMALL_STATE(3603)] = 54178, + [SMALL_STATE(3604)] = 54219, + [SMALL_STATE(3605)] = 54260, + [SMALL_STATE(3606)] = 54307, + [SMALL_STATE(3607)] = 54348, + [SMALL_STATE(3608)] = 54389, + [SMALL_STATE(3609)] = 54438, + [SMALL_STATE(3610)] = 54479, + [SMALL_STATE(3611)] = 54526, + [SMALL_STATE(3612)] = 54567, + [SMALL_STATE(3613)] = 54608, + [SMALL_STATE(3614)] = 54645, + [SMALL_STATE(3615)] = 54678, + [SMALL_STATE(3616)] = 54711, + [SMALL_STATE(3617)] = 54752, + [SMALL_STATE(3618)] = 54793, + [SMALL_STATE(3619)] = 54824, + [SMALL_STATE(3620)] = 54857, + [SMALL_STATE(3621)] = 54890, + [SMALL_STATE(3622)] = 54931, + [SMALL_STATE(3623)] = 54972, + [SMALL_STATE(3624)] = 55003, + [SMALL_STATE(3625)] = 55034, + [SMALL_STATE(3626)] = 55065, + [SMALL_STATE(3627)] = 55096, + [SMALL_STATE(3628)] = 55129, + [SMALL_STATE(3629)] = 55170, + [SMALL_STATE(3630)] = 55203, + [SMALL_STATE(3631)] = 55234, + [SMALL_STATE(3632)] = 55281, + [SMALL_STATE(3633)] = 55314, + [SMALL_STATE(3634)] = 55355, + [SMALL_STATE(3635)] = 55396, + [SMALL_STATE(3636)] = 55437, + [SMALL_STATE(3637)] = 55470, + [SMALL_STATE(3638)] = 55511, + [SMALL_STATE(3639)] = 55544, + [SMALL_STATE(3640)] = 55585, + [SMALL_STATE(3641)] = 55626, + [SMALL_STATE(3642)] = 55659, + [SMALL_STATE(3643)] = 55692, + [SMALL_STATE(3644)] = 55733, + [SMALL_STATE(3645)] = 55772, + [SMALL_STATE(3646)] = 55813, + [SMALL_STATE(3647)] = 55846, + [SMALL_STATE(3648)] = 55887, + [SMALL_STATE(3649)] = 55928, + [SMALL_STATE(3650)] = 55969, + [SMALL_STATE(3651)] = 56002, + [SMALL_STATE(3652)] = 56043, + [SMALL_STATE(3653)] = 56084, + [SMALL_STATE(3654)] = 56135, + [SMALL_STATE(3655)] = 56176, + [SMALL_STATE(3656)] = 56217, + [SMALL_STATE(3657)] = 56250, + [SMALL_STATE(3658)] = 56291, + [SMALL_STATE(3659)] = 56332, + [SMALL_STATE(3660)] = 56363, + [SMALL_STATE(3661)] = 56394, + [SMALL_STATE(3662)] = 56427, + [SMALL_STATE(3663)] = 56462, + [SMALL_STATE(3664)] = 56493, + [SMALL_STATE(3665)] = 56524, + [SMALL_STATE(3666)] = 56555, + [SMALL_STATE(3667)] = 56586, + [SMALL_STATE(3668)] = 56617, + [SMALL_STATE(3669)] = 56658, + [SMALL_STATE(3670)] = 56691, + [SMALL_STATE(3671)] = 56732, + [SMALL_STATE(3672)] = 56763, + [SMALL_STATE(3673)] = 56804, + [SMALL_STATE(3674)] = 56841, + [SMALL_STATE(3675)] = 56872, + [SMALL_STATE(3676)] = 56913, + [SMALL_STATE(3677)] = 56944, + [SMALL_STATE(3678)] = 56988, + [SMALL_STATE(3679)] = 57028, + [SMALL_STATE(3680)] = 57072, + [SMALL_STATE(3681)] = 57106, + [SMALL_STATE(3682)] = 57140, + [SMALL_STATE(3683)] = 57184, + [SMALL_STATE(3684)] = 57218, + [SMALL_STATE(3685)] = 57252, + [SMALL_STATE(3686)] = 57286, + [SMALL_STATE(3687)] = 57320, + [SMALL_STATE(3688)] = 57354, + [SMALL_STATE(3689)] = 57398, + [SMALL_STATE(3690)] = 57432, + [SMALL_STATE(3691)] = 57478, + [SMALL_STATE(3692)] = 57514, + [SMALL_STATE(3693)] = 57558, + [SMALL_STATE(3694)] = 57598, + [SMALL_STATE(3695)] = 57632, + [SMALL_STATE(3696)] = 57672, + [SMALL_STATE(3697)] = 57712, + [SMALL_STATE(3698)] = 57760, + [SMALL_STATE(3699)] = 57808, + [SMALL_STATE(3700)] = 57856, + [SMALL_STATE(3701)] = 57902, + [SMALL_STATE(3702)] = 57936, + [SMALL_STATE(3703)] = 57980, + [SMALL_STATE(3704)] = 58020, + [SMALL_STATE(3705)] = 58060, + [SMALL_STATE(3706)] = 58096, + [SMALL_STATE(3707)] = 58142, + [SMALL_STATE(3708)] = 58182, + [SMALL_STATE(3709)] = 58226, + [SMALL_STATE(3710)] = 58272, + [SMALL_STATE(3711)] = 58312, + [SMALL_STATE(3712)] = 58352, + [SMALL_STATE(3713)] = 58386, + [SMALL_STATE(3714)] = 58424, + [SMALL_STATE(3715)] = 58464, + [SMALL_STATE(3716)] = 58504, + [SMALL_STATE(3717)] = 58544, + [SMALL_STATE(3718)] = 58584, + [SMALL_STATE(3719)] = 58630, + [SMALL_STATE(3720)] = 58660, + [SMALL_STATE(3721)] = 58700, + [SMALL_STATE(3722)] = 58730, + [SMALL_STATE(3723)] = 58762, + [SMALL_STATE(3724)] = 58796, + [SMALL_STATE(3725)] = 58826, + [SMALL_STATE(3726)] = 58856, + [SMALL_STATE(3727)] = 58886, + [SMALL_STATE(3728)] = 58930, + [SMALL_STATE(3729)] = 58976, + [SMALL_STATE(3730)] = 59006, + [SMALL_STATE(3731)] = 59040, + [SMALL_STATE(3732)] = 59076, + [SMALL_STATE(3733)] = 59106, + [SMALL_STATE(3734)] = 59136, + [SMALL_STATE(3735)] = 59176, + [SMALL_STATE(3736)] = 59222, + [SMALL_STATE(3737)] = 59262, + [SMALL_STATE(3738)] = 59302, + [SMALL_STATE(3739)] = 59348, + [SMALL_STATE(3740)] = 59388, + [SMALL_STATE(3741)] = 59418, + [SMALL_STATE(3742)] = 59458, + [SMALL_STATE(3743)] = 59506, + [SMALL_STATE(3744)] = 59536, + [SMALL_STATE(3745)] = 59566, + [SMALL_STATE(3746)] = 59604, + [SMALL_STATE(3747)] = 59644, + [SMALL_STATE(3748)] = 59674, + [SMALL_STATE(3749)] = 59704, + [SMALL_STATE(3750)] = 59744, + [SMALL_STATE(3751)] = 59784, + [SMALL_STATE(3752)] = 59824, + [SMALL_STATE(3753)] = 59872, + [SMALL_STATE(3754)] = 59918, + [SMALL_STATE(3755)] = 59958, + [SMALL_STATE(3756)] = 59988, + [SMALL_STATE(3757)] = 60018, + [SMALL_STATE(3758)] = 60048, + [SMALL_STATE(3759)] = 60096, + [SMALL_STATE(3760)] = 60130, + [SMALL_STATE(3761)] = 60166, + [SMALL_STATE(3762)] = 60200, + [SMALL_STATE(3763)] = 60240, + [SMALL_STATE(3764)] = 60288, + [SMALL_STATE(3765)] = 60328, + [SMALL_STATE(3766)] = 60372, + [SMALL_STATE(3767)] = 60418, + [SMALL_STATE(3768)] = 60466, + [SMALL_STATE(3769)] = 60506, + [SMALL_STATE(3770)] = 60542, + [SMALL_STATE(3771)] = 60590, + [SMALL_STATE(3772)] = 60630, + [SMALL_STATE(3773)] = 60664, + [SMALL_STATE(3774)] = 60704, + [SMALL_STATE(3775)] = 60752, + [SMALL_STATE(3776)] = 60800, + [SMALL_STATE(3777)] = 60848, + [SMALL_STATE(3778)] = 60888, + [SMALL_STATE(3779)] = 60928, + [SMALL_STATE(3780)] = 60968, + [SMALL_STATE(3781)] = 61008, + [SMALL_STATE(3782)] = 61056, + [SMALL_STATE(3783)] = 61104, + [SMALL_STATE(3784)] = 61144, + [SMALL_STATE(3785)] = 61189, + [SMALL_STATE(3786)] = 61234, + [SMALL_STATE(3787)] = 61267, + [SMALL_STATE(3788)] = 61312, + [SMALL_STATE(3789)] = 61357, + [SMALL_STATE(3790)] = 61402, + [SMALL_STATE(3791)] = 61437, + [SMALL_STATE(3792)] = 61474, + [SMALL_STATE(3793)] = 61519, + [SMALL_STATE(3794)] = 61564, + [SMALL_STATE(3795)] = 61609, + [SMALL_STATE(3796)] = 61652, + [SMALL_STATE(3797)] = 61681, + [SMALL_STATE(3798)] = 61714, + [SMALL_STATE(3799)] = 61759, + [SMALL_STATE(3800)] = 61802, + [SMALL_STATE(3801)] = 61833, + [SMALL_STATE(3802)] = 61870, + [SMALL_STATE(3803)] = 61915, + [SMALL_STATE(3804)] = 61960, + [SMALL_STATE(3805)] = 61993, + [SMALL_STATE(3806)] = 62036, + [SMALL_STATE(3807)] = 62071, + [SMALL_STATE(3808)] = 62114, + [SMALL_STATE(3809)] = 62159, + [SMALL_STATE(3810)] = 62192, + [SMALL_STATE(3811)] = 62225, + [SMALL_STATE(3812)] = 62258, + [SMALL_STATE(3813)] = 62301, + [SMALL_STATE(3814)] = 62344, + [SMALL_STATE(3815)] = 62387, + [SMALL_STATE(3816)] = 62420, + [SMALL_STATE(3817)] = 62465, + [SMALL_STATE(3818)] = 62508, + [SMALL_STATE(3819)] = 62553, + [SMALL_STATE(3820)] = 62596, + [SMALL_STATE(3821)] = 62639, + [SMALL_STATE(3822)] = 62682, + [SMALL_STATE(3823)] = 62725, + [SMALL_STATE(3824)] = 62770, + [SMALL_STATE(3825)] = 62813, + [SMALL_STATE(3826)] = 62858, + [SMALL_STATE(3827)] = 62901, + [SMALL_STATE(3828)] = 62934, + [SMALL_STATE(3829)] = 62979, + [SMALL_STATE(3830)] = 63022, + [SMALL_STATE(3831)] = 63055, + [SMALL_STATE(3832)] = 63100, + [SMALL_STATE(3833)] = 63145, + [SMALL_STATE(3834)] = 63190, + [SMALL_STATE(3835)] = 63235, + [SMALL_STATE(3836)] = 63278, + [SMALL_STATE(3837)] = 63321, + [SMALL_STATE(3838)] = 63364, + [SMALL_STATE(3839)] = 63409, + [SMALL_STATE(3840)] = 63452, + [SMALL_STATE(3841)] = 63497, + [SMALL_STATE(3842)] = 63540, + [SMALL_STATE(3843)] = 63583, + [SMALL_STATE(3844)] = 63628, + [SMALL_STATE(3845)] = 63673, + [SMALL_STATE(3846)] = 63706, + [SMALL_STATE(3847)] = 63743, + [SMALL_STATE(3848)] = 63788, + [SMALL_STATE(3849)] = 63833, + [SMALL_STATE(3850)] = 63878, + [SMALL_STATE(3851)] = 63921, + [SMALL_STATE(3852)] = 63964, + [SMALL_STATE(3853)] = 63997, + [SMALL_STATE(3854)] = 64030, + [SMALL_STATE(3855)] = 64075, + [SMALL_STATE(3856)] = 64108, + [SMALL_STATE(3857)] = 64153, + [SMALL_STATE(3858)] = 64186, + [SMALL_STATE(3859)] = 64231, + [SMALL_STATE(3860)] = 64274, + [SMALL_STATE(3861)] = 64317, + [SMALL_STATE(3862)] = 64362, + [SMALL_STATE(3863)] = 64407, + [SMALL_STATE(3864)] = 64444, + [SMALL_STATE(3865)] = 64489, + [SMALL_STATE(3866)] = 64534, + [SMALL_STATE(3867)] = 64577, + [SMALL_STATE(3868)] = 64620, + [SMALL_STATE(3869)] = 64663, + [SMALL_STATE(3870)] = 64696, + [SMALL_STATE(3871)] = 64731, + [SMALL_STATE(3872)] = 64776, + [SMALL_STATE(3873)] = 64821, + [SMALL_STATE(3874)] = 64864, + [SMALL_STATE(3875)] = 64909, + [SMALL_STATE(3876)] = 64954, + [SMALL_STATE(3877)] = 64999, + [SMALL_STATE(3878)] = 65042, + [SMALL_STATE(3879)] = 65085, + [SMALL_STATE(3880)] = 65120, + [SMALL_STATE(3881)] = 65165, + [SMALL_STATE(3882)] = 65210, + [SMALL_STATE(3883)] = 65253, + [SMALL_STATE(3884)] = 65298, + [SMALL_STATE(3885)] = 65335, + [SMALL_STATE(3886)] = 65380, + [SMALL_STATE(3887)] = 65423, + [SMALL_STATE(3888)] = 65460, + [SMALL_STATE(3889)] = 65495, + [SMALL_STATE(3890)] = 65538, + [SMALL_STATE(3891)] = 65567, + [SMALL_STATE(3892)] = 65596, + [SMALL_STATE(3893)] = 65641, + [SMALL_STATE(3894)] = 65678, + [SMALL_STATE(3895)] = 65723, + [SMALL_STATE(3896)] = 65768, + [SMALL_STATE(3897)] = 65811, + [SMALL_STATE(3898)] = 65848, + [SMALL_STATE(3899)] = 65891, + [SMALL_STATE(3900)] = 65934, + [SMALL_STATE(3901)] = 65979, + [SMALL_STATE(3902)] = 66024, + [SMALL_STATE(3903)] = 66055, + [SMALL_STATE(3904)] = 66097, + [SMALL_STATE(3905)] = 66139, + [SMALL_STATE(3906)] = 66181, + [SMALL_STATE(3907)] = 66223, + [SMALL_STATE(3908)] = 66265, + [SMALL_STATE(3909)] = 66293, + [SMALL_STATE(3910)] = 66335, + [SMALL_STATE(3911)] = 66365, + [SMALL_STATE(3912)] = 66397, + [SMALL_STATE(3913)] = 66439, + [SMALL_STATE(3914)] = 66467, + [SMALL_STATE(3915)] = 66509, + [SMALL_STATE(3916)] = 66551, + [SMALL_STATE(3917)] = 66581, + [SMALL_STATE(3918)] = 66621, + [SMALL_STATE(3919)] = 66663, + [SMALL_STATE(3920)] = 66691, + [SMALL_STATE(3921)] = 66731, + [SMALL_STATE(3922)] = 66759, + [SMALL_STATE(3923)] = 66787, + [SMALL_STATE(3924)] = 66815, + [SMALL_STATE(3925)] = 66857, + [SMALL_STATE(3926)] = 66889, + [SMALL_STATE(3927)] = 66931, + [SMALL_STATE(3928)] = 66959, + [SMALL_STATE(3929)] = 66991, + [SMALL_STATE(3930)] = 67033, + [SMALL_STATE(3931)] = 67065, + [SMALL_STATE(3932)] = 67093, + [SMALL_STATE(3933)] = 67135, + [SMALL_STATE(3934)] = 67177, + [SMALL_STATE(3935)] = 67219, + [SMALL_STATE(3936)] = 67261, + [SMALL_STATE(3937)] = 67303, + [SMALL_STATE(3938)] = 67345, + [SMALL_STATE(3939)] = 67387, + [SMALL_STATE(3940)] = 67415, + [SMALL_STATE(3941)] = 67457, + [SMALL_STATE(3942)] = 67499, + [SMALL_STATE(3943)] = 67541, + [SMALL_STATE(3944)] = 67575, + [SMALL_STATE(3945)] = 67617, + [SMALL_STATE(3946)] = 67647, + [SMALL_STATE(3947)] = 67677, + [SMALL_STATE(3948)] = 67719, + [SMALL_STATE(3949)] = 67753, + [SMALL_STATE(3950)] = 67795, + [SMALL_STATE(3951)] = 67837, + [SMALL_STATE(3952)] = 67879, + [SMALL_STATE(3953)] = 67909, + [SMALL_STATE(3954)] = 67951, + [SMALL_STATE(3955)] = 67993, + [SMALL_STATE(3956)] = 68035, + [SMALL_STATE(3957)] = 68075, + [SMALL_STATE(3958)] = 68103, + [SMALL_STATE(3959)] = 68133, + [SMALL_STATE(3960)] = 68163, + [SMALL_STATE(3961)] = 68193, + [SMALL_STATE(3962)] = 68225, + [SMALL_STATE(3963)] = 68255, + [SMALL_STATE(3964)] = 68285, + [SMALL_STATE(3965)] = 68327, + [SMALL_STATE(3966)] = 68369, + [SMALL_STATE(3967)] = 68404, + [SMALL_STATE(3968)] = 68441, + [SMALL_STATE(3969)] = 68478, + [SMALL_STATE(3970)] = 68515, + [SMALL_STATE(3971)] = 68554, + [SMALL_STATE(3972)] = 68591, + [SMALL_STATE(3973)] = 68628, + [SMALL_STATE(3974)] = 68665, + [SMALL_STATE(3975)] = 68702, + [SMALL_STATE(3976)] = 68741, + [SMALL_STATE(3977)] = 68770, + [SMALL_STATE(3978)] = 68809, + [SMALL_STATE(3979)] = 68846, + [SMALL_STATE(3980)] = 68885, + [SMALL_STATE(3981)] = 68924, + [SMALL_STATE(3982)] = 68961, + [SMALL_STATE(3983)] = 68998, + [SMALL_STATE(3984)] = 69035, + [SMALL_STATE(3985)] = 69072, + [SMALL_STATE(3986)] = 69109, + [SMALL_STATE(3987)] = 69146, + [SMALL_STATE(3988)] = 69185, + [SMALL_STATE(3989)] = 69224, + [SMALL_STATE(3990)] = 69263, + [SMALL_STATE(3991)] = 69302, + [SMALL_STATE(3992)] = 69341, + [SMALL_STATE(3993)] = 69378, + [SMALL_STATE(3994)] = 69417, + [SMALL_STATE(3995)] = 69454, + [SMALL_STATE(3996)] = 69491, + [SMALL_STATE(3997)] = 69528, + [SMALL_STATE(3998)] = 69565, + [SMALL_STATE(3999)] = 69604, + [SMALL_STATE(4000)] = 69643, + [SMALL_STATE(4001)] = 69680, + [SMALL_STATE(4002)] = 69717, + [SMALL_STATE(4003)] = 69754, + [SMALL_STATE(4004)] = 69793, + [SMALL_STATE(4005)] = 69830, + [SMALL_STATE(4006)] = 69867, + [SMALL_STATE(4007)] = 69904, + [SMALL_STATE(4008)] = 69941, + [SMALL_STATE(4009)] = 69978, + [SMALL_STATE(4010)] = 70017, + [SMALL_STATE(4011)] = 70056, + [SMALL_STATE(4012)] = 70093, + [SMALL_STATE(4013)] = 70130, + [SMALL_STATE(4014)] = 70169, + [SMALL_STATE(4015)] = 70208, + [SMALL_STATE(4016)] = 70245, + [SMALL_STATE(4017)] = 70274, + [SMALL_STATE(4018)] = 70313, + [SMALL_STATE(4019)] = 70352, + [SMALL_STATE(4020)] = 70389, + [SMALL_STATE(4021)] = 70428, + [SMALL_STATE(4022)] = 70465, + [SMALL_STATE(4023)] = 70502, + [SMALL_STATE(4024)] = 70531, + [SMALL_STATE(4025)] = 70568, + [SMALL_STATE(4026)] = 70605, + [SMALL_STATE(4027)] = 70642, + [SMALL_STATE(4028)] = 70670, + [SMALL_STATE(4029)] = 70704, + [SMALL_STATE(4030)] = 70738, + [SMALL_STATE(4031)] = 70770, + [SMALL_STATE(4032)] = 70804, + [SMALL_STATE(4033)] = 70832, + [SMALL_STATE(4034)] = 70868, + [SMALL_STATE(4035)] = 70902, + [SMALL_STATE(4036)] = 70931, + [SMALL_STATE(4037)] = 70964, + [SMALL_STATE(4038)] = 70993, + [SMALL_STATE(4039)] = 71026, + [SMALL_STATE(4040)] = 71059, + [SMALL_STATE(4041)] = 71092, + [SMALL_STATE(4042)] = 71123, + [SMALL_STATE(4043)] = 71156, + [SMALL_STATE(4044)] = 71189, + [SMALL_STATE(4045)] = 71220, + [SMALL_STATE(4046)] = 71249, + [SMALL_STATE(4047)] = 71280, + [SMALL_STATE(4048)] = 71313, + [SMALL_STATE(4049)] = 71346, + [SMALL_STATE(4050)] = 71377, + [SMALL_STATE(4051)] = 71410, + [SMALL_STATE(4052)] = 71443, + [SMALL_STATE(4053)] = 71476, + [SMALL_STATE(4054)] = 71509, + [SMALL_STATE(4055)] = 71542, + [SMALL_STATE(4056)] = 71575, + [SMALL_STATE(4057)] = 71604, + [SMALL_STATE(4058)] = 71637, + [SMALL_STATE(4059)] = 71666, + [SMALL_STATE(4060)] = 71697, + [SMALL_STATE(4061)] = 71728, + [SMALL_STATE(4062)] = 71759, + [SMALL_STATE(4063)] = 71792, + [SMALL_STATE(4064)] = 71825, + [SMALL_STATE(4065)] = 71858, + [SMALL_STATE(4066)] = 71891, + [SMALL_STATE(4067)] = 71922, + [SMALL_STATE(4068)] = 71953, + [SMALL_STATE(4069)] = 71986, + [SMALL_STATE(4070)] = 72019, + [SMALL_STATE(4071)] = 72048, + [SMALL_STATE(4072)] = 72077, + [SMALL_STATE(4073)] = 72110, + [SMALL_STATE(4074)] = 72143, + [SMALL_STATE(4075)] = 72174, + [SMALL_STATE(4076)] = 72207, + [SMALL_STATE(4077)] = 72236, + [SMALL_STATE(4078)] = 72269, + [SMALL_STATE(4079)] = 72302, + [SMALL_STATE(4080)] = 72331, + [SMALL_STATE(4081)] = 72360, + [SMALL_STATE(4082)] = 72393, + [SMALL_STATE(4083)] = 72426, + [SMALL_STATE(4084)] = 72459, + [SMALL_STATE(4085)] = 72492, + [SMALL_STATE(4086)] = 72523, + [SMALL_STATE(4087)] = 72556, + [SMALL_STATE(4088)] = 72589, + [SMALL_STATE(4089)] = 72618, + [SMALL_STATE(4090)] = 72651, + [SMALL_STATE(4091)] = 72684, + [SMALL_STATE(4092)] = 72717, + [SMALL_STATE(4093)] = 72750, + [SMALL_STATE(4094)] = 72783, + [SMALL_STATE(4095)] = 72816, + [SMALL_STATE(4096)] = 72845, + [SMALL_STATE(4097)] = 72874, + [SMALL_STATE(4098)] = 72907, + [SMALL_STATE(4099)] = 72940, + [SMALL_STATE(4100)] = 72973, + [SMALL_STATE(4101)] = 73002, + [SMALL_STATE(4102)] = 73031, + [SMALL_STATE(4103)] = 73064, + [SMALL_STATE(4104)] = 73097, + [SMALL_STATE(4105)] = 73124, + [SMALL_STATE(4106)] = 73157, + [SMALL_STATE(4107)] = 73184, + [SMALL_STATE(4108)] = 73217, + [SMALL_STATE(4109)] = 73250, + [SMALL_STATE(4110)] = 73281, + [SMALL_STATE(4111)] = 73314, + [SMALL_STATE(4112)] = 73347, + [SMALL_STATE(4113)] = 73380, + [SMALL_STATE(4114)] = 73411, + [SMALL_STATE(4115)] = 73444, + [SMALL_STATE(4116)] = 73471, + [SMALL_STATE(4117)] = 73504, + [SMALL_STATE(4118)] = 73535, + [SMALL_STATE(4119)] = 73566, + [SMALL_STATE(4120)] = 73599, + [SMALL_STATE(4121)] = 73632, + [SMALL_STATE(4122)] = 73665, + [SMALL_STATE(4123)] = 73698, + [SMALL_STATE(4124)] = 73731, + [SMALL_STATE(4125)] = 73760, + [SMALL_STATE(4126)] = 73793, + [SMALL_STATE(4127)] = 73826, + [SMALL_STATE(4128)] = 73859, + [SMALL_STATE(4129)] = 73892, + [SMALL_STATE(4130)] = 73921, + [SMALL_STATE(4131)] = 73954, + [SMALL_STATE(4132)] = 73987, + [SMALL_STATE(4133)] = 74020, + [SMALL_STATE(4134)] = 74053, + [SMALL_STATE(4135)] = 74080, + [SMALL_STATE(4136)] = 74113, + [SMALL_STATE(4137)] = 74146, + [SMALL_STATE(4138)] = 74179, + [SMALL_STATE(4139)] = 74210, + [SMALL_STATE(4140)] = 74243, + [SMALL_STATE(4141)] = 74274, + [SMALL_STATE(4142)] = 74307, + [SMALL_STATE(4143)] = 74340, + [SMALL_STATE(4144)] = 74373, + [SMALL_STATE(4145)] = 74406, + [SMALL_STATE(4146)] = 74439, + [SMALL_STATE(4147)] = 74472, + [SMALL_STATE(4148)] = 74505, + [SMALL_STATE(4149)] = 74538, + [SMALL_STATE(4150)] = 74571, + [SMALL_STATE(4151)] = 74600, + [SMALL_STATE(4152)] = 74633, + [SMALL_STATE(4153)] = 74664, + [SMALL_STATE(4154)] = 74697, + [SMALL_STATE(4155)] = 74730, + [SMALL_STATE(4156)] = 74763, + [SMALL_STATE(4157)] = 74793, + [SMALL_STATE(4158)] = 74823, + [SMALL_STATE(4159)] = 74853, + [SMALL_STATE(4160)] = 74883, + [SMALL_STATE(4161)] = 74913, + [SMALL_STATE(4162)] = 74943, + [SMALL_STATE(4163)] = 74973, + [SMALL_STATE(4164)] = 75003, + [SMALL_STATE(4165)] = 75033, + [SMALL_STATE(4166)] = 75063, + [SMALL_STATE(4167)] = 75087, + [SMALL_STATE(4168)] = 75117, + [SMALL_STATE(4169)] = 75145, + [SMALL_STATE(4170)] = 75175, + [SMALL_STATE(4171)] = 75205, + [SMALL_STATE(4172)] = 75235, + [SMALL_STATE(4173)] = 75263, + [SMALL_STATE(4174)] = 75293, + [SMALL_STATE(4175)] = 75323, + [SMALL_STATE(4176)] = 75351, + [SMALL_STATE(4177)] = 75381, + [SMALL_STATE(4178)] = 75411, + [SMALL_STATE(4179)] = 75441, + [SMALL_STATE(4180)] = 75471, + [SMALL_STATE(4181)] = 75501, + [SMALL_STATE(4182)] = 75527, + [SMALL_STATE(4183)] = 75553, + [SMALL_STATE(4184)] = 75583, + [SMALL_STATE(4185)] = 75613, + [SMALL_STATE(4186)] = 75643, + [SMALL_STATE(4187)] = 75673, + [SMALL_STATE(4188)] = 75699, + [SMALL_STATE(4189)] = 75729, + [SMALL_STATE(4190)] = 75759, + [SMALL_STATE(4191)] = 75789, + [SMALL_STATE(4192)] = 75819, + [SMALL_STATE(4193)] = 75849, + [SMALL_STATE(4194)] = 75879, + [SMALL_STATE(4195)] = 75909, + [SMALL_STATE(4196)] = 75939, + [SMALL_STATE(4197)] = 75969, + [SMALL_STATE(4198)] = 75999, + [SMALL_STATE(4199)] = 76029, + [SMALL_STATE(4200)] = 76059, + [SMALL_STATE(4201)] = 76083, + [SMALL_STATE(4202)] = 76111, + [SMALL_STATE(4203)] = 76141, + [SMALL_STATE(4204)] = 76171, + [SMALL_STATE(4205)] = 76197, + [SMALL_STATE(4206)] = 76227, + [SMALL_STATE(4207)] = 76257, + [SMALL_STATE(4208)] = 76287, + [SMALL_STATE(4209)] = 76317, + [SMALL_STATE(4210)] = 76347, + [SMALL_STATE(4211)] = 76377, + [SMALL_STATE(4212)] = 76407, + [SMALL_STATE(4213)] = 76433, + [SMALL_STATE(4214)] = 76461, + [SMALL_STATE(4215)] = 76491, + [SMALL_STATE(4216)] = 76517, + [SMALL_STATE(4217)] = 76547, + [SMALL_STATE(4218)] = 76577, + [SMALL_STATE(4219)] = 76605, + [SMALL_STATE(4220)] = 76635, + [SMALL_STATE(4221)] = 76665, + [SMALL_STATE(4222)] = 76695, + [SMALL_STATE(4223)] = 76725, + [SMALL_STATE(4224)] = 76755, + [SMALL_STATE(4225)] = 76783, + [SMALL_STATE(4226)] = 76813, + [SMALL_STATE(4227)] = 76840, + [SMALL_STATE(4228)] = 76867, + [SMALL_STATE(4229)] = 76894, + [SMALL_STATE(4230)] = 76921, + [SMALL_STATE(4231)] = 76948, + [SMALL_STATE(4232)] = 76975, + [SMALL_STATE(4233)] = 77002, + [SMALL_STATE(4234)] = 77029, + [SMALL_STATE(4235)] = 77056, + [SMALL_STATE(4236)] = 77083, + [SMALL_STATE(4237)] = 77108, + [SMALL_STATE(4238)] = 77135, + [SMALL_STATE(4239)] = 77162, + [SMALL_STATE(4240)] = 77189, + [SMALL_STATE(4241)] = 77216, + [SMALL_STATE(4242)] = 77243, + [SMALL_STATE(4243)] = 77268, + [SMALL_STATE(4244)] = 77295, + [SMALL_STATE(4245)] = 77322, + [SMALL_STATE(4246)] = 77349, + [SMALL_STATE(4247)] = 77376, + [SMALL_STATE(4248)] = 77399, + [SMALL_STATE(4249)] = 77426, + [SMALL_STATE(4250)] = 77453, + [SMALL_STATE(4251)] = 77480, + [SMALL_STATE(4252)] = 77503, + [SMALL_STATE(4253)] = 77530, + [SMALL_STATE(4254)] = 77557, + [SMALL_STATE(4255)] = 77584, + [SMALL_STATE(4256)] = 77611, + [SMALL_STATE(4257)] = 77638, + [SMALL_STATE(4258)] = 77665, + [SMALL_STATE(4259)] = 77688, + [SMALL_STATE(4260)] = 77715, + [SMALL_STATE(4261)] = 77738, + [SMALL_STATE(4262)] = 77765, + [SMALL_STATE(4263)] = 77790, + [SMALL_STATE(4264)] = 77817, + [SMALL_STATE(4265)] = 77842, + [SMALL_STATE(4266)] = 77867, + [SMALL_STATE(4267)] = 77894, + [SMALL_STATE(4268)] = 77921, + [SMALL_STATE(4269)] = 77948, + [SMALL_STATE(4270)] = 77975, + [SMALL_STATE(4271)] = 78002, + [SMALL_STATE(4272)] = 78029, + [SMALL_STATE(4273)] = 78056, + [SMALL_STATE(4274)] = 78083, + [SMALL_STATE(4275)] = 78110, + [SMALL_STATE(4276)] = 78137, + [SMALL_STATE(4277)] = 78164, + [SMALL_STATE(4278)] = 78191, + [SMALL_STATE(4279)] = 78218, + [SMALL_STATE(4280)] = 78245, + [SMALL_STATE(4281)] = 78272, + [SMALL_STATE(4282)] = 78299, + [SMALL_STATE(4283)] = 78326, + [SMALL_STATE(4284)] = 78351, + [SMALL_STATE(4285)] = 78378, + [SMALL_STATE(4286)] = 78401, + [SMALL_STATE(4287)] = 78428, + [SMALL_STATE(4288)] = 78455, + [SMALL_STATE(4289)] = 78482, + [SMALL_STATE(4290)] = 78505, + [SMALL_STATE(4291)] = 78532, + [SMALL_STATE(4292)] = 78559, + [SMALL_STATE(4293)] = 78586, + [SMALL_STATE(4294)] = 78613, + [SMALL_STATE(4295)] = 78640, + [SMALL_STATE(4296)] = 78667, + [SMALL_STATE(4297)] = 78694, + [SMALL_STATE(4298)] = 78721, + [SMALL_STATE(4299)] = 78748, + [SMALL_STATE(4300)] = 78775, + [SMALL_STATE(4301)] = 78802, + [SMALL_STATE(4302)] = 78825, + [SMALL_STATE(4303)] = 78852, + [SMALL_STATE(4304)] = 78879, + [SMALL_STATE(4305)] = 78906, + [SMALL_STATE(4306)] = 78933, + [SMALL_STATE(4307)] = 78960, + [SMALL_STATE(4308)] = 78987, + [SMALL_STATE(4309)] = 79014, + [SMALL_STATE(4310)] = 79041, + [SMALL_STATE(4311)] = 79068, + [SMALL_STATE(4312)] = 79095, + [SMALL_STATE(4313)] = 79122, + [SMALL_STATE(4314)] = 79147, + [SMALL_STATE(4315)] = 79174, + [SMALL_STATE(4316)] = 79201, + [SMALL_STATE(4317)] = 79228, + [SMALL_STATE(4318)] = 79255, + [SMALL_STATE(4319)] = 79282, + [SMALL_STATE(4320)] = 79309, + [SMALL_STATE(4321)] = 79336, + [SMALL_STATE(4322)] = 79363, + [SMALL_STATE(4323)] = 79390, + [SMALL_STATE(4324)] = 79417, + [SMALL_STATE(4325)] = 79444, + [SMALL_STATE(4326)] = 79469, + [SMALL_STATE(4327)] = 79496, + [SMALL_STATE(4328)] = 79523, + [SMALL_STATE(4329)] = 79550, + [SMALL_STATE(4330)] = 79573, + [SMALL_STATE(4331)] = 79600, + [SMALL_STATE(4332)] = 79627, + [SMALL_STATE(4333)] = 79650, + [SMALL_STATE(4334)] = 79677, + [SMALL_STATE(4335)] = 79704, + [SMALL_STATE(4336)] = 79731, + [SMALL_STATE(4337)] = 79758, + [SMALL_STATE(4338)] = 79783, + [SMALL_STATE(4339)] = 79810, + [SMALL_STATE(4340)] = 79837, + [SMALL_STATE(4341)] = 79864, + [SMALL_STATE(4342)] = 79891, + [SMALL_STATE(4343)] = 79918, + [SMALL_STATE(4344)] = 79945, + [SMALL_STATE(4345)] = 79972, + [SMALL_STATE(4346)] = 79999, + [SMALL_STATE(4347)] = 80026, + [SMALL_STATE(4348)] = 80053, + [SMALL_STATE(4349)] = 80080, + [SMALL_STATE(4350)] = 80107, + [SMALL_STATE(4351)] = 80134, + [SMALL_STATE(4352)] = 80161, + [SMALL_STATE(4353)] = 80188, + [SMALL_STATE(4354)] = 80215, + [SMALL_STATE(4355)] = 80240, + [SMALL_STATE(4356)] = 80267, + [SMALL_STATE(4357)] = 80294, + [SMALL_STATE(4358)] = 80321, + [SMALL_STATE(4359)] = 80348, + [SMALL_STATE(4360)] = 80375, + [SMALL_STATE(4361)] = 80402, + [SMALL_STATE(4362)] = 80427, + [SMALL_STATE(4363)] = 80454, + [SMALL_STATE(4364)] = 80477, + [SMALL_STATE(4365)] = 80504, + [SMALL_STATE(4366)] = 80529, + [SMALL_STATE(4367)] = 80556, + [SMALL_STATE(4368)] = 80583, + [SMALL_STATE(4369)] = 80610, + [SMALL_STATE(4370)] = 80637, + [SMALL_STATE(4371)] = 80664, + [SMALL_STATE(4372)] = 80689, + [SMALL_STATE(4373)] = 80716, + [SMALL_STATE(4374)] = 80743, + [SMALL_STATE(4375)] = 80770, + [SMALL_STATE(4376)] = 80793, + [SMALL_STATE(4377)] = 80820, + [SMALL_STATE(4378)] = 80847, + [SMALL_STATE(4379)] = 80874, + [SMALL_STATE(4380)] = 80901, + [SMALL_STATE(4381)] = 80928, + [SMALL_STATE(4382)] = 80953, + [SMALL_STATE(4383)] = 80980, + [SMALL_STATE(4384)] = 81007, + [SMALL_STATE(4385)] = 81034, + [SMALL_STATE(4386)] = 81061, + [SMALL_STATE(4387)] = 81088, + [SMALL_STATE(4388)] = 81113, + [SMALL_STATE(4389)] = 81140, + [SMALL_STATE(4390)] = 81165, + [SMALL_STATE(4391)] = 81192, + [SMALL_STATE(4392)] = 81219, + [SMALL_STATE(4393)] = 81246, + [SMALL_STATE(4394)] = 81273, + [SMALL_STATE(4395)] = 81300, + [SMALL_STATE(4396)] = 81327, + [SMALL_STATE(4397)] = 81354, + [SMALL_STATE(4398)] = 81381, + [SMALL_STATE(4399)] = 81408, + [SMALL_STATE(4400)] = 81432, + [SMALL_STATE(4401)] = 81456, + [SMALL_STATE(4402)] = 81478, + [SMALL_STATE(4403)] = 81502, + [SMALL_STATE(4404)] = 81526, + [SMALL_STATE(4405)] = 81550, + [SMALL_STATE(4406)] = 81574, + [SMALL_STATE(4407)] = 81598, + [SMALL_STATE(4408)] = 81622, + [SMALL_STATE(4409)] = 81646, + [SMALL_STATE(4410)] = 81668, + [SMALL_STATE(4411)] = 81692, + [SMALL_STATE(4412)] = 81716, + [SMALL_STATE(4413)] = 81740, + [SMALL_STATE(4414)] = 81762, + [SMALL_STATE(4415)] = 81786, + [SMALL_STATE(4416)] = 81810, + [SMALL_STATE(4417)] = 81834, + [SMALL_STATE(4418)] = 81856, + [SMALL_STATE(4419)] = 81880, + [SMALL_STATE(4420)] = 81904, + [SMALL_STATE(4421)] = 81928, + [SMALL_STATE(4422)] = 81950, + [SMALL_STATE(4423)] = 81974, + [SMALL_STATE(4424)] = 81998, + [SMALL_STATE(4425)] = 82022, + [SMALL_STATE(4426)] = 82046, + [SMALL_STATE(4427)] = 82068, + [SMALL_STATE(4428)] = 82092, + [SMALL_STATE(4429)] = 82116, + [SMALL_STATE(4430)] = 82140, + [SMALL_STATE(4431)] = 82164, + [SMALL_STATE(4432)] = 82188, + [SMALL_STATE(4433)] = 82212, + [SMALL_STATE(4434)] = 82234, + [SMALL_STATE(4435)] = 82258, + [SMALL_STATE(4436)] = 82280, + [SMALL_STATE(4437)] = 82304, + [SMALL_STATE(4438)] = 82328, + [SMALL_STATE(4439)] = 82352, + [SMALL_STATE(4440)] = 82376, + [SMALL_STATE(4441)] = 82400, + [SMALL_STATE(4442)] = 82424, + [SMALL_STATE(4443)] = 82448, + [SMALL_STATE(4444)] = 82472, + [SMALL_STATE(4445)] = 82496, + [SMALL_STATE(4446)] = 82520, + [SMALL_STATE(4447)] = 82544, + [SMALL_STATE(4448)] = 82568, + [SMALL_STATE(4449)] = 82592, + [SMALL_STATE(4450)] = 82616, + [SMALL_STATE(4451)] = 82638, + [SMALL_STATE(4452)] = 82662, + [SMALL_STATE(4453)] = 82686, + [SMALL_STATE(4454)] = 82710, + [SMALL_STATE(4455)] = 82734, + [SMALL_STATE(4456)] = 82756, + [SMALL_STATE(4457)] = 82780, + [SMALL_STATE(4458)] = 82804, + [SMALL_STATE(4459)] = 82828, + [SMALL_STATE(4460)] = 82850, + [SMALL_STATE(4461)] = 82872, + [SMALL_STATE(4462)] = 82896, + [SMALL_STATE(4463)] = 82920, + [SMALL_STATE(4464)] = 82942, + [SMALL_STATE(4465)] = 82964, + [SMALL_STATE(4466)] = 82988, + [SMALL_STATE(4467)] = 83010, + [SMALL_STATE(4468)] = 83034, + [SMALL_STATE(4469)] = 83058, + [SMALL_STATE(4470)] = 83080, + [SMALL_STATE(4471)] = 83102, + [SMALL_STATE(4472)] = 83126, + [SMALL_STATE(4473)] = 83148, + [SMALL_STATE(4474)] = 83172, + [SMALL_STATE(4475)] = 83196, + [SMALL_STATE(4476)] = 83220, + [SMALL_STATE(4477)] = 83242, + [SMALL_STATE(4478)] = 83266, + [SMALL_STATE(4479)] = 83290, + [SMALL_STATE(4480)] = 83314, + [SMALL_STATE(4481)] = 83338, + [SMALL_STATE(4482)] = 83360, + [SMALL_STATE(4483)] = 83382, + [SMALL_STATE(4484)] = 83404, + [SMALL_STATE(4485)] = 83426, + [SMALL_STATE(4486)] = 83450, + [SMALL_STATE(4487)] = 83474, + [SMALL_STATE(4488)] = 83498, + [SMALL_STATE(4489)] = 83522, + [SMALL_STATE(4490)] = 83546, + [SMALL_STATE(4491)] = 83570, + [SMALL_STATE(4492)] = 83594, + [SMALL_STATE(4493)] = 83618, + [SMALL_STATE(4494)] = 83642, + [SMALL_STATE(4495)] = 83666, + [SMALL_STATE(4496)] = 83688, + [SMALL_STATE(4497)] = 83712, + [SMALL_STATE(4498)] = 83736, + [SMALL_STATE(4499)] = 83758, + [SMALL_STATE(4500)] = 83782, + [SMALL_STATE(4501)] = 83806, + [SMALL_STATE(4502)] = 83830, + [SMALL_STATE(4503)] = 83854, + [SMALL_STATE(4504)] = 83878, + [SMALL_STATE(4505)] = 83902, + [SMALL_STATE(4506)] = 83926, + [SMALL_STATE(4507)] = 83950, + [SMALL_STATE(4508)] = 83974, + [SMALL_STATE(4509)] = 83996, + [SMALL_STATE(4510)] = 84020, + [SMALL_STATE(4511)] = 84044, + [SMALL_STATE(4512)] = 84066, + [SMALL_STATE(4513)] = 84090, + [SMALL_STATE(4514)] = 84114, + [SMALL_STATE(4515)] = 84138, + [SMALL_STATE(4516)] = 84162, + [SMALL_STATE(4517)] = 84186, + [SMALL_STATE(4518)] = 84210, + [SMALL_STATE(4519)] = 84234, + [SMALL_STATE(4520)] = 84258, + [SMALL_STATE(4521)] = 84280, + [SMALL_STATE(4522)] = 84304, + [SMALL_STATE(4523)] = 84328, + [SMALL_STATE(4524)] = 84350, + [SMALL_STATE(4525)] = 84374, + [SMALL_STATE(4526)] = 84398, + [SMALL_STATE(4527)] = 84422, + [SMALL_STATE(4528)] = 84446, + [SMALL_STATE(4529)] = 84470, + [SMALL_STATE(4530)] = 84494, + [SMALL_STATE(4531)] = 84518, + [SMALL_STATE(4532)] = 84540, + [SMALL_STATE(4533)] = 84564, + [SMALL_STATE(4534)] = 84588, + [SMALL_STATE(4535)] = 84612, + [SMALL_STATE(4536)] = 84634, + [SMALL_STATE(4537)] = 84658, + [SMALL_STATE(4538)] = 84680, + [SMALL_STATE(4539)] = 84704, + [SMALL_STATE(4540)] = 84728, + [SMALL_STATE(4541)] = 84752, + [SMALL_STATE(4542)] = 84776, + [SMALL_STATE(4543)] = 84800, + [SMALL_STATE(4544)] = 84824, + [SMALL_STATE(4545)] = 84848, + [SMALL_STATE(4546)] = 84872, + [SMALL_STATE(4547)] = 84896, + [SMALL_STATE(4548)] = 84920, + [SMALL_STATE(4549)] = 84942, + [SMALL_STATE(4550)] = 84966, + [SMALL_STATE(4551)] = 84990, + [SMALL_STATE(4552)] = 85014, + [SMALL_STATE(4553)] = 85038, + [SMALL_STATE(4554)] = 85060, + [SMALL_STATE(4555)] = 85084, + [SMALL_STATE(4556)] = 85108, + [SMALL_STATE(4557)] = 85132, + [SMALL_STATE(4558)] = 85156, + [SMALL_STATE(4559)] = 85180, + [SMALL_STATE(4560)] = 85204, + [SMALL_STATE(4561)] = 85228, + [SMALL_STATE(4562)] = 85252, + [SMALL_STATE(4563)] = 85276, + [SMALL_STATE(4564)] = 85300, + [SMALL_STATE(4565)] = 85324, + [SMALL_STATE(4566)] = 85348, + [SMALL_STATE(4567)] = 85372, + [SMALL_STATE(4568)] = 85396, + [SMALL_STATE(4569)] = 85420, + [SMALL_STATE(4570)] = 85444, + [SMALL_STATE(4571)] = 85468, + [SMALL_STATE(4572)] = 85492, + [SMALL_STATE(4573)] = 85516, + [SMALL_STATE(4574)] = 85538, + [SMALL_STATE(4575)] = 85562, + [SMALL_STATE(4576)] = 85586, + [SMALL_STATE(4577)] = 85610, + [SMALL_STATE(4578)] = 85634, + [SMALL_STATE(4579)] = 85658, + [SMALL_STATE(4580)] = 85682, + [SMALL_STATE(4581)] = 85706, + [SMALL_STATE(4582)] = 85730, + [SMALL_STATE(4583)] = 85754, + [SMALL_STATE(4584)] = 85778, + [SMALL_STATE(4585)] = 85800, + [SMALL_STATE(4586)] = 85824, + [SMALL_STATE(4587)] = 85846, + [SMALL_STATE(4588)] = 85868, + [SMALL_STATE(4589)] = 85892, + [SMALL_STATE(4590)] = 85916, + [SMALL_STATE(4591)] = 85938, + [SMALL_STATE(4592)] = 85962, + [SMALL_STATE(4593)] = 85986, + [SMALL_STATE(4594)] = 86008, + [SMALL_STATE(4595)] = 86032, + [SMALL_STATE(4596)] = 86056, + [SMALL_STATE(4597)] = 86080, + [SMALL_STATE(4598)] = 86102, + [SMALL_STATE(4599)] = 86126, + [SMALL_STATE(4600)] = 86148, + [SMALL_STATE(4601)] = 86172, + [SMALL_STATE(4602)] = 86196, + [SMALL_STATE(4603)] = 86220, + [SMALL_STATE(4604)] = 86244, + [SMALL_STATE(4605)] = 86268, + [SMALL_STATE(4606)] = 86290, + [SMALL_STATE(4607)] = 86314, + [SMALL_STATE(4608)] = 86338, + [SMALL_STATE(4609)] = 86362, + [SMALL_STATE(4610)] = 86386, + [SMALL_STATE(4611)] = 86410, + [SMALL_STATE(4612)] = 86432, + [SMALL_STATE(4613)] = 86456, + [SMALL_STATE(4614)] = 86478, + [SMALL_STATE(4615)] = 86502, + [SMALL_STATE(4616)] = 86524, + [SMALL_STATE(4617)] = 86546, + [SMALL_STATE(4618)] = 86570, + [SMALL_STATE(4619)] = 86592, + [SMALL_STATE(4620)] = 86616, + [SMALL_STATE(4621)] = 86640, + [SMALL_STATE(4622)] = 86664, + [SMALL_STATE(4623)] = 86688, + [SMALL_STATE(4624)] = 86712, + [SMALL_STATE(4625)] = 86736, + [SMALL_STATE(4626)] = 86758, + [SMALL_STATE(4627)] = 86780, + [SMALL_STATE(4628)] = 86802, + [SMALL_STATE(4629)] = 86824, + [SMALL_STATE(4630)] = 86846, + [SMALL_STATE(4631)] = 86870, + [SMALL_STATE(4632)] = 86892, + [SMALL_STATE(4633)] = 86914, + [SMALL_STATE(4634)] = 86936, + [SMALL_STATE(4635)] = 86960, + [SMALL_STATE(4636)] = 86982, + [SMALL_STATE(4637)] = 87006, + [SMALL_STATE(4638)] = 87030, + [SMALL_STATE(4639)] = 87054, + [SMALL_STATE(4640)] = 87076, + [SMALL_STATE(4641)] = 87100, + [SMALL_STATE(4642)] = 87124, + [SMALL_STATE(4643)] = 87148, + [SMALL_STATE(4644)] = 87172, + [SMALL_STATE(4645)] = 87196, + [SMALL_STATE(4646)] = 87220, + [SMALL_STATE(4647)] = 87242, + [SMALL_STATE(4648)] = 87266, + [SMALL_STATE(4649)] = 87290, + [SMALL_STATE(4650)] = 87314, + [SMALL_STATE(4651)] = 87338, + [SMALL_STATE(4652)] = 87362, + [SMALL_STATE(4653)] = 87386, + [SMALL_STATE(4654)] = 87410, + [SMALL_STATE(4655)] = 87434, + [SMALL_STATE(4656)] = 87456, + [SMALL_STATE(4657)] = 87478, + [SMALL_STATE(4658)] = 87500, + [SMALL_STATE(4659)] = 87524, + [SMALL_STATE(4660)] = 87548, + [SMALL_STATE(4661)] = 87572, + [SMALL_STATE(4662)] = 87594, + [SMALL_STATE(4663)] = 87618, + [SMALL_STATE(4664)] = 87642, + [SMALL_STATE(4665)] = 87666, + [SMALL_STATE(4666)] = 87690, + [SMALL_STATE(4667)] = 87712, + [SMALL_STATE(4668)] = 87736, + [SMALL_STATE(4669)] = 87760, + [SMALL_STATE(4670)] = 87784, + [SMALL_STATE(4671)] = 87808, + [SMALL_STATE(4672)] = 87832, + [SMALL_STATE(4673)] = 87856, + [SMALL_STATE(4674)] = 87880, + [SMALL_STATE(4675)] = 87904, + [SMALL_STATE(4676)] = 87928, + [SMALL_STATE(4677)] = 87952, + [SMALL_STATE(4678)] = 87976, + [SMALL_STATE(4679)] = 88000, + [SMALL_STATE(4680)] = 88024, + [SMALL_STATE(4681)] = 88048, + [SMALL_STATE(4682)] = 88070, + [SMALL_STATE(4683)] = 88094, + [SMALL_STATE(4684)] = 88118, + [SMALL_STATE(4685)] = 88140, + [SMALL_STATE(4686)] = 88162, + [SMALL_STATE(4687)] = 88186, + [SMALL_STATE(4688)] = 88210, + [SMALL_STATE(4689)] = 88234, + [SMALL_STATE(4690)] = 88258, + [SMALL_STATE(4691)] = 88282, + [SMALL_STATE(4692)] = 88306, + [SMALL_STATE(4693)] = 88330, + [SMALL_STATE(4694)] = 88354, + [SMALL_STATE(4695)] = 88378, + [SMALL_STATE(4696)] = 88402, + [SMALL_STATE(4697)] = 88426, + [SMALL_STATE(4698)] = 88450, + [SMALL_STATE(4699)] = 88472, + [SMALL_STATE(4700)] = 88494, + [SMALL_STATE(4701)] = 88518, + [SMALL_STATE(4702)] = 88540, + [SMALL_STATE(4703)] = 88564, + [SMALL_STATE(4704)] = 88588, + [SMALL_STATE(4705)] = 88612, + [SMALL_STATE(4706)] = 88634, + [SMALL_STATE(4707)] = 88658, + [SMALL_STATE(4708)] = 88682, + [SMALL_STATE(4709)] = 88704, + [SMALL_STATE(4710)] = 88726, + [SMALL_STATE(4711)] = 88750, + [SMALL_STATE(4712)] = 88772, + [SMALL_STATE(4713)] = 88796, + [SMALL_STATE(4714)] = 88820, + [SMALL_STATE(4715)] = 88844, + [SMALL_STATE(4716)] = 88866, + [SMALL_STATE(4717)] = 88890, + [SMALL_STATE(4718)] = 88914, + [SMALL_STATE(4719)] = 88938, + [SMALL_STATE(4720)] = 88962, + [SMALL_STATE(4721)] = 88984, + [SMALL_STATE(4722)] = 89008, + [SMALL_STATE(4723)] = 89032, + [SMALL_STATE(4724)] = 89054, + [SMALL_STATE(4725)] = 89076, + [SMALL_STATE(4726)] = 89100, + [SMALL_STATE(4727)] = 89124, + [SMALL_STATE(4728)] = 89148, + [SMALL_STATE(4729)] = 89170, + [SMALL_STATE(4730)] = 89194, + [SMALL_STATE(4731)] = 89218, + [SMALL_STATE(4732)] = 89242, + [SMALL_STATE(4733)] = 89266, + [SMALL_STATE(4734)] = 89288, + [SMALL_STATE(4735)] = 89312, + [SMALL_STATE(4736)] = 89334, + [SMALL_STATE(4737)] = 89358, + [SMALL_STATE(4738)] = 89380, + [SMALL_STATE(4739)] = 89404, + [SMALL_STATE(4740)] = 89428, + [SMALL_STATE(4741)] = 89452, + [SMALL_STATE(4742)] = 89476, + [SMALL_STATE(4743)] = 89500, + [SMALL_STATE(4744)] = 89524, + [SMALL_STATE(4745)] = 89548, + [SMALL_STATE(4746)] = 89572, + [SMALL_STATE(4747)] = 89593, + [SMALL_STATE(4748)] = 89614, + [SMALL_STATE(4749)] = 89635, + [SMALL_STATE(4750)] = 89656, + [SMALL_STATE(4751)] = 89677, + [SMALL_STATE(4752)] = 89698, + [SMALL_STATE(4753)] = 89719, + [SMALL_STATE(4754)] = 89740, + [SMALL_STATE(4755)] = 89761, + [SMALL_STATE(4756)] = 89782, + [SMALL_STATE(4757)] = 89803, + [SMALL_STATE(4758)] = 89824, + [SMALL_STATE(4759)] = 89845, + [SMALL_STATE(4760)] = 89866, + [SMALL_STATE(4761)] = 89887, + [SMALL_STATE(4762)] = 89908, + [SMALL_STATE(4763)] = 89929, + [SMALL_STATE(4764)] = 89950, + [SMALL_STATE(4765)] = 89971, + [SMALL_STATE(4766)] = 89992, + [SMALL_STATE(4767)] = 90013, + [SMALL_STATE(4768)] = 90034, + [SMALL_STATE(4769)] = 90055, + [SMALL_STATE(4770)] = 90076, + [SMALL_STATE(4771)] = 90097, + [SMALL_STATE(4772)] = 90118, + [SMALL_STATE(4773)] = 90139, + [SMALL_STATE(4774)] = 90160, + [SMALL_STATE(4775)] = 90181, + [SMALL_STATE(4776)] = 90202, + [SMALL_STATE(4777)] = 90223, + [SMALL_STATE(4778)] = 90244, + [SMALL_STATE(4779)] = 90265, + [SMALL_STATE(4780)] = 90286, + [SMALL_STATE(4781)] = 90307, + [SMALL_STATE(4782)] = 90328, + [SMALL_STATE(4783)] = 90349, + [SMALL_STATE(4784)] = 90370, + [SMALL_STATE(4785)] = 90391, + [SMALL_STATE(4786)] = 90412, + [SMALL_STATE(4787)] = 90433, + [SMALL_STATE(4788)] = 90454, + [SMALL_STATE(4789)] = 90475, + [SMALL_STATE(4790)] = 90496, + [SMALL_STATE(4791)] = 90517, + [SMALL_STATE(4792)] = 90538, + [SMALL_STATE(4793)] = 90559, + [SMALL_STATE(4794)] = 90580, + [SMALL_STATE(4795)] = 90601, + [SMALL_STATE(4796)] = 90622, + [SMALL_STATE(4797)] = 90643, + [SMALL_STATE(4798)] = 90664, + [SMALL_STATE(4799)] = 90685, + [SMALL_STATE(4800)] = 90706, + [SMALL_STATE(4801)] = 90727, + [SMALL_STATE(4802)] = 90748, + [SMALL_STATE(4803)] = 90769, + [SMALL_STATE(4804)] = 90790, + [SMALL_STATE(4805)] = 90811, + [SMALL_STATE(4806)] = 90832, + [SMALL_STATE(4807)] = 90853, + [SMALL_STATE(4808)] = 90874, + [SMALL_STATE(4809)] = 90895, + [SMALL_STATE(4810)] = 90916, + [SMALL_STATE(4811)] = 90937, + [SMALL_STATE(4812)] = 90958, + [SMALL_STATE(4813)] = 90979, + [SMALL_STATE(4814)] = 91000, + [SMALL_STATE(4815)] = 91021, + [SMALL_STATE(4816)] = 91042, + [SMALL_STATE(4817)] = 91063, + [SMALL_STATE(4818)] = 91084, + [SMALL_STATE(4819)] = 91105, + [SMALL_STATE(4820)] = 91126, + [SMALL_STATE(4821)] = 91147, + [SMALL_STATE(4822)] = 91168, + [SMALL_STATE(4823)] = 91189, + [SMALL_STATE(4824)] = 91210, + [SMALL_STATE(4825)] = 91231, + [SMALL_STATE(4826)] = 91252, + [SMALL_STATE(4827)] = 91273, + [SMALL_STATE(4828)] = 91294, + [SMALL_STATE(4829)] = 91315, + [SMALL_STATE(4830)] = 91336, + [SMALL_STATE(4831)] = 91357, + [SMALL_STATE(4832)] = 91378, + [SMALL_STATE(4833)] = 91399, + [SMALL_STATE(4834)] = 91420, + [SMALL_STATE(4835)] = 91441, + [SMALL_STATE(4836)] = 91462, + [SMALL_STATE(4837)] = 91483, + [SMALL_STATE(4838)] = 91504, + [SMALL_STATE(4839)] = 91525, + [SMALL_STATE(4840)] = 91546, + [SMALL_STATE(4841)] = 91567, + [SMALL_STATE(4842)] = 91588, + [SMALL_STATE(4843)] = 91609, + [SMALL_STATE(4844)] = 91630, + [SMALL_STATE(4845)] = 91651, + [SMALL_STATE(4846)] = 91672, + [SMALL_STATE(4847)] = 91693, + [SMALL_STATE(4848)] = 91714, + [SMALL_STATE(4849)] = 91735, + [SMALL_STATE(4850)] = 91756, + [SMALL_STATE(4851)] = 91777, + [SMALL_STATE(4852)] = 91798, + [SMALL_STATE(4853)] = 91819, + [SMALL_STATE(4854)] = 91840, + [SMALL_STATE(4855)] = 91861, + [SMALL_STATE(4856)] = 91882, + [SMALL_STATE(4857)] = 91903, + [SMALL_STATE(4858)] = 91924, + [SMALL_STATE(4859)] = 91945, + [SMALL_STATE(4860)] = 91966, + [SMALL_STATE(4861)] = 91987, + [SMALL_STATE(4862)] = 92008, + [SMALL_STATE(4863)] = 92029, + [SMALL_STATE(4864)] = 92050, + [SMALL_STATE(4865)] = 92071, + [SMALL_STATE(4866)] = 92092, + [SMALL_STATE(4867)] = 92113, + [SMALL_STATE(4868)] = 92134, + [SMALL_STATE(4869)] = 92155, + [SMALL_STATE(4870)] = 92176, + [SMALL_STATE(4871)] = 92197, + [SMALL_STATE(4872)] = 92218, + [SMALL_STATE(4873)] = 92239, + [SMALL_STATE(4874)] = 92260, + [SMALL_STATE(4875)] = 92281, + [SMALL_STATE(4876)] = 92302, + [SMALL_STATE(4877)] = 92323, + [SMALL_STATE(4878)] = 92344, + [SMALL_STATE(4879)] = 92365, + [SMALL_STATE(4880)] = 92386, + [SMALL_STATE(4881)] = 92407, + [SMALL_STATE(4882)] = 92428, + [SMALL_STATE(4883)] = 92449, + [SMALL_STATE(4884)] = 92470, + [SMALL_STATE(4885)] = 92491, + [SMALL_STATE(4886)] = 92512, + [SMALL_STATE(4887)] = 92533, + [SMALL_STATE(4888)] = 92554, + [SMALL_STATE(4889)] = 92575, + [SMALL_STATE(4890)] = 92596, + [SMALL_STATE(4891)] = 92617, + [SMALL_STATE(4892)] = 92638, + [SMALL_STATE(4893)] = 92659, + [SMALL_STATE(4894)] = 92680, + [SMALL_STATE(4895)] = 92701, + [SMALL_STATE(4896)] = 92722, + [SMALL_STATE(4897)] = 92743, + [SMALL_STATE(4898)] = 92764, + [SMALL_STATE(4899)] = 92785, + [SMALL_STATE(4900)] = 92806, + [SMALL_STATE(4901)] = 92827, + [SMALL_STATE(4902)] = 92848, + [SMALL_STATE(4903)] = 92869, + [SMALL_STATE(4904)] = 92890, + [SMALL_STATE(4905)] = 92911, + [SMALL_STATE(4906)] = 92932, + [SMALL_STATE(4907)] = 92953, + [SMALL_STATE(4908)] = 92974, + [SMALL_STATE(4909)] = 92995, + [SMALL_STATE(4910)] = 93016, + [SMALL_STATE(4911)] = 93037, + [SMALL_STATE(4912)] = 93058, + [SMALL_STATE(4913)] = 93079, + [SMALL_STATE(4914)] = 93100, + [SMALL_STATE(4915)] = 93121, + [SMALL_STATE(4916)] = 93142, + [SMALL_STATE(4917)] = 93163, + [SMALL_STATE(4918)] = 93184, + [SMALL_STATE(4919)] = 93205, + [SMALL_STATE(4920)] = 93226, + [SMALL_STATE(4921)] = 93247, + [SMALL_STATE(4922)] = 93268, + [SMALL_STATE(4923)] = 93289, + [SMALL_STATE(4924)] = 93310, + [SMALL_STATE(4925)] = 93331, + [SMALL_STATE(4926)] = 93352, + [SMALL_STATE(4927)] = 93373, + [SMALL_STATE(4928)] = 93394, + [SMALL_STATE(4929)] = 93415, + [SMALL_STATE(4930)] = 93436, + [SMALL_STATE(4931)] = 93457, + [SMALL_STATE(4932)] = 93478, + [SMALL_STATE(4933)] = 93499, + [SMALL_STATE(4934)] = 93520, + [SMALL_STATE(4935)] = 93541, + [SMALL_STATE(4936)] = 93562, + [SMALL_STATE(4937)] = 93583, + [SMALL_STATE(4938)] = 93604, + [SMALL_STATE(4939)] = 93625, + [SMALL_STATE(4940)] = 93646, + [SMALL_STATE(4941)] = 93667, + [SMALL_STATE(4942)] = 93688, + [SMALL_STATE(4943)] = 93709, + [SMALL_STATE(4944)] = 93730, + [SMALL_STATE(4945)] = 93751, + [SMALL_STATE(4946)] = 93772, + [SMALL_STATE(4947)] = 93793, + [SMALL_STATE(4948)] = 93814, + [SMALL_STATE(4949)] = 93835, + [SMALL_STATE(4950)] = 93856, + [SMALL_STATE(4951)] = 93877, + [SMALL_STATE(4952)] = 93898, + [SMALL_STATE(4953)] = 93919, + [SMALL_STATE(4954)] = 93940, + [SMALL_STATE(4955)] = 93961, + [SMALL_STATE(4956)] = 93982, + [SMALL_STATE(4957)] = 94003, + [SMALL_STATE(4958)] = 94024, + [SMALL_STATE(4959)] = 94045, + [SMALL_STATE(4960)] = 94066, + [SMALL_STATE(4961)] = 94087, + [SMALL_STATE(4962)] = 94108, + [SMALL_STATE(4963)] = 94129, + [SMALL_STATE(4964)] = 94150, + [SMALL_STATE(4965)] = 94171, + [SMALL_STATE(4966)] = 94192, + [SMALL_STATE(4967)] = 94213, + [SMALL_STATE(4968)] = 94234, + [SMALL_STATE(4969)] = 94255, + [SMALL_STATE(4970)] = 94276, + [SMALL_STATE(4971)] = 94297, + [SMALL_STATE(4972)] = 94318, + [SMALL_STATE(4973)] = 94339, + [SMALL_STATE(4974)] = 94360, + [SMALL_STATE(4975)] = 94381, + [SMALL_STATE(4976)] = 94402, + [SMALL_STATE(4977)] = 94423, + [SMALL_STATE(4978)] = 94444, + [SMALL_STATE(4979)] = 94465, + [SMALL_STATE(4980)] = 94486, + [SMALL_STATE(4981)] = 94507, + [SMALL_STATE(4982)] = 94528, + [SMALL_STATE(4983)] = 94549, + [SMALL_STATE(4984)] = 94570, + [SMALL_STATE(4985)] = 94591, + [SMALL_STATE(4986)] = 94612, + [SMALL_STATE(4987)] = 94633, + [SMALL_STATE(4988)] = 94654, + [SMALL_STATE(4989)] = 94675, + [SMALL_STATE(4990)] = 94696, + [SMALL_STATE(4991)] = 94717, + [SMALL_STATE(4992)] = 94738, + [SMALL_STATE(4993)] = 94759, + [SMALL_STATE(4994)] = 94780, + [SMALL_STATE(4995)] = 94801, + [SMALL_STATE(4996)] = 94822, + [SMALL_STATE(4997)] = 94843, + [SMALL_STATE(4998)] = 94864, + [SMALL_STATE(4999)] = 94885, + [SMALL_STATE(5000)] = 94906, + [SMALL_STATE(5001)] = 94927, + [SMALL_STATE(5002)] = 94948, + [SMALL_STATE(5003)] = 94969, + [SMALL_STATE(5004)] = 94990, + [SMALL_STATE(5005)] = 95011, + [SMALL_STATE(5006)] = 95032, + [SMALL_STATE(5007)] = 95053, + [SMALL_STATE(5008)] = 95074, + [SMALL_STATE(5009)] = 95095, + [SMALL_STATE(5010)] = 95116, + [SMALL_STATE(5011)] = 95137, + [SMALL_STATE(5012)] = 95158, + [SMALL_STATE(5013)] = 95179, + [SMALL_STATE(5014)] = 95200, + [SMALL_STATE(5015)] = 95221, + [SMALL_STATE(5016)] = 95242, + [SMALL_STATE(5017)] = 95263, + [SMALL_STATE(5018)] = 95284, + [SMALL_STATE(5019)] = 95305, + [SMALL_STATE(5020)] = 95326, + [SMALL_STATE(5021)] = 95347, + [SMALL_STATE(5022)] = 95368, + [SMALL_STATE(5023)] = 95389, + [SMALL_STATE(5024)] = 95410, + [SMALL_STATE(5025)] = 95431, + [SMALL_STATE(5026)] = 95452, + [SMALL_STATE(5027)] = 95473, + [SMALL_STATE(5028)] = 95494, + [SMALL_STATE(5029)] = 95515, + [SMALL_STATE(5030)] = 95536, + [SMALL_STATE(5031)] = 95557, + [SMALL_STATE(5032)] = 95578, + [SMALL_STATE(5033)] = 95599, + [SMALL_STATE(5034)] = 95620, + [SMALL_STATE(5035)] = 95641, + [SMALL_STATE(5036)] = 95662, + [SMALL_STATE(5037)] = 95683, + [SMALL_STATE(5038)] = 95704, + [SMALL_STATE(5039)] = 95725, + [SMALL_STATE(5040)] = 95746, + [SMALL_STATE(5041)] = 95767, + [SMALL_STATE(5042)] = 95788, + [SMALL_STATE(5043)] = 95809, + [SMALL_STATE(5044)] = 95830, + [SMALL_STATE(5045)] = 95851, + [SMALL_STATE(5046)] = 95872, + [SMALL_STATE(5047)] = 95893, + [SMALL_STATE(5048)] = 95914, + [SMALL_STATE(5049)] = 95935, + [SMALL_STATE(5050)] = 95956, + [SMALL_STATE(5051)] = 95977, + [SMALL_STATE(5052)] = 95998, + [SMALL_STATE(5053)] = 96019, + [SMALL_STATE(5054)] = 96040, + [SMALL_STATE(5055)] = 96061, + [SMALL_STATE(5056)] = 96082, + [SMALL_STATE(5057)] = 96103, + [SMALL_STATE(5058)] = 96124, + [SMALL_STATE(5059)] = 96145, + [SMALL_STATE(5060)] = 96166, + [SMALL_STATE(5061)] = 96187, + [SMALL_STATE(5062)] = 96208, + [SMALL_STATE(5063)] = 96229, + [SMALL_STATE(5064)] = 96250, + [SMALL_STATE(5065)] = 96271, + [SMALL_STATE(5066)] = 96292, + [SMALL_STATE(5067)] = 96313, + [SMALL_STATE(5068)] = 96334, + [SMALL_STATE(5069)] = 96355, + [SMALL_STATE(5070)] = 96376, + [SMALL_STATE(5071)] = 96397, + [SMALL_STATE(5072)] = 96418, + [SMALL_STATE(5073)] = 96439, + [SMALL_STATE(5074)] = 96460, + [SMALL_STATE(5075)] = 96481, + [SMALL_STATE(5076)] = 96502, + [SMALL_STATE(5077)] = 96523, + [SMALL_STATE(5078)] = 96544, + [SMALL_STATE(5079)] = 96565, + [SMALL_STATE(5080)] = 96586, + [SMALL_STATE(5081)] = 96607, + [SMALL_STATE(5082)] = 96628, + [SMALL_STATE(5083)] = 96649, + [SMALL_STATE(5084)] = 96670, + [SMALL_STATE(5085)] = 96691, + [SMALL_STATE(5086)] = 96712, + [SMALL_STATE(5087)] = 96733, + [SMALL_STATE(5088)] = 96754, + [SMALL_STATE(5089)] = 96775, + [SMALL_STATE(5090)] = 96796, + [SMALL_STATE(5091)] = 96817, + [SMALL_STATE(5092)] = 96838, + [SMALL_STATE(5093)] = 96859, + [SMALL_STATE(5094)] = 96880, + [SMALL_STATE(5095)] = 96901, + [SMALL_STATE(5096)] = 96922, + [SMALL_STATE(5097)] = 96943, + [SMALL_STATE(5098)] = 96964, + [SMALL_STATE(5099)] = 96985, + [SMALL_STATE(5100)] = 97006, + [SMALL_STATE(5101)] = 97027, + [SMALL_STATE(5102)] = 97048, + [SMALL_STATE(5103)] = 97069, + [SMALL_STATE(5104)] = 97090, + [SMALL_STATE(5105)] = 97111, + [SMALL_STATE(5106)] = 97132, + [SMALL_STATE(5107)] = 97153, + [SMALL_STATE(5108)] = 97174, + [SMALL_STATE(5109)] = 97195, + [SMALL_STATE(5110)] = 97216, + [SMALL_STATE(5111)] = 97237, + [SMALL_STATE(5112)] = 97258, + [SMALL_STATE(5113)] = 97279, + [SMALL_STATE(5114)] = 97300, + [SMALL_STATE(5115)] = 97321, + [SMALL_STATE(5116)] = 97342, + [SMALL_STATE(5117)] = 97363, + [SMALL_STATE(5118)] = 97384, + [SMALL_STATE(5119)] = 97405, + [SMALL_STATE(5120)] = 97426, + [SMALL_STATE(5121)] = 97447, + [SMALL_STATE(5122)] = 97468, + [SMALL_STATE(5123)] = 97489, + [SMALL_STATE(5124)] = 97510, + [SMALL_STATE(5125)] = 97531, + [SMALL_STATE(5126)] = 97552, + [SMALL_STATE(5127)] = 97573, + [SMALL_STATE(5128)] = 97594, + [SMALL_STATE(5129)] = 97615, + [SMALL_STATE(5130)] = 97636, + [SMALL_STATE(5131)] = 97657, + [SMALL_STATE(5132)] = 97678, + [SMALL_STATE(5133)] = 97699, + [SMALL_STATE(5134)] = 97720, + [SMALL_STATE(5135)] = 97741, + [SMALL_STATE(5136)] = 97762, + [SMALL_STATE(5137)] = 97783, + [SMALL_STATE(5138)] = 97804, + [SMALL_STATE(5139)] = 97825, + [SMALL_STATE(5140)] = 97846, + [SMALL_STATE(5141)] = 97867, + [SMALL_STATE(5142)] = 97888, + [SMALL_STATE(5143)] = 97909, + [SMALL_STATE(5144)] = 97930, + [SMALL_STATE(5145)] = 97951, + [SMALL_STATE(5146)] = 97972, + [SMALL_STATE(5147)] = 97993, + [SMALL_STATE(5148)] = 98014, + [SMALL_STATE(5149)] = 98035, + [SMALL_STATE(5150)] = 98056, + [SMALL_STATE(5151)] = 98077, + [SMALL_STATE(5152)] = 98098, + [SMALL_STATE(5153)] = 98119, + [SMALL_STATE(5154)] = 98140, + [SMALL_STATE(5155)] = 98161, + [SMALL_STATE(5156)] = 98182, + [SMALL_STATE(5157)] = 98203, + [SMALL_STATE(5158)] = 98224, + [SMALL_STATE(5159)] = 98245, + [SMALL_STATE(5160)] = 98266, + [SMALL_STATE(5161)] = 98287, + [SMALL_STATE(5162)] = 98308, + [SMALL_STATE(5163)] = 98329, + [SMALL_STATE(5164)] = 98350, + [SMALL_STATE(5165)] = 98371, + [SMALL_STATE(5166)] = 98392, + [SMALL_STATE(5167)] = 98413, + [SMALL_STATE(5168)] = 98434, + [SMALL_STATE(5169)] = 98455, + [SMALL_STATE(5170)] = 98476, + [SMALL_STATE(5171)] = 98497, + [SMALL_STATE(5172)] = 98518, + [SMALL_STATE(5173)] = 98539, + [SMALL_STATE(5174)] = 98560, + [SMALL_STATE(5175)] = 98581, + [SMALL_STATE(5176)] = 98602, + [SMALL_STATE(5177)] = 98623, + [SMALL_STATE(5178)] = 98644, + [SMALL_STATE(5179)] = 98665, + [SMALL_STATE(5180)] = 98686, + [SMALL_STATE(5181)] = 98707, + [SMALL_STATE(5182)] = 98728, + [SMALL_STATE(5183)] = 98749, + [SMALL_STATE(5184)] = 98770, + [SMALL_STATE(5185)] = 98791, + [SMALL_STATE(5186)] = 98812, + [SMALL_STATE(5187)] = 98833, + [SMALL_STATE(5188)] = 98854, + [SMALL_STATE(5189)] = 98875, + [SMALL_STATE(5190)] = 98896, + [SMALL_STATE(5191)] = 98917, + [SMALL_STATE(5192)] = 98938, + [SMALL_STATE(5193)] = 98959, + [SMALL_STATE(5194)] = 98980, + [SMALL_STATE(5195)] = 99001, + [SMALL_STATE(5196)] = 99022, + [SMALL_STATE(5197)] = 99043, + [SMALL_STATE(5198)] = 99064, + [SMALL_STATE(5199)] = 99085, + [SMALL_STATE(5200)] = 99106, + [SMALL_STATE(5201)] = 99127, + [SMALL_STATE(5202)] = 99148, + [SMALL_STATE(5203)] = 99169, + [SMALL_STATE(5204)] = 99190, + [SMALL_STATE(5205)] = 99211, + [SMALL_STATE(5206)] = 99232, + [SMALL_STATE(5207)] = 99253, + [SMALL_STATE(5208)] = 99274, + [SMALL_STATE(5209)] = 99295, + [SMALL_STATE(5210)] = 99316, + [SMALL_STATE(5211)] = 99337, + [SMALL_STATE(5212)] = 99358, + [SMALL_STATE(5213)] = 99379, + [SMALL_STATE(5214)] = 99400, + [SMALL_STATE(5215)] = 99421, + [SMALL_STATE(5216)] = 99442, + [SMALL_STATE(5217)] = 99463, + [SMALL_STATE(5218)] = 99484, + [SMALL_STATE(5219)] = 99505, + [SMALL_STATE(5220)] = 99526, + [SMALL_STATE(5221)] = 99547, + [SMALL_STATE(5222)] = 99568, + [SMALL_STATE(5223)] = 99589, + [SMALL_STATE(5224)] = 99610, + [SMALL_STATE(5225)] = 99631, + [SMALL_STATE(5226)] = 99652, + [SMALL_STATE(5227)] = 99673, + [SMALL_STATE(5228)] = 99694, + [SMALL_STATE(5229)] = 99715, + [SMALL_STATE(5230)] = 99736, + [SMALL_STATE(5231)] = 99757, + [SMALL_STATE(5232)] = 99778, + [SMALL_STATE(5233)] = 99799, + [SMALL_STATE(5234)] = 99820, + [SMALL_STATE(5235)] = 99841, + [SMALL_STATE(5236)] = 99862, + [SMALL_STATE(5237)] = 99883, + [SMALL_STATE(5238)] = 99904, + [SMALL_STATE(5239)] = 99925, + [SMALL_STATE(5240)] = 99946, + [SMALL_STATE(5241)] = 99967, + [SMALL_STATE(5242)] = 99988, + [SMALL_STATE(5243)] = 100009, + [SMALL_STATE(5244)] = 100030, + [SMALL_STATE(5245)] = 100051, + [SMALL_STATE(5246)] = 100072, + [SMALL_STATE(5247)] = 100093, + [SMALL_STATE(5248)] = 100114, + [SMALL_STATE(5249)] = 100135, + [SMALL_STATE(5250)] = 100156, + [SMALL_STATE(5251)] = 100177, + [SMALL_STATE(5252)] = 100198, + [SMALL_STATE(5253)] = 100219, + [SMALL_STATE(5254)] = 100240, + [SMALL_STATE(5255)] = 100261, + [SMALL_STATE(5256)] = 100282, + [SMALL_STATE(5257)] = 100303, + [SMALL_STATE(5258)] = 100324, + [SMALL_STATE(5259)] = 100345, + [SMALL_STATE(5260)] = 100366, + [SMALL_STATE(5261)] = 100387, + [SMALL_STATE(5262)] = 100408, + [SMALL_STATE(5263)] = 100429, + [SMALL_STATE(5264)] = 100450, + [SMALL_STATE(5265)] = 100471, + [SMALL_STATE(5266)] = 100492, + [SMALL_STATE(5267)] = 100513, + [SMALL_STATE(5268)] = 100534, + [SMALL_STATE(5269)] = 100555, + [SMALL_STATE(5270)] = 100576, + [SMALL_STATE(5271)] = 100597, + [SMALL_STATE(5272)] = 100618, + [SMALL_STATE(5273)] = 100639, + [SMALL_STATE(5274)] = 100660, + [SMALL_STATE(5275)] = 100681, + [SMALL_STATE(5276)] = 100702, + [SMALL_STATE(5277)] = 100723, + [SMALL_STATE(5278)] = 100744, + [SMALL_STATE(5279)] = 100765, + [SMALL_STATE(5280)] = 100786, + [SMALL_STATE(5281)] = 100807, + [SMALL_STATE(5282)] = 100828, + [SMALL_STATE(5283)] = 100849, + [SMALL_STATE(5284)] = 100870, + [SMALL_STATE(5285)] = 100891, + [SMALL_STATE(5286)] = 100912, + [SMALL_STATE(5287)] = 100933, + [SMALL_STATE(5288)] = 100954, + [SMALL_STATE(5289)] = 100975, + [SMALL_STATE(5290)] = 100996, + [SMALL_STATE(5291)] = 101017, + [SMALL_STATE(5292)] = 101038, + [SMALL_STATE(5293)] = 101059, + [SMALL_STATE(5294)] = 101080, + [SMALL_STATE(5295)] = 101101, + [SMALL_STATE(5296)] = 101122, + [SMALL_STATE(5297)] = 101143, + [SMALL_STATE(5298)] = 101164, + [SMALL_STATE(5299)] = 101185, + [SMALL_STATE(5300)] = 101206, + [SMALL_STATE(5301)] = 101227, + [SMALL_STATE(5302)] = 101248, + [SMALL_STATE(5303)] = 101269, + [SMALL_STATE(5304)] = 101290, + [SMALL_STATE(5305)] = 101311, + [SMALL_STATE(5306)] = 101332, + [SMALL_STATE(5307)] = 101353, + [SMALL_STATE(5308)] = 101374, + [SMALL_STATE(5309)] = 101395, + [SMALL_STATE(5310)] = 101416, + [SMALL_STATE(5311)] = 101437, + [SMALL_STATE(5312)] = 101458, + [SMALL_STATE(5313)] = 101479, + [SMALL_STATE(5314)] = 101500, + [SMALL_STATE(5315)] = 101521, + [SMALL_STATE(5316)] = 101542, + [SMALL_STATE(5317)] = 101563, + [SMALL_STATE(5318)] = 101584, + [SMALL_STATE(5319)] = 101605, + [SMALL_STATE(5320)] = 101626, + [SMALL_STATE(5321)] = 101647, + [SMALL_STATE(5322)] = 101668, + [SMALL_STATE(5323)] = 101689, + [SMALL_STATE(5324)] = 101710, + [SMALL_STATE(5325)] = 101731, + [SMALL_STATE(5326)] = 101752, + [SMALL_STATE(5327)] = 101773, + [SMALL_STATE(5328)] = 101794, + [SMALL_STATE(5329)] = 101815, + [SMALL_STATE(5330)] = 101836, + [SMALL_STATE(5331)] = 101857, + [SMALL_STATE(5332)] = 101878, + [SMALL_STATE(5333)] = 101899, + [SMALL_STATE(5334)] = 101920, + [SMALL_STATE(5335)] = 101941, + [SMALL_STATE(5336)] = 101962, + [SMALL_STATE(5337)] = 101983, + [SMALL_STATE(5338)] = 102004, + [SMALL_STATE(5339)] = 102025, + [SMALL_STATE(5340)] = 102046, + [SMALL_STATE(5341)] = 102067, + [SMALL_STATE(5342)] = 102088, + [SMALL_STATE(5343)] = 102109, + [SMALL_STATE(5344)] = 102130, + [SMALL_STATE(5345)] = 102151, + [SMALL_STATE(5346)] = 102172, + [SMALL_STATE(5347)] = 102193, + [SMALL_STATE(5348)] = 102214, + [SMALL_STATE(5349)] = 102235, + [SMALL_STATE(5350)] = 102256, + [SMALL_STATE(5351)] = 102277, + [SMALL_STATE(5352)] = 102298, + [SMALL_STATE(5353)] = 102319, + [SMALL_STATE(5354)] = 102340, + [SMALL_STATE(5355)] = 102361, + [SMALL_STATE(5356)] = 102382, + [SMALL_STATE(5357)] = 102403, + [SMALL_STATE(5358)] = 102424, + [SMALL_STATE(5359)] = 102445, + [SMALL_STATE(5360)] = 102466, + [SMALL_STATE(5361)] = 102487, + [SMALL_STATE(5362)] = 102508, + [SMALL_STATE(5363)] = 102529, + [SMALL_STATE(5364)] = 102550, + [SMALL_STATE(5365)] = 102571, + [SMALL_STATE(5366)] = 102592, + [SMALL_STATE(5367)] = 102613, + [SMALL_STATE(5368)] = 102634, + [SMALL_STATE(5369)] = 102655, + [SMALL_STATE(5370)] = 102676, + [SMALL_STATE(5371)] = 102697, + [SMALL_STATE(5372)] = 102718, + [SMALL_STATE(5373)] = 102739, + [SMALL_STATE(5374)] = 102760, + [SMALL_STATE(5375)] = 102781, + [SMALL_STATE(5376)] = 102802, + [SMALL_STATE(5377)] = 102823, + [SMALL_STATE(5378)] = 102844, + [SMALL_STATE(5379)] = 102865, + [SMALL_STATE(5380)] = 102886, + [SMALL_STATE(5381)] = 102907, + [SMALL_STATE(5382)] = 102928, + [SMALL_STATE(5383)] = 102949, + [SMALL_STATE(5384)] = 102970, + [SMALL_STATE(5385)] = 102991, + [SMALL_STATE(5386)] = 103012, + [SMALL_STATE(5387)] = 103033, + [SMALL_STATE(5388)] = 103054, + [SMALL_STATE(5389)] = 103075, + [SMALL_STATE(5390)] = 103096, + [SMALL_STATE(5391)] = 103117, + [SMALL_STATE(5392)] = 103138, + [SMALL_STATE(5393)] = 103159, + [SMALL_STATE(5394)] = 103180, + [SMALL_STATE(5395)] = 103201, + [SMALL_STATE(5396)] = 103222, + [SMALL_STATE(5397)] = 103243, + [SMALL_STATE(5398)] = 103264, + [SMALL_STATE(5399)] = 103285, + [SMALL_STATE(5400)] = 103306, + [SMALL_STATE(5401)] = 103327, + [SMALL_STATE(5402)] = 103348, + [SMALL_STATE(5403)] = 103369, + [SMALL_STATE(5404)] = 103390, + [SMALL_STATE(5405)] = 103411, + [SMALL_STATE(5406)] = 103432, + [SMALL_STATE(5407)] = 103453, + [SMALL_STATE(5408)] = 103474, + [SMALL_STATE(5409)] = 103495, + [SMALL_STATE(5410)] = 103516, + [SMALL_STATE(5411)] = 103537, + [SMALL_STATE(5412)] = 103558, + [SMALL_STATE(5413)] = 103579, + [SMALL_STATE(5414)] = 103600, + [SMALL_STATE(5415)] = 103621, + [SMALL_STATE(5416)] = 103642, + [SMALL_STATE(5417)] = 103663, + [SMALL_STATE(5418)] = 103684, + [SMALL_STATE(5419)] = 103705, + [SMALL_STATE(5420)] = 103726, + [SMALL_STATE(5421)] = 103747, + [SMALL_STATE(5422)] = 103768, + [SMALL_STATE(5423)] = 103789, + [SMALL_STATE(5424)] = 103810, + [SMALL_STATE(5425)] = 103831, + [SMALL_STATE(5426)] = 103852, + [SMALL_STATE(5427)] = 103873, + [SMALL_STATE(5428)] = 103894, + [SMALL_STATE(5429)] = 103915, + [SMALL_STATE(5430)] = 103936, + [SMALL_STATE(5431)] = 103957, + [SMALL_STATE(5432)] = 103978, + [SMALL_STATE(5433)] = 103999, + [SMALL_STATE(5434)] = 104020, + [SMALL_STATE(5435)] = 104041, + [SMALL_STATE(5436)] = 104062, + [SMALL_STATE(5437)] = 104083, + [SMALL_STATE(5438)] = 104104, + [SMALL_STATE(5439)] = 104125, + [SMALL_STATE(5440)] = 104146, + [SMALL_STATE(5441)] = 104167, + [SMALL_STATE(5442)] = 104188, + [SMALL_STATE(5443)] = 104209, + [SMALL_STATE(5444)] = 104230, + [SMALL_STATE(5445)] = 104251, + [SMALL_STATE(5446)] = 104272, + [SMALL_STATE(5447)] = 104293, + [SMALL_STATE(5448)] = 104314, + [SMALL_STATE(5449)] = 104335, + [SMALL_STATE(5450)] = 104356, + [SMALL_STATE(5451)] = 104377, + [SMALL_STATE(5452)] = 104398, + [SMALL_STATE(5453)] = 104419, + [SMALL_STATE(5454)] = 104440, + [SMALL_STATE(5455)] = 104461, + [SMALL_STATE(5456)] = 104482, + [SMALL_STATE(5457)] = 104503, + [SMALL_STATE(5458)] = 104524, + [SMALL_STATE(5459)] = 104545, + [SMALL_STATE(5460)] = 104566, + [SMALL_STATE(5461)] = 104587, + [SMALL_STATE(5462)] = 104608, + [SMALL_STATE(5463)] = 104629, + [SMALL_STATE(5464)] = 104650, + [SMALL_STATE(5465)] = 104671, + [SMALL_STATE(5466)] = 104692, + [SMALL_STATE(5467)] = 104713, + [SMALL_STATE(5468)] = 104734, + [SMALL_STATE(5469)] = 104755, + [SMALL_STATE(5470)] = 104776, + [SMALL_STATE(5471)] = 104797, + [SMALL_STATE(5472)] = 104818, + [SMALL_STATE(5473)] = 104839, + [SMALL_STATE(5474)] = 104860, + [SMALL_STATE(5475)] = 104881, + [SMALL_STATE(5476)] = 104902, + [SMALL_STATE(5477)] = 104923, + [SMALL_STATE(5478)] = 104944, + [SMALL_STATE(5479)] = 104965, + [SMALL_STATE(5480)] = 104986, + [SMALL_STATE(5481)] = 105007, + [SMALL_STATE(5482)] = 105028, + [SMALL_STATE(5483)] = 105049, + [SMALL_STATE(5484)] = 105070, + [SMALL_STATE(5485)] = 105091, + [SMALL_STATE(5486)] = 105095, + [SMALL_STATE(5487)] = 105099, + [SMALL_STATE(5488)] = 105103, + [SMALL_STATE(5489)] = 105107, }; 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(5314), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 0), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 0, 0, 0), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2), - [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .production_id = 11), - [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, .production_id = 11), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, .production_id = 39), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, .production_id = 39), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 19), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 19), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3), - [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, .production_id = 20), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, .production_id = 20), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 1), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 1), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 0, 11), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, 0, 11), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, 0, 20), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, 0, 20), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3, 0, 0), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 19), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 19), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, 0, 39), + [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, 0, 39), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2, 0, 0), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2, 0, 0), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2, 0, 0), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2, 0, 0), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 1, 0, 0), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 1, 0, 0), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 2), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_expression, 5, .production_id = 47), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, .production_id = 19), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, .production_id = 36), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 38), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 2), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 29), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(978), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4181), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3975), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3983), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4561), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2667), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(693), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3052), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4555), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2050), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2050), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(1088), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4106), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2545), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4138), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4193), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5364), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5363), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3104), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(693), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(723), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(721), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2299), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(716), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(714), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2560), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4480), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(710), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(710), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2155), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5126), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5126), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4478), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(690), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4001), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3552), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3648), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3881), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5354), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5353), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(1117), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(1117), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(1118), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(1118), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2545), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2547), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(726), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3477), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5351), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, .production_id = 4), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, .production_id = 4), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 12), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 12), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 4), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 4), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 4, .production_id = 12), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 4, .production_id = 12), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 13), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(848), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4173), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3951), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4023), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4594), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(524), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2988), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4593), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2054), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2054), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(916), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4118), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4220), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4208), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5255), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5256), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3155), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(524), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(607), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(606), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2287), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(614), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(511), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2561), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4616), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(625), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(625), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(2172), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5195), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5195), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4402), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(605), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4064), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3518), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3599), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3878), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4812), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(4813), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(937), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(937), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(996), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(996), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(728), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3476), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5127), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 4), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(550), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(3262), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(550), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5360), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(5360), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2), SHIFT_REPEAT(727), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 2), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, .production_id = 4), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, .production_id = 13), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 1), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 1), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(854), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(565), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4587), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2049), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2049), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(972), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4098), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2545), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4223), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4265), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5236), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5237), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3194), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(565), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(703), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(705), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2312), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(482), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(535), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2562), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4518), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(495), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(495), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2153), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5038), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5038), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4587), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(713), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4063), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3544), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3678), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3932), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4678), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4679), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(896), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(896), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(895), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(895), - [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2545), - [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2547), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(725), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3500), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5041), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(545), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 30), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const, 1), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const, 1), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type, 3), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type, 3), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flexible_type, 2), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flexible_type, 2), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 3), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constrained_type, 3), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compound_type, 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compound_type, 2), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4913), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), - [2526] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4784), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3151), - [2533] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4913), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4784), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3100), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_type, 2), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_type, 2), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_type, 3), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_type, 3), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 4), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 4), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 3), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 3), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_type, 2), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_type, 2), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2613] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4871), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4871), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type, 2), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type, 2), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1, .production_id = 3), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1, .production_id = 3), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3241), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4729), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4729), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2254), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4747), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4729), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4747), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2259), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4729), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4747), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4747), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(5080), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5147), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2246), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(5080), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(5080), - [2748] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4903), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4903), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(5080), - [2766] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(5147), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytechar, 3), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytechar, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 3), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 3), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_else_expression, 7, .production_id = 57), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_else_expression, 7, .production_id = 57), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, .production_id = 56), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, .production_id = 56), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, .production_id = 43), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, .production_id = 43), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 49), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 49), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_else_expression, 6, .production_id = 48), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_else_expression, 6, .production_id = 48), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_expression, 6, .production_id = 47), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_expression, 6, .production_id = 47), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 31), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 31), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 41), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 41), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, .production_id = 37), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, .production_id = 37), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, .production_id = 37), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, .production_id = 37), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 1, .production_id = 1), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 1, .production_id = 1), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 1, .production_id = 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 1, .production_id = 2), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 4), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 4), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 32), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 32), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 31), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 31), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 3), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 3), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3, .production_id = 22), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3, .production_id = 22), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(504), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 3), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 3), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_expression, 3, .production_id = 21), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_expression, 3, .production_id = 21), - [3095] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(5279), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(459), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5279), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(546), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(575), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3147] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4762), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3072), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4756), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3169] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4756), - [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3175), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4762), - [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3222), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4782), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4749), - [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3225), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [3205] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4782), - [3209] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4749), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4807), - [3220] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4766), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3209), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3240), - [3238] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4807), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4766), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4894), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4925), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2229), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4925), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4894), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4925), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4925), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4894), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2238), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4894), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4956), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4956), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4781), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(684), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4832), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4786), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4832), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4956), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4863), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4863), - [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2260), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4832), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [3345] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4755), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4832), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2269), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4863), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4863), - [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4755), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2266), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4956), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [3374] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4786), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3380] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4781), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(592), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3391] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4790), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3403] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4752), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(574), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4882), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4790), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4687), - [3437] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4767), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4798), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4687), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(4798), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3458] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4882), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(656), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2244), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4798), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(4687), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2250), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(4687), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(674), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(488), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4767), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(562), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(4798), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(626), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4752), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [3509] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(5034), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4814), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5034), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(454), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(623), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(643), - [3560] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(4814), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4856), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3062), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2667), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3888), - [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2349), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4087), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4027), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3989), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3920), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4110), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4754), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2335), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4105), - [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4002), - [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3999), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3886), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4100), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3135), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 5), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 5), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 3), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 3), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1), - [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 7), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 7), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 5, .production_id = 59), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 5, .production_id = 59), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 58), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 58), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 1, .production_id = 26), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 1, .production_id = 26), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 1), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 1), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, .production_id = 52), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, .production_id = 52), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 8), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 8), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2667), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2995), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3182), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2994), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2585), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2672), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2810), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2816), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2361), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3796), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2342), - [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2236), - [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2235), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(4188), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3974), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3554), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3631), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3928), - [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(4845), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(4846), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2622), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2622), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2571), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3498), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3179), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), SHIFT_REPEAT(2058), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, .production_id = 35), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, .production_id = 35), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 2), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), SHIFT_REPEAT(3975), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, .production_id = 37), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, .production_id = 37), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 16), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 16), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5375), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 27), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 27), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), SHIFT_REPEAT(2057), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4776), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, .production_id = 43), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, .production_id = 43), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, .production_id = 43), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, .production_id = 43), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 8), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 8), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 43), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 43), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 43), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 43), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, .production_id = 43), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, .production_id = 43), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, .production_id = 51), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, .production_id = 51), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, .production_id = 42), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, .production_id = 42), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 28), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 28), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, .production_id = 62), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, .production_id = 62), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 46), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 46), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, .production_id = 37), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, .production_id = 37), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, .production_id = 63), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, .production_id = 63), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, .production_id = 42), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, .production_id = 42), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, .production_id = 61), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, .production_id = 61), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 2), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 2), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 8), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 8), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 2), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compiler_directive_decl, 2), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 15), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 15), - [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1), REDUCE(aux_sym_file_repeat3, 1), - [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 1), REDUCE(aux_sym_file_repeat3, 1), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 1), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, .production_id = 50), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, .production_id = 50), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, .production_id = 42), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, .production_id = 42), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5307), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4831), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3088), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3247), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5180), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3206), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), SHIFT_REPEAT(2056), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), SHIFT_REPEAT(2547), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2942), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), - [4561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3051), - [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2328), - [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2251), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2252), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4229), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4041), - [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3579), - [4582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3644), - [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3916), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4777), - [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4778), - [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3028), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3028), - [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2594), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3499), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4242), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5241), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4758), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4843), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3169), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3256), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5091), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4958), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4764), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2), - [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), - [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3), - [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4295), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_pattern, 3), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2371), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 6), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 6), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2325), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 9), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 9), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 7), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 7), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4), - [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3865), - [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(2673), - [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3501), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4724), - [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3094), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3189), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(5340), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4150), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2309), - [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2390), - [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4276), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(2672), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 4), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 4), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 3), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 3), - [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, .production_id = 45), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, .production_id = 45), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(5009), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4289), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3), - [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3), - [5376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(2667), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4146), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3), - [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), - [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4785), - [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4772), - [5420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3130), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3080), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2286), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4107), - [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4009), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4011), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3909), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4079), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4893), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2374), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4108), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3971), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3980), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3917), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4115), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4823), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 14), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 14), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4796), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 5), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 5), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), SHIFT_REPEAT(3045), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 24), - [5706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 24), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(2671), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3161), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2), - [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3160), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), SHIFT_REPEAT(3939), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2300), - [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4281), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 5), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 5), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 24), - [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 24), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 33), - [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 33), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 14), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 14), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4926), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [5975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3060), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 2), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(3849), - [6183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(3849), - [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(516), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 3), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3), - [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2298), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2376), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(4768), - [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4305), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(3845), - [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(3845), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(2673), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [6600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3185), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(3934), - [6676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(3934), - [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(4258), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [6690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2358), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5), - [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2313), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1), - [6756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1), - [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1), - [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2391), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3), - [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(3992), - [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(3992), - [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), - [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, .production_id = 4), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, .production_id = 4), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [7059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, .production_id = 53), - [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, .production_id = 53), - [7063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(4129), - [7066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(4129), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), - [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3246), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), SHIFT_REPEAT(2061), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5, .production_id = 55), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, .production_id = 35), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), - [7245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4127), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6, .production_id = 55), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), SHIFT_REPEAT(2343), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, .production_id = 35), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 2), - [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 2), SHIFT_REPEAT(659), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(3755), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [7321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 2), REDUCE(sym_static_type_argument, 2), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3187), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(3940), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [7382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), SHIFT_REPEAT(4455), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_type_argument, 3), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 1), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), - [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), SHIFT_REPEAT(2676), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), SHIFT_REPEAT(2847), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 27), SHIFT_REPEAT(2063), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 2), - [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 2), SHIFT_REPEAT(4429), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, .production_id = 18), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(418), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1), - [7576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), SHIFT_REPEAT(3716), - [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), SHIFT_REPEAT(2788), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primary_constr_args_repeat1, 2), - [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primary_constr_args_repeat1, 2), SHIFT_REPEAT(4526), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, .production_id = 10), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2), - [7647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), SHIFT_REPEAT(3056), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), SHIFT_REPEAT(3118), - [7659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), SHIFT_REPEAT(4164), - [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(423), - [7667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), SHIFT_REPEAT(650), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3), - [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 4), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 3), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__char_char, 1), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__char_char, 1), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 1), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, .production_id = 17), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 4), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 1), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 3), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, .production_id = 40), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9), - [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_active_pattern_op_name_repeat1, 2), SHIFT_REPEAT(4779), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_op_name_repeat1, 2), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4, .production_id = 44), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 5), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3, .production_id = 34), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5, .production_id = 54), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 6), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, .production_id = 43), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2, .production_id = 25), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6, .production_id = 60), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1, 0, 0), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 2, 0, 0), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 19), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 0), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_expression, 5, 0, 47), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 29), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, 0, 36), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 2, 0, 0), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 38), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(898), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4269), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4041), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4067), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4712), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2734), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(673), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3142), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4695), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2108), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2108), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1136), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4220), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2604), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4277), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4261), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5477), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5476), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3184), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(673), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(486), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(487), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2430), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(488), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(489), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2619), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4641), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(492), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(492), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2252), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5278), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5278), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4637), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(509), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4150), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3597), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3780), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3984), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5467), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5466), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1078), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1078), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1080), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1080), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2604), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2603), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(725), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3581), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5464), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 4, 0, 12), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 4, 0, 12), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 12), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 12), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, 0, 4), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, 0, 4), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, 0, 4), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, 0, 4), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 2, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, 0, 13), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, 0, 4), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, 0, 4), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(469), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3165), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(469), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5473), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5473), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(727), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(875), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4390), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4046), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4044), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4407), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(702), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3073), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4416), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2107), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2107), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(897), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4195), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4324), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4319), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5409), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5410), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3146), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(702), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(504), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(503), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2403), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(719), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(538), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2620), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4722), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(723), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(723), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2250), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5373), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5373), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4486), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(502), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4035), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3675), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3711), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4006), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4967), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4968), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(894), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(894), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1009), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1009), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(728), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(3577), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5279), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, 0, 13), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 1, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 1, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4447), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4205), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4383), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4366), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5390), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5391), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3282), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4622), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4447), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3778), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4815), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4816), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, 0, 30), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const, 1, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flexible_type, 2, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flexible_type, 2, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constrained_type, 3, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 3, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type, 3, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type, 3, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), + [2519] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(5011), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [2583] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4807), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compound_type, 2, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compound_type, 2, 0, 0), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5011), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4807), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_type, 2, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1, 0, 3), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1, 0, 3), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_type, 2, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_type, 2, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_type, 2, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_type, 3, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_type, 3, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 3, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 3, 0, 0), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), + [2669] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4922), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type, 2, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type, 2, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 4, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 4, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3, 0, 18), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, 0, 18), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(4761), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2331), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(4902), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(4761), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(4902), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3, 0, 0), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3, 0, 0), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(4761), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(4902), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 5, 0, 40), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, 0, 40), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 10), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 10), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(4902), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(5069), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6, 0, 0), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4991), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2317), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(5069), + [2826] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(5312), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(5069), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4991), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 4, 0, 0), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 4, 0, 0), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2, 0, 0), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2, 0, 0), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2, 0, 0), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2, 0, 0), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3, 0, 0), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2, 0, 0), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2, 0, 0), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4, 0, 0), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytechar, 3, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytechar, 3, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(5336), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 3, 0, 0), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 3, 0, 0), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3, 0, 0), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2, 0, 0), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2, 0, 0), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3, 0, 0), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_expression, 3, 0, 21), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_expression, 3, 0, 21), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3, 0, 0), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3, 0, 0), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 3, 0, 0), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 3, 0, 0), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3, 0, 22), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3, 0, 22), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3, 0, 0), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 1, 0, 1), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 1, 0, 1), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 1, 0, 2), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 1, 0, 2), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1, 0, 0), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1, 0, 0), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 3, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 3, 0, 0), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3, 0, 0), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2, 0, 0), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2, 0, 0), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9, 0, 0), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 31), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 31), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3, 0, 0), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_else_expression, 7, 0, 57), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_else_expression, 7, 0, 57), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, 0, 56), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, 0, 56), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3, 0, 0), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 0), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 32), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 32), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4, 0, 0), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4, 0, 0), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, 0, 43), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, 0, 43), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 49), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 49), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_else_expression, 6, 0, 48), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_else_expression, 6, 0, 48), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_then_expression, 6, 0, 47), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_then_expression, 6, 0, 47), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 31), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 31), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 41), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 41), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 37), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 37), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, 0, 37), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, 0, 37), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2, 0, 0), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2, 0, 0), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(648), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3237] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4791), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), + [3247] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4788), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3171), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4782), + [3279] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4806), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [3285] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4782), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [3297] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4834), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4794), + [3315] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4794), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4834), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(5049), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(5049), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(5049), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(5080), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(5049), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(5080), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(5080), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(5018), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(4987), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(5018), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [3412] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4814), + [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3427] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4803), + [3431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(5018), + [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(4987), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(5111), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(5111), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [3475] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4787), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2329), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(5111), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(5111), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(4987), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(663), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(4841), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(4953), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4796), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [3543] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4818), + [3547] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4783), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(4953), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3, 0, 0), SHIFT(4841), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2, 0, 0), SHIFT_REPEAT(4841), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(4841), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4818), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3594] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4796), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1, 0, 0), SHIFT(4953), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2, 0, 0), SHIFT(4953), + [3609] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4945), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [3634] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(4847), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [3640] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1, 0, 0), REDUCE(sym__identifier_or_op, 1, 0, 0), SHIFT(5190), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1, 0, 0), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4894), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), + [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), + [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4160), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4155), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3265), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5, 0, 0), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7, 0, 0), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1, 0, 0), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2375), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4063), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4018), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 3, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 3, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 5, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 5, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 1, 0, 26), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 1, 0, 26), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 8, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 8, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, 0, 58), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, 0, 58), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 5, 0, 59), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 5, 0, 59), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 1, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 1, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 7, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 7, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, 0, 52), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, 0, 52), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3087), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), + [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), + [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2860), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [4258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5000), + [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), + [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), + [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), + [4279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, 0, 27), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, 0, 27), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), + [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, 0, 35), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, 0, 35), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4897), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), SHIFT_REPEAT(2116), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, 0, 37), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, 0, 37), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, 0, 16), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, 0, 16), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, 0, 63), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, 0, 63), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, 0, 62), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, 0, 62), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 8), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 8), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, 0, 42), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, 0, 42), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, 0, 43), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, 0, 43), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, 0, 43), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, 0, 43), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, 0, 51), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, 0, 51), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, 0, 43), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, 0, 43), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, 0, 43), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, 0, 43), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, 0, 43), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, 0, 43), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, 0, 37), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, 0, 37), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), SHIFT_REPEAT(2120), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 28), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, 0, 28), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 46), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, 0, 46), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4802), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, 0, 42), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, 0, 42), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, 0, 42), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, 0, 42), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, 0, 61), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, 0, 61), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, 0, 50), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, 0, 50), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 2, 0, 0), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 2, 0, 0), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), REDUCE(aux_sym_file_repeat3, 1, 0, 0), + [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat1, 1, 0, 0), REDUCE(aux_sym_file_repeat3, 1, 0, 0), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, 0, 15), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, 0, 15), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, 0, 8), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, 0, 8), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2, 0, 0), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2, 0, 0), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 2, 0, 0), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compiler_directive_decl, 2, 0, 0), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4873), + [4549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5060), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), SHIFT_REPEAT(2119), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1, 0, 0), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1, 0, 0), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1, 0, 0), + [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4932), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4933), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3, 0, 0), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3, 0, 0), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2, 0, 0), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2, 0, 0), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4789), + [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4883), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3, 0, 0), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3, 0, 0), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3, 0, 0), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2367), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_pattern, 3, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 0), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, 0, 0), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, 0, 0), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2, 0, 0), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, 0, 0), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4237), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4792), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3, 0, 0), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3, 0, 0), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4, 0, 0), + [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 6), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 6), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2, 0, 0), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2, 0, 0), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 9), + [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 9), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 7), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 7), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(5177), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3331), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(4994), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, 0, 0), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1, 0, 0), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4300), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4348), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1, 0, 0), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1, 0, 0), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 3, 0, 0), + [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 3, 0, 0), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1, 0, 0), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1, 0, 0), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, 0, 45), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, 0, 45), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 4, 0, 0), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 4, 0, 0), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1, 0, 0), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1, 0, 0), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1, 0, 0), + [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1, 0, 0), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4, 0, 0), + [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4, 0, 0), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3, 0, 0), + [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3, 0, 0), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4800), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4813), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1, 0, 0), + [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1, 0, 0), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1, 0, 0), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3, 0, 0), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3219), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4193), + [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4176), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4199), + [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), + [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 14), + [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 14), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4826), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2, 0, 0), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 5), + [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, 0, 5), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 24), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 24), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2, 0, 0), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2, 0, 0), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), + [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3242), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3, 0, 0), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1, 0, 0), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 14), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, 0, 14), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, 0, 5), + [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, 0, 5), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4244), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 33), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 33), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, 0, 24), + [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, 0, 24), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 2, 0, 0), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 3, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2, 0, 0), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1, 0, 0), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2457), + [6476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3, 0, 0), + [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4376), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1, 0, 0), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 0), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4799), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5, 0, 0), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, 0, 0), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3, 0, 0), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3, 0, 0), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6, 0, 0), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1, 0, 0), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3, 0, 0), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2396), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4, 0, 0), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5, 0, 0), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), + [6870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [6909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1, 0, 0), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3, 0, 0), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3, 0, 0), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3, 0, 0), + [6973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), + [6975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2, 0, 0), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2, 0, 0), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1, 0, 0), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), + [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1, 0, 0), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [7012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [7015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [7221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, 0, 4), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, 0, 4), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [7235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), + [7238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), + [7241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, 0, 53), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, 0, 53), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3334), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1, 0, 0), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6, 0, 55), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5, 0, 55), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 2, 0, 0), + [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, 0, 35), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, 0, 35), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2, 0, 0), SHIFT_REPEAT(3153), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 2, 0, 0), REDUCE(sym_static_type_argument, 2, 0, 0), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), SHIFT_REPEAT(2121), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [7517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2456), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2, 0, 0), SHIFT_REPEAT(4185), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1, 0, 0), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, 0, 27), SHIFT_REPEAT(2123), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 2, 0, 0), + [7576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(4433), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2, 0, 0), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3, 0, 0), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, 0, 0), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primary_constr_args_repeat1, 2, 0, 0), + [7614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primary_constr_args_repeat1, 2, 0, 0), SHIFT_REPEAT(4505), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2, 0, 0), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2, 0, 0), + [7647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2, 0, 0), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2, 0, 0), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1, 0, 0), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2, 0, 0), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1, 0, 0), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2, 0, 0), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(4682), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2, 0, 0), + [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1, 0, 0), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 1, 0, 0), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2, 0, 0), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2, 0, 0), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 4, 0, 0), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1, 0, 0), + [7795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2, 0, 0), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1, 0, 0), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2, 0, 0), + [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2, 0, 0), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2, 0, 0), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_type_argument, 3, 0, 0), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1, 0, 0), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2, 0, 0), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2, 0, 0), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 0), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, 0, 17), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_active_pattern_op_name_repeat1, 2, 0, 0), SHIFT_REPEAT(5235), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9, 0, 0), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8, 0, 0), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2, 0, 0), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__char_char, 1, 0, 0), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__char_char, 1, 0, 0), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4, 0, 0), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3, 0, 0), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5, 0, 0), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 1, 0, 0), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3, 0, 0), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5, 0, 0), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6, 0, 0), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_then_else_expression_repeat1, 1, 0, 0), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_type_argument_repeat1, 3, 0, 0), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4, 0, 0), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4, 0, 0), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1, 0, 0), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 4, 0, 0), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1, 0, 0), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3, 0, 0), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 3, 0, 0), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3, 0, 0), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3, 0, 34), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1, 0, 0), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_op_name_repeat1, 2, 0, 0), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2, 0, 25), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target, 1), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [9315] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xml_doc, 2), - [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), - [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, .production_id = 23), - [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4, 0, 44), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 5, 0, 0), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5, 0, 54), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern_op_name, 6, 0, 0), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, 0, 43), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target, 1, 0, 0), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9533] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6, 0, 60), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xml_doc, 2, 0, 0), + [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), + [9583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 23), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -371175,7 +375432,7 @@ void tree_sitter_fsharp_external_scanner_deserialize(void *, const char *, unsig #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_fsharp() { +TS_PUBLIC const TSLanguage *tree_sitter_fsharp(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..17f0e94 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/test/corpus/constants.txt b/test/corpus/constants.txt index 5400a3e..a9480ab 100644 --- a/test/corpus/constants.txt +++ b/test/corpus/constants.txt @@ -423,6 +423,37 @@ do (decimal (int))))))))))) +================================================================================ +float +================================================================================ + +do + 1. + 1.1 + 1e+12 + 1e-12 + 1.2e+12 + +-------------------------------------------------------------------------------- + +(file + (value_declaration + (do + (sequential_expression + (const + (float)) + (sequential_expression + (const + (float)) + (sequential_expression + (const + (float)) + (sequential_expression + (const + (float)) + (const + (float))))))))) + ================================================================================ string with escaped quote ================================================================================